@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-card: #ffffff;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border-color: #e5e7eb;
    --accent-blue: #2563eb;
    --accent-blue-hover: #1d4ed8;
    --shadow-color: rgba(99, 102, 241, 0.08);
    --shadow-color-hover: rgba(99, 102, 241, 0.15);
}
html {
    height:100%;
    direction: rtl;
  }
body{
    overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    list-style: none;
    font-style: normal!important;
    text-decoration: none !important;
}
  
body, html {
    height: 100%;
    min-height: 100%;
    font-size: 16px;
    color: #050608;
    direction: rtl;
    font-family: 'Almarai', sans-serif;
    /* background: #f4f4f4; */
    text-align: right;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-family: 'Almarai', sans-serif;

}

 
  
.container {
    width: 100%;
    max-width: 1200px !important;
    padding: 0 !important;
}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
    height: 100%;
    object-fit: cover;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 12px;
    margin-right: 0px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/

a.navbar-brand.p-0 {
    margin-right: 0;
    margin-left: 0px;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

.accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}

.faq-section.bg-light.py-5 h1 {
    font-size: 40px;
}

.blog .blog-item .blog-content a.h4 {
    font-size: 18px;
    font-family: 'Almarai', sans-serif;
}

.blog .blog-item .blog-content p {
    font-size: 14px;
    line-height: 21px;
}


  @keyframes scroll {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

breadcrumb li.breadcrumb-item.active.text-primary {
    color: #fff !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    float: right;
    padding-left: .5rem;
}

.breadcrumb-item.active {
    color: #ffffff !important;
}
.hero .sub-title {
    color: #6e6d7a;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .hero .hero-title {
    color: #212121;
    font-family: "'Almarai', sans-serif";
    font-size: 26px;
    margin-bottom: 34px;
}
.portlet {
    position: relative;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 30px;
    box-shadow: 0px 10px 30px #5a5b881a;
    padding: 25px;
}
.portlet .form-group label {
    margin-bottom: 9px;
    color: #212121;
    font-size: 14px;
    padding-right: 20px;
}
.portlet .form-control {
    background-color: #1976d20d;
    border: 1px solid #ddeaf6;
    height: 33px;
    border-radius: 19px;
    height: 48px;
    padding: 10px 20px;
    color: #212121;
}
.field-icon {
    position: absolute;
    top: 68%;
    transform: translateY(-50%);
    left: 20px;
    z-index: 2;
}

.portlet .form-group {
    position: relative;
    display: block;
    margin-bottom: 22px;
}

.portlet select {
    background-color: #1976d20d;
    border: 1px solid #ddeaf6;
    height: 33px;
    border-radius: 19px;
    height: 48px;
    font-size: 14px;
}

.services-style2-grids .grid {
    background: -webkit-linear-gradient(left, #193775, #00abc9);
    background: -moz-linear-gradient(left, #193775, #00abc9);
    background: -o-linear-gradient(left, #193775, #00abc9);
    background: -ms-linear-gradient(left, #193775, #00abc9);
    background: linear-gradient(left, #193775, #00abc9);
    padding: 35px 13px;
    position: relative;
    margin-bottom: 21px;
}
.services-style2-grids .grid:before {
    content: "";
    background-color: #fff;
    width: 99%;
    height: 99%;
    position: absolute;
    left: 2px;
    top: 2px;
}

.services-style2-grids .grid a {
    position: relative;
    text-align: center;
    display: block;
    width: 100%;
}

.services-style2-grids .grid a span.icon {
    width: 50px;
    height: 50px;
    display: block;
    text-align: center;
    margin:  0 auto;
    margin-bottom: 11px;
}

.services-style2-grids .grid a h3.titleox {
    font-size: 20px;
    color: #000;
}

.services-style2-grids .grid a p.counter {
    font-size: 25px;
    /* margin-bottom: 0; */
    color: #d1973b;
    font-weight: 800;
}

.services-style2-grids .grid a h6.btn.btn-light.rounded-pill {
    font-size: 12px;
    background: #2f596e;
    color: #fff;
    border-radius: 9px !important;
    margin: 0;
    margin-left: 0 !important;
}

#eventTabs {
    border: none;
    display: flex;
    justify-content: center;
}
#eventTabs .nav-link {
    background-color: #d1973b;
    color: #fff;
    border: none;
    font-weight: bold;
    padding: 15px 20px;
    margin: 5px;
    border-radius: 0;
}
#eventTabs .nav-link.active {
    background-color: #264757;
    color: #fff;
    position: relative;
}
#eventTabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #264757;
}

.event-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 4px 4px 11px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.event-card h5 {
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.event-card p {
    font-size: 15px;
    font-weight: normal;
    line-height: 28px;
    color: #666666;
    margin-bottom: 22px;
}

.speaker {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.speaker img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 10px;
}
.event-tab-meta {
    margin-top: 12px;
    margin-bottom: 16px;
}
.event-tab-meta span {
	color: #666666;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 400;
	margin-left: 25px;
}
.event-tab-meta span:last-child{margin-left: 0;}
.event-tab-meta span i {
	color: #f7b205;
	font-size: 14px;
	margin-left: 8px;
}


.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
    position: sticky;
    top: 30px;
    /* margin-left: 30px; */
}

.faq-catagery-list{
	border: 1px solid #5561711c;
	padding: 30px;
	margin-bottom: 40px;
}

.faq-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child{
    margin: 0;
}

.faq-catagery-list ul li a{
    position: relative;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    color: #5b6778;
    padding-left: 25px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
    color: #002768;
}

.faq-catagery-list ul li a::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background-image: url('../img/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before{
	transform: translateY(-50%);
    filter: brightness(0) invert(0);
}

.page-faq-accordion{
	margin-bottom: 60px;
}

.page-faq-accordion:last-child{
	margin-bottom: 0;
}

.faq-accordion.page-faq-accordion .section-title{
	margin-bottom: 30px;
}
.sidebar-cta-box{
    background-color: #264757;
    padding: 30px;
}

.sidebar-cta-content{
	margin-bottom: 15px;
}

.sidebar-cta-content h3{
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.sidebar-cta-content p{
	color: #fff;
	margin-bottom: 0;
}

.sidebar-cta-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child{
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box{
	background-color: transparent;
}

.sidebar-cta-contact-item .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before{
    transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img{
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.cta-contact-item-content{
	width: calc(100% - 80px);
}

.cta-contact-item-content p{
    font-size: 20px;
    color: #fff;
    margin: 0;
}
.our-faqs{
	padding: 100px 0;
}

.our-faqs-content{
	position: sticky;
	top: 20px;
}

.our-faqs-content .section-title{
	margin-bottom: 20px;
}

.faq-accordion .accordion-item{
    border-bottom: 1px solid #edededf2;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-right: 0;
    border-left: 0;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
	padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    color: #022b6f;
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
    margin-bottom: 10px;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    /* content: '\2b'; */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 28px;
    top: 50%;
    font-size: 20px;
    color: #01296c;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}



.accordion-item .accordion-body p{
    margin-bottom: 15px;
    font-size: 14px;
}

.accordion-item .accordion-body p:last-child{
    margin-bottom: 0;
}


.section-title h2 {
    margin-bottom: 19px;
    font-size: 23px;
    color: #d1973b;
}
#companyTabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
    background-color: #e9ecef;
    border-radius: 30px;
    width: fit-content;
    margin: auto;
}
#companyTabs .nav-link {
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #6c757d;
    background-color: transparent;
    transition: 0.3s;
    border: none;
    margin: 0;
}
#companyTabs .nav-link.active {
    background-color: #264757;
    color: white;
}
.company-card {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.company-card img {
    max-width: 100px;
    margin-bottom: 10px;
}

.company-card h5 {
    font-size: 14px;
    font-weight: 600;
}
.casestudy-slider-item {
    background-color: #f0eeee;
    display: flex;
    padding: 7px;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 9px;
    flex-wrap: wrap;
    box-shadow: 0px 10px 15px #0000000D;
    margin-bottom: 29px;
}
.casestudy-slider-item .caseimg {
    float: right;
    width: 170px;
    border: 3px solid #ffffff1f;
    height: 220px;
    position: relative;
    z-index: 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px #000000a6;
}
.slick-slide img {
    display: block;
    max-width: 100%;
}
.casestudy-slider-item .casecontent {
    width: calc(100% - 170px);
    text-align: right;
}

.casecontent {
    padding: 13px 13px 19px;
    padding-left: 0;
}
.case-number {
    font-size: 24px;
    color: #2E1E52;
    border-bottom: 2px solid #b98057;
}
.casecontent .title {
    margin-top: 18px;
    color: #1b0f0f;
    font-family: 'Almarai', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    font-size: 14px;
    overflow: hidden;
}
.casecontent .para {
    color: #8a8383;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 25px;
    font-family: 'Almarai', sans-serif;
}
.read-more-btn {
    color: #ffffff;
    font-weight: 700;
    font-family: changa;
    margin-top: 25px;
    display: block;
    text-decoration: none;
}

.caseimg img {
    width: 100%;
    min-height: 100%;
    height: auto;
    max-width: 100%;
}
.read-more-btn  {color: #fff;margin: 0 auto;background-color: #264757;z-index: 1;height: 50px;width: 115px;transition: 0.35s all ease-in-out;display: block;font-size: 14px;font-weight: 700;line-height: 49px;position: relative;text-align: center;font-family: 'Almarai', sans-serif;}
.read-more-btn:before {
    top: 10px;
    left: 10px;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.35s all ease-in-out;
    border: 2px solid #264757;
}
 .read-more-btn:hover:before {
        top: -10px;
        left: -10px;
        border: 2px solid #264757;
        transition: 0.55s all ease-in-out;
}
 .read-more-btn:hover{
    background: #d1973b;
    color:#000;
}
.section-content-white {
    text-align: center;
    display: block;
    margin-bottom: 27px;
}

.section-content-white .section-title {
    color: #000;
    font-family: 'Almarai', sans-serif;
    margin-bottom: 23px;
    font-weight: 700;
    font-size: 26px;
}
.section-content-white .section-para  {
    color: #7d7c7c;
    margin-bottom: 0;
    font-size: 19px;
    text-align: center;
    line-height: 25px;
    font-family: 'Almarai', sans-serif;
}
.side-menu-main {
    position: sticky;
    top: 30px;
}
.portfolio-girl-menu-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -120px;
}
.portfolio-girl-menu-main img {
    border-radius: 50%;
    width: 195px;
    height: 195px;
}
.list-menu {
    background: #000000;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.side-menu-arya {
    color: #FFF;
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    line-height: 48px;
    padding-top: 90px;
    margin-bottom: 0;
}
.web-arya {
    color: #838485;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 0;
}
.media-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.media-icons {
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.media-icons:hover {
    border-radius: 10px;
    background: #FFF;
    color:#000;
    transition: all 0.3s ease-in-out;
    width: 53px;
}
.media-icons:hover i {
    filter: brightness(0) saturate(100%) invert(11%) sepia(1%) saturate(1367%) hue-rotate(161deg) brightness(98%) contrast(97%);
}
.phone-text {
    color: #838485;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 9px;
}
.phone-num {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    border-bottom: 1px solid #fcfcfc42;
    padding-bottom: 5px;
}
.Hire-Me-side-menu {
    width: 100%;
    margin-top: 40px;
}
.Hire-Me-side-menu a {
    justify-content: center;
    color: #FFF;
    border-top: 2px solid #FFF;
    border-right: 4px solid #FFF;
    border-bottom: 4px solid #FFF;
    border-left: 2px solid #FFF;
}
.aryaBtn {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 20px;
    border-top: 2px solid #000000;
    border-right: 4px solid #000000;
    border-bottom: 4px solid #000000;
    border-left: 2px solid #000000;
    padding: 12px 24px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hireMe-svg-side {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(5%) hue-rotate(269deg) brightness(101%) contrast(104%) !important;
}
.aryaBtn:hover {
    background: #000000;
    color: #ffffff;
    border-radius: 0;
}

ul.star-ratings-rating-background {
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
}

ul.star-ratings-rating-background i {
    color: #e5b730;
}

.media-icons i {
    padding-left: 7px;
}

.phone-num p {
    margin-bottom: 0;
}
.section-two,
.section-three,
.section-four,
.section-five,
.section-six,
.section-Seven,
.section-eight,
.section-nine {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 30px;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 0px;
}
.about-col {
    border-left: 2px solid #93939329;
    padding: 0;
}
.arya-stack-about {
    color: #000000;
    font-size: 25px;
    font-weight: 700;
}
.arya-stack-about span {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.WebExperts {
    color: #838485;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    padding-top: 5px;
}
.yer-exp-box-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 33px;
}
.yer-exp-box {
    padding: 7px 13px;
    border-radius: 30px;
    border: 2px dashed #b5bbc2;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 240px;
}
.yer-exp-box:hover {
    border: 2px dashed #000000;
    border-radius: 0;
}
.yer-exp-box .degit {
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
}
.yer-exp-box div p {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.self-taught-col {
    padding-right: 60px;
}
.self-taught {
    color: #838485;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 2px;
    line-height: 24px;
    margin: 0;
}
.self-taught span {
    color: #000000;
    font-weight: 500;
    font-size: 15px;
}
.visionary {
    color: #838485;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
}
.about-deatils-head {
    margin-top: 20px;
}
.about-detail-main {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    width: 100%;
}
.about-detail {
    color: #838485;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    max-width: 160px;
    width: 100%;
    margin-bottom: 0;
}
.about-detail-info {
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0;
}
.about-detail-info::before {
    content: ":";
    color: #838485;
    margin-right: 30px;
}
.creative {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 62px;
    padding-bottom: 20px;
}
.education {
    display: flex;
    position: relative;
    z-index: 1;
    margin-bottom: 38px;
}
.education::before {
    content: "";
    border-left: 2px solid #000000;
    position: absolute;
    top: 0;
    right: 11px;
    bottom: 0;
    z-index: -1;
}
.small_yellow_border {
    border: 2px solid #000000;
    border-radius: 100%;
    padding: 5px;
    background-color: #ffffff;
}
.small_yellow_circle {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #000000;
}
.small_yellow_border_main {
    padding-right: 20px;
}
.bachelor {
    color: #000000;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    margin: 0;
    padding-bottom: 10px;
    transition: all 0.3s;
}
.cursus {
    color: #838485;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    transition: all 0.3s;
    margin-bottom: 0;
}
.university {
    padding-bottom: 12px;
    font-size: 16px !important;
    margin-bottom: 0;
    color: #d1973b;
}
.box-outer {
    background-color: #1e1e1f;
    border: 1px solid #383838;
    border-radius: 20px;
    box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.25);
    padding: 1.875rem;
    position: relative;
}
.sticky-column {
    margin-top: 0;
    transition: all .3s ease-in-out;
}
.sidebar .avatar-box {
    background: linear-gradient(137.84deg, #3F3F40 2.69%, #303030 93.75%);
    border-radius: 32px;
    margin: 1.875rem 1.875rem 1.25rem;
    overflow: hidden;
    height: calc(100% - 3.75rem);
    width: calc(100% - 3.75rem);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.sidebar .avatar-box img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-width: 100%;
}
.sidebar__name {
    font-size: 1.625rem;
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
    color: #fff;
    line-height: 1.3;
}
.badge {
    background: #2f596e;
    font-size: 0.75rem;
    font-weight: 300;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}
.badge {
    display: inline-block;
    line-height: 1;
    color: #fff;
    text-align: center;
}
.separation {
    background: #383838;
    margin: 2rem 0;
    height: 1px;
    width: 100%;
}
.details-info {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.5rem;
}
.details-info__item {
    color: #fff;
    font-size: 0.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1.75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}
.icon-box {
    font-size: 1.125rem;
    line-height: 44px;
    margin-left: 1rem;
    text-align: center;
    height: 43px;
    width: 44px;
    position: relative;
    border-radius: 6px;
    z-index: 999;
    color: #e0a64b;
    background: linear-gradient(135deg, rgba(255, 218, 109, 0.25) 0%, rgba(255, 189, 94, 0) 59.86%), #202021;
}

.contacts-block__info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.overhead {
    color: #d6d6d6;
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
    opacity: .7;
}
.details-info__item a {
    color: #fcfcfc;
    -webkit-text-fill-color: inherit;
    text-decoration: none;
}
.separation {
    background: #383838;
    margin: 2rem 0;
    height: 1px;
    width: 100%;
}
.social {
    text-align: center;
}
.social__link {
    font-size: 1.125rem;
    color: #fcfcfc;
    -webkit-text-fill-color: inherit;
    opacity: .6;
    margin: 0 0.375rem;
}
.contact-form {
    position: relative;
    margin-bottom: 20px;
}

.contact-form form .form-group {
    position: relative;
    margin-bottom: 24px;
}

.contact-form form .form-group input, .contact-form form .form-group select {
    padding-right: 82px;
}

.contact-form form .form-group .field-label {
    position: absolute;
    right: 0px;
    top: 0;
    width: 58px;
    height: 53px;
    border-left: 1px solid #eeedf2;
    line-height: 25px;
    padding: 15px 0;
    text-align: center;
    z-index: 1;
}
form .row .form-group {
    margin-bottom: 30px;
}
form .form-group {
    position: relative;
    margin-bottom: 20px;
}
.contact-form form .form-group input {
    position: relative;
    display: block;
    width: 100%;
    color: #101010;
    line-height: 46px;
    padding: 13px 24px;
    height: 53px;
    font-size: 12px;
    font-weight: 400;
    background: #ffffff;
    margin: 0px;
    border-radius: 7px;
    border: 1px solid #eeedf2;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
    padding-right: 68px;
}
.title__separate {
    margin-bottom: 2.3125rem;
    position: relative;
    color: #fff;
    font-size: 15px;
}
.title__separate::before {
    content: '';
    background: #d1973b;
    border-radius: 0.5rem;
    height: 0.3125rem;
    position: absolute;
    bottom: -1.0625rem;
    right: 0;
    width: 2.5rem;
    z-index: 1;
}
.services-style2-grids .grid {
    margin-bottom: 24px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid #000;
}
.faq-catagerylistpictuuy {
    position: relative;
    display: block;
}

.eidtsidebar {
    position: sticky;
    top: 30px;
}

.eidtsidebar figure.avatar-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -120px;
}

.eidtsidebar .listpictuuy {
    background: #e9e3e32e;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid #c8c1c1;
    text-align: center;
}

.eidtsidebar figure.avatar-box img {
    border-radius: 50%;
    width: 195px;
    height: 195px;
}

.eidtsidebar .listpictuuy h3.title {
    color: #060303;
    font-size: 19px;
    font-weight: 700;
    line-height: 48px;
    padding-top: 95px;
    margin-bottom: 0;
}

ul.toxiopser {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
    margin-top: 24px;
}


ul.toxiopser li {
    margin-bottom: 20px;
}

ul.toxiopser li a {
    position: relative;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    color: #5b6778;
    padding-left: 25px;
    transition: all 0.3s ease-in-out;
}

ul.toxiopser li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background-image: url('../img/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}

.panel-body {
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
}

.account-info-wrapper {
    background-color: #f5f5f5;
    border-color: #ddd;
    padding: 15px 15px;
    position: relative;
    display: block;
    overflow: hidden;
}

.account-info-wrapper h4 {
    font-size: 14px;
    margin: 0;
    color: #2f596e;
    font-weight: 600;
    display: inline-block;
    font-family: 'Almarai';
}

.account-info-wrapper h5 {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    color: #d1973b;
    font-family: 'Almarai';
    float: left;
}

.panel-body form {
    padding: 15px;
}

.panel-body label.form-label {
    color: #474747;
    font-size: 14px;
    font-family: 'Almarai';
    margin-bottom: 10px;
}

.panel-body .form-control, .panel-body select {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #c2bfbf;
    font-size: 13px;
}
.billing-back-btn {
    display: flex;
    justify-content: space-between;
    margin-top: 26px;
    align-items: center;
}
 .billing-back-btn .billing-back a {
    color: #212121;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Almarai';
}
.billing-back-btn .billing-back a i {
    font-size: 15px;
    color: #ff7004;
}
.billing-back-btn .billing-btn button, .billing-btn.back a {
    background-color: #1b1912;
    border: medium none;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Almarai';
    line-height: 1;
    padding: 16px 35px 17px;
    cursor: pointer;
    transition: all .3s ease 0s;
    outline: 0;
    border-radius: 7px;
}

.panel-body form.off_form {
    padding: 3px;
}

.panel-body form.off_form .billing-back-btn {
    padding: 7px;
}
.common-card ,.large-12.columns {
    width: 100%;
    padding: 30px 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    background: #f7f7f7;
}
.card-header {
    padding: 0px;
    padding-bottom: 18px;
    margin-bottom: 25px;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8e8e8;
}
.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}
.card-header::before {
    position: absolute;
    content: "";
    bottom: -2px;
    right: 0px;
    width: 50px;
    height: 2px;
    background: #264757;
}
 .card-header .card-title {
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 26px;
}
.ad-details-author {
    text-align: center;
  }
  .ad-details-author .author-img {
    border-radius: 50%;
    border: 3px solid #0044bb;
    margin-bottom: 10px;
    position: relative;
    width: 105px;
    display: block;
    margin: 0 auto;
  }
  
  .ad-details-author .author-img img {
    width: 100px;
    border-radius: 50%;
    border: 3px solid #ffffff;
  }
  
  .ad-details-author .author-img::before {
    position: absolute;
    content: "";
    bottom: 0px;
    right: 15px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #aaaaaa;
    border: 2px solid var(--white);
  }
  
  .ad-details-author .author-img.active::before {
    background: #11b76b;
  }
  
  .ad-details-author .author-meta {
    margin-bottom: 20px;
    margin-top: 13px;
  }
  
  .ad-details-author .author-meta h4 a {
    color: #232d3b;
    text-transform: capitalize;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
    font-size: 18px;
  }
  .ad-details-author .author-meta h4 a:hover {
    color: #999;
  }
  
.ad-details-author .author-meta h5 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #777777;
    margin-bottom: 10px;
}
  
.ad-details-author .author-meta p {
    font-size: 15px;
    line-height: 22px;
}
  
.ad-details-author .author-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
  
.ad-details-author .author-widget a,
.ad-details-author .author-widget button {
    width: 38px;
    height: 38px;
    padding: 8px;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin: 0px 10px;
    color: #777777;
    background: #f5f5f5;
    border-radius: 50%;
    border: 1px solid #e8e8e8;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}
.ad-details-author .author-widget a:hover,
.ad-details-author .author-widget button:hover {
    color: #ffffff;
    background: #0044bb;
    border-color: #0044bb;
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}
.ad-details-author .author-list li {
    padding: 8px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
}
.ad-details-author .author-list li:last-child {
    border-bottom: 1px solid #e8e8e8;
}
.ad-details-author .author-list li h6,
.ad-details-author .author-list li p {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

  

ul.author-list {
    padding: 0;
}

.addpast {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.addpast img {
    display: block;
    overflow: hidden;
    width: 100%;
    border-radius: 6px;
}
.ad-details-breadcrumb {
    margin-bottom: 18px;
}
.breadcrumb {
    align-items: center;
    background: none;
    padding: 0px;
    margin: 0px;
}
.breadcrumb li {
    text-transform: capitalize;
}
.ad-details-breadcrumb .flat-badge {
    font-size: 14px;
    padding: 3px 10px;
    margin-left: 12px;
}
.flat-badge {
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}
.sale {
    background: #dc3545;
}
.ad-details-breadcrumb .breadcrumb-item a {
    color: #555555;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);

}
.ad-details-breadcrumb .breadcrumb-item {
    color: #555555 !important;
}
.ad-details-breadcrumb .breadcrumb-item+.breadcrumb-item::before{
    color: #555555 !important;
}
.ad-details-breadcrumb {
    margin-bottom: 18px;
}
.ad-details-address {
    font-weight: 500;
    margin-bottom: 8px;
    color: #555555;
    position: relative;
    font-size: 18px;
    line-height: 26px;
}
.ad-details-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #232d3b;
}
.ad-details-meta {
    margin-bottom: 30px;
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.ad-details-meta a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ad-details-meta a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    margin-left: 8px;
    color: #ffffff;
}
.ad-details-meta .view i {
    background: #8edb04;
}
.ad-details-meta a span {
    color: #555555;
}
.ad-details-meta .click i {
    background: #01cbd5;
}
.ad-details-meta .rating i {
    background: #e8ce00;
}

.ad-details-slider-group {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    height: 335px;
    margin-bottom: 26px;
}

.ad-details-slider-group img {
    width: 100%;
    border-radius: 10px;
    display: block;
    overflow: hidden;
    height: 100%;
}

.ad-thumb-slider {
    display: block;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.imgmuyyy {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    height: 200px;
}

.imgmuyyy img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-details-action {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.ad-details-action p {
    font-size: 14px;
    line-height: 26px;
    font-family: 'Almarai', sans-serif;
}
.ad-details-action ul li {
    margin-bottom: 17px;
    padding-right: 25px;
    position: relative;
    display: inline-block;
    margin-left: 61px;
  }
  
  .ad-details-action ul li::before {
    position: absolute;
    content: "\f192";
    top: 0px;
    right: 0px;
    font-size: 15px;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #0044bb;
  }

ul {
    padding: 0;
}
.card .card-body {
    padding: 20px;
    background: #ebdede42;
}
.profile-name img {
    margin-left: 20px;
    border-radius: 100px;
    max-width: 60px;
    display: block;
  }
  .profile-name p {
    margin-bottom: 0px;
    font-size: 14px;
  }
  .profile-reg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgb(158 158 170 / 78%);
  }
  .profile-reg p {
    margin: 0px;
    color: #AEAED5;
    font-size: 14px;
  }
  .profile-reg .registered {
    width: 50%;
  }
  .profile-reg .rank {
    width: 50%;
  }
  .profile-reg .reg_divider {
    position: absolute;
    width: 2px;
    height: 50px;
    background: #d1d1dd;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
  }
  .profile-wallet-nav {
    padding: 15px 0px;
  }
  .profile-wallet-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 0px;
  }
  .profile-wallet-nav ul li a {
    display: block;
    padding: 15px 0px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #3983a7;
  }
  .profile-wallet-nav ul li a .icons {
    height: 40px;
    width: 40px;
    border-radius: 100px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    margin-left: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #d1973b;
    position: relative;
    top: 5px;
  }
  .profile-wallet-nav ul li a .icons i {
    line-height: 0;
  }
  .profile-wallet-nav ul li a .fa-angle-left {
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #264757;
    top: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .profile-wallet-nav ul li a:hover, .profile-wallet-nav ul li a:focus, .profile-wallet-nav ul li a.active {
    color: #000000;
  }
  .profile-wallet-nav ul li a:hover .fa-angle-left, .profile-wallet-nav ul li a:focus .fa-angle-left, .profile-wallet-nav ul li a.active .fa-angle-left {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    color: #d1973b;
  }    

.profile-name {
    position: relative;
    display: block;
}

.profile-name h4 {
    font-size: 16px;
}

.profile-reg h5 {
    font-size: 16px;
}

.panel-body .choices__inner input {
    height: auto;
    border: 0;
}

.panel-body textarea {
    border-radius: 5px;
    font-size: 13px;
}

.panel-body .form-check-input {float: right;}

.panel-body 
 label.form-check-label {
    font-size: 13px;
}

.billing-back label.form-check-label {
    margin-right: 22px;
    color: #333;
    font-weight: 800;
}

.billing-back input#flexCheckDefault {
    border-width: 2px;
}
.tc-services-st4 {
    position: relative;
    padding: 80px 0;
    background-image: url(../img/ser_bg.png);
    background-size: cover;
    background-position: center;
  }

.tc-services-st4 h2 {
    text-align: center;
    margin-bottom: 29px;
    font-size: 27px;
}
.tc-services-st4 .service-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 10px;
  margin-top: 30px;
  background-color: #FF986F;
  -webkit-box-shadow: 0px 44px 44px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 44px 44px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.tc-services-st4 .service-card .cont {
  position: relative;
  z-index: 20;
}
.tc-services-st4 .service-card .icon {
  height: 75px;
  margin-bottom: 26px;
}
.tc-services-st4 .service-card .wh-cir {
  position: absolute;
  left: -230px;
  top: -300px;
  width: calc(100% + 400px);
  height: calc(100% + 270px);
  border-radius: 50%;
  background-color: #fff;
}
.tc-services-st4 .service-card .float-cir {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  bottom: 30px;
  right: 50px;
  background-image: linear-gradient(124deg, #FF5F6D 22.75%, #FFC371 72.61%);
}
.tc-services-st4 .row .col-lg-3:nth-of-type(2) .service-card {
  background-color: #99D232;
}
.tc-services-st4 .row .col-lg-3:nth-of-type(2) .service-card .float-cir {
  background-image: linear-gradient(126deg, #08B259 22.58%, #F3E51A 73.54%);
}
.tc-services-st4 .row .col-lg-3:nth-of-type(3) .service-card {
  background-color: #8ACAFE;
}
.tc-services-st4 .row .col-lg-3:nth-of-type(3) .service-card .float-cir {
  background-image: linear-gradient(125deg, #7E8FFF 22.32%, #92EFFD 72.69%);
}
.tc-services-st4 .row .col-lg-3:nth-of-type(4) .service-card {
  background-color: #865DBB;
}
.tc-services-st4 .row .col-lg-3:nth-of-type(4) .service-card .float-cir {
  background-image: linear-gradient(124deg, #392D69 22.75%, #B57BEE 72.61%);
}
.tc-services-st4 .line {
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100%;
    z-index: -1;
}

.tc-services-st4 .service-card .cont h6 {
    margin-bottom: 43px;
}

.tc-services-st4 .service-card .cont h6 a {
    color: #000;
}

.panel-body 
 textarea.form-control.podrr {
    height: 160px;
}
.error{
    color: red;
}

.iconpoot {
    position: absolute;
    font-size: 21px;
    margin-top: 13px;
    right: 27px;
    background: #000;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    line-height: 40px;
}
.intl-tel-input {
    width: 100%;
}
.form-label {
    margin-bottom: 10px;
}

.billing-btn.back a i {
    margin-left: 14px;
}

p.display-4.mb-4.connnnsk {
    font-size: 19px;
}

.form-floating>label {
    left: auto;
}

.plootext {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid transparent;
    box-shadow: 0 15px 30px -3px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
 .plootext .pano td {
    padding: 13px 9px;
    vertical-align: top;
    border-bottom: 1px solid rgba(41, 47, 57, 0.05);
    font-size: 14px;
}

.plootext .pano td i {
    padding-left: 9px;
    color: #d1973b;
}

.plootext .pano td span {
    color: #8d8a8c;
}

.tabletext {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 10px;
}

.tabletext h4 {
    font-size: 19px;
    font-weight: 600;
    margin-top: 11px;
    margin-bottom: 11px;
}

.tabletext p {
    font-size: 13px;
}

.tabletext thead.thead-dark {
    background: #000;
}

.tabletext thead.thead-dark tr {
    color: #fff;
    font-size: 13px;
}

.tabletext tr  {
    font-size: 12px;
}

.tabletext tr a button {
    font-size: 12px;
    color: antiquewhite;
}
.tabletext tr:last-child th ,.tabletext tr:last-child td {
    border-bottom: none;
}

.madeoper {
    text-align: center;
    margin-bottom: 17px;
}

section.requests.clear-div table th {
    font-size: 13px;
}

a.btn.btn-primary.nav-link.py-2.px-4.me-2.flex-shrink-0 {
    padding-left: 5px !important;
    padding-right: 10px !important;
}

.herassw .btn {
    font-size: 14px;
    padding: 10px 6px !important;
    margin-left: 5px;
    margin-right: 0 !important;
}

.herassw a.btn.btn-outline-dark.opstre {
    margin-left: 0;
}
ul#videotabs {
    margin: 0;
    list-style: none;
    width: 100%;
    border: 0;
    margin-bottom: 0 !important;
}

ul#videotabs li {
    border: 1px solid #c0b8b8;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 100%;
    text-align: right;
}

ul#videotabs li a.active , ul#videotabs li a.show {
    border-radius: 0;
    background: 0;
    border: 0;
}

ul#videotabs li a {
    width: 100%;
    color: #6c6c6c;
    font-size: 13px;
    cursor: pointer;
}

ul#videotabs li a i {
    width: 40px;
    height: 40px;
    border-left: 1px solid #c0b8b8;
    font-size: 16px;
    line-height: 40px;
    margin-left: 15px;
}


.card-header .card-title i {
    margin-left: 10px;
    color: #d1973b;
    font-size: 21px;
}
.large-12.columns .description p {
    font-size: 13px;
    margin-bottom: 30px;
    color: #6c6c6c;
}
.large-12.columns .description .profile-margin {
    margin-bottom: 10px;
 }
.large-12.columns .description .profile-margin:last-of-type {
    margin-bottom: 50px; 
}
.large-12.columns .description button {
    padding: 0 10px;
    height: 30px;
    border: 1px solid #ececec;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    background: #264757;
    width: 138px;
    text-align: right;
}
.large-12.columns .description button i {
    display: inline-block;
    margin-left: 10px;
}
.large-12.columns .description .inner-btn {
    background: #f6f6f6;
    font-size: 13px;
    color: #6c6c6c;
    padding: 0 10px;
    height: 30px;
    text-transform: capitalize;
    display: inline-block;
    line-height: 30px;
    border-radius: 4px; 
}
.large-12.columns .description .inner-btn:hover {
    background: #e96969;
    color: #fff; 
}
.video-img {
    width: 160px;
    height: 140px;
    padding: 10px;
    border-left: 1px solid #c2baba;
    overflow: hidden;
    float: right;
}

.profile-video {position: relative;display: block;overflow: hidden;border: 1px solid #c2baba;margin-bottom: 20px;}

.video-img a img {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.video-img a {
    position: relative;
}

.video-img a span.viedicon {
    position: absolute;
    display: block;
    top: 42px;
    right: 52px;
    left: 25px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    width: 50px;
    line-height: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
}

.media-object-section.media-video-content {
    float: left;
    width: calc(100% - 166px);
}
.video-content {
    width: 100%;
    border-bottom: 1px solid #ececec;
    padding-right: 11px;
}
 .video-content h5 {
    margin: 15px 0;
    line-height: 16px;
    font-size: 15px;
}
.video-content p {
    font-size: 13px;
    margin-bottom: 14px;
    color: #6c6c6c !important;
}
.video-detail {
    padding-top: 3px;
}
 .video-detail .video-stats {padding-top: 10px;}
.video-detail .video-stats span {
    font-size: 14px;
    color: #aaaaaa;
    display: inline-block;
    margin-left: 15px;
}
 .video-detail .video-stats span i {
    font-size: 14px;
    display: inline-block;
    color: #6c6c6c;
    margin-left: 5px; 
}
.video-detail .video-stats span:first-of-type i {
    color: #61ca37;
}
.video-btns {
    text-align: left;
    padding-top: 10px;
}
 .video-btns a.video-btn {
    display: inline-block;
    border: 1px solid #ececec;
    background: #f6f6f6;
    color: #6c6c6c;
    height: 30px;
    line-height: 27px;
    font-size: 13px;
    padding: 0 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    margin-left: 10px; 
}
.video-btns a.video-btn i {
    display: inline-block;
    margin-left: 8px;
    font-size: inherit;
    color: #e96969;
    
}
.video-btns a.video-btn:hover {
    background: #e96969;
    border-color: #e96969;
    color: #fff; 
}
.video-btns a.video-btn:hover i {
    color: #fff; 
}
.video-btns button[type="submit"] {
    height: 30px;
    border: 1px solid #ececec;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    background: #f6f6f6;
    color: #6c6c6c;
    font-size: 13px;
    text-transform: capitalize;
    line-height: 30px;
    padding: 0 10px; 
}
.video-btns button[type="submit"] i {
    display: inline-block;
    margin-left: 9px;
    color: inherit;
    font-size: inherit;
}
.video-btns button[type="submit"]:hover {
    background: #e96969;
    border-color: #e96969;
    color: #fff; 
}
.video-btns button[type="submit"]:hover i {
    color: #fff; 
}

ul#videotabs .nav-link.active, ul#videotabs .nav-item.show .nav-link {
    background: #264757;
    color: #fff;
}
.follower {
  margin-bottom: 20px;
  }
.follower .follower-img {
    height: 100px;
    display: block;
}
.follower .follower-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}
.follower span {
    display: block;
    border: 1px solid #ececec;
    text-align: center;
    height: 30px;
    line-height: 29px;
    color: #6c6c6c;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 13px; 
}
.follower button {
    height: 30px;
    border: 1px solid #ececec;
    font-weight: 600;
    color: #fff;
    background: #d1973b;
    text-transform: capitalize;
    text-align: center;
    line-height: 30px;
    width: 100%;
    font-size: 12px;
    border-radius: 4px;
}
.follower button:hover {
    background: #e96969;
    color: #fff;
}
.comment-form p input , .comment-form p textarea {
	border: none;
	height: 50px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	background-color: #e8f1f3;
	border-radius: 3px;
	border: none;
	border-bottom: 1px solid rgba(61, 104, 137, 0.2);
	color: #3d6889;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
}
 .comment-form p textarea {
        height: auto;
 }
 .comment-respond button {
	font-size: 14px;
	font-weight: 400;
	padding: 17px 20px;
	margin-bottom: 4px;
	line-height: 1;
	display: inline-block;
	min-width: 8.5em;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	color: #ffffff;
	border: 1px solid #292a2e;
	background-color: #292a2e;
	border-radius: 3px;
	position: relative;
	-webkit-transition: all 0.4s linear 0s;
	transition: all 0.4s linear 0s;
}
.comments-area li {
	list-style: none;
	padding-top: 7px;
}

.comments-area .media {
	position: relative;
}

.comments-area .media-left {
	padding-right: 0;
}

.comments-area .media-left img {
	max-width: 70px;
	border-radius: 50%;
}

.comments-area .media-object {
	max-width: 70px;
}

.comments-area .media-body {
	padding: 15px 0 26px 20px;
}

.comment-list {
	margin: 0;
	padding: 0;
	position: relative;
}

.comment-list ol {
	padding-left: 15px;
}
.comment-body.media .media-body, .comment-body.media .media-left, .comment-body.media .media-right {
    display: table-cell;
    vertical-align: top;
}
.media .media-object {
	max-width: 100px;
	display: block;
}
.reply a.theme_button {
	position: absolute;
	left: 0;
	top: 5px;
	padding: 12px 7px;
	color: #264757;
	font-size: 0;
	text-align: center;
	opacity: 0.4;
	background-color: transparent;
	border: 1px solid #88adb9;
}

.reply a.theme_button:hover {
	opacity: 1;
}

.reply a.theme_button i {
	top: 0;
	font-size: 24px;
	line-height: 1;
}
.comment-meta {
	line-height: 1;
	margin-bottom: 0;
	padding-bottom: 32px;
	padding-right: 31px;
}

.comment-meta .comment-metadata {
	display: block;
	margin: 7px 0 10px;
}

.comment-meta .comment-date {
	display: block;
	margin-top: 2px;
	margin-bottom: 19px;
}

.comment-meta .author_url {
	font-family: 'Almarai';
	font-weight: 700;
	font-size: 20px;
	color: #264757;
}
.small-text {
	font-size: 12px;
	line-height: 1.3em;
	font-weight: 700;
	color: #85939e;
	font-weight: 500;
}
.comment-list ol {
    padding-left: 90px;
}


.comment-meta p {
    font-size: 15px;
    line-height: 21px;
}
.dz-team.style-1 {
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding-top: 22px;
    margin-bottom: 22px;
    overflow: hidden;
}
.dz-team.style-1 .dz-media {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    width: 180px;
    height: 180px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 70%;
}
.dz-media, .dz-post-media {
    position: relative;
    overflow: hidden;
}
.dz-team.style-1 .dz-media img {
    object-fit: cover;
    border-radius: 70%;
    padding: 13px;
}
.dz-team .dz-media img {
    width: 100%;
}
.dz-media img, .dz-post-media img {
    width: 100%;
    height: 100%;
}
.dz-team.style-1 .dz-media:after {
    content: "";
    height: 100%;
    width: 100%;
    border: 2px dashed #1379b7;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
}
.dz-team.style-1:hover .dz-media:after {
    animation: dzTeam1 1s linear infinite;
}
.dz-team .dz-content {
    transition: all 0.5s;
    position: relative;
    text-align: center;
    padding: 19px;
    padding-top: 10px;
}
.dz-team.style-1 .dz-content .dz-name {
    margin-bottom: 5px;
    position: relative;
    display: block;
}
.dz-team .dz-name a {
    transition: all 0.5s;
    color: #222222;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
}
.dz-team.style-1 .dz-content .dz-position {
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s;
    color: #1379b7;
    display: block;
}
.dz-social-icon.icon-gap-5 ul {
    margin-left: -5px;
    margin-right: -5px;
}
.dz-social-icon.icon-gap-5 ul li {
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
}
.btn-social {
  font-size: 18px;
  color: #fff;
  height: 40px;
  width: 40px;
  min-width: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.5s;
  display: block;
  padding: 0;
  border-color: #264757;
  background-color: #264757;
}

.dz-team.style-1 .Hire-Me-side-menu {
    margin-top: 10px;
}

.dz-team.style-1 .Hire-Me-side-menu a {
    background: #000000;
    color: #ffffff;
}
 .pagination.style-1.text-center {
    justify-content: center; }
 .pagination.style-1 li {
    margin: 0 8px; }
.pagination.style-1 li .page-numbers,
.pagination.style-1 li .page-link {
      height: 40px;
      min-width: 40px;
      line-height: 40px;
      border-radius: 8px;
      color: #222222;
      text-align: center;
      border: 0;
      padding: 0;
      transition: all 0.5s;
      font-size: 18px;
      padding: 0 10px;
      display: block;
      background-color: #fff;
      box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}
.pagination.style-1 li .page-numbers span,
.pagination.style-1 li .page-link span {
    display: inline-block; 
}
.pagination.style-1 li .page-numbers.current, .pagination.style-1 li .page-numbers.active, .pagination.style-1 li .page-numbers:hover, .pagination.style-1 li .page-link.current, .pagination.style-1 li .page-link.active, .pagination.style-1 li .page-link:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    box-shadow: 0px 5px 12px rgb(38 71 87 / 28%);
    color: #fff;
}
.pagination.style-1 li .page-numbers:last-child, .pagination.style-1 li .page-link:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.pagination.style-1 li .page-numbers:first-child, .pagination.style-1 li .page-link:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.flitersearch {
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.textflexpo {
    justify-content: space-between;
    display: flex;
    font-size: 14px;
    line-height: 20px;
    color: #4b5563;
    margin-top: 5px;
}
h3.lunghtext {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #111827;
}

.relative.inputsearch {
    position: relative;
    display: block;
}

.relative.inputsearch input {
    padding: 8px 40px 8px 16px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Almarai', sans-serif;
}

.relative.inputsearch i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.flitersearch.category {
    margin-top: 24px;
}

.flitersearch.category .form-check {
    padding-left: 0;
    cursor: pointer;
    margin-bottom: 12px;
}

.flitersearch.category .form-check input.inputform {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.flitersearch.category .form-check label {
    color: #4b5563;
    font-size: 16px;
    margin-right: 7px;
    position: relative;
    top: -5px;
}

.flitersearch.category .form-check  span.texyellow {
    color: rgb(245 200 25);
}

.flitersearch.category .form-check span {
    font-size: 16px;
    position: relative;
    margin-right: 7px;
    top: -5px;
    color: #4b5563;
}

.flitersearch.category .form-check  span.texyellow span.texgray {
    top: 0;
    color: rgb(154 161 172);
}

.flitersearch.category .form-check:last-child {
    margin-bottom: 0;
}

.course-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 19px;
}

.course-card img {
    height: 189px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    display: block;
}

.conevtext {
    padding: 15px;
    position: relative;
    display: block;
}

h4.titleblog {
    font-size: 19px;
    line-height: 28px;
    color: #111827;
    min-height: 56px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

p.psecngb {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
    color: #4b5563;
}

.contentsmall {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
    color: #4b5563;
}

.contentsmall span.texyellow {
    color: rgb(245 200 25);
    margin-left: 4px;
}

.contentsmall i {
    margin-left: 4px;
}

.flexyoung {
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    justify-content: space-between;
    display: flex;
    color: #4b5563;
    margin-bottom: 16px;
}

.flexyoung p {
    color: #2563eb;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 700;
}

span.semiboldbg {
    font-size: 12px;
    line-height: 19px;
    padding: 4px 12px;
    background-color: rgb(197 218 246);
    border-radius: 999px;
    display: block;
    overflow: hidden;
    color: rgb(29 64 176);
}

.titlecall {
    margin-bottom: 48px;
}

.titlecall h1 {
    color: #000;
    font-size: 48px;
    font-weight: 900;
    border-bottom: 0px !important;
    margin: 0px !important;
}

.text-center.titlecall p {
    color: #4b5563;
    max-width: 672px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
}

.sectionpattern {position: relative;display: block;margin-top: 88px;text-align: center;margin-bottom: 88px;background: #fff;background-image: radial-gradient(circle at 1px 1px, #d1d5db 1px, transparent 1px);background-size: 2rem 2rem;border-radius: 16px;border: 1px solid #e5e7eb;padding: 49px;overflow: hidden;}

.sectionpattern h2.textpri {
    font-size: 30px;
    line-height: 36px;
    font-weight: 900;
    color: #111827;
}

.sectionpattern p.textuto {
    max-width: 576px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    color: #4b5563;
    font-size: 16px;
}

.sectionpattern a.shadowcontentg {
    background-color: #2563eb;
    border-radius: 9999px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 18px;
    line-height: 28px;
    margin-top: 32px;
    display: inline-block;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
            0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

a.shadowcontentg:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    background-color: #1d4ed8;
}

.sectionpattern a.shadowcontentg i {
    margin-left: 8px;
}

.footer {background-color: rgba(31, 41, 55, 1);padding-bottom: 0 !important;}

.footer-item {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
}

.footer-item img {
    height: 48px;
    margin-bottom: 16px;
    max-width: 100%;
}

.footer-item p {
    font-size: 14px;
    line-height: 20px;
    color: rgba(156, 163, 175, 1);
}

.footer-item a.verpouu {
    display: block;
    position: relative;
    width: 100%;
    color: rgba(156, 163, 175, 1);
    margin-top: 12px;
}
:root {
    --accent-primary: #2563eb;        
    --accent-primary-hover: #1e40af;  
}
.subscribe-container {
    display: flex;
}

.subscribe-container input[type="email"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #4b5563; 
    background-color: #374151; 
    color: white;
    border-radius: 0 6px 6px 0;
    outline: none;
}

.subscribe-container input[type="email"]:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px var(--accent-primary);
}

.subscribe-container button {
    background-color: var(--accent-primary);
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 6px 0 0 6px;
    transition: background-color 0.3s ease;
}

.subscribe-container button:hover {
    background-color: var(--accent-primary-hover);
}

.footer-btn {
    position: relative;
    display: block;
    width: 120px;
    margin-top: 16px;
}

.footer-btn a.socialmedica {
    color: rgba(156, 163, 175, 1);
    font-size: 22px;
    margin-right: 13px;
    margin-bottom: 14px;
    display: inline-block;
}

.copyright {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 47px !important;
}

.copyright a.border-top {
    position: relative;
    display: block;
    width: 100%;
    border-top: 1px solid #e8e8e847 !important;
    padding-top: 22px;
}

.freverse {
    position: relative;
    display: block;
    overflow: hidden;
}
  @keyframes scroll-left-to-right {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.freverse a {
    font-size: 14px;
    line-height: 20px;
    margin-left: 16px;
    color: rgba(107, 114, 128, 1);
}

.freverse a:last-child {
    margin-left: 0;
}

span.spantext {
    font-size: 14px;
    color: #787878 !important;
}

.news-banner {
    background-color: #284d68;
    padding: 0.25rem 0;
    overflow: hidden;
    align-items: center;
}

.news-label {
    background-color: #c79944;
    padding: 0.4rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 2;
    position: relative;
    color: #fff;
}

.news-ticker {
    overflow: hidden;
    width: -webkit-fill-available;
}
.news-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 60s linear infinite;
        animation: scroll-left-to-right 60s linear infinite;

}
.news-content span {
    padding: 0 2rem;
    font-size: 0.85rem;
    color: #fff;
}

a.navbar-brand img {
    height: 76px;
}

.headernav.mx-lg-auto {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 84px;
}

.headernav a {
    color: #111827;
    font-weight: 700;
    margin: 0px 21px 0px 0px;
}

.headernav a.hnav.active {
    color: #2563eb;
}

.container.maintoo.mb-5 {
    margin-top: 159px;
}

.headernav a:first-child {
    margin: 0;
}

.spacereverse {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 81px;
    float: left;
	
}

a.open-signin-modal ,a.open-signup-modal {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    color: #1a202c;
    font-weight: 700;
    font-size: 16px;
}

a.open-signup-modal {
    background-color: #284d68;
    border-radius: 9999px;
    color: #fff;
}

button.cartshoping {
    border: 0;
    background: 0;
    margin-right: 9px;
    font-size: 18px;
    line-height: 40px;
    position: relative;
    background-color: #f9fafb;
    border-radius: 9999px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #1a202c;
    display: inline-block;
}

button.cartshoping span.tobshop {
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    background-color: rgb(239 68 68);
    border-radius: 9999px;
    width: 16px;
    height: 16px;
    right: -4px;
    top: -4px;
    position: absolute;
}

a.open-signin-modal {
    margin-right: 0;
    padding-right: 0;
}

.mainheader {
    position: relative;
    display: block;
    padding-bottom: 3px;
}
.sticky-header {
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 var(--shadow-color);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
 .section-pattern {
    background-image: radial-gradient(circle at 1px 1px, #e2e8f0 1px, transparent 0);
    background-size: 2rem 2rem;
}
.course-card {
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color-hover);
    border-color: var(--accent-blue);
}

.headercarousel {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: rgb(17 24 39);
 }

h1.mdtexto {
    font-size: 63px;
    line-height: 1.375;
    color: #fff;
    font-weight: 900;
}

span.spanyy {
    background: linear-gradient(90deg, #c79944, #284d68);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contenttexr p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: rgb(229 231 235);
    margin-bottom: 2rem;
    text-align: right;
}

.buttonunder {
    position: relative;
}

.buttonunder a {
    background-color: #284d68;
    border-radius: 9999px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(255 255 255);
    font-weight: 900;
}

section#services, section#about, section#experts, section#testimonials,section#partnerships {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f9fafb;
}

.textcebnll.text-center {
    margin-bottom: 4rem;
    position: relative;
}

.textcebnll.text-center h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #1a202c;
    font-weight: 900;
}
.gradient-text {
    background: linear-gradient(90deg, #c79944, #284d68);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.textcebnll.text-center p {
    max-width: 42rem;
    margin-top: 1rem;
    color: #4a5568;
    margin-left: auto;
    margin-right: auto;
}

.mnnnseheh20 {
    margin-bottom: 5rem;
}

h3.textxl.mb-10 ,h3.extrimary.mb-10 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #1a202c;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.acceprimar.mb-4, .bg-card ,.couopp {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 32px;
    text-align: center;
    box-shadow: 0 0 0 0 #0000, 0 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.iconcebnt {
    color: #284d68;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.acceprimar.mb-4 h4, .bg-card h3,.couopp h4 {
    font-size: 18px;
    line-height: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1a202c;
}

.acceprimar.mb-4 p, .bg-card p,.couopp p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.25rem;
    text-align: center;
}

.twosex {
    position: relative;
}

.bg-card:hover ,.couopp:hover {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.iconbyss {
    color: #284d68;
    font-size: 2.25rem;
    background-color: rgb(219 234 254);
    border-radius: 0.75rem;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

section#courses {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #fff;
}

section#courses .buttonunder {
    margin-top: 3rem;
    text-align: center;
}

section#courses .buttonunder a i {
    margin-right: 0.5rem;
}

section#about ,section#testimonials {
    background-color: #fff;
}

img.rouauto.object-cover {
    object-fit: cover;
    border-radius: 1rem 16px;
    width: 100%;
}

.oterre {
    position: relative;
    display: block;
}

.oterre h3 {
    color: #c79944;
    font-weight: 700;
    font-size: 16px;
}

.oterre h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #1a202c;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.oterre p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

ul.spacey4.mb-8 {
    margin-bottom: 2rem;
}

ul.spacey4.mb-8 li {
    position: relative;
    display: block;
    margin-top: calc(1rem * calc(1 - 0));
    margin-bottom: calc(1rem * 0);
}

ul.spacey4.mb-8 li i {
    color: #c79944;
    font-weight: 700;
    margin-left: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

ul.spacey4.mb-8 li span {
    color: #1a202c;
    font-weight: 700;
}

a.bgbbbb {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 #0000, 0 0 0 #0000, 0 10px 15px -3px rgb(245 158 11 / 20%), 0 4px 6px -4px rgb(245 158 11 / 20%);
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #c79944;
    border-radius: 9999px;
    color: #fff;
}

.iconsection {
    border-radius: 9999px;
    width: 5rem;
    height: 5rem;
    background-color: rgb(204 251 241);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    line-height: 5rem;
    font-size: 2.25rem;
    color: rgb(13 148 136);
}

.ustifcenter {
    position: relative;
}

.ustifcenter span {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
    border-radius: 9999px;
    font-weight: 700;
}

.ustifcenter span.roundfull {
    background-color: rgb(243 232 255);
    color: rgb(107 33 168);
}

.ustifcenter span.undedfull {
    color: rgb(154 52 18);
    background-color: rgb(255 237 213);
    margin-right: 8px;
}

.buttonunder.text-center.mk {
    margin-top: 73px;
}

.text-center.textsecond {
    border-radius: 1rem;
    border: 1px dashed #e2e8f0;
    padding: 2rem;
    background-color: #ffffff;
    color: #4a5568;
}

.text-center.textsecond i {
    margin-bottom: 1rem;
    font-size: 3em;
}

p.telg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0;
}

p.texsm {
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.testimonial-item.text-center {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 4px 15px rgb(40 77 104 / 10%);
    height: 140px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: transform 0.4s ease, opacity 0.4s ease;
}


.testimonial-item.text-center img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    width: 107px;
}

.imgsucess {
    padding-top: 6rem;
}

/* ============================================= */
/* == Professional Membership Status Card     == */
/* ============================================= */

.membership-status-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.status-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-image: linear-gradient(45deg, var(--accent-gold, #c29d5b), #ffeb3b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(233, 175, 50, 0.3);
}

.status-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark, #333);
    margin-bottom: 0.75rem;
}

.status-text {
    color: var(--text-muted, #6c757d);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.status-date {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue, #2c3e50);
}

.btn-primary-outline-custom {
    background-color: transparent;
    border: 2px solid var(--primary-blue, #2c3e50);
    color: var(--primary-blue, #2c3e50);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary-outline-custom:hover {
    background-color: var(--primary-blue, #2c3e50);
    color: #fff;
}

/* --- Mobile Optimizations --- */
@media (max-width: 767.98px) {
    .membership-status-card {
        padding: 2rem 1.5rem;
    }
    .status-title {
        font-size: 1.5rem;
    }
    .status-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}