/**
* Template Name: BizPage - v5.10.1
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #df0e3b;
  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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", 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: #df0e3b;
  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: #df0e3b;
  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 #df0e3b;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgba(0, 0, 0, 0.9);
  height: 80px;
}

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

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  height: 60px;
}

#header .logo {
  font-size: 34px;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  padding-left: 10px;
  border-left: 4px solid #df0e3b;
}

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

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

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

/*--------------------------------------------------------------
# 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: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.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: #df0e3b;
}

.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: #df0e3b;
}

.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;
}

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

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

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

@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: #df0e3b;
}

.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: #df0e3b;
}

.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.2);
}

#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: 48px;
  font-weight: 700;
}

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

#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;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #df0e3b;
}

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

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

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #df0e3b;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

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

/*--------------------------------------------------------------
# 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: #df0e3b;
  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: #df0e3b;
}

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

/* About Us Section
--------------------------------*/
#about {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#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: #df0e3b;
  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: #df0e3b;
}

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

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

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

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

/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

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

#services .icon {
  float: left;
}

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

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

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

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

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #df0e3b;
  border: 2px solid #df0e3b;
}

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

#skills .progress {
  height: 35px;
  margin-bottom: 10px;
  border-radius: 0;
}

#skills .progress .skill {
  font-family: "Open Sans", sans-serif;
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}

#skills .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

#skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: 0.9s;
}

/* Facts Section
--------------------------------*/
#facts {
  background: url("../img/facts-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#facts::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 9;
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #df0e3b;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}

/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #df0e3b;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

#portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

#portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview,
#portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i,
#portfolio .portfolio-item figure .link-details i {
  font-size: 22px;
  color: #333;
  line-height: 0;
}

#portfolio .portfolio-item figure .link-preview:hover,
#portfolio .portfolio-item figure .link-details:hover {
  background: #df0e3b;
}

#portfolio .portfolio-item figure .link-preview:hover i,
#portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

#portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 30px;
  height: 90px;
  border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #df0e3b;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #df0e3b;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #df0e3b;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(51, 51, 51, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/* 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 #df0e3b;
}

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

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
  overflow: hidden;
}

#testimonials .testimonial-item {
  text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
  width: 240px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
  height: 260px;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

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

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #df0e3b;
}

/* Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

#team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #df0e3b;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
}

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

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

#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: #df0e3b;
}

#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 {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

#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: #df0e3b;
  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 #df0e3b;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

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

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

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

#contact .php-email-form button[type=submit] {
  background: #df0e3b;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .php-email-form button[type=submit]:hover {
  background: #df0e3b;
}

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

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

@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: #df0e3b;
}

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

.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 #df0e3b;
}

.blog .entry .entry-content .read-more a:hover {
  background: #df0e3b;
  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: #df0e3b;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

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

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

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

.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: #df0e3b;
}

.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: #df0e3b;
}

.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: #df0e3b;
}

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

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

.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: #df0e3b;
  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: #df0e3b;
  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: #df0e3b;
  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: #df0e3b;
}

.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: #df0e3b;
}

.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: #df0e3b;
}

.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 #df0e3b;
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #111;
  padding: 60px 0 30px 0;
}

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

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

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", 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: #df0e3b;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#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: #df0e3b;
  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: #df0e3b;
}

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

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

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

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

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

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #df0e3b;
}

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

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

/* التنسيقات الجديدة */

/* =========================================
   STOP GERMAN HERO
   ISOLATED CSS
========================================= */

#stop-premium-hero {
    width: 100%;
    height: 720px;
    position: relative;
    overflow: hidden;
    direction: rtl;
}

#stop-premium-hero .carousel,
#stop-premium-hero .carousel-inner,
#stop-premium-hero .carousel-item {
    height: 100%;
}

#stop-premium-hero .carousel-item {
    position: relative;
    background-size: cover;
    background-position: center;
}

.stop-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.15),
            rgba(0,0,0,.50) 45%,
            rgba(0,0,0,.90)
        );
}

.stop-hero-content {
    position: relative;
    z-index: 3;

    width: 90%;
    max-width: 760px;

    margin-right: auto;
    margin-left: auto;

    padding-top: 145px;

    color: #fff;
}

.stop-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 18px;
    margin-bottom: 20px;

    border-radius: 50px;

    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(10px);

    font-size: 15px;
    font-weight: 600;
}

.stop-hero-badge i {
    color: #f5b400;
    font-size: 18px;
}

.stop-hero-content h1 {
    margin: 0 0 20px;

    font-size: 56px;
    line-height: 1.2;

    font-weight: 800;

    color: #fff;
}

.stop-hero-content h1 strong {
    display: block;

    color: #f5b400;

    font-weight: 800;
}

.stop-hero-content p {
    max-width: 680px;

    margin: 0 0 30px;

    color: rgba(255,255,255,.88);

    font-size: 18px;
    line-height: 1.9;
}

.stop-hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 28px;
}

.stop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 190px;

    padding: 15px 22px;

    border-radius: 10px;

    text-decoration: none !important;

    font-size: 16px;
    font-weight: 700;

    transition: .3s;
}

.stop-btn-main {
    background: #f5b400;
    color: #111 !important;

    box-shadow: 0 10px 30px rgba(245,180,0,.25);
}

.stop-btn-main:hover {
    background: #ffc928;
    color: #111 !important;

    transform: translateY(-3px);
}

.stop-btn-phone {
    color: #fff !important;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.35);

    backdrop-filter: blur(10px);
}

.stop-btn-phone:hover {
    background: #fff;
    color: #111 !important;

    transform: translateY(-3px);
}

.stop-hero-features {
    display: flex;
    align-items: center;
    gap: 25px;

    flex-wrap: wrap;
}

.stop-hero-features span {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255,255,255,.90);

    font-size: 14px;
    font-weight: 600;
}

.stop-hero-features i {
    color: #f5b400;
}

.stop-hero-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(10px);
}

#stop-premium-hero .carousel-control-prev,
#stop-premium-hero .carousel-control-next {
    width: 90px;
    z-index: 5;
}

.stop-hero-dots {
    position: absolute;

    z-index: 10;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;
}

.stop-hero-dots button {
    width: 10px;
    height: 10px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.45);
}

.stop-hero-dots button.active {
    width: 30px;

    border-radius: 20px;

    background: #f5b400;
}


/* =========================================
   SERVICES
========================================= */

#stop-premium-services {
    position: relative;

    z-index: 20;

    margin-top: -65px;

    direction: rtl;
}

.stop-services-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.stop-service-card {
    display: flex;

    gap: 18px;

    padding: 27px 24px;

    background: #fff;

    border-radius: 16px;

    box-shadow: 0 15px 45px rgba(0,0,0,.13);

    border: 1px solid rgba(0,0,0,.05);

    transition: .3s;
}

.stop-service-card:hover {
    transform: translateY(-7px);
}

.stop-service-icon {
    flex-shrink: 0;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(245,180,0,.12);

    color: #d69d00;

    font-size: 27px;
}

.stop-service-card small {
    display: block;

    margin-bottom: 4px;

    color: #a17a00;

    font-size: 13px;

    font-weight: 700;
}

.stop-service-card h3 {
    margin: 0 0 8px;

    font-size: 21px;

    font-weight: 800;

    color: #faf4f4;
}

.stop-service-card p {
    margin: 0 0 12px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}

.stop-service-dark {
    background: #111;
}

.stop-service-dark h3 {
    color: #fff;
}

.stop-service-dark p {
    color: rgba(255,255,255,.7);
}

.stop-service-dark small {
    color: #f5b400;
}

.stop-service-tag {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 13px;
    font-weight: 700;

    color: #555;
}

.stop-service-dark .stop-service-tag {
    color: #fff;
}

.stop-service-tag i {
    color: #f5b400;
}

.stop-service-phone {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stop-service-phone a {
    color: #111;

    text-decoration: none;

    font-weight: 800;

    font-size: 13px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    #stop-premium-hero {
        height: 650px;
    }

    .stop-hero-content {
        padding-top: 110px;
        text-align: center;
    }

    .stop-hero-content h1 {
        font-size: 42px;
    }

    .stop-hero-content p {
        font-size: 16px;
    }

    .stop-hero-buttons {
        justify-content: center;
    }

    .stop-hero-features {
        justify-content: center;
    }

    #stop-premium-services {
        margin-top: -40px;
    }

    .stop-services-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 576px) {

    #stop-premium-hero {
        height: 680px;
    }

    .stop-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.30),
                rgba(0,0,0,.92)
            );
    }

    .stop-hero-content {
        padding-top: 95px;
    }

    .stop-hero-content h1 {
        font-size: 33px;
    }

    .stop-hero-content p {
        font-size: 15px;
    }

    .stop-hero-buttons {
        flex-direction: column;
    }

    .stop-btn {
        width: 100%;
    }

    #stop-premium-hero .carousel-control-prev,
    #stop-premium-hero .carousel-control-next {
        display: none;
    }

    .stop-hero-features {
        gap: 10px;
        justify-content: center;
    }

    .stop-hero-features span {
        font-size: 12px;
    }

    .stop-services-container {
        width: 92%;
    }

}

/* منطقة مكافحة  */

/* =========================================
   STOP GERMAN PREMIUM SERVICES
   ISOLATED DESIGN
========================================= */

#stop-services-premium {

    width: 100%;

    padding: 100px 0 90px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(245,180,0,.08),
            transparent 30%
        ),
        #f7f7f7;

    direction: rtl;

    overflow: hidden;
}


/* Container */

.stop-services-wrap {

    width: 90%;

    max-width: 1200px;

    margin: auto;

}


/* =========================================
   HEADER
========================================= */

.stop-services-header {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;

}

.stop-services-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 17px;

    margin-bottom: 17px;

    border-radius: 50px;

    background: rgba(245,180,0,.10);

    color: #b18400;

    font-size: 13px;

    font-weight: 800;

}

.stop-services-label i {

    font-size: 16px;

}

.stop-services-header h2 {

    margin: 0 0 17px;

    color: #151515;

    font-size: 45px;

    line-height: 1.25;

    font-weight: 800;

}

.stop-services-header h2 strong {

    color: #d39b00;

}

.stop-services-header p {

    max-width: 650px;

    margin: auto;

    color: #777;

    font-size: 16px;

    line-height: 1.9;

}


/* =========================================
   GRID
========================================= */

.stop-services-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

}


/* =========================================
   SERVICE CARD
========================================= */

.stop-service-box {

    position: relative;

    min-height: 210px;

    padding: 32px 30px;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    background: #fff;

    border: 1px solid #ededed;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(0,0,0,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


/* Yellow side line */

.stop-service-box::before {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 4px;

    height: 0;

    background: #f5b400;

    transition: height .35s ease;

}

.stop-service-box:hover::before {

    height: 100%;

}

.stop-service-box:hover {

    transform: translateY(-7px);

    border-color: rgba(245,180,0,.30);

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);

}


/* =========================================
   NUMBER
========================================= */

.stop-service-number {

    position: absolute;

    top: 18px;

    left: 22px;

    font-size: 42px;

    line-height: 1;

    font-weight: 900;

    color: rgba(0,0,0,.045);

    transition: .35s;

}

.stop-service-box:hover
.stop-service-number {

    color: rgba(245,180,0,.15);

}


/* =========================================
   ICON
========================================= */

.stop-service-icon {

    flex-shrink: 0;

    width: 64px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(245,180,0,.18),
            rgba(245,180,0,.06)
        );

    color: #d39b00;

    font-size: 28px;

    transition: .35s;

}

.stop-service-box:hover
.stop-service-icon {

    transform: scale(1.08) rotate(-4deg);

    background: #f5b400;

    color: #111;

}


/* =========================================
   TEXT
========================================= */

.stop-service-text {

    padding-top: 3px;

}

.stop-service-text h3 {

    margin: 0 0 10px;

    color: #1b1b1b;

    font-size: 22px;

    font-weight: 800;

}

.stop-service-text p {

    max-width: 420px;

    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.9;

}


/* =========================================
   ARROW
========================================= */

.stop-service-arrow {

    position: absolute;

    right: 25px;

    bottom: 23px;

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f7f7f7;

    color: #888;

    transition: .35s;

}

.stop-service-box:hover
.stop-service-arrow {

    background: #f5b400;

    color: #111;

    transform: translateX(-5px);

}


/* =========================================
   HIGHLIGHT CARD
========================================= */

.stop-service-highlight {

    background: #111;

    border-color: #111;

    color: #fff;

}

.stop-service-highlight .stop-service-text h3 {

    color: #fff;

}

.stop-service-highlight .stop-service-text p {

    color: rgba(255,255,255,.65);

}

.stop-service-highlight .stop-service-number {

    color: rgba(255,255,255,.06);

}

.stop-service-highlight .stop-service-icon {

    background: rgba(245,180,0,.15);

    color: #f5b400;

}

.stop-service-highlight .stop-service-arrow {

    background: rgba(255,255,255,.08);

    color: #fff;

}


/* =========================================
   CTA
========================================= */

.stop-services-cta {

    margin-top: 25px;

    padding: 22px 28px;

    display: flex;

    align-items: center;

    gap: 18px;

    background: #111;

    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);

}

.stop-cta-icon {

    flex-shrink: 0;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #f5b400;

    color: #111;

    font-size: 21px;

}

.stop-cta-text {

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 3px;

}

.stop-cta-text span {

    color: rgba(255,255,255,.60);

    font-size: 13px;

}

.stop-cta-text strong {

    color: #fff;

    font-size: 18px;

}

.stop-services-cta > a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 22px;

    border-radius: 9px;

    background: #f5b400;

    color: #111 !important;

    text-decoration: none !important;

    font-size: 14px;

    font-weight: 800;

    transition: .3s;

}

.stop-services-cta > a:hover {

    background: #ffc928;

    transform: translateY(-2px);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    #stop-services-premium {

        padding: 80px 0;

    }

    .stop-services-grid {

        grid-template-columns: 1fr;

    }

    .stop-services-header h2 {

        font-size: 38px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    #stop-services-premium {

        padding: 65px 0;

    }

    .stop-services-wrap {

        width: 92%;

    }

    .stop-services-header {

        margin-bottom: 35px;

    }

    .stop-services-header h2 {

        font-size: 31px;

    }

    .stop-services-header p {

        font-size: 14px;

    }

    .stop-service-box {

        min-height: auto;

        padding: 25px 20px;

        gap: 14px;

        border-radius: 16px;

    }

    .stop-service-icon {

        width: 52px;

        height: 52px;

        border-radius: 14px;

        font-size: 22px;

    }

    .stop-service-text h3 {

        font-size: 18px;

    }

    .stop-service-text p {

        font-size: 13px;

        line-height: 1.8;

    }

    .stop-service-number {

        font-size: 32px;

    }

    .stop-services-cta {

        padding: 20px;

        flex-wrap: wrap;

    }

    .stop-cta-icon {

        width: 46px;

        height: 46px;

    }

    .stop-cta-text {

        min-width: calc(100% - 70px);

    }

    .stop-cta-text strong {

        font-size: 16px;

    }

    .stop-services-cta > a {

        width: 100%;

        justify-content: center;

    }

}
/* 
منطقة 3 */

/* =====================================================
   STOP GERMAN PREMIUM CTA
   ISOLATED CSS
===================================================== */

#stop-premium-cta {
    position: relative !important;

    display: block !important;

    width: 100% !important;

    min-height: 470px;

    margin: 0 !important;
    padding: 90px 20px !important;

    box-sizing: border-box !important;

    background:
        linear-gradient(
            135deg,
            #0d0d0d 0%,
            #171717 55%,
            #242424 100%
        ) !important;

    direction: rtl !important;

    text-align: center !important;

    overflow: hidden !important;

    isolation: isolate;
}


/* الخلفية الذهبية */

#stop-premium-cta-bg {
    position: absolute !important;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -120px;

    border-radius: 50%;

    background: rgba(245,180,0,.10);

    filter: blur(15px);

    pointer-events: none;

    z-index: -1;
}


/* المحتوى */

#stop-premium-cta-inner {
    position: relative !important;

    display: block !important;

    width: 100% !important;

    max-width: 900px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    text-align: center !important;

    direction: rtl !important;
}


#stop-premium-cta-content {
    display: block !important;

    width: 100% !important;

    max-width: 800px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    text-align: center !important;

    direction: rtl !important;
}


/* Badge */

#stop-premium-cta-badge {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 8px;

    margin: 0 auto 20px !important;

    padding: 9px 18px;

    border-radius: 50px;

    background: rgba(245,180,0,.12);

    border: 1px solid rgba(245,180,0,.25);

    color: #f5b400 !important;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.5;

    direction: rtl !important;

    text-align: center !important;
}


#stop-premium-cta-badge i {
    color: #f5b400 !important;
}


/* العنوان */

#stop-premium-cta h2 {
    display: block !important;

    width: 100% !important;

    margin: 0 auto 18px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 48px !important;

    line-height: 1.35 !important;

    font-weight: 800 !important;

    direction: rtl !important;

    text-align: center !important;
}


#stop-premium-cta h2 strong {
    color: #f5b400 !important;

    font-weight: 800 !important;
}


/* النص */

#stop-premium-cta p {
    display: block !important;

    width: 100% !important;

    max-width: 700px !important;

    margin: 0 auto 30px !important;

    padding: 0 !important;

    color: rgba(255,255,255,.72) !important;

    font-size: 16px !important;

    line-height: 2 !important;

    font-weight: 400 !important;

    direction: rtl !important;

    text-align: center !important;
}


/* الأزرار */

#stop-premium-cta-buttons {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex-direction: row !important;

    gap: 12px;

    width: 100% !important;

    margin: 0 auto 25px !important;

    padding: 0 !important;

    direction: rtl !important;
}


#stop-premium-cta-main,
#stop-premium-cta-phone {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 10px;

    min-width: 190px;

    min-height: 52px;

    padding: 13px 23px !important;

    margin: 0 !important;

    border-radius: 10px;

    box-sizing: border-box !important;

    text-decoration: none !important;

    font-size: 14px;

    font-weight: 800;

    line-height: 1.5;

    direction: rtl !important;

    transition: all .3s ease;
}


#stop-premium-cta-main {
    background: #f5b400 !important;

    color: #111 !important;
}


#stop-premium-cta-main:hover {
    background: #ffc928 !important;

    color: #111 !important;

    transform: translateY(-3px);
}


#stop-premium-cta-phone {
    background: rgba(255,255,255,.07) !important;

    border: 1px solid rgba(255,255,255,.25);

    color: #ffffff !important;
}


#stop-premium-cta-phone:hover {
    background: #ffffff !important;

    color: #111111 !important;

    transform: translateY(-3px);
}


/* عناصر الثقة */

#stop-premium-cta-trust {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex-wrap: wrap !important;

    gap: 12px 25px;

    width: 100% !important;

    margin: 0 auto !important;

    padding: 0 !important;

    direction: rtl !important;
}


#stop-premium-cta-trust span {
    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 6px;

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.72) !important;

    font-size: 13px;

    line-height: 1.5;

    direction: rtl !important;
}


#stop-premium-cta-trust i {
    color: #f5b400 !important;
}


/* =====================================================
   PREMIUM PLANS
===================================================== */

#stop-premium-plans {
    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 95px 20px !important;

    box-sizing: border-box !important;

    background: #f7f7f7 !important;

    direction: rtl !important;

    text-align: center !important;

    overflow: hidden !important;

    isolation: isolate;
}


#stop-premium-plans-inner {
    display: block !important;

    width: 100% !important;

    max-width: 1150px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* Header */

#stop-premium-plans-header {
    display: block !important;

    width: 100% !important;

    max-width: 720px !important;

    margin: 0 auto 50px !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    text-align: center !important;

    direction: rtl !important;
}


#stop-premium-plans-label {
    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 8px;

    margin: 0 auto 15px !important;

    padding: 8px 17px;

    border-radius: 50px;

    background: rgba(245,180,0,.10);

    color: #a97c00 !important;

    font-size: 13px;

    font-weight: 800;

    direction: rtl !important;

    text-align: center !important;
}


#stop-premium-plans-header h2 {
    display: block !important;

    width: 100% !important;

    margin: 0 auto 15px !important;

    padding: 0 !important;

    color: #171717 !important;

    font-size: 44px !important;

    line-height: 1.35 !important;

    font-weight: 800 !important;

    direction: rtl !important;

    text-align: center !important;
}


#stop-premium-plans-header h2 strong {
    color: #d39b00 !important;

    font-weight: 800 !important;
}


#stop-premium-plans-header p {
    display: block !important;

    width: 100% !important;

    max-width: 700px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    color: #777 !important;

    font-size: 15px !important;

    line-height: 2 !important;

    direction: rtl !important;

    text-align: center !important;
}


/* Grid */

#stop-premium-plans-grid {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* Card */

.stop-premium-plan {
    position: relative !important;

    display: block !important;

    width: 100% !important;

    min-width: 0 !important;

    min-height: 300px;

    margin: 0 !important;

    padding: 30px !important;

    box-sizing: border-box !important;

    border-radius: 20px;

    background: #ffffff !important;

    border: 1px solid #ededed;

    box-shadow:
        0 10px 35px rgba(0,0,0,.05);

    overflow: hidden;

    direction: rtl !important;

    text-align: right !important;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.stop-premium-plan:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);
}


/* Dark card */

.stop-premium-plan-dark {
    background: #111111 !important;

    border-color: #111111 !important;
}


.stop-premium-plan-dark h3 {
    color: #ffffff !important;
}


.stop-premium-plan-dark p {
    color: rgba(255,255,255,.65) !important;
}


/* Card top */

.stop-premium-plan-top {
    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    width: 100% !important;

    margin: 0 0 22px !important;

    padding: 0 !important;

    direction: rtl !important;
}


/* Icon */

.stop-premium-plan-icon {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 58px !important;

    height: 58px !important;

    flex: 0 0 58px;

    border-radius: 15px;

    background: rgba(245,180,0,.12) !important;

    color: #c39100 !important;

    font-size: 25px;

    box-sizing: border-box !important;
}


.stop-premium-plan-dark
.stop-premium-plan-icon {
    background: rgba(245,180,0,.15) !important;

    color: #f5b400 !important;
}


/* Number */

.stop-premium-plan-number {
    color: rgba(0,0,0,.055) !important;

    font-size: 42px;

    line-height: 1;

    font-weight: 900;

    direction: ltr !important;
}


.stop-premium-plan-dark
.stop-premium-plan-number {
    color: rgba(255,255,255,.06) !important;
}


/* Card title */

.stop-premium-plan h3 {
    display: block !important;

    width: 100% !important;

    margin: 0 0 10px !important;

    padding: 0 !important;

    color: #171717 !important;

    font-size: 22px !important;

    line-height: 1.5 !important;

    font-weight: 800 !important;

    direction: rtl !important;

    text-align: right !important;
}


/* Card paragraph */

.stop-premium-plan p {
    display: block !important;

    width: 100% !important;

    margin: 0 0 25px !important;

    padding: 0 !important;

    color: #777 !important;

    font-size: 14px !important;

    line-height: 1.9 !important;

    direction: rtl !important;

    text-align: right !important;
}


/* Progress */

.stop-premium-plan-progress {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    direction: rtl !important;
}


.stop-premium-plan-progress-text {
    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    width: 100% !important;

    margin-bottom: 8px !important;

    padding: 0 !important;

    font-size: 13px;

    direction: rtl !important;
}


.stop-premium-plan-progress-text span {
    color: #888 !important;
}


.stop-premium-plan-progress-text strong {
    color: #c49300 !important;

    direction: ltr !important;
}


.stop-premium-plan-dark
.stop-premium-plan-progress-text span {
    color: rgba(255,255,255,.55) !important;
}


/* Progress bar */

.stop-premium-plan-progress-bar {
    display: block !important;

    width: 100% !important;

    height: 7px !important;

    margin: 0 !important;

    padding: 0 !important;

    border-radius: 20px;

    background: #eeeeee !important;

    overflow: hidden !important;

    direction: ltr !important;
}


.stop-premium-plan-dark
.stop-premium-plan-progress-bar {
    background: rgba(255,255,255,.10) !important;
}


.stop-premium-plan-progress-bar span {
    display: block !important;

    width: 100% !important;

    height: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    border-radius: 20px;

    background: #f5b400 !important;
}


/* Footer */

.stop-premium-plan-footer {
    display: flex !important;

    align-items: center !important;

    justify-content: flex-start !important;

    gap: 7px;

    width: 100% !important;

    margin: 20px 0 0 !important;

    padding: 17px 0 0 !important;

    border-top: 1px solid #eeeeee;

    color: #666 !important;

    font-size: 13px;

    font-weight: 700;

    direction: rtl !important;
}


.stop-premium-plan-dark
.stop-premium-plan-footer {
    border-top-color: rgba(255,255,255,.10);

    color: rgba(255,255,255,.75) !important;
}


.stop-premium-plan-footer i {
    color: #f5b400 !important;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    #stop-premium-cta h2 {
        font-size: 40px !important;
    }

    #stop-premium-plans-header h2 {
        font-size: 38px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    #stop-premium-cta {

        min-height: auto;

        padding: 70px 18px !important;
    }


    #stop-premium-cta h2 {

        font-size: 32px !important;

        line-height: 1.4 !important;
    }


    #stop-premium-cta p {

        font-size: 14px !important;

        line-height: 1.9 !important;
    }


    #stop-premium-cta-buttons {

        flex-direction: column !important;

        gap: 10px;
    }


    #stop-premium-cta-main,
    #stop-premium-cta-phone {

        width: 100% !important;

        min-width: 0 !important;
    }


    #stop-premium-cta-trust {

        gap: 12px 18px;
    }


    #stop-premium-plans {

        padding: 70px 18px !important;
    }


    #stop-premium-plans-header h2 {

        font-size: 31px !important;

        line-height: 1.4 !important;
    }


    #stop-premium-plans-header p {

        font-size: 14px !important;
    }


    #stop-premium-plans-grid {

        grid-template-columns: 1fr !important;

        gap: 15px;
    }


    .stop-premium-plan {

        min-height: 0;

        padding: 25px 20px !important;
    }

}


/* منطقة 4  */


/* =====================================================
   STOP GERMAN PREMIUM - OUR WORK
   ISOLATED SECTION
===================================================== */

#stop-work-section {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 95px 20px !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    direction: rtl !important;

    text-align: center !important;

    overflow: hidden !important;

    isolation: isolate;
}


/* Container */

#stop-work-inner {

    display: block !important;

    width: 100% !important;

    max-width: 1150px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* =====================================================
   HEADER
===================================================== */

#stop-work-header {

    display: block !important;

    width: 100% !important;

    max-width: 720px !important;

    margin: 0 auto 55px !important;

    padding: 0 !important;

    text-align: center !important;

    direction: rtl !important;
}


/* Badge */

#stop-work-badge {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 8px;

    margin: 0 auto 16px !important;

    padding: 8px 17px;

    border-radius: 50px;

    background: rgba(245,180,0,.10) !important;

    border: 1px solid rgba(245,180,0,.18);

    color: #a77c00 !important;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.5;

    direction: rtl !important;

    text-align: center !important;
}


#stop-work-badge i {

    color: #d49d00 !important;
}


/* Heading */

#stop-work-header h2 {

    display: block !important;

    width: 100% !important;

    margin: 0 auto 15px !important;

    padding: 0 !important;

    color: #151515 !important;

    font-size: 44px !important;

    line-height: 1.35 !important;

    font-weight: 800 !important;

    direction: rtl !important;

    text-align: center !important;
}


#stop-work-header h2 strong {

    color: #d39b00 !important;

    font-weight: 800 !important;
}


/* Description */

#stop-work-header p {

    display: block !important;

    width: 100% !important;

    max-width: 700px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    color: #777 !important;

    font-size: 15px !important;

    line-height: 2 !important;

    direction: rtl !important;

    text-align: center !important;
}


/* =====================================================
   COUNTERS
===================================================== */

#stop-work-counters {

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    width: 100% !important;

    margin: 0 0 55px !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* Counter */

.stop-work-counter {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    min-width: 0 !important;

    min-height: 245px;

    margin: 0 !important;

    padding: 28px 18px !important;

    box-sizing: border-box !important;

    border: 1px solid #eeeeee;

    border-radius: 18px;

    background: #ffffff !important;

    box-shadow:
        0 10px 35px rgba(0,0,0,.045);

    direction: rtl !important;

    text-align: center !important;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.stop-work-counter:hover {

    transform: translateY(-7px);

    border-color: rgba(245,180,0,.35);

    box-shadow:
        0 20px 45px rgba(0,0,0,.09);
}


/* Icon */

.stop-work-counter-icon {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 55px !important;

    height: 55px !important;

    margin: 0 auto 18px !important;

    padding: 0 !important;

    border-radius: 15px;

    background: rgba(245,180,0,.11) !important;

    color: #c79200 !important;

    font-size: 23px;

    box-sizing: border-box !important;
}


/* Number */

.stop-work-number {

    display: flex !important;

    align-items: baseline !important;

    justify-content: center !important;

    width: 100% !important;

    margin: 0 0 5px !important;

    padding: 0 !important;

    direction: ltr !important;

    text-align: center !important;
}


.stop-work-number span {

    display: inline-block !important;

    margin: 0 !important;

    padding: 0 !important;

    color: #171717 !important;

    font-size: 39px !important;

    line-height: 1.2 !important;

    font-weight: 900 !important;

    direction: ltr !important;
}


.stop-work-number b {

    margin-right: 4px !important;

    color: #d39b00 !important;

    font-size: 25px;

    font-weight: 900;
}


/* Counter title */

.stop-work-counter h3 {

    display: block !important;

    width: 100% !important;

    margin: 4px auto 5px !important;

    padding: 0 !important;

    color: #222 !important;

    font-size: 17px !important;

    line-height: 1.6 !important;

    font-weight: 800 !important;

    direction: rtl !important;

    text-align: center !important;
}


/* Counter description */

.stop-work-counter p {

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    color: #999 !important;

    font-size: 12px !important;

    line-height: 1.7 !important;

    direction: rtl !important;

    text-align: center !important;
}


/* =====================================================
   IMAGE
===================================================== */

#stop-work-image {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    height: 390px !important;

    margin: 0 !important;

    padding: 0 !important;

    border-radius: 22px;

    overflow: hidden !important;

    box-sizing: border-box !important;

    background: #111 !important;
}


#stop-work-image img {

    display: block !important;

    width: 100% !important;

    height: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    object-fit: cover !important;

    border: 0 !important;

    border-radius: 0 !important;

    box-sizing: border-box !important;
}


/* Dark overlay */

#stop-work-image::after {

    content: "";

    position: absolute !important;

    inset: 0 !important;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.70),
            rgba(0,0,0,.15)
        );

    pointer-events: none;

}


/* Image information */

#stop-work-image-overlay {

    position: absolute !important;

    z-index: 3;

    right: 35px;

    bottom: 30px;

    display: flex !important;

    align-items: center !important;

    gap: 12px;

    max-width: 500px;

    margin: 0 !important;

    padding: 12px 18px;

    border-radius: 12px;

    background: rgba(0,0,0,.60);

    border: 1px solid rgba(255,255,255,.15);

    backdrop-filter: blur(8px);

    direction: rtl !important;

    text-align: right !important;
}


#stop-work-image-overlay div {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 42px !important;

    height: 42px !important;

    flex: 0 0 42px;

    border-radius: 10px;

    background: #f5b400 !important;

    color: #111 !important;

    font-size: 19px;

}


#stop-work-image-overlay span {

    color: #ffffff !important;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.6;

    direction: rtl !important;

    text-align: right !important;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    #stop-work-counters {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

    #stop-work-header h2 {

        font-size: 38px !important;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    #stop-work-section {

        padding: 70px 16px !important;

    }


    #stop-work-header {

        margin-bottom: 35px !important;

    }


    #stop-work-header h2 {

        font-size: 31px !important;

        line-height: 1.4 !important;

    }


    #stop-work-header p {

        font-size: 14px !important;

        line-height: 1.9 !important;

    }


    #stop-work-counters {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;

        margin-bottom: 35px !important;

    }


    .stop-work-counter {

        min-height: 220px;

        padding: 22px 10px !important;

        border-radius: 15px;

    }


    .stop-work-counter-icon {

        width: 48px !important;

        height: 48px !important;

        margin-bottom: 13px !important;

        font-size: 20px;

    }


    .stop-work-number span {

        font-size: 29px !important;

    }


    .stop-work-number b {

        font-size: 20px;

    }


    .stop-work-counter h3 {

        font-size: 14px !important;

    }


    .stop-work-counter p {

        font-size: 11px !important;

    }


    #stop-work-image {

        height: 280px !important;

        border-radius: 17px;

    }


    #stop-work-image-overlay {

        right: 15px;

        left: 15px;

        bottom: 15px;

        max-width: none;

        padding: 9px 12px;

    }


    #stop-work-image-overlay div {

        width: 36px !important;

        height: 36px !important;

        flex-basis: 36px;

    }


    #stop-work-image-overlay span {

        font-size: 12px;

    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    #stop-work-counters {

        grid-template-columns: 1fr;

    }


    .stop-work-counter {

        min-height: auto;

    }

}


/* منطقة 5  */

/* =====================================================
   STOP GERMAN PREMIUM SERVICES
   FULLY ISOLATED
===================================================== */

#stop-services-showcase {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 105px 20px !important;

    box-sizing: border-box !important;

    background:
        linear-gradient(
            180deg,
            #101010 0%,
            #151515 55%,
            #101010 100%
        ) !important;

    direction: rtl !important;

    text-align: center !important;

    overflow: hidden !important;

    isolation: isolate;
}


/* Glow */

#stop-services-bg-glow {

    position: absolute !important;

    width: 650px;

    height: 650px;

    top: -350px;

    left: -200px;

    border-radius: 50%;

    background: rgba(245,180,0,.09);

    filter: blur(35px);

    pointer-events: none;

    z-index: -1;
}


/* Inner */

#stop-services-inner {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* =====================================================
   HEADER
===================================================== */

#stop-services-header {

    display: block !important;

    width: 100% !important;

    max-width: 760px !important;

    margin: 0 auto 45px !important;

    padding: 0 !important;

    text-align: center !important;

    direction: rtl !important;
}


#stop-services-badge {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 8px;

    margin: 0 auto 18px !important;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(245,180,0,.10) !important;

    border: 1px solid rgba(245,180,0,.22);

    color: #f5b400 !important;

    font-size: 13px;

    font-weight: 800;

    direction: rtl !important;
}


#stop-services-header h2 {

    display: block !important;

    width: 100% !important;

    margin: 0 auto 16px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 46px !important;

    line-height: 1.35 !important;

    font-weight: 800 !important;

    direction: rtl !important;

    text-align: center !important;
}


#stop-services-header h2 strong {

    color: #f5b400 !important;

    font-weight: 800 !important;
}


#stop-services-header p {

    display: block !important;

    width: 100% !important;

    max-width: 700px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    color: rgba(255,255,255,.62) !important;

    font-size: 15px !important;

    line-height: 2 !important;

    direction: rtl !important;

    text-align: center !important;
}


/* =====================================================
   FILTERS
===================================================== */

#stop-services-filters {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex-wrap: wrap !important;

    gap: 9px;

    width: 100% !important;

    margin: 0 auto 40px !important;

    padding: 0 !important;

    direction: rtl !important;
}


.stop-service-filter {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 7px;

    margin: 0 !important;

    padding: 11px 18px !important;

    border: 1px solid rgba(255,255,255,.12) !important;

    border-radius: 50px !important;

    outline: none !important;

    background: rgba(255,255,255,.05) !important;

    color: rgba(255,255,255,.65) !important;

    font-family: inherit !important;

    font-size: 13px !important;

    font-weight: 700 !important;

    line-height: 1.5 !important;

    cursor: pointer;

    direction: rtl !important;

    transition: all .25s ease;
}


.stop-service-filter:hover {

    border-color: rgba(245,180,0,.35) !important;

    color: #ffffff !important;

}


.stop-service-filter.active {

    background: #f5b400 !important;

    border-color: #f5b400 !important;

    color: #111111 !important;

    box-shadow:
        0 8px 25px rgba(245,180,0,.18);
}


/* =====================================================
   GRID
===================================================== */

#stop-services-grid {

    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* =====================================================
   CARD
===================================================== */

.stop-service-card {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    border-radius: 20px;

    background: #1b1b1b !important;

    border: 1px solid rgba(255,255,255,.08);

    overflow: hidden !important;

    box-sizing: border-box !important;

    direction: rtl !important;

    text-align: right !important;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.stop-service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(245,180,0,.35);

    box-shadow:
        0 25px 55px rgba(0,0,0,.35);
}


/* =====================================================
   IMAGE
===================================================== */

.stop-service-image {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    height: 250px !important;

    margin: 0 !important;

    padding: 0 !important;

    overflow: hidden !important;

    background: #111 !important;
}


.stop-service-image img {

    display: block !important;

    width: 100% !important;

    height: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    object-fit: cover !important;

    border: 0 !important;

    transition:
        transform .6s ease;
}


.stop-service-card:hover
.stop-service-image img {

    transform: scale(1.08);
}


/* Image dark overlay */

.stop-service-image::after {

    content: "";

    position: absolute !important;

    inset: 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05) 20%,
            rgba(0,0,0,.70) 100%
        );

    pointer-events: none;

    z-index: 1;
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.stop-service-overlay {

    position: absolute !important;

    z-index: 3;

    top: 15px;

    right: 15px;

    left: 15px;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    direction: rtl !important;
}


.stop-service-number {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    min-width: 43px;

    height: 34px;

    padding: 0 10px;

    border-radius: 50px;

    background: rgba(0,0,0,.55);

    border: 1px solid rgba(255,255,255,.16);

    color: #ffffff !important;

    font-size: 12px;

    font-weight: 800;

    direction: ltr !important;

    backdrop-filter: blur(8px);
}


.stop-service-view {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 42px !important;

    height: 42px !important;

    margin: 0 !important;

    padding: 0 !important;

    border-radius: 50%;

    background: rgba(245,180,0,.95) !important;

    color: #111 !important;

    text-decoration: none !important;

    font-size: 16px;

    transition:
        transform .25s ease,
        background .25s ease;
}


.stop-service-view:hover {

    background: #ffffff !important;

    color: #111 !important;

    transform: rotate(8deg) scale(1.08);
}


/* =====================================================
   CARD CONTENT
===================================================== */

.stop-service-content {

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 24px 23px 27px !important;

    box-sizing: border-box !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-service-tag {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    margin: 0 0 10px !important;

    padding: 5px 10px;

    border-radius: 50px;

    background: rgba(245,180,0,.10) !important;

    color: #f5b400 !important;

    font-size: 11px;

    font-weight: 800;

    line-height: 1.5;

    direction: rtl !important;
}


.stop-service-content h3 {

    display: block !important;

    width: 100% !important;

    margin: 0 0 8px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 20px !important;

    line-height: 1.5 !important;

    font-weight: 800 !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-service-content p {

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.52) !important;

    font-size: 13px !important;

    line-height: 1.9 !important;

    direction: rtl !important;

    text-align: right !important;
}


/* =====================================================
   BOTTOM CTA
===================================================== */

#stop-services-bottom {

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 20px;

    width: 100% !important;

    margin: 45px auto 0 !important;

    padding: 18px 22px !important;

    box-sizing: border-box !important;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 15px;

    background: rgba(255,255,255,.035);

    direction: rtl !important;

}


#stop-services-bottom > div {

    display: flex !important;

    align-items: center !important;

    gap: 10px;

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.72) !important;

    font-size: 13px;

    font-weight: 700;

    direction: rtl !important;
}


#stop-services-bottom > div i {

    color: #f5b400 !important;

    font-size: 20px;
}


#stop-services-bottom a {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 8px;

    margin: 0 !important;

    padding: 11px 18px !important;

    border-radius: 9px;

    background: #f5b400 !important;

    color: #111 !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

    transition: .25s;
}


#stop-services-bottom a:hover {

    background: #ffc928 !important;

    color: #111 !important;

    transform: translateY(-2px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    #stop-services-showcase {

        padding: 85px 20px !important;
    }


    #stop-services-header h2 {

        font-size: 39px !important;
    }


    #stop-services-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    #stop-services-showcase {

        padding: 70px 15px !important;
    }


    #stop-services-header {

        margin-bottom: 32px !important;
    }


    #stop-services-header h2 {

        font-size: 31px !important;

        line-height: 1.4 !important;
    }


    #stop-services-header p {

        font-size: 14px !important;

        line-height: 1.9 !important;
    }


    #stop-services-filters {

        gap: 7px;

        margin-bottom: 30px !important;
    }


    .stop-service-filter {

        padding: 9px 12px !important;

        font-size: 11px !important;
    }


    #stop-services-grid {

        grid-template-columns: 1fr !important;

        gap: 15px;
    }


    .stop-service-image {

        height: 230px !important;
    }


    .stop-service-content {

        padding: 20px !important;
    }


    #stop-services-bottom {

        flex-direction: column !important;

        align-items: stretch !important;

        justify-content: center !important;

        text-align: center !important;

        padding: 17px !important;
    }


    #stop-services-bottom > div {

        justify-content: center !important;

        text-align: center !important;
    }


    #stop-services-bottom a {

        width: 100% !important;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    #stop-services-header h2 {

        font-size: 28px !important;
    }


    .stop-service-filter {

        padding: 8px 9px !important;

        font-size: 10px !important;
    }

}

/* منطقة 6  */


/* =====================================================
   STOP GERMAN PREMIUM PROTECTION
   FULLY ISOLATED SECTION
===================================================== */

#stop-protection-showcase {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 105px 20px !important;

    box-sizing: border-box !important;

    background:
        linear-gradient(
            135deg,
            #0d0d0d 0%,
            #151515 50%,
            #101010 100%
        ) !important;

    direction: rtl !important;

    text-align: right !important;

    overflow: hidden !important;

    isolation: isolate;
}


/* =====================================================
   BACKGROUND
===================================================== */

.stop-protection-bg {

    position: absolute !important;

    width: 650px;

    height: 650px;

    top: -330px;

    right: -250px;

    border-radius: 50%;

    background: rgba(245,180,0,.08);

    filter: blur(45px);

    pointer-events: none;

    z-index: -1;
}


.stop-protection-bg::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    left: -900px;

    top: 600px;

    border-radius: 50%;

    background: rgba(245,180,0,.05);

}


/* =====================================================
   CONTAINER
===================================================== */

.stop-protection-container {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    max-width: 1180px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* =====================================================
   HEADER
===================================================== */

.stop-protection-header {

    display: block !important;

    width: 100% !important;

    max-width: 780px !important;

    margin: 0 auto 55px !important;

    padding: 0 !important;

    text-align: center !important;

    direction: rtl !important;
}


.stop-protection-label {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 8px;

    margin: 0 auto 18px !important;

    padding: 8px 17px;

    border-radius: 50px;

    background: rgba(245,180,0,.10) !important;

    border: 1px solid rgba(245,180,0,.22);

    color: #f5b400 !important;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.5;

    direction: rtl !important;
}


.stop-protection-header h2 {

    display: block !important;

    width: 100% !important;

    margin: 0 auto 17px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 44px !important;

    font-weight: 800 !important;

    line-height: 1.35 !important;

    direction: rtl !important;

    text-align: center !important;
}


.stop-protection-header h2 strong {

    color: #f5b400 !important;

    font-weight: 800 !important;
}


.stop-protection-header p {

    display: block !important;

    width: 100% !important;

    max-width: 700px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    color: rgba(255,255,255,.58) !important;

    font-size: 15px !important;

    line-height: 2 !important;

    direction: rtl !important;

    text-align: center !important;
}


/* =====================================================
   MAIN LAYOUT
===================================================== */

.stop-protection-layout {

    display: grid !important;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, .9fr);

    gap: 25px;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: ltr !important;
}


/* =====================================================
   FEATURE
===================================================== */

.stop-protection-feature {

    display: flex !important;

    flex-direction: column !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    border-radius: 24px;

    background: #1b1b1b !important;

    border: 1px solid rgba(255,255,255,.08);

    overflow: hidden !important;

    direction: rtl !important;

    box-sizing: border-box !important;

    transition: .35s ease;
}


.stop-protection-feature:hover {

    border-color: rgba(245,180,0,.30);

    box-shadow:
        0 25px 70px rgba(0,0,0,.35);
}


/* =====================================================
   FEATURE IMAGE
===================================================== */

.stop-protection-feature-image {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    height: 330px !important;

    margin: 0 !important;

    padding: 0 !important;

    overflow: hidden !important;

    background: #111 !important;
}


.stop-protection-feature-image img {

    display: block !important;

    width: 100% !important;

    height: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    border: 0 !important;

    object-fit: cover !important;

    transition: transform .7s ease;
}


.stop-protection-feature:hover
.stop-protection-feature-image img {

    transform: scale(1.06);
}


.stop-protection-image-overlay {

    position: absolute !important;

    inset: 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05),
            rgba(0,0,0,.70)
        );

    pointer-events: none;

    z-index: 1;
}


/* Number */

.stop-protection-feature-number {

    position: absolute !important;

    top: 18px;

    right: 18px;

    z-index: 3;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 48px;

    height: 38px;

    border-radius: 50px;

    background: rgba(0,0,0,.55);

    border: 1px solid rgba(255,255,255,.15);

    color: #ffffff !important;

    font-size: 13px;

    font-weight: 900;

    direction: ltr !important;

    backdrop-filter: blur(8px);
}


/* Icon */

.stop-protection-feature-icon {

    position: absolute !important;

    bottom: 20px;

    right: 20px;

    z-index: 3;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 55px;

    height: 55px;

    border-radius: 16px;

    background: #f5b400 !important;

    color: #111 !important;

    font-size: 23px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.35);
}


/* =====================================================
   FEATURE CONTENT
===================================================== */

.stop-protection-feature-content {

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 28px !important;

    box-sizing: border-box !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-protection-mini-label {

    display: block !important;

    margin: 0 0 8px !important;

    color: #f5b400 !important;

    font-size: 12px;

    font-weight: 800;
}


.stop-protection-feature-content h3 {

    display: block !important;

    width: 100% !important;

    margin: 0 0 10px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 25px !important;

    line-height: 1.5 !important;

    font-weight: 800 !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-protection-feature-content p {

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.55) !important;

    font-size: 14px !important;

    line-height: 2 !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-protection-feature-line {

    width: 100% !important;

    height: 4px;

    margin-top: 23px;

    border-radius: 50px;

    background: rgba(255,255,255,.07);

    overflow: hidden;
}


.stop-protection-feature-line span {

    display: block !important;

    width: 65%;

    height: 100%;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #b47d00,
            #f5b400
        );
}


/* =====================================================
   SIDE CARDS
===================================================== */

.stop-protection-list {

    display: flex !important;

    flex-direction: column !important;

    gap: 15px;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    direction: rtl !important;
}


.stop-protection-card {

    position: relative !important;

    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    min-height: 0 !important;

    margin: 0 !important;

    padding: 22px !important;

    box-sizing: border-box !important;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.035) !important;

    direction: rtl !important;

    text-align: right !important;

    transition: .3s ease;
}


.stop-protection-card:hover {

    background: rgba(245,180,0,.07) !important;

    border-color: rgba(245,180,0,.28);

    transform: translateX(-6px);
}


/* Card Icon */

.stop-protection-card-icon {

    flex: 0 0 auto;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 56px;

    height: 56px;

    margin-left: 17px;

    border-radius: 15px;

    background: rgba(245,180,0,.10) !important;

    color: #f5b400 !important;

    font-size: 22px;
}


/* Card Content */

.stop-protection-card-content {

    flex: 1 1 auto;

    min-width: 0;

    display: block !important;

    margin: 0 !important;

    padding: 0 !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-protection-card-content > span {

    display: block !important;

    margin: 0 0 4px !important;

    color: #f5b400 !important;

    font-size: 10px;

    font-weight: 900;

    direction: ltr !important;

    text-align: right !important;
}


.stop-protection-card-content h3 {

    display: block !important;

    margin: 0 0 5px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 17px !important;

    line-height: 1.5 !important;

    font-weight: 800 !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-protection-card-content p {

    display: block !important;

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.48) !important;

    font-size: 12px !important;

    line-height: 1.8 !important;

    direction: rtl !important;

    text-align: right !important;
}


/* Arrow */

.stop-protection-arrow {

    flex: 0 0 auto;

    margin-right: 10px;

    color: rgba(255,255,255,.25) !important;

    font-size: 17px;

    transition: .25s;
}


.stop-protection-card:hover
.stop-protection-arrow {

    color: #f5b400 !important;

    transform: translateX(-4px);
}


/* =====================================================
   TRUST BAR
===================================================== */

.stop-protection-trust {

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;

    width: 100% !important;

    margin: 25px 0 0 !important;

    padding: 0 !important;

    direction: rtl !important;
}


.stop-protection-trust-item {

    display: flex !important;

    align-items: center !important;

    gap: 10px;

    min-width: 0;

    margin: 0 !important;

    padding: 15px 17px !important;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,.07);

    background: rgba(255,255,255,.025) !important;

    direction: rtl !important;
}


.stop-protection-trust-item > i {

    flex: 0 0 auto;

    color: #f5b400 !important;

    font-size: 18px;
}


.stop-protection-trust-item div {

    display: flex !important;

    flex-direction: column !important;

    min-width: 0;

    margin: 0 !important;

    padding: 0 !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-protection-trust-item strong {

    color: #ffffff !important;

    font-size: 12px;

    line-height: 1.6;

    font-weight: 800;
}


.stop-protection-trust-item span {

    color: rgba(255,255,255,.40) !important;

    font-size: 10px;

    line-height: 1.6;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    #stop-protection-showcase {

        padding: 85px 20px !important;
    }


    .stop-protection-header h2 {

        font-size: 38px !important;
    }


    .stop-protection-layout {

        grid-template-columns: 1fr !important;
    }


    .stop-protection-feature-image {

        height: 360px !important;
    }


    .stop-protection-trust {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    #stop-protection-showcase {

        padding: 70px 15px !important;
    }


    .stop-protection-header {

        margin-bottom: 35px !important;
    }


    .stop-protection-header h2 {

        font-size: 29px !important;

        line-height: 1.45 !important;
    }


    .stop-protection-header p {

        font-size: 13px !important;

        line-height: 1.9 !important;
    }


    .stop-protection-feature-image {

        height: 250px !important;
    }


    .stop-protection-feature-content {

        padding: 22px 19px !important;
    }


    .stop-protection-feature-content h3 {

        font-size: 22px !important;
    }


    .stop-protection-card {

        padding: 17px !important;
    }


    .stop-protection-card-icon {

        width: 48px;

        height: 48px;

        margin-left: 12px;

        font-size: 19px;
    }


    .stop-protection-card-content h3 {

        font-size: 15px !important;
    }


    .stop-protection-card-content p {

        font-size: 11px !important;
    }


    .stop-protection-arrow {

        display: none !important;
    }


    .stop-protection-trust {

        grid-template-columns: 1fr 1fr !important;

        gap: 8px;
    }


    .stop-protection-trust-item {

        padding: 12px 10px !important;

        gap: 7px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .stop-protection-header h2 {

        font-size: 26px !important;
    }


    .stop-protection-trust {

        grid-template-columns: 1fr !important;
    }

}

/* منطقة 6 */


/* =====================================================
   STOP GERMAN EXPERT TEAM
   FULLY ISOLATED
===================================================== */

#stop-expert-section {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 100px 20px !important;

    box-sizing: border-box !important;

    background:
        linear-gradient(
            135deg,
            #f8f8f8 0%,
            #ffffff 50%,
            #f5f5f5 100%
        ) !important;

    direction: rtl !important;

    overflow: hidden !important;

    isolation: isolate;
}


/* =====================================================
   BACKGROUND DECORATION
===================================================== */

#stop-expert-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    top: -250px;

    right: -180px;

    border-radius: 50%;

    background: rgba(245,180,0,.09);

    filter: blur(50px);

    pointer-events: none;

    z-index: -1;
}


#stop-expert-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    bottom: -200px;

    left: -100px;

    border-radius: 50%;

    background: rgba(245,180,0,.06);

    filter: blur(40px);

    pointer-events: none;

    z-index: -1;
}


/* =====================================================
   CONTAINER
===================================================== */

.stop-expert-container {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    max-width: 1180px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* =====================================================
   HEADER
===================================================== */

.stop-expert-header {

    display: block !important;

    width: 100% !important;

    max-width: 760px !important;

    margin: 0 auto 55px !important;

    padding: 0 !important;

    text-align: center !important;

    direction: rtl !important;
}


.stop-expert-label {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 8px;

    margin: 0 auto 18px !important;

    padding: 8px 17px;

    border-radius: 50px;

    background: rgba(245,180,0,.10) !important;

    border: 1px solid rgba(245,180,0,.20);

    color: #b78400 !important;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.5;
}


.stop-expert-header h2 {

    display: block !important;

    width: 100% !important;

    margin: 0 auto 16px !important;

    padding: 0 !important;

    color: #171717 !important;

    font-size: 43px !important;

    line-height: 1.35 !important;

    font-weight: 900 !important;

    text-align: center !important;

    direction: rtl !important;
}


.stop-expert-header h2 strong {

    color: #d39b00 !important;

    font-weight: 900 !important;
}


.stop-expert-header p {

    display: block !important;

    width: 100% !important;

    max-width: 690px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    color: #777 !important;

    font-size: 15px !important;

    line-height: 2 !important;

    text-align: center !important;

    direction: rtl !important;
}


/* =====================================================
   GRID
===================================================== */

.stop-expert-grid {

    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* =====================================================
   CARD
===================================================== */

.stop-expert-card {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    border-radius: 20px;

    background: #ffffff !important;

    border: 1px solid #eeeeee;

    box-shadow:
        0 10px 35px rgba(0,0,0,.055);

    overflow: hidden !important;

    box-sizing: border-box !important;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.stop-expert-card:hover {

    transform: translateY(-9px);

    border-color: rgba(245,180,0,.45);

    box-shadow:
        0 25px 55px rgba(0,0,0,.12);
}


/* =====================================================
   IMAGE
===================================================== */

.stop-expert-image {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    height: 255px !important;

    margin: 0 !important;

    padding: 0 !important;

    overflow: hidden !important;

    background: #151515 !important;
}


.stop-expert-image img {

    display: block !important;

    width: 100% !important;

    height: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    border: 0 !important;

    object-fit: cover !important;

    transition: transform .6s ease;
}


.stop-expert-card:hover
.stop-expert-image img {

    transform: scale(1.08);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.stop-expert-image-overlay {

    position: absolute !important;

    inset: 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02),
            rgba(0,0,0,.55)
        );

    pointer-events: none;

    z-index: 1;
}


/* =====================================================
   NUMBER
===================================================== */

.stop-expert-number {

    position: absolute !important;

    top: 15px;

    right: 15px;

    z-index: 3;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 42px;

    height: 35px;

    border-radius: 50px;

    background: rgba(0,0,0,.55);

    border: 1px solid rgba(255,255,255,.20);

    color: #ffffff !important;

    font-size: 11px;

    font-weight: 900;

    direction: ltr !important;

    backdrop-filter: blur(8px);
}


/* =====================================================
   CONTENT
===================================================== */

.stop-expert-content {

    display: flex !important;

    align-items: flex-start !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 22px 19px 24px !important;

    box-sizing: border-box !important;

    direction: rtl !important;

    text-align: right !important;
}


/* =====================================================
   ICON
===================================================== */

.stop-expert-icon {

    flex: 0 0 auto;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 45px;

    height: 45px;

    margin-left: 12px;

    border-radius: 13px;

    background: rgba(245,180,0,.12) !important;

    color: #c28f00 !important;

    font-size: 18px;

    transition: .3s;
}


.stop-expert-card:hover
.stop-expert-icon {

    background: #f5b400 !important;

    color: #111 !important;

    transform: rotate(-5deg);
}


/* =====================================================
   TEXT
===================================================== */

.stop-expert-text {

    flex: 1 1 auto;

    min-width: 0;

    display: block !important;

    margin: 0 !important;

    padding: 0 !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-expert-text > span {

    display: block !important;

    margin: 0 0 5px !important;

    padding: 0 !important;

    color: #c49300 !important;

    font-size: 10px;

    font-weight: 800;
}


.stop-expert-text h3 {

    display: block !important;

    width: 100% !important;

    margin: 0 0 7px !important;

    padding: 0 !important;

    color: #171717 !important;

    font-size: 17px !important;

    line-height: 1.5 !important;

    font-weight: 900 !important;

    text-align: right !important;

    direction: rtl !important;
}


.stop-expert-text p {

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    color: #777 !important;

    font-size: 11px !important;

    line-height: 1.8 !important;

    text-align: right !important;

    direction: rtl !important;
}


/* =====================================================
   BOTTOM TRUST BAR
===================================================== */

.stop-expert-bottom {

    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    margin: 28px 0 0 !important;

    padding: 18px 22px !important;

    box-sizing: border-box !important;

    border-radius: 18px;

    background: #111111 !important;

    direction: rtl !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);
}


.stop-expert-bottom-icon {

    flex: 0 0 auto;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 52px;

    height: 52px;

    margin-left: 15px;

    border-radius: 15px;

    background: rgba(245,180,0,.13) !important;

    color: #f5b400 !important;

    font-size: 22px;
}


.stop-expert-bottom-text {

    flex: 1 1 auto;

    min-width: 0;

    display: flex !important;

    flex-direction: column !important;

    margin: 0 !important;

    padding: 0 !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-expert-bottom-text strong {

    color: #ffffff !important;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 800;
}


.stop-expert-bottom-text span {

    color: rgba(255,255,255,.45) !important;

    font-size: 11px;

    line-height: 1.7;
}


/* =====================================================
   BUTTON
===================================================== */

.stop-expert-button {

    flex: 0 0 auto;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 9px;

    min-width: 165px;

    margin-right: 20px;

    padding: 13px 18px !important;

    border-radius: 10px;

    background: #f5b400 !important;

    color: #111111 !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 900;

    transition: .3s;
}


.stop-expert-button:hover {

    background: #ffc928 !important;

    color: #111111 !important;

    text-decoration: none !important;

    transform: translateY(-3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .stop-expert-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 991px) {

    #stop-expert-section {

        padding: 85px 20px !important;
    }


    .stop-expert-header h2 {

        font-size: 37px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    #stop-expert-section {

        padding: 70px 15px !important;
    }


    .stop-expert-header {

        margin-bottom: 35px !important;
    }


    .stop-expert-header h2 {

        font-size: 29px !important;

        line-height: 1.45 !important;
    }


    .stop-expert-header p {

        font-size: 13px !important;

        line-height: 1.9 !important;
    }


    .stop-expert-grid {

        grid-template-columns: 1fr !important;

        gap: 15px !important;
    }


    .stop-expert-image {

        height: 260px !important;
    }


    .stop-expert-content {

        padding: 20px 17px 22px !important;
    }


    .stop-expert-text h3 {

        font-size: 16px !important;
    }


    .stop-expert-text p {

        font-size: 11px !important;
    }


    .stop-expert-bottom {

        flex-wrap: wrap !important;

        padding: 17px !important;
    }


    .stop-expert-bottom-icon {

        width: 45px;

        height: 45px;

        margin-left: 10px;
    }


    .stop-expert-bottom-text strong {

        font-size: 13px;
    }


    .stop-expert-bottom-text span {

        font-size: 10px;
    }


    .stop-expert-button {

        width: 100% !important;

        margin: 15px 0 0 !important;

        box-sizing: border-box !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .stop-expert-header h2 {

        font-size: 26px !important;
    }


    .stop-expert-image {

        height: 230px !important;
    }

}

/* منطقة 7 */


/* =====================================================
   STOP GERMAN PREMIUM CONTACT
   ISOLATED DESIGN
===================================================== */

#stop-premium-contact {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 100px 20px !important;

    box-sizing: border-box !important;

    overflow: hidden !important;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(245,180,0,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0c0c0c 0%,
            #151515 50%,
            #0b0b0b 100%
        ) !important;

    direction: rtl !important;

    isolation: isolate;
}


/* =====================================================
   BACKGROUND GLOW
===================================================== */

.stop-contact-glow {

    position: absolute !important;

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;

    filter: blur(40px);
}


.stop-contact-glow-one {

    width: 400px;

    height: 400px;

    top: -200px;

    right: -100px;

    background: rgba(245,180,0,.08);
}


.stop-contact-glow-two {

    width: 300px;

    height: 300px;

    bottom: -150px;

    left: -80px;

    background: rgba(245,180,0,.06);
}


/* =====================================================
   CONTAINER
===================================================== */

.stop-contact-container {

    position: relative !important;

    width: 100% !important;

    max-width: 1150px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* =====================================================
   HEADER
===================================================== */

.stop-contact-header {

    width: 100% !important;

    max-width: 720px !important;

    margin: 0 auto 50px !important;

    padding: 0 !important;

    text-align: center !important;

    direction: rtl !important;
}


.stop-contact-label {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 8px;

    margin-bottom: 18px;

    padding: 8px 17px;

    border-radius: 50px;

    background: rgba(245,180,0,.10) !important;

    border: 1px solid rgba(245,180,0,.25);

    color: #f5b400 !important;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.5;
}


.stop-contact-header h2 {

    width: 100% !important;

    margin: 0 0 16px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 45px !important;

    line-height: 1.35 !important;

    font-weight: 900 !important;

    text-align: center !important;

    direction: rtl !important;
}


.stop-contact-header h2 strong {

    color: #f5b400 !important;

    font-weight: 900 !important;
}


.stop-contact-header p {

    width: 100% !important;

    max-width: 680px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    color: rgba(255,255,255,.60) !important;

    font-size: 15px !important;

    line-height: 2 !important;

    text-align: center !important;

    direction: rtl !important;
}


/* =====================================================
   CONTACT GRID
===================================================== */

.stop-contact-grid {

    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* =====================================================
   CARD
===================================================== */

.stop-contact-card {

    position: relative !important;

    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    min-width: 0 !important;

    min-height: 145px;

    margin: 0 !important;

    padding: 25px !important;

    box-sizing: border-box !important;

    border-radius: 20px;

    background: rgba(255,255,255,.055) !important;

    border: 1px solid rgba(255,255,255,.10);

    text-decoration: none !important;

    direction: rtl !important;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.stop-contact-card:hover {

    transform: translateY(-7px);

    background: rgba(255,255,255,.09) !important;

    border-color: rgba(245,180,0,.40);

    box-shadow:
        0 20px 45px rgba(0,0,0,.25);

    text-decoration: none !important;
}


/* =====================================================
   ICON
===================================================== */

.stop-contact-card-icon {

    flex: 0 0 auto;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 58px;

    height: 58px;

    margin-left: 15px;

    border-radius: 16px;

    background: rgba(245,180,0,.12) !important;

    color: #f5b400 !important;

    font-size: 22px;

    transition: .3s;
}


.stop-contact-card:hover
.stop-contact-card-icon {

    background: #f5b400 !important;

    color: #111111 !important;

    transform: scale(1.05);
}


/* =====================================================
   CONTENT
===================================================== */

.stop-contact-card-content {

    flex: 1 1 auto;

    min-width: 0;

    display: flex !important;

    flex-direction: column !important;

    align-items: flex-start !important;

    margin: 0 !important;

    padding: 0 !important;

    direction: rtl !important;

    text-align: right !important;
}


.stop-contact-card-content span {

    display: block !important;

    margin: 0 0 5px !important;

    padding: 0 !important;

    color: rgba(255,255,255,.45) !important;

    font-size: 11px !important;

    line-height: 1.6 !important;

    font-weight: 700;
}


.stop-contact-card-content strong {

    display: block !important;

    max-width: 100% !important;

    margin: 0 0 5px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 17px !important;

    line-height: 1.6 !important;

    font-weight: 900 !important;

    word-break: break-word;
}


.stop-contact-card-content small {

    display: block !important;

    max-width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.40) !important;

    font-size: 10px !important;

    line-height: 1.7 !important;
}


/* =====================================================
   ARROW
===================================================== */

.stop-contact-arrow {

    flex: 0 0 auto;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 34px;

    height: 34px;

    margin-right: 8px;

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    color: rgba(255,255,255,.55);

    font-size: 13px;

    transition: .3s;
}


.stop-contact-card:hover
.stop-contact-arrow {

    background: #f5b400;

    color: #111111;

    transform: translateX(-4px);
}


/* =====================================================
   STATIC ICON
===================================================== */

.stop-contact-static-icon {

    flex: 0 0 auto;

    color: #f5b400;

    font-size: 18px;

    margin-right: 8px;
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.stop-contact-bottom {

    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    margin: 25px 0 0 !important;

    padding: 18px 22px !important;

    box-sizing: border-box !important;

    border-radius: 18px;

    background: #f5b400 !important;

    direction: rtl !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.20);
}


/* RIGHT */

.stop-contact-bottom-right {

    flex: 1 1 auto;

    display: flex !important;

    align-items: center !important;

    min-width: 0;

    direction: rtl !important;

    text-align: right !important;
}


.stop-contact-shield {

    flex: 0 0 auto;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 48px;

    height: 48px;

    margin-left: 13px;

    border-radius: 14px;

    background: rgba(0,0,0,.10);

    color: #111111;

    font-size: 21px;
}


.stop-contact-bottom-right strong {

    display: block !important;

    margin: 0 0 3px !important;

    color: #111111 !important;

    font-size: 15px;

    font-weight: 900;
}


.stop-contact-bottom-right span {

    display: block !important;

    color: rgba(0,0,0,.60) !important;

    font-size: 11px;

    line-height: 1.6;
}


/* CENTER */

.stop-contact-bottom-center {

    flex: 0 0 auto;

    margin: 0 20px;

}


.stop-contact-bottom-center span {

    display: inline-flex !important;

    align-items: center !important;

    gap: 7px;

    color: rgba(0,0,0,.65) !important;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;
}


/* BUTTON */

.stop-contact-main-button {

    flex: 0 0 auto;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 9px;

    min-width: 145px;

    padding: 13px 20px !important;

    border-radius: 10px;

    background: #111111 !important;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 900;

    transition: .3s;
}


.stop-contact-main-button:hover {

    background: #222222 !important;

    color: #ffffff !important;

    text-decoration: none !important;

    transform: translateY(-3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    #stop-premium-contact {

        padding: 85px 20px !important;
    }


    .stop-contact-header h2 {

        font-size: 38px !important;
    }


    .stop-contact-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .stop-contact-card:last-child {

        grid-column: 1 / -1;
    }


    .stop-contact-bottom-center {

        display: none !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    #stop-premium-contact {

        padding: 70px 15px !important;
    }


    .stop-contact-header {

        margin-bottom: 35px !important;
    }


    .stop-contact-header h2 {

        font-size: 29px !important;

        line-height: 1.45 !important;
    }


    .stop-contact-header p {

        font-size: 13px !important;

        line-height: 1.9 !important;
    }


    .stop-contact-grid {

        grid-template-columns: 1fr !important;

        gap: 12px !important;
    }


    .stop-contact-card:last-child {

        grid-column: auto !important;
    }


    .stop-contact-card {

        min-height: 125px;

        padding: 20px 17px !important;
    }


    .stop-contact-card-icon {

        width: 50px;

        height: 50px;

        margin-left: 11px;

        font-size: 19px;
    }


    .stop-contact-card-content strong {

        font-size: 14px !important;
    }


    .stop-contact-card-content small {

        font-size: 9px !important;
    }


    .stop-contact-arrow {

        width: 30px;

        height: 30px;

        font-size: 11px;
    }


    .stop-contact-bottom {

        flex-direction: column !important;

        align-items: stretch !important;

        padding: 17px !important;
    }


    .stop-contact-bottom-right {

        width: 100% !important;
    }


    .stop-contact-main-button {

        width: 100% !important;

        margin-top: 15px !important;

        box-sizing: border-box !important;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .stop-contact-header h2 {

        font-size: 26px !important;
    }


    .stop-contact-card-content strong {

        font-size: 13px !important;
    }

}

/* منطقة نموزج  الارسال  */

/* =====================================================
   STOP GERMAN PREMIUM SERVICE FORM
   FULLY ISOLATED
===================================================== */

.stop-service-form {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    max-width: 850px !important;

    margin: 45px auto !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;

    isolation: isolate;
}


/* =====================================================
   MAIN CARD
===================================================== */

.stop-service-form-inner {

    position: relative !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 55px 55px 45px !important;

    box-sizing: border-box !important;

    border-radius: 28px;

    overflow: hidden !important;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(245,180,0,.14),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #0c0c0c 0%,
            #171717 55%,
            #101010 100%
        ) !important;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 30px 80px rgba(0,0,0,.20);
}


/* Decorative circle */

.stop-service-form-inner::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    left: -140px;

    bottom: -140px;

    border-radius: 50%;

    background: rgba(245,180,0,.07);

    filter: blur(20px);

    pointer-events: none;

}


/* =====================================================
   HEADER
===================================================== */

.stop-form-header {

    position: relative !important;

    z-index: 2;

    display: block !important;

    width: 100% !important;

    max-width: 650px !important;

    margin: 0 auto 35px !important;

    padding: 0 !important;

    text-align: center !important;

    direction: rtl !important;
}


.stop-form-badge {

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 7px;

    margin-bottom: 16px;

    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(245,180,0,.10) !important;

    border: 1px solid rgba(245,180,0,.22);

    color: #f5b400 !important;

    font-size: 12px;

    font-weight: 800;

    line-height: 1.5;
}


.stop-form-header h2 {

    display: block !important;

    width: 100% !important;

    margin: 0 0 12px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 38px !important;

    line-height: 1.35 !important;

    font-weight: 900 !important;

    text-align: center !important;

    direction: rtl !important;
}


.stop-form-header h2 strong {

    color: #f5b400 !important;

    font-weight: 900 !important;
}


.stop-form-header p {

    display: block !important;

    width: 100% !important;

    margin: 0 auto !important;

    padding: 0 !important;

    color: rgba(255,255,255,.52) !important;

    font-size: 14px !important;

    line-height: 1.9 !important;

    text-align: center !important;
}


/* =====================================================
   FORM BOX
===================================================== */

.stop-service-form-box {

    position: relative !important;

    z-index: 2;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* =====================================================
   FIELDS
===================================================== */

.stop-form-fields {

    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;
}


.stop-form-field {

    display: block !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    direction: rtl !important;
}


.stop-form-field label {

    display: block !important;

    width: 100% !important;

    margin: 0 0 8px !important;

    padding: 0 !important;

    color: rgba(255,255,255,.75) !important;

    font-size: 12px !important;

    font-weight: 800 !important;

    text-align: right !important;
}


/* =====================================================
   INPUT WRAPPER
===================================================== */

.stop-input-wrapper {

    position: relative !important;

    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    height: 58px !important;

    margin: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    border-radius: 13px;

    background: rgba(255,255,255,.06) !important;

    border: 1px solid rgba(255,255,255,.11);

    direction: rtl !important;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.stop-input-wrapper:hover {

    background: rgba(255,255,255,.08) !important;

    border-color: rgba(245,180,0,.25);
}


.stop-input-wrapper:focus-within {

    background: rgba(255,255,255,.09) !important;

    border-color: #f5b400 !important;

    box-shadow:
        0 0 0 4px rgba(245,180,0,.09);
}


/* =====================================================
   INPUT ICON
===================================================== */

.stop-input-wrapper > i {

    flex: 0 0 auto;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 50px;

    height: 100%;

    color: #f5b400 !important;

    font-size: 17px;

    pointer-events: none;
}


/* =====================================================
   INPUT
===================================================== */

.stop-input-wrapper input {

    display: block !important;

    flex: 1 1 auto !important;

    min-width: 0 !important;

    width: auto !important;

    height: 100% !important;

    margin: 0 !important;

    padding: 0 5px 0 16px !important;

    box-sizing: border-box !important;

    border: 0 !important;

    outline: none !important;

    background: transparent !important;

    color: #ffffff !important;

    font-family: inherit !important;

    font-size: 14px !important;

    line-height: normal !important;

    text-align: right !important;

    direction: rtl !important;

    box-shadow: none !important;
}


.stop-input-wrapper input::placeholder {

    color: rgba(255,255,255,.32) !important;

    opacity: 1 !important;
}


.stop-input-wrapper input:focus {

    outline: none !important;

    border: 0 !important;

    box-shadow: none !important;

    background: transparent !important;
}


/* =====================================================
   MESSAGE
===================================================== */

.stop-form-message {

    width: 100% !important;

    margin: 15px 0 0 !important;

    padding: 12px 15px !important;

    box-sizing: border-box !important;

    border-radius: 10px;

    color: #ffffff;

    background: rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);

    font-size: 13px;

    line-height: 1.7;

    text-align: right;

    direction: rtl;
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.stop-form-submit {

    position: relative !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 12px;

    width: 100% !important;

    height: 62px !important;

    margin: 22px 0 0 !important;

    padding: 0 25px !important;

    box-sizing: border-box !important;

    border: 0 !important;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #f5b400,
            #d99c00
        ) !important;

    color: #111111 !important;

    font-family: inherit !important;

    font-size: 15px !important;

    font-weight: 900 !important;

    cursor: pointer;

    text-align: center !important;

    direction: rtl !important;

    box-shadow:
        0 12px 30px rgba(245,180,0,.16);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}


.stop-form-submit:hover {

    transform: translateY(-3px);

    filter: brightness(1.08);

    box-shadow:
        0 18px 38px rgba(245,180,0,.25);
}


.stop-form-submit:active {

    transform: translateY(-1px);
}


.stop-form-submit i {

    font-size: 18px;

    transition: transform .25s ease;
}


.stop-form-submit:hover i {

    transform: translateX(-5px);
}


/* =====================================================
   TRUST
===================================================== */

.stop-form-trust {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex-wrap: wrap !important;

    gap: 15px 28px;

    width: 100% !important;

    margin: 20px 0 0 !important;

    padding: 0 !important;

    direction: rtl !important;
}


.stop-form-trust span {

    display: inline-flex !important;

    align-items: center !important;

    gap: 6px;

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.42) !important;

    font-size: 10px !important;

    line-height: 1.7 !important;

    white-space: nowrap;
}


.stop-form-trust i {

    color: #f5b400 !important;

    font-size: 12px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 700px) {

    .stop-service-form-inner {

        padding: 45px 30px 35px !important;

        border-radius: 22px;
    }


    .stop-form-header h2 {

        font-size: 32px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 576px) {

    .stop-service-form {

        width: 100% !important;

        margin: 30px auto !important;
    }


    .stop-service-form-inner {

        padding: 40px 18px 30px !important;

        border-radius: 20px;
    }


    .stop-form-header {

        margin-bottom: 28px !important;
    }


    .stop-form-header h2 {

        font-size: 27px !important;

        line-height: 1.45 !important;
    }


    .stop-form-header p {

        font-size: 12px !important;

        line-height: 1.9 !important;
    }


    .stop-form-fields {

        grid-template-columns: 1fr !important;

        gap: 14px !important;
    }


    .stop-input-wrapper {

        height: 55px !important;
    }


    .stop-form-submit {

        height: 58px !important;

        font-size: 14px !important;
    }


    .stop-form-trust {

        gap: 8px 14px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .stop-service-form-inner {

        padding: 35px 14px 25px !important;
    }


    .stop-form-header h2 {

        font-size: 24px !important;
    }


    .stop-form-trust {

        flex-direction: column !important;

        align-items: center !important;
    }

}

/* الفوتر */


/* =====================================================
   STOP GERMAN PREMIUM FOOTER
   FULLY ISOLATED
===================================================== */

.stop-footer {

    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;

    background: #0b0b0b !important;

    color: #ffffff !important;

    overflow: hidden !important;

    isolation: isolate;
}


/* =====================================================
   MAIN
===================================================== */

.stop-footer-main {

    position: relative !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 75px 0 60px !important;

    box-sizing: border-box !important;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(245,180,0,.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(245,180,0,.05),
            transparent 25%
        ),
        #0d0d0d !important;
}


/* Decorative line */

.stop-footer-main::before {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(245,180,0,.55),
            transparent
        );

}


/* =====================================================
   CONTAINER
===================================================== */

.stop-footer-container {

    width: 92% !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    display: grid !important;

    grid-template-columns:
        1.4fr
        1fr
        1.2fr
        1.2fr;

    gap: 45px;

    align-items: start;

    direction: rtl !important;
}


/* =====================================================
   BRAND
===================================================== */

.stop-footer-brand {

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;
}


.stop-footer-logo {

    display: flex !important;

    align-items: center !important;

    gap: 13px;

    margin: 0 0 20px !important;

    padding: 0 !important;
}


.stop-footer-logo-icon {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex: 0 0 52px;

    width: 52px;

    height: 52px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #f5b400,
            #c99000
        ) !important;

    color: #111 !important;

    font-size: 23px;

    box-shadow:
        0 10px 25px rgba(245,180,0,.14);
}


.stop-footer-logo h3 {

    margin: 0 0 3px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 22px !important;

    font-weight: 900 !important;

    line-height: 1.4 !important;
}


.stop-footer-logo div > span {

    color: #f5b400 !important;

    font-size: 11px !important;

    font-weight: 700 !important;
}


.stop-footer-brand > p {

    max-width: 330px !important;

    margin: 0 0 22px !important;

    padding: 0 !important;

    color: rgba(255,255,255,.48) !important;

    font-size: 13px !important;

    line-height: 2 !important;
}


/* Badges */

.stop-footer-badges {

    display: flex !important;

    align-items: center !important;

    flex-wrap: wrap !important;

    gap: 8px;

}


.stop-footer-badges span {

    display: inline-flex !important;

    align-items: center !important;

    gap: 6px;

    margin: 0 !important;

    padding: 7px 11px !important;

    border-radius: 8px;

    background: rgba(255,255,255,.045) !important;

    border: 1px solid rgba(255,255,255,.07);

    color: rgba(255,255,255,.55) !important;

    font-size: 10px !important;
}


.stop-footer-badges i {

    color: #f5b400 !important;
}


/* =====================================================
   TITLES
===================================================== */

.stop-footer-links h4,
.stop-footer-contact h4,
.stop-footer-cta h4 {

    margin: 0 0 22px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 16px !important;

    font-weight: 900 !important;

    line-height: 1.5 !important;
}


.stop-footer-links h4::after,
.stop-footer-contact h4::after {

    content: "";

    display: block;

    width: 35px;

    height: 3px;

    margin-top: 9px;

    border-radius: 20px;

    background: #f5b400;
}


/* =====================================================
   LINKS
===================================================== */

.stop-footer-links ul {

    display: block !important;

    list-style: none !important;

    margin: 0 !important;

    padding: 0 !important;
}


.stop-footer-links li {

    display: block !important;

    margin: 0 0 12px !important;

    padding: 0 !important;

    list-style: none !important;
}


.stop-footer-links li::before {

    display: none !important;

    content: none !important;
}


.stop-footer-links a {

    display: inline-flex !important;

    align-items: center !important;

    gap: 7px;

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.52) !important;

    text-decoration: none !important;

    font-size: 12px !important;

    transition: .25s ease;

}


.stop-footer-links a i {

    color: #f5b400 !important;

    font-size: 9px;

}


.stop-footer-links a:hover {

    color: #f5b400 !important;

    transform: translateX(-4px);
}


/* =====================================================
   CONTACT
===================================================== */

.stop-footer-contact-item {

    display: flex !important;

    align-items: center !important;

    gap: 11px;

    margin: 0 0 15px !important;

    padding: 0 !important;

}


.stop-footer-contact-icon {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex: 0 0 40px;

    width: 40px;

    height: 40px;

    border-radius: 11px;

    background: rgba(245,180,0,.09) !important;

    color: #f5b400 !important;

    font-size: 15px;
}


.stop-footer-contact-item small {

    display: block !important;

    margin: 0 0 2px !important;

    padding: 0 !important;

    color: rgba(255,255,255,.35) !important;

    font-size: 9px !important;
}


.stop-footer-contact-item a,
.stop-footer-contact-item strong {

    display: block !important;

    margin: 0 !important;

    padding: 0 !important;

    color: rgba(255,255,255,.78) !important;

    text-decoration: none !important;

    font-size: 12px !important;

    font-weight: 700 !important;
}


.stop-footer-contact-item a:hover {

    color: #f5b400 !important;
}


/* =====================================================
   CTA
===================================================== */

.stop-footer-cta {

    position: relative !important;

    padding: 25px !important;

    box-sizing: border-box !important;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(245,180,0,.12),
            rgba(255,255,255,.035)
        ) !important;

    border: 1px solid rgba(245,180,0,.15);
}


.stop-footer-cta-label {

    display: inline-flex !important;

    align-items: center !important;

    gap: 6px;

    margin: 0 0 12px !important;

    color: #f5b400 !important;

    font-size: 10px !important;

    font-weight: 800 !important;
}


.stop-footer-cta h4 {

    margin-bottom: 10px !important;

    font-size: 21px !important;

    line-height: 1.6 !important;
}


.stop-footer-cta h4::after {

    display: none;
}


.stop-footer-cta h4 strong {

    display: block;

    color: #f5b400 !important;

    font-weight: 900 !important;
}


.stop-footer-cta p {

    margin: 0 0 20px !important;

    padding: 0 !important;

    color: rgba(255,255,255,.45) !important;

    font-size: 11px !important;

    line-height: 1.9 !important;
}


.stop-footer-cta-button {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 9px;

    width: 100% !important;

    min-height: 46px;

    box-sizing: border-box !important;

    margin: 0 !important;

    padding: 10px 15px !important;

    border-radius: 10px;

    background: #f5b400 !important;

    color: #111 !important;

    text-decoration: none !important;

    font-size: 11px !important;

    font-weight: 900 !important;

    transition: .25s ease;
}


.stop-footer-cta-button:hover {

    background: #ffc928 !important;

    color: #111 !important;

    transform: translateY(-2px);
}


/* =====================================================
   BOTTOM
===================================================== */

.stop-footer-bottom {

    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 20px 0 !important;

    box-sizing: border-box !important;

    background: #080808 !important;

    border-top: 1px solid rgba(255,255,255,.06);
}


.stop-footer-bottom-container {

    width: 92% !important;

    max-width: 1200px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    display: grid !important;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    box-sizing: border-box !important;

    direction: rtl !important;
}


/* Copyright */

.stop-footer-copyright {

    color: rgba(255,255,255,.35) !important;

    font-size: 10px !important;

    line-height: 1.7 !important;

    text-align: right !important;
}


.stop-footer-copyright strong {

    color: rgba(255,255,255,.55) !important;
}


/* =====================================================
   SOCIAL
===================================================== */

.stop-footer-social {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 8px;

}


.stop-footer-social a {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 35px !important;

    height: 35px !important;

    margin: 0 !important;

    padding: 0 !important;

    border-radius: 10px;

    background: rgba(255,255,255,.05) !important;

    border: 1px solid rgba(255,255,255,.07);

    color: rgba(255,255,255,.55) !important;

    text-decoration: none !important;

    font-size: 13px;

    transition: .25s ease;
}


.stop-footer-social a:hover {

    background: #f5b400 !important;

    border-color: #f5b400 !important;

    color: #111 !important;

    transform: translateY(-3px);
}


/* =====================================================
   DEVELOPER
===================================================== */

.stop-footer-developer {

    color: rgba(255,255,255,.3) !important;

    font-size: 10px !important;

    text-align: left !important;
}


.stop-footer-developer a {

    color: #f5b400 !important;

    text-decoration: none !important;

    font-weight: 800 !important;
}


.stop-footer-developer a:hover {

    color: #ffc928 !important;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .stop-footer-container {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 40px 30px;
    }


    .stop-footer-bottom-container {

        grid-template-columns:
            1fr 1fr;
    }


    .stop-footer-social {

        grid-column: 1 / -1;

        grid-row: 2;
    }


    .stop-footer-developer {

        text-align: left !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .stop-footer-main {

        padding: 55px 0 40px !important;
    }


    .stop-footer-container {

        width: 90% !important;

        grid-template-columns: 1fr !important;

        gap: 35px !important;
    }


    .stop-footer-brand > p {

        max-width: 100% !important;
    }


    .stop-footer-cta {

        padding: 22px !important;
    }


    .stop-footer-bottom {

        padding: 22px 0 !important;
    }


    .stop-footer-bottom-container {

        width: 90% !important;

        display: flex !important;

        flex-direction: column !important;

        gap: 14px !important;

        text-align: center !important;
    }


    .stop-footer-copyright {

        text-align: center !important;
    }


    .stop-footer-social {

        order: 2;

    }


    .stop-footer-developer {

        order: 3;

        text-align: center !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .stop-footer-container {

        width: 92% !important;
    }


    .stop-footer-logo h3 {

        font-size: 19px !important;
    }


    .stop-footer-cta h4 {

        font-size: 19px !important;
    }

}

/* هدر */
/* =========================================================
   STOP GERMAN PREMIUM HEADER
   ISOLATED VERSION
========================================================= */

#stop-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 70px !important;
    z-index: 99999 !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    direction: rtl !important;

    background: rgba(12, 12, 12, 0.94) !important;

    border-bottom: 1px solid rgba(245, 180, 0, 0.12) !important;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18) !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* =========================================================
   CONTAINER
========================================================= */

#stop-header .stop-header-container {
    position: relative !important;

    width: 92% !important;
    max-width: 1250px !important;

    min-height: 78px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    gap: 20px !important;

    direction: rtl !important;
}


/* =========================================================
   LOGO
========================================================= */

#stop-header .stop-header-logo {
    display: flex !important;
    align-items: center !important;

    gap: 10px !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #fff !important;

    text-decoration: none !important;

    flex-shrink: 0 !important;

    direction: rtl !important;
}


#stop-header .stop-logo-icon {
    width: 45px !important;
    height: 45px !important;

    min-width: 45px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 13px !important;

    background: linear-gradient(
        135deg,
        #ffd34d 0%,
        #f5b400 50%,
        #c88e00 100%
    ) !important;

    color: #111 !important;

    font-size: 20px !important;

    box-shadow:
        0 7px 25px rgba(245, 180, 0, 0.22) !important;
}


#stop-header .stop-logo-text {
    display: flex !important;

    flex-direction: column !important;

    align-items: flex-start !important;

    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;
}


#stop-header .stop-logo-text strong {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #fff !important;

    font-size: 18px !important;

    font-weight: 900 !important;

    line-height: 1.4 !important;

    white-space: nowrap !important;
}


#stop-header .stop-logo-text small {
    display: block !important;

    margin: 1px 0 0 !important;
    padding: 0 !important;

    color: #f5b400 !important;

    font-size: 9px !important;

    font-weight: 700 !important;

    line-height: 1.5 !important;

    white-space: nowrap !important;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

#stop-header .stop-header-nav {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 3px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    direction: rtl !important;
}


#stop-header .stop-nav-link {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 40px !important;

    margin: 0 !important;

    padding: 7px 12px !important;

    border-radius: 8px !important;

    color: rgba(255,255,255,0.68) !important;

    background: transparent !important;

    text-decoration: none !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    line-height: 1.5 !important;

    white-space: nowrap !important;

    transition:
        color 0.25s ease,
        background 0.25s ease !important;
}


#stop-header .stop-nav-link::after {
    content: "" !important;

    position: absolute !important;

    bottom: 1px !important;

    right: 50% !important;

    width: 0 !important;

    height: 2px !important;

    border-radius: 20px !important;

    background: #f5b400 !important;

    transform: translateX(50%) !important;

    transition: width 0.25s ease !important;
}


#stop-header .stop-nav-link:hover {
    color: #fff !important;

    background: rgba(255,255,255,0.05) !important;
}


#stop-header .stop-nav-link:hover::after {
    width: 22px !important;
}


#stop-header .stop-nav-link.active {
    color: #f5b400 !important;
}


#stop-header .stop-nav-link.active::after {
    width: 22px !important;
}


/* =========================================================
   CALL BUTTON
========================================================= */

#stop-header .stop-header-call {
    display: flex !important;

    align-items: center !important;

    gap: 9px !important;

    flex-shrink: 0 !important;

    margin: 0 !important;

    padding: 6px 12px !important;

    border: 1px solid rgba(245,180,0,0.20) !important;

    border-radius: 12px !important;

    background: rgba(245,180,0,0.07) !important;

    color: #fff !important;

    text-decoration: none !important;

    direction: rtl !important;

    transition:
        transform 0.25s ease,
        background 0.25s ease !important;
}


#stop-header .stop-header-call:hover {
    background: #f5b400 !important;

    color: #111 !important;

    transform: translateY(-2px) !important;
}


#stop-header .stop-header-call-icon {
    width: 34px !important;
    height: 34px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 9px !important;

    background: #f5b400 !important;

    color: #111 !important;

    font-size: 13px !important;
}


#stop-header .stop-header-call-text {
    display: flex !important;

    flex-direction: column !important;

    align-items: flex-start !important;

    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;
}


#stop-header .stop-header-call-text small {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: rgba(255,255,255,0.45) !important;

    font-size: 8px !important;
}


#stop-header .stop-header-call-text strong {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #fff !important;

    font-size: 11px !important;

    direction: ltr !important;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

#stop-header .stop-mobile-menu {
    display: none !important;

    align-items: center !important;
    justify-content: center !important;

    width: 43px !important;
    height: 43px !important;

    min-width: 43px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(255,255,255,0.13) !important;

    border-radius: 11px !important;

    background: rgba(255,255,255,0.06) !important;

    color: #fff !important;

    font-size: 22px !important;

    line-height: 1 !important;

    cursor: pointer !important;

    outline: none !important;

    box-shadow: none !important;
}


#stop-header .stop-mobile-menu:hover {
    background: rgba(245,180,0,0.12) !important;

    color: #f5b400 !important;
}


/* =========================================================
   MOBILE MENU
========================================================= */

#stop-header .stop-mobile-navigation {
    display: none !important;

    width: 92% !important;

    max-width: 500px !important;

    margin: 0 auto 12px !important;

    padding: 9px !important;

    box-sizing: border-box !important;

    border-radius: 15px !important;

    border: 1px solid rgba(255,255,255,0.08) !important;

    background: rgba(17,17,17,0.98) !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.40) !important;

    direction: rtl !important;
}


/* OPEN */

#stop-header .stop-mobile-navigation.stop-menu-open {
    display: block !important;
}


/* MOBILE LINKS */

#stop-header .stop-mobile-navigation a {
    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    min-height: 46px !important;

    margin: 2px 0 !important;

    padding: 8px 13px !important;

    box-sizing: border-box !important;

    border-radius: 9px !important;

    color: rgba(255,255,255,0.75) !important;

    background: transparent !important;

    text-decoration: none !important;

    font-size: 13px !important;

    font-weight: 700 !important;

    gap: 11px !important;

    direction: rtl !important;
}


#stop-header .stop-mobile-navigation a i {
    width: 21px !important;

    color: #f5b400 !important;

    font-size: 15px !important;

    text-align: center !important;
}


#stop-header .stop-mobile-navigation a:hover {
    background: rgba(245,180,0,0.09) !important;

    color: #f5b400 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    #stop-header .stop-header-nav {
        gap: 0 !important;
    }

    #stop-header .stop-nav-link {
        padding-left: 7px !important;
        padding-right: 7px !important;

        font-size: 11px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    #stop-header .stop-header-container {
        width: 92% !important;

        min-height: 70px !important;
    }


    #stop-header .stop-header-nav {
        display: none !important;
    }


    #stop-header .stop-header-call {
        display: none !important;
    }


    #stop-header .stop-mobile-menu {
        display: flex !important;
    }


    #stop-header .stop-logo-icon {
        width: 40px !important;
        height: 40px !important;

        min-width: 40px !important;

        font-size: 18px !important;
    }


    #stop-header .stop-logo-text strong {
        font-size: 16px !important;
    }


    #stop-header .stop-logo-text small {
        font-size: 8px !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    #stop-header .stop-header-container {
        width: 94% !important;
    }


    #stop-header .stop-logo-icon {
        width: 37px !important;
        height: 37px !important;

        min-width: 37px !important;

        font-size: 16px !important;
    }


    #stop-header .stop-logo-text strong {
        font-size: 14px !important;
    }


    #stop-header .stop-logo-text small {
        font-size: 7px !important;
    }


    #stop-header .stop-mobile-menu {
        width: 40px !important;
        height: 40px !important;

        min-width: 40px !important;
    }

}

/* =====================================================
   إخفاء زر الصعود لأعلى نهائياً
   ===================================================== */

#back-to-top,
.back-to-top,
.back-to-top-btn,
.scroll-to-top,
.scroll-top,
#scroll-top,
.scroll-top-btn,
.go-top,
#go-top {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ________________________________________ */

/* الخطوط */
/* الخط الأساسي للموقع */
body {
    font-family: "Alexandria", sans-serif;
    font-weight: 400;
    font-size: 15px;
}

p {
    font-size: 14px;
    line-height: 1.8;
}
/* العناوين */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Alexandria", sans-serif;
    font-weight: 700;
}

/* النصوص */
p {
    font-size: 14px;
    line-height: 1.8;
}

/* الموبايل */
@media (max-width: 600px) {

    body {
        font-size: 14px;
    }

    p {
        font-size: 13px;
        line-height: 1.8;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 27px;
    }

    h3 {
        font-size: 19px;
    }

}


/* تنسيق بتاع فتح القائمة على الموبايل واختيار اى نوع من المكافحة  */

/* =====================================================
   مكافحة الحشرات - نفس تنسيق باقي روابط القائمة
===================================================== */

.stop-mobile-dropdown {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}


/* زر مكافحة الحشرات */

.stop-mobile-dropdown summary {
    list-style: none;
    cursor: pointer;

    display: flex;
    align-items: center;

    width: 100%;

    padding: 0;

    color: inherit;
    font: inherit;

    user-select: none;
}


/* إخفاء سهم details الافتراضي */

.stop-mobile-dropdown summary::-webkit-details-marker {
    display: none;
}


/* الكلمة + الأيقونة */

.stop-mobile-menu-title {
    display: flex;
    align-items: center;
    gap: 8px;

    color: inherit;
    font: inherit;
}


/* السهم */

.stop-dropdown-arrow {
    margin-right: auto;

    font-size: 12px;

    color: inherit;

    transition: transform 0.25s ease;
}


/* دوران السهم عند فتح القائمة */

.stop-mobile-dropdown[open]
.stop-dropdown-arrow {
    transform: rotate(180deg);
}


/* =====================================================
   القائمة الفرعية
===================================================== */

.stop-mobile-submenu {

    width: 100%;

    margin-top: 8px;

    padding: 6px;

    background: rgba(0, 0, 0, 0.15);

    border-radius: 10px;

}


/* روابط القائمة الفرعية */

.stop-mobile-submenu a {

    display: flex;

    align-items: center;

    gap: 8px;

    width: 100%;

    padding: 10px 12px;

    color: inherit;

    text-decoration: none;

    font: inherit;

    font-size: 13px;

    border-radius: 8px;

    transition: background 0.2s ease;
}


.stop-mobile-submenu a:hover {

    background: rgba(255,255,255,0.08);

}


/* Animation */

.stop-mobile-dropdown[open]
.stop-mobile-submenu {

    animation: stopMenuOpen 0.2s ease;

}


@keyframes stopMenuOpen {

    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}



/* =====================================================
   مكافحة الحشرات - نفس لون روابط القائمة
===================================================== */

.stop-mobile-dropdown summary,
.stop-mobile-dropdown summary .stop-mobile-menu-title,
.stop-mobile-dropdown summary .stop-mobile-menu-title i,
.stop-mobile-dropdown summary .stop-dropdown-arrow {

    color: #ffffff !important;

}


/* نفس حجم الخط */

.stop-mobile-dropdown summary {

    font-size: inherit;
    font-weight: inherit;

}


/* السهم بنفس لون النص */

.stop-mobile-dropdown .stop-dropdown-arrow {

    color: #ffffff !important;

}
