/* techlab */
[dir="rtl"] body{
    direction: rtl;
    font-family: "Cairo", serif;
}
[dir="rtl"] .navbar-wrap>ul>li.menu-item-has-children>a::after{
    left: -2px;
    right: inherit;
}
[dir="rtl"] .navbar-wrap ul li .sub-menu li{
    text-align: right;
}
.section-padding{
    padding: 40px 0;
}
.specialty_single{
    position: relative;
    display: block;
    transition: all 500ms ease;
    margin-bottom: 20px;
    transform: scale(0.89);
}
.specialty_single .specialty_img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    z-index: 1;
    transition: all 500ms ease;
    height: 300px;
    border: 2px solid transparent;
}
.specialty_single .specialty_img:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.specialty_single .specialty_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: .9s ease;
}
.specialty_single .specialty_content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50% , -50%);
    z-index: 1;
}
.specialty_single .specialty_content h4{
    font-size: 25px;
    font-weight: 700;
    line-height: 35px;
    margin: 0;
    color: var(--thm-white);
}
.specialty_single:hover{
    transform: scale(1);
}
.specialty_single:hover .specialty_img {
    border: 2px solid var(--thm-secondary-color);
}
.specialty_single:hover .specialty_img img{
    transform: scale(1.2);
}
.about-area{
    position: relative;
    padding: 40px 0;
}
.about-area::before{
    content: '';
    position: absolute;
    top: 0;
    height: 55%;
    background: var(--thm-primary-color);
    width: 100%;
}
.about_content{
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.about_content h4{
font-size: 34px;
margin-bottom: 10px;
font-weight: 700;
line-height: 50px;
color:var(--thm-white);
}
.about_content p{
    font-size: 22px;
    font-weight: 600;
    line-height: 43px;
color:var(--thm-white);
}
.fact-area{
    padding: 50px 70px;
    border-radius: 40px;
    background: var(--thm-primary-color);
}
.fact-counter{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.fact_single {
    text-align: center;
    width: 25%;
    position: relative;
}
.fact_single::after{
    content: '';
    position: absolute;
    right: 0;
    width: 2px;
    height: 80%;
    background: var(--thm-white);
    top: 50%;
    transform: translate(-50%, -50%);
}
[dir="rtl"] .fact_single::after{
  left: 0;
  right: inherit;
}
.fact_single:last-child:after{
   display: none;
}
.fact_single h4{
font-size: 50px;
font-weight: 400;
color: var(--thm-white);
font-family: "Allerta Stencil", serif !important;
line-height: 80px;
}
.fact_single p{
    margin: 0;
    color: var(--thm-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
}
.course_single{
    cursor: pointer;
    padding: 10px 10px 20px;
    position: relative;
    transition: all .4s ease-in-out;
}
.course_single::before{
    content: '';
    position: absolute;
    top: 60px;
    width: 100%;
    border-radius: 20px;
    background: var(--thm-white);
    box-shadow: 0px 4.02px 25.1px 0px rgba(0, 0, 0, 0.12);
    transition: all .2s ease-in-out;
    z-index: -1;
    border: 2px solid transparent;
    left: 0;
    right: 0;
    bottom: 0;
}
.course_single .course_img{
  height: 300px;
  width: 100%;
  transition: all .4s ease-in-out;
  margin-bottom: 10px;
}
.course_single .course_img img{
    height: 100%;
    width: 100%;
    transition: all .4s ease-in-out;
    object-fit: cover;
}
.course_single .course_content h3{
   color: var(--thm-black);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height:35px;  
}
.course_single .course_content p{
font-size: 16px;
font-weight: 600;
line-height: 29.98px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
transition: all .4s ease-in-out;
}
.course_single .course_content .link-more{
    color: var(--thm-secondary-color);
font-size: 15.26px;
font-weight: 700;
padding: 10px 0 0;
transition: all .4s ease-in-out;
display: none;
line-height: 28.59px;
}
.course_single:hover::before{
  border-color: var(--thm-secondary-color);
}
.course_single:hover .course_img {
    height: 200px;
}
.course_single:hover .course_content p{
    -webkit-line-clamp: 5;
}
.course_single:hover .course_content .link-more{
    display: flex;
    align-items: center;
    gap: 20px;
}
.bg-primary{
    background: var(--thm-primary-color) !important;
}
.text-white{
    color: var(--thm-white) !important;
}
.blog_single{
    padding: 30px 16px;
    border-radius: 25px;
    text-align: center;
    background: var(--thm-white);
}
.blog_single img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.blog_single h4{
    color: var(--thm-black);
    font-size: 27px;
    font-weight: 700;
    line-height: 44px;
}
.blog_single h5{
    color: var(--thm-black);
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}
.blog_single p{
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    padding: 10px 0 0;
}
.cource-carousel-slider .swiper-slide{
    transform: scale(0.86); 
}
.cource-carousel-slider .swiper-slide-active{
    transform: scale(1);
  }
  .cource-carousel-slider .swiper-slide-active .blog_single{
    border: 5px solid var(--thm-secondary-color);
  }
  .join-area{
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 30px 0;
    height: 400px;
    position: relative;
  }
  /* .join-area::before{
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 81, 163, 0.4), rgba(0, 81, 163, 0.4)),
linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
width: 100%;
height: 100%;
  } */
  .join_content{
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .join_content h2{
    color: var(--thm-white);
    font-size: 40px;
    font-weight: 900;
    line-height: 60px;
  }
  .join_content p{
    font-size: 22px;
    font-weight: 400;
    color: var(--thm-white);
    line-height: 55px;
    margin-bottom: 10px;
  }
  .client_single{
    text-align: center;
    display: block;
  }
  .client_single img{
    width: auto;
    height: 100px;
  }
  .section-title2 h4{
    color: var(--thm-secondary-color);
    font-size: 30px;
    font-weight: 700;
    line-height: 55px;
  }
  .section-title2 p{
    font-size: 24px;
    line-height: 35px;
  }
  [dir="rtl"] .mobile-menu .close-btn{
    left: 15px;
    right: inherit;
  }
  [dir="rtl"] .mobile-menu .navigation li>a{
    padding: 10px 25px 10px 60px;
  }
  [dir="rtl"] .mobile-menu .navigation li.menu-item-has-children .dropdown-btn{
    left: 15px;
    right: inherit;
  }
  .thm-search{
    position: relative;
  width: 300px;
  }
  .thm-search input{
    position: relative;
    border: 1px solid #666666;
    width: 100%;
    background: #F5F5F5;
padding: 6px 13px 6px 13px;
border-radius: 10px;
  }
  .thm-search i{
    position: absolute;
    right: 20px;
    top: 14px;
    color: #666666;
  }
  [dir="rtl"] .thm-search i{
    left: 20px;
    right: inherit;
  }
  [dir="rtl"] .thm-breadcrumb li{
    padding-right: 10px;
    padding-left: 0;
  }
  .specialty_specific_single{
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    display: block;
  }
  .specialty_specific_single .specialty_img{
    height: 400px;
    width: 100%;
  }
  .specialty_specific_single .specialty_img img{
    height: 100%;
    width: 100%;
    border-radius: 10px;
  }
  .specialty_specific_single .specialty_content{
    background: rgba(0, 0, 0, 0.25);
    padding: 4px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    z-index: 2;
    height: 60px;
    text-align: center;
  }
  .specialty_specific_single .specialty_content h4{
    color: var(--thm-white);
    font-size: 26px;
    font-weight: 700;
    line-height: 50px;
  }
  .specialty_specific_single .specialty_content p{
font-size: 16px;
font-weight: 600;
line-height: 29.98px;
padding:  0;
color:var(--thm-white);
  }
  .specialty_specific_single:hover .specialty_content {
    height: 100%;
    padding: 20px ;
    display: flex ;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    border-radius: 10px;
}
.course_tab{
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 1em;
}
.course_tab li .nav-link{
padding: 6px 15px 6px 15px;
background: transparent;
outline: none;
border: none;
color: #b8b8b8;
font-size: 24px;
font-weight: 500;
line-height: 44.98px;
border-bottom: 2px solid #f1f1f1;
}
.course_tab li .nav-link.active{
  color: var(--thm-secondary-color);
  border-color:var(--thm-secondary-color) ;
  font-weight: 700;
}
.course_tab li .nav-link:hover{
  color: var(--thm-secondary-color);
}
.course_details_content p{
  color :var(--thm-black);
  font-weight: 600;
}
.course_details_content .c_details_title{
  font-size: 28px;
  font-weight: 700;
  line-height: 52.47px;
  margin-bottom: 10px;
  color :var(--thm-black);
}
.course_details_content .c_details_list li{
  color :var(--thm-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 29.98px; 
}
.hover-img{
  overflow: hidden;
  z-index: 1;
  display: block;
  position: relative;
}
.hover-img img{
  width: 100%;
  transition: .5s ease;
}
.hover-img:hover img {
  transform: scale(1.05);
}
.course_details_image{
   height: 350px;
   border-radius: 10px;
}
.course_details_image img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.join_cource_card{
  background: var(--thm-primary-color);
  border-radius: 22px;
padding: 14px 20px 30px 20px;
margin-top: 20px;
}
.join_cource_card h3{
font-size: 28px;
font-weight: 700;
line-height: 52.47px;
color: var(--thm-white);
}
.join_cource_card p{
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--thm-white);
}
.join_form .form-group-inline {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.join_form .form-group-inline label{
font-size: 14px;
font-weight: 600;
line-height: 26.24px;
width: 30%;
color: var(--thm-white);
}
.join_form .form-group-inline input{
  border-radius: 10px;
  outline: none;
  border: none;
  width: 70%;
  background: #F5F5F5;
  color: var(--thm-paragraph-color);
  padding: 6px 12px;
font-size: 11.94px;
font-weight: 500;
line-height: 22.38px;
}
.course_content_single{
  margin-bottom: 20px;
}
.course_content_single .c_content_title{
  color: var(--thm-secondary-color);
font-size: 24px;
font-weight: 600;
line-height: 44.98px;
margin-bottom: 10px;
}
.course_content_single .course_features{
  display: flex;
  align-items: center;
}
.course_content_single .course_features p{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
color: var(--thm-black);
position: relative;
font-size: 20px;
font-weight: 400;
line-height: 37.48px;
width: 33%;
}
.course_content_single .course_features p i{
  color: #7b7b86;
}
.course_content_single .course_features p::after{
  content: '';
  position: absolute;
  left: 70px;
  width: 1px;
  height: 30px;
  background:#666666 ;
}
.course_content_single .course_features p:last-child::after{
  display: none;
}
.text_breaks{
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}
.text_breaks li{
color: var(--thm-paragraph-color);
font-size: 15px;
font-weight: 600;
line-height: 25px;
position: relative;
padding-right: 5px;
}
[dir="rtl"] .text_breaks li{
  padding-left: 5px;
  padding-right: 0;
}
.text_breaks li::after{
  content: '';
  position: absolute;
  right: -5px;
  height: 20px;
  width: 1px;
  background:#d4cfcf;
  top: 2px;
}
[dir="rtl"] .text_breaks li::after{
  left: -5px;
  right: inherit; 
}
.text_breaks li:last-child::after{
  display: none;
}
.accordion_cources{
  border: 2px solid var(--thm-primary-color);
  border-radius: 10px;
}
.accordion_cources .accordion-item:first-of-type,
.accordion_cources .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.accordion_cources .accordion-item:last-of-type,
.accordion_cources .accordion-item:last-of-type .accordion-button.collapsed,
.accordion_cources .accordion-item:last-of-type .accordion-button {
  border-bottom-right-radius:10px;
  border-bottom-left-radius:10px;
}
.accordion_cources .accordion-item .accordion-header .accordion-button{
  background: #F5F5F5;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
font-size: 16px;
font-weight: 600;
line-height: 29.98px;
color: var(--thm-black);
}
.accordion_cources .accordion-item .accordion-header .accordion-button .time{
font-size: 12px;
font-weight: 600;
line-height: 22.49px;
color: var(--thm-paragraph-color);
}
.accordion-button::after{
  position: absolute;
  right: 10px;
  content: "\f107";
  color: var(--thm-paragraph-color);
  font-family: "Font Awesome 6 Free";
  display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  background-image: none;
}
.accordion-button:not(.collapsed)::after {
  background-image:none;
  transform: rotate(-180deg);
}
.list-group-lessons li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list-group-lessons li h5{
  display: flex;
  align-items: center;
  gap: 10px;
font-size: 16px;
font-weight: 600;
line-height: 29.98px;
color: var(--thm-black);
}
.list-group-lessons li .time{
font-size: 12px;
font-weight: 600;
line-height: 22.49px;
color:var(--thm-paragraph-color);
}
.fa-star{
  color: #FFEA00;
}
.thm-select{
  position: relative;
  border: 1px solid #666666;
  width: 300px;
  padding: 6px 13px 6px 13px;
  border-radius: 10px;
  color: #666666;
  line-height: inherit;
}
[dir="rtl"] .form-select{
  background-position: left .75rem center;
}
.course_single_2{
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: var(--thm-white);
  padding: 10px;
}
.course_single_2 .c_img{
  height: 200px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.course_single_2 .c_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course_single_2 .c_img .c_top_arae{
  position: absolute;
  left: 0;
  top: 0;
background: var(--thm-white);
padding: 4px 8px 4px 8px;
gap: 8px;
border-radius: 6px ;
z-index: 10;
}
.course_single_2 .c_content h3{
font-size: 18px;
font-weight: 700;
line-height: 33.73px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
transition: all 500ms ease;
}
.course_single_2 .c_content h3:hover{
  color: var(--thm-secondary-color);
}
.course_single_2 .c_content p{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  text-overflow: ellipsis;
}
.course_single_2 .c_footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}
.course_single_2 .c_footer .c_author{
  display: flex;
  gap: 10px;
  align-items: center;
}
.course_single_2 .c_footer .c_author img{
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.course_single_2 .c_footer .c_author p{
  color: var(--thm-primary-color);
font-size: 14px;
font-weight: 600;
line-height: 26.24px;
}
.blog_single_2{
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.12);
  background: var(--thm-white);
  padding: 10px;
  border-radius: 10px;
  transition: all 500ms ease;
  border: 3px solid transparent;
}
.blog_single_2:hover{
  cursor: pointer;
  border-color: var(--thm-secondary-color);
}
.blog_single_2 .blog_img{
  height: 200px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.blog_single_2 .blog_img img{
    width: 100%;
    height: 100%;
}
.blog_single_2 .blog_content h3{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 33px;
  transition: all 500ms ease;
}
.blog_single_2 .blog_content .des{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_single_2 .blog_content .date{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.blog_single_2 .blog_footer{
  padding: 6px 0 0;
  border-top: 1px solid var(--thm-primary-color);
  margin-top: 10px;
  transition: all 500ms ease;
}
.blog_single_2 .blog_footer .link-more{
 display: flex;
 align-items: center;
 gap: 10px;
font-size: 15.26px;
font-weight: 700;
transition: all 500ms ease;
line-height: 28.59px;
}
.blog_single_2 .blog_footer .link-more:hover,
.blog_single_2 .blog_content h3:hover{
  color: var(--thm-secondary-color);
}
.blog_single_2:hover .blog_footer{
  border-top: 1px solid var(--thm-secondary-color);
}
.about_content_image {
  border-radius: 10px;
  height: 350px;
}
.about_content_image img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.about_content_text h4{
  font-size: 36px;
  font-weight: 700;
  line-height: 67.46px;
}
.about_content_text p{
  margin: 0;
color: var(--thm-black);
font-size: 24px;
font-weight: 600;
line-height: 44.98px;
}
.login-area{
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.login-content{
  background-color: #ffffff;
    min-height: 100vh;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 30px ;
}
.login-content .fxt-content {
  max-width: 500px;
  width: 100%;
}
.login-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.login_title{
color: var(--thm-primary-color);
font-size: 30px;
font-weight: 700;
margin-bottom: 20px;
line-height: 56.22px;
text-align: center;
}
.login_form .input-box input{
  border-radius: 10px;
  border: 1px solid var(--thm-primary-color);
  height: 48px;
  padding: 10px;
  width: 100%;
}
.login_form .input-box label{
  margin-bottom: 10px;
}
.login_form .forget_pass{
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  display: flex;
  justify-content: end;
}
.login_form .text-have-account{
color: var(--thm-black);
font-size: 14px;
font-weight: 600;
line-height: 26.24px;
display: flex;
justify-content: center;
align-items: center;
gap: 7px;
padding: 20px 0 0;
text-align: center;
}
.button-style-1.bg-primary{
  border: 2px solid var(--thm-primary-color) ;
}
.button-style-1.bg-primary:before, .button-style-1.bg-primary:after{
  color: var(--thm-primary-color);
  border: 2px solid var(--thm-primary-color);
}
.button-style-1.bg-primary:hover {
  color: var(--thm-primary-color);
}
.banner-two {
  position: relative;
  display: block;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 730px;
}
.banner-two__left-content {
  position: relative;
  display: block;
}
.banner-two__left-content .title {
  position: relative;
  display: block;
  font-size: 40px;
  color: var(--thm-white);
  font-weight: 900;
  line-height: 70px;  
}
.banner-two__left-content p{
font-size: 22px;
font-weight: 600;
line-height: 48.72px;
color: var(--thm-white);
}

.language{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: #fff;
}
.language img{
  width: auto;
  height: 13px;
}
.language:hover{
  color: var(--thm-secondary-color);
}