/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  /* Set height to viewport height */
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body {
  background: #fff;
  color: #666666;
  font-family: "Roboto", sans-serif;
  ;
}

a {
  color: #820000;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #18d36e;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #820000;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: grey;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #820000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: #f4f4f4;
  border-bottom: 1px solid rgb(120 120 120 / 22%);
  height: 80px;
}

#header .semchip-n-header__inner {
  padding: 0 70px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: #f4f4f4;
  height: 70px;
}

.page-template-template-home #header.header-scrolled {
  background: #f4f4f4;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  #header .semchip-n-header__inner {
    padding: 0 16px;
  }

  #header .semchip-n-header__inner > .row {
    margin-right: 0;
    margin-left: 0;
  }

  #header .semchip-n-header__inner > .row > .col-xl-12 {
    padding-right: 0;
    padding-left: 0;
  }

  #header .semchip-n-header__logo-left {
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  #header .semchip-n-header__logo-left > * + *,
  #header .on-hamburger-menu,
  html[lang="ar"] #header .on-hamburger-menu {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
  color: #000000;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #820000;
  font-weight: 700;
}

.navbar .active>a::after,
.navbar li:hover>a::after {
  content: "";
  position: absolute;
  display: block;
  width: 80%;
  height: 3px;
  background: #820000;
  bottom: -20px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #666666;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #820000;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

#navbar li:first-child a {
  padding-left: 0;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #820302;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.home .mobile-nav-toggle {
  color: white;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #820000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #820000;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 78px;
  font-weight: 700;
}

html[lang="ar"] #hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 46px !important;
  font-weight: 700;
}

html[lang="ar"] .on-about-img{
  margin-top:49px !important;
}

.on-about-img{
  margin-top:60px !important;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px !important;
  }
  
html[lang="ar"] #hero h2 {
  font-size: 28px !important;
}

.success-partners-slider.slick-initialized .success-partner-slide {
    max-width: 300px !important;
}

header .contact_btn{
  display: none !important;
}

.on-hamburger-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 8% !important;
}

html[lang="ar"] .on-hamburger-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 8rem !important;
    margin-left: 0px !important;
}

.div_info h3 {
    font-size: 28px !important;
  }

  .partners h3 {
    font-size: 22px !important;
  }

}

#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
  list-style-type: none;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff !important;
  background: #820000;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #820000;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 48px;
  color: #000000;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 50px;
}



.section-header p {
  padding-bottom: 30px;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-align: justify;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #F4F4F4;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Featured Services Section
--------------------------------*/
#featured-services {
  background: #000;
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
  color: #820000;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #820000;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/


#about .about-col {
  background: #f4f4f4;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgb(0 0 0 / 3%);
  margin-bottom: 20px;
  border: 0px solid rgba(0, 0, 0, 1);
  padding: 22px 21px;
  height: 100%;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: #820000;
  border-radius: 50%;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .about-col i {
  font-size: 28px;
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #820000;
}

#about .about-col h2 {
  color: #000;
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 20px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
}

#about .about-col h2 a:hover {
  color: #820000;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0;
  text-align: justify;
}

/* Services Section
--------------------------------*/
#services {
  padding: 80px 0 60px 0;
  position: relative;
  background: linear-gradient(to bottom, rgba(130, 0, 0, 0.08) 0%, rgba(130, 0, 0, 0) 100%);
}

.img_service {
  object-fit: cover;
  position: absolute;
  z-index: -1;
  top: 0;
  /*width: 50%;*/
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #820000;
  font-size: 36px;
  line-height: 0;
  transition: 0.5s;
}

#services .title {
  font-weight: 700;
  margin: 25px 0 20px 0;
  font-size: 18px;
  color: rgba(0, 0, 0, 1);
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #820000;
}

.home_service p,
#services .description {
  font-size: 15px;
  margin-left: 0;
  line-height: 24px;
  margin-bottom: 15px;
  color: rgba(0, 0, 0, 0.7);
  text-align: justify;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background-color: #f4f4f4;
}

.bloc_call_action {
  background: rgba(28, 0, 0, 1);
  padding: 64px;
  border-radius: 41px;
  margin-bottom: 100px;
}

#call-to-action h3 {
  color: rgba(235, 226, 226, 1);
  font-size: 40px;
  font-weight: 700;
}

#call-to-action h3 span {
  color: rgba(235, 226, 226, 1);
  font-weight: 400;
}

#call-to-action p {
  color: rgba(235, 226, 226, 1);
  font-size: 18px;
  margin-top: 30px;
}

#call-to-action .cta-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0px;
  display: inline-block;
  padding: 12px 24px;
  transition: 0.5s;
  margin-top: 10px;
  color: #fff;
  background: rgba(130, 0, 0, 1);
  border-radius: 30px;
  box-shadow: 0px 4px 34.900001525878906px 0px rgba(126, 14, 14, 0.76);

}

#call-to-action .cta-btn:hover {
  background: white;
  border: 1px solid #820000;
  color: #820000;
}

/* Call To Action Section
--------------------------------*/
/* Facts Section
--------------------------------*/
/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
}

#clients img {
  opacity: 0.5;
  transition: 0.3s;
}

#clients img:hover {
  opacity: 1;
}

#clients .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #820000;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #820000;
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
  margin-top: 80px;
  margin-bottom: 50px;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #820000;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #820000;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}


#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #820000;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #820000;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form .form-group {
  margin-bottom: 25px;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: none;
  font-size: 15px;
  border-color: #D7D7D7;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #820000;
}

label {
  color: #000000;
  font-size: 15px;
}

#contact .php-email-form button[type=submit] {
  background: #820000;
  border: 0;
  padding: 12px 24px 12px 24px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 22px;
}

#contact .php-email-form button[type=submit]:hover {
  background: white;
  color: #820000;
  border: 1px solid #820000;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #333333;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #820000;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #820000;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #666666;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #fff;
  color: #333333;
  padding: 6px 30px 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid #820000;
}

.blog .entry .entry-content .read-more a:hover {
  background: #820000;
  color: #fff;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #820000;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #820000;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #666666;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #820000;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #333333;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(51, 51, 51, 0.4);
  margin-right: 5px;
  transition: 0.3s;
}

.blog .blog-author .social-links a:hover {
  color: #820000;
}

.blog .blog-author p {
  font-style: italic;
  color: #666666;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #666666;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #333333;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #820000;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #999999;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #666666;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #666666;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 10px 30px;
  border: 0;
  background-color: #820000;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1ee57a;
}

.blog .blog-pagination {
  color: #820000;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #820000;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: bold;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #820000;
  border-radius: 50px;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #333333;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 70px);
  box-shadow: none;
}

.blog .sidebar .search-form form input:focus {
  box-shadow: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: -1px;
  background: #820000;
  color: #fff;
  transition: 0.3s;
  line-height: 0;
  border-radius: 50px;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #13a456;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #333333;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #820000;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b3b3b3;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #333333;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #820000;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b3b3b3;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #333333;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #820000;
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  background: #820000;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: white;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #1C0000;

  padding: 50px 0 0 0;
  color: #eee;
  font-size: 14px;
  margin-top: -50px !important;
}

#footer .footer-top {
  background: #1C0000;
  padding: 0px 0 30px 0;
}


#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #820000;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #820000;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 15px;
}

/*
#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #820000;
  width: 60px;
}
*/
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #820000;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  width: 62%;
  border: 1px solid #454545;
  background-color: transparent;
  color: #454545;
  border-radius: 20px;
  padding: 12px;
  margin-right: 3%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #820000;
  border: 0;
  width: 35%;
  padding: 12px 24px 12px 24px;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 22px;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: white;
  color: #820000;
  border: 1px solid #820000;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #FFFFFF2E;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

.text-right {
  text-align: right;
}

.list_privacy {
  list-style: none;
  padding: 0;
}

.list_privacy li {
  padding-right: 25px;
}

.list_privacy li a {
  text-decoration: underline;
  color: white;
  font-size: 14px;
}

.copyright_p {
  font-weight: 300;
  font-size: 14px;
}

.footer_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 7px;
}

.footer_menu li a {
  font-size: 16px;
  font-weight: 500;
  margin-right: 20px;
  color: white;
}

.subscribe_p {
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 0;
}

.subscribe_p a {
  color: white;
  text-decoration: underline;
}

.section_border {
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
}

#main {
  /*background-color: #1c0000;*/
}

.btn {
  background: #820000;
  border: 0;
  padding: 8px 21px;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 400;
}

.bg_dark {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 38.83%, #111111 96.89%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.6), rgba(17, 17, 17, 0.6));

}

.inner-page {
  margin-top: 80px !important;
  padding-top: 120px !important;
  padding-bottom: 100px !important;
}

.partner_bloc {
  text-align: center;
  position: relative;
}

.partner_bloc img {
  max-width: 170px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  /* filter: brightness(0) invert(1); */
}

.partner_card_img {
  background: #ffffff;
  position: relative;
  width: 148px;
  height: 148px;
  margin: 0 auto;
  border-radius: 50%;
}

.partner_card_img:hover {
  background-color: #d14e4e17;
}

.partner_img:hover {
  background: white;
}

.partner_card_img img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}

.partner_bloc h4 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 30px;
}

.partner_bloc p {
  font-size: 14px;
  font-weight: 400;
  color: white;
  opacity: 0.7;
}

.section-header .left_header {
  color: #1A1A1A;
  font-size: 74px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0;
  line-height: 65px;
}

.btn-shadow {
  box-shadow: 0px 4px 34.900001525878906px 0px #7E0E0EC2;
  padding: 12px 24px;
  border-radius: 30px;
}

.bloc_service {
  padding: 20px;
  margin-bottom: 20px;
}

.bloc_service span {
  color: #1F0000;
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  text-align: left;
  padding-left: 10px;
}

.bloc_service p {

  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: justify;
  color: rgb(0 0 0 / 74%);
  padding-top: 20px;
  padding-left: 20px;
}

.bloc_ser_img {
  margin-left: 15px;
  margin-top: 6px;
}

.bloc_service .list-group-item {
  align-items: center;
  display: flex;
}

.bloc_service:hover {
  border-radius: 20px;
  box-shadow: 0px 27px 52.79999923706055px 17px #8c8c8c36;
  cursor: pointer;
}

.service_section {
  background-image: linear-gradient(to top, rgba(130, 0, 0, 0.1) 0%, rgba(130, 0, 0, 0) 100%);
}

.margin_bottom0 {
  margin-bottom: 0 !important;
}

.section_info {
  padding: 90px 0 !important;
}

.service_card {
  background: rgba(255, 255, 255, 1);
  border-radius: 28px;
  padding: 10px;
  text-align: center;
  height: 100%;
}

.service_card p {
  margin: 0;
  color: rgba(128, 0, 0, 1) !important;
  text-align: center !important;
  margin-bottom: 5px;
  font-size: 16px !important;
}

.service_card img {
  max-width: 100px;
  margin: 0 auto;
}

#contact .section-header h3 {
  padding-bottom: 0;
}

#contact .section-header p {
  text-align: center;
  margin-bottom: 0;
  padding-top: 0;
}

.about h1 {
  font-size: 84px;
  font-weight: 700;
  line-height: 92px;
  letter-spacing: 0em;
  text-align: left;
  color: rgba(232, 232, 232, 1);
}

.small_info {
  color: rgba(132, 132, 132, 1);
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 15px;
  display: block;
}

.about p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: justify;
  color: rgba(232, 232, 232, 1);
}

.bg_black {
  background-color: rgba(17, 17, 17, 1);
}

.title_about {
  color: rgba(255, 255, 255, 1);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0em;
  margin-bottom: 50px;
}

.bloc_mission h2 {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
}

.bloc_mission p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.83);
  text-align: justify;
}

.bloc_mission img {
  margin: 20px 0;
}

.with_border {
  border-right: 1px solid rgba(63, 63, 63, 1);
  padding-right: 20px;
}

.title_span span {
  color: #820000;
}

.about_card {
  background: rgba(255, 255, 255, 1);
  padding: 0 25px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
}

.about_card img {
  margin: 30px 0;
}

.about_card p {
  margin-top: 20px;
  color: rgba(26, 26, 26, 0.88);
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
}

.partners {
  background-color: #f4f4f4;
  /* For browsers that do not support gradients */
  background-image: linear-gradient(#ececec, #f4f4f4);
  padding: 80px 0;

}

.partners h2 {
  color: rgba(13, 13, 13, 1);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 40px 0 50px 0;
}

.partners h3 {
  font-size: 68px;
  font-weight: 700;
  line-height: 76px;
  text-align: left;
  color: rgba(37, 37, 37, 1);

}

.partners p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: justify;
  color: rgba(37, 37, 37, 1);
}

.partner_card {
  text-align: center;
}

.partner_card h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  margin: 15px 0 5px 0;
  color: rgba(26, 26, 26, 1);
}

.partner_card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  color: rgba(26, 26, 26, 0.7);
}

.home_service {
  background: #f4f4f4;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgb(0 0 0 / 3%);
  padding: 25px 20px;
  height: 100%;
}

.home_service:hover {
  cursor: pointer;
}

.learn_span {
  color: rgba(130, 0, 0, 1);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

.p_about {
  font-size: 18px;
  color: rgba(0, 0, 0, 1);
  text-align: justify;
}

.no_padding {
  padding-bottom: 10px !important;
}

.btn_a:hover {
  border: 1px solid rgba(130, 0, 0, 1);
  color: rgba(130, 0, 0, 1);
}

.div_info {
  text-align: left;
}

.div_info h2 {
  text-align: left;
}

.div_info h3 {
  color: rgba(26, 26, 26, 1);
  font-size: 42px;
  font-weight: 700;
}

.spacer50 {
  height: 70px;
}

.margin_top_70 {
  margin-top: 70px;
}

#hero .btn_white {
  background-color: white !important;
  color: #820000 !important;
}

.bg_values {
  background-color: white;
  padding-bottom: 40px;
}

.service_home {
  background-image: none !important;
  padding-top: 0px !important;
}

.home_nav li a {
  color: rgba(255, 255, 255, 1);
}

.header-scrolled li a {
  color: black;
}

.tabs_home {

  background-image: linear-gradient(to bottom, rgb(0 0 0 / 52%), rgb(0 0 0 / 73%)), url(https://semchip.whyidont.com/wp-content/uploads/2024/01/stock-photo-abstract-glowing-big-data-forex-candlestick-chart-on-blurry-city-backdrop-trade-technology.jpg);
  padding: 90px 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.tabs_home h1 {
  color: rgba(229, 226, 226, 1);
  font-size: 40px;
  font-weight: 700;
  padding-top: 14px;
  margin-bottom: 0;
}

.tabs_home img {
  width: 130px;
  margin-right: 20px;
}

.tabs_content {
  margin-top: 80px;
}

.tabs_content h3 {
  color: rgba(255, 255, 255, 1);
  font-size: 45px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.tabs_content h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0 0 0;
  background-color: #b3b3b3ab;
  width: fit-content;
  font-weight: 900;
  padding: 3px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.tabs_content h6 {
  color: rgba(255, 255, 255, 1);
  /*font-size: 23px;
  font-weight: 500;*/
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}

.spacer30 {
  height: 30px;
}

.spacer_top_tab {
  height: 70px;
}

#myTabs .nav-link {
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

#myTabs .nav-link.active {
  color: rgba(57, 181, 188, 1);
  background-color: transparent;
  border: transparent;
}

#myTabs .nav-link:hover,
#myTabs {
  border-color: transparent;
}

#myTabs .nav-item {
  border-top: 4px solid rgba(73, 73, 73, 1);
  margin-right: 5px;
  /* background-color: white;
    border-radius: 20px;*/
}

#video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.page-id-171 #video-section,
.page-id-12 #video-section {
  height: auto;
}

#video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 38.83%, #111111 96.89%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.6), rgba(17, 17, 17, 0.6));

}

#video-content {
  position: relative;
}

.text-white {
  color: rgba(232, 232, 232, 1) !important;
}

.logo_footer {
  width: 150px;
}

.footer-newsletter p,
.footer-newsletter h4 {
  margin-top: 5px;
  margin-bottom: 0;
}

#sectionAbout {
  padding: 0px 0 50px 0 !important;
}

.btn-red:hover {
  color: #820000;
  border: 1px solid #820000;
}

.bloc_titl_serv .btn-shadow:hover {
  border: 1px solid #820000;
  color: #820000;
}

.active a {
  color: #820000 !important;
}

.clients-slider {
  padding-bottom: 50px;
}

.partner_img {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  margin: 0 auto;
  background: white;
  backdrop-filter: blur(4.95px);
  position: relative;
}

#hero-carousel-indicators {
  display: none;
}

.service_home {
  background: #f4f4f4;
}

.header-scrolled .mobile-nav-toggle {
  color: #a51313;
}

.wpcf7-not-valid-tip {
  color: red;
}

span.gradient-layer-on-top-bottom {
  background: linear-gradient(hsla(0, 0%, 100%, 0.6), #fff);
  position: absolute;
  bottom: 0;
  width: 57%;
  height: 100%;
  z-index: -1;
}

span.gradient-layer-on-top {
  background: linear-gradient(hsla(0, 15%, 110%, 0.4), #fff);
  position: absolute;
  top: 0;
  right: 0;
  width: 57%;
  height: 100%;
  z-index: -1;
}

.wpcf7-response-output {}

.screen-reader-response {
  display: none;
}

.bloc_service_p {
  position: relative;
}

.navbar .active>a::after,
.navbar li:hover>a::after {
  bottom: -18px;
}

.header-scrolled .navbar .active>a::after,
.header-scrolled .navbar li:hover>a::after {
  bottom: -13px;
}

.language_switcher {
  display: inline-block !important;
  background: transparent !important;
  box-shadow: none !important;
}

.language_switcher li {
  display: inline-block;
  padding: 0 5px;
}

.language_switcher li a {
  /*color:black */
}

.language_switcher li .activeUrl {
  /*color:#820000!important;*/
}

@media (max-width: 1200px) {
  #hero h2 {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .language_switcher li a {

    padding: 10px 0 !important;
  }

  .bloc_service_p {
    margin-left: 15px;
  }

  .btn_service {
    float: left;
  }

  .section-header .left_header {
    padding-bottom: 15px;
  }

  #sectionAbout {
    padding: 50px 0 50px 0 !important;
  }

  .d_mobile_block {
    display: block !important;
    text-align: center;
  }

  .tabs_home img {
    width: auto;
  }

  .tabs_home h1 {
    font-size: 30px;
  }

  .spacer_top_tab {
    height: 50px;
  }

  #myTabs {
    text-align: center;
  }

  .tabs_content {
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .tabs_content h3 {
    font-size: 32px;
    margin-bottom: 0;
  }

  .tabs_content h6 {
    font-size: 20px;
  }

  .spacer30 {
    height: 15px;
  }

  .tabs_content h5 {
    margin: 5px 0 5px 0;
  }

  #myTabs .nav-item {
    width: 100%;
    border-top: 1px solid rgba(73, 73, 73, 1);
  }

  .section-header h3 {
    padding-bottom: 30px;
    font-size: 36px;
  }

  #services {
    padding: 60px 0 60px 0;
  }

  .partners h3 {
    font-size: 43px;
    font-weight: 700;
    line-height: 52px;
  }

  .navbar-mobile a {
    color: black !important;
  }

  #navbar li:first-child a {
    padding-left: 20px;
  }

  .language_switcher li:first-child a {
    padding-left: 0px !important;
  }

  .navbar-mobile .active {
    color: #820000 !important;
  }

  .language_switcher li {
    padding: 0;
  }

  header .btn-red {
    font-size: 8px;
    padding: 6px 3px;
  }

  .about h1 {
    font-size: 36px;
    line-height: 43px !important;
  }

  .inner-page {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
    height: auto !important;
  }

  .title_about {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .with_border {
    border-right: none;
    padding-right: 0;
  }

  .section_info {
    padding: 0 0 50px 0 !important;
  }

  .container {
    padding: 0 20px;
  }

  .margin_bottom0 {
    padding-top: 30px;
  }

  .about_card {
    margin-bottom: 20px !important;
    padding-bottom: 20px;
    height: 100%;
  }

  .section-header .left_header {
    font-size: 27px;
    text-align: left;
    line-height: 43px;
    margin-top: 0;
  }

  .bloc_service {
    margin-top: 20px;
  }

  .bloc_ser_img {
    margin-left: 0;
  }

  .bloc_titl_serv {
    text-align: center;
  }

  .service_card {
    margin-bottom: 20px;
  }

  #footer .footer-top {
    padding: 40px 0 30px 0;
  }

  .navbar .active>a::after,
  .navbar li:hover>a::after {
    bottom: 0 !important;
  }

  #about .about-col {
    height: auto;
  }

  .partners h2 {
    font-size: 43px;
    margin: 20px 0 50px 0;
  }

  .bloc_call_action {
    padding: 40px 20px;
  }

  .navbar-mobile .active a {
    color: #820000 !important;
  }

  #hero .btn-get-started {
    font-size: 13px;
    padding: 12px 14px;
  }

  #hero {
    height: 60vh;
  }

  #hero .carousel-container {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }

  video {
    height: 100%;
    object-fit: cover;
  }

  #hero h2 {
    margin-top: 45px;
    margin-bottom: 20px;
  }

  #contact {
    border-radius: 0;
  }

  .img_service {
    width: 100%;
  }

  .contact_btn {
    display: none;
  }

  .page-id-12 #video-section {
    position: relative;
    height: auto;
  }

  #footer {
    padding: 0;
    position: relative;
  }

  .footer_menu {
    margin: 20px 0 !important;
  }

  #footer .copyright {
    padding-top: 20px;
  }

  .copyright_p {
    margin-bottom: 20px;
  }

  .page-id-171 #footer,
  .page-id-12 #footer {
    /* margin-top: 40px!important;*/
  }

  .logo_footer {
    margin-top: 25px;
  }

}

#footer {
  position: relative;
}

.activeUrl {
  color: #820000 !important;
}

.home_nav li .activeUrl {
  color: white !important;
}

.home_nav .language_switcher li .activeUrl {
  color: #820000 !important;
}

.page-id-14 #menu-item-156 a,
.page-id-169 #menu-item-156 a {
  color: white !important;
}

.page-id-14 .header-scrolled #menu-item-156 a,
.page-id-169 .header-scrolled #menu-item-156 a,
.page-id-14 .header-scrolled .language_switcher li .activeUrl,
.page-id-169 .header-scrolled .language_switcher li .activeUrl {
  color: #820000 !important;
}

@media (min-width: 1240px) {

  .page-id-175 #video-section,
  .page-id-8 #video-section {
    height: 84vh;
  }

  .page-id-171 #video-section,
  .page-id-12 #video-section {
    height: auto;
  }
}


@media (max-height: 720px) {

  .page-id-175 #video-section,
  .page-id-8 #video-section {
    height: auto;
    padding-bottom: 40px !important;
  }
}

@media (max-width: 768px) {
  .about_card {
    height: 100%;
  }
}

.font-playfair {
  font-family: 'Playfair Display', serif !important;
}

.no_padding_title {
  padding: 0 !important;
  margin: 0 !important;
}

.title_sub_semi {
  text-align: center;
  margin-top: 5px;
  font-size: 15px;
  color: black;
}

#myTabs .nav-item:hover {
  border-top: 4px solid rgb(255 255 255);
}

.language_switcher {
  margin-bottom: 0;
}





/* Sem Styling By ham dev */


.footer-menu-below-logo {
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
}

.ft-subcribe-text {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex
}

.by-subcribe-text {
  font-weight: 400;
  font-size: 12px;
  margin-top: 16px;
  display: flex
}

.ft-third-column-heading {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
}

.third-column--list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.third-column--list li {
  display: flex;
  gap: 12px;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 5px;
}
.third-column--list li p{
  margin-bottom: 0;
  font-weight: 400;
    font-size: 16px;
}
.third-column--list li span svg {
  width: 14px;
  height: 14px;
}

.bottom-ft-nav-text-nabv-wrapper {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between; */
}

.bottom-ft-nav-text-nabv-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;

}

.bottom-ft-nav-text-nabv-wrapper ul li a {
  color: #fff;
  text-decoration: underline;
font-weight: 400;
font-size: 14px;
}

.priavcy-ggpolicy{
  color: #fff;
  text-decoration: underline;
}
.copywrite-text{
  text-align: left;
}
@media(max-width:767px){
  .third-column-wrapper{
    margin-top: 20px;
  }
  .copyright_p{
    margin-top: 10px;
  }
}

.by-subcribe-text a{
  color: #fff;
  margin-left:3.5px;
}
/* Home Technology Section */
.technology_home {
  background: #fff;
  padding: 26px 0 48px 0;
}

.technology_home_header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 26px auto;
}

.technology_home_header h3 {
  color: #000;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.technology_home_header p {
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: center;
}

.technology_home_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.technology_home_card {
  background: #f4f4f4;
  border-radius: 12px;
  min-height: 126px;
  padding: 22px 24px 20px 24px;
}

.technology_home_icon {
  width: 22px;
  height: 22px;
  margin-bottom: 14px;
}

.technology_home_icon svg {
  width: 25px;
  height: 25px;
}

.technology_home_icon svg rect {
  stroke: currentColor;
}

.technology_home_icon svg rect:not([rx]) {
  fill: currentColor;
  stroke: none;
}

.technology_home_card h4 {
  color: #000;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 14px 0;
}

.technology_home_card p {
  color: #515151;
  font-size: 13px;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 992px) {
  .technology_home_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .technology_home {
    padding: 35px 0 40px 0;
  }

  .technology_home_header h3 {
    font-size: 32px;
  }

  .technology_home_grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .technology_home_card {
    min-height: auto;
  }
}
/* Home Projects Section */
.semchip_projects_home {
  background: #fff;
  padding: 28px 0 72px 0;
}

.semchip_projects_header {
  max-width: 840px;
  margin: 0 auto 28px auto;
  text-align: center;
}

.semchip_projects_header h3 {
  color: #000;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.semchip_projects_header p {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: center;
}

.semchip_projects_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.semchip_project_card {
  background: #f8f8f8;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  margin-top: 148px;
  min-height: 180px;
  padding: 0 24px 25px 24px;
  position: relative;
}

.semchip_project_image_wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
  margin-top: -148px;
  min-height: 170px;
}

.semchip_project_image {
  display: block;
  height: 170px;
  max-width: 260px;
  object-fit: contain;
  width: auto;
}

.semchip_project_image_placeholder {
  background: linear-gradient(135deg, rgba(130, 0, 0, 0.14), rgba(130, 0, 0, 0.03));
  border: 1px dashed rgba(130, 0, 0, 0.35);
  height: 170px;
  max-width: 260px;
  width: 100%;
}

.semchip_project_content {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.semchip_project_text h4 {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

.semchip_project_text span {
  color: #2a2a2a;
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.semchip_project_logo {
  display: block;
  max-height: 48px;
  max-width: 145px;
  object-fit: contain;
}

.semchip_project_logo_text {
  color: #0068b4;
  display: block;
  font-size: 47px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.semchip_project_card p {
  color: #555;
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
  max-width: 460px;
}

@media (max-width: 992px) {
  .semchip_projects_grid {
    gap: 22px;
  }

  .semchip_project_logo_text {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .semchip_projects_home {
    padding: 36px 0 48px 0;
  }

  .semchip_projects_header h3 {
    font-size: 32px;
  }

  .semchip_projects_grid {
    grid-template-columns: 1fr;
  }

  .semchip_project_card {
    margin-top: 120px;
    padding: 0 18px 22px 18px;
  }

  .semchip_project_image_wrap {
    margin-top: -120px;
    min-height: 138px;
  }

  .semchip_project_image,
  .semchip_project_image_placeholder {
    height: 138px;
    max-width: 220px;
  }

  .semchip_project_content {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .semchip_project_logo_text {
    font-size: 34px;
    text-align: left;
  }
}
/* Success Partners Slick Slider */
.success-partners-slider {
  display: block;
  margin: 0 -12px;
  overflow: hidden;
}

.success-partners-slider .slick-list {
  overflow: hidden;
}

.success-partners-slider .slick-track {
  align-items: stretch;
  display: flex;
  transition-timing-function: linear !important;
}

.success-partner-slide {
  height: auto;
  padding: 0 12px;
}

.success-partners-slider.slick-initialized .success-partner-slide {
  display: flex;
}

.success-partner-slide .partner_card {
  width: 100%;
}

.success-partners-slider .partner_card_img {
  align-items: center;
  display: flex;
  justify-content: center;
}

.success-partners-slider .partner_card_img img {
  max-height: 92px;
  max-width: 112px;
  object-fit: contain;
  position: static;
}

.success-partners-slider .partner_card h4 {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .success-partners-slider {
    margin: 0 -8px;
  }

  .success-partner-slide {
    padding: 0 8px;
  }
}
/* Partners Template Slick Slider */
.partners-template-slider {
  display: block;
  margin: 20px -12px 0 -12px;
  overflow: hidden;
}

.partners-template-slider .slick-list {
  overflow: hidden;
}

.partners-template-slider .slick-track {
  align-items: stretch;
  display: flex;
  transition-timing-function: linear !important;
}

.partners-template-slide {
  height: auto;
  padding: 0 12px;
}

.partners-template-slider.slick-initialized .partners-template-slide {
  display: flex;
}

.partners-template-slide .partner_bloc {
  width: 100%;
}

.partners-template-slider .partner_img {
  align-items: center;
  display: flex;
  justify-content: center;
}

.partners-template-slider .partner_img img {
  max-height: 95px;
  max-width: 128px;
  object-fit: contain;
  position: static;
}

.partners-template-slider .partner_bloc h4 {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .partners-template-slider {
    margin-left: -8px;
    margin-right: -8px;
  }

  .partners-template-slide {
    padding: 0 8px;
  }
}
