:root {
  --main-color: #202a68;
  --second-color: #01aceb;
  --third-color: #6c6e70;
  --color-font: #002E61;
  --hover-color: #ffb14b;
  --main-radius: 10px;
  --backgr: #ececec;
  --main-transition: 0.3s;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Tajawal", sans-serif;
  direction: rtl;
}
a {
  text-decoration: none;
}
p {
  color: var(--color-font) !important;
  text-align: justify;
  font-weight: 500;
  font-size: 20px !important;
}

input {
  font-size: 19px !important;
}
@media (max-width: 768px) {
  p {
    text-align: justify;
  }
}
li {
  font-weight: 500;
  font-size: 20px !important;
}
.head h1 {
  color: var(--color-font);
}
.head {
  color: var(--third-color);
}
.head p {
  color: var(--color-font);
  font-size: 20px !important;
  text-align: center;

}
.top {
  color: var(--second-color) !important;
}
.main-btn {
  background-color: var(--second-color);
  color: #fff;
  transition: var(--main-transition);
  width: fit-content;
  margin: auto;
}
.main-btn:hover {
  background-color: var(--hover-color);
  color: white;
}
ul {
  list-style: none;
  padding: 0;
}
@media (max-width: 992px) {
  .order {
    order: 1;
  }
}
/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* You can change this to your desired color */
  z-index: 9999;
}

#loader img {
  width: 55px; /* Adjust the size as needed */
  height: auto;
}

#content {
  text-align: center;
}
/* Loader */
/* Start Scrolling */
.arrow {
  cursor: pointer;
  position: fixed;
  bottom: -100%;
  right: 25px;
  transition: 0.5s;
  z-index: 1100;
}
.arrow i {
  font-size: 1.5rem;
  background-color: var(--main-color);
  color: white;
  padding: 0.5rem;
  /* border-radius: 10px; */
}
.appear {
  bottom: 10px;
}
/* End Scrolling */
/* Dark Btn */
.dark-btn {
  /* position: absolute; */
  z-index: 100;
  background-color: #fff;
  width: 4rem;
  height: 2rem;
  top: 10%;
  left: 5%;
  border-radius: 5rem;
  box-shadow: inset 0 8px 60px rgba(0, 0, 0, 0.1),
    inset 0 8px 8px rgba(0, 0, 0, 0.1), inset 0 -4px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dark-btn .btn-indecator {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.dark-btn .btn-indecator .btn-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-btn .btn-indecator .btn-container .btn-icon {
  font-size: 0.9rem;
  color: #ffcc00;
}

.dark-btn .btn-indecator .btn-container .btn-icon.spin {
  animation: spin 0.5s;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Dark Btn */
.whatsapp {
  position: fixed;
  bottom: 2%;
  left: 2%;
  z-index: 999;
  background-color: rgb(77, 194, 71) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.whatsapp i {
  color: white;
  font-size: 2rem;
}
/* Start license */
.license {
  border-bottom: 1px solid #dee2e6;
  background-color: #fff !important;
  box-shadow: 0 2px 20px -14px rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.license img {
  width: 150px;
}
.license p {
  margin: 0;
}
@media (max-width: 768px) {
  .license {
    display: none;
  }
}
/* End license */
/* Start Navbar */
/* .navbar-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
} */
.navbar {
  /* box-shadow: 0 2px 20px -14px rgba(0, 0, 0, 0.16),
    0 2px 10px 0 rgba(0, 0, 0, 0.12); */
  height: 72px;
  top: -1px;
  background-color: #fff !important;
  box-shadow: 0 2px 20px -14px rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 992px) {
  .navbar {
    height: auto;
  }
}
.navbar-two {
  webkit-box-shadow: 0 1px 3px rgba(35, 35, 35, 0.15);
  -moz-box-shadow: 0 1px 3px rgba(35, 35, 35, 0.15);
  box-shadow: 0 1px 3px rgba(35, 35, 35, 0.15);
}
.navbar-nav .nav-item {
  position: relative;
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
}
.navbar-nav .nav-item:hover,
.navbar-nav .nav-item:hover .nav-link {
  color: var(--second-color) !important;
}
.navbar-nav .nav-item.active,
.navbar-nav .nav-item.active .nav-link {
  position: relative;
  color: var(--second-color) !important;
}
.navbar-nav .nav-item::before,
.navbar-nav .nav-item.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--second-color);
  width: 0;
  height: 4px;
  transition: var(--main-transition);
}
.navbar-nav .nav-item.active::before {
  width: 100% !important;
}

.navbar-nav .nav-item:hover:before,
.navbar-nav .nav-item.active:hover:before {
  width: 100%;
}
.navbar-home .logo,
.navbar .logo {
  width: 190px;
}
.navbar .dropdown button {
  color: var(--main-color) !important;
}
/* .navbar-home .logo-black {
  display: none;
}
.navbar-home .logo-white {
  display: block;
}
.navbar-two ul li a {
  color: black !important;
}
.navbar-home ul li a {
  color: white;
}
@media (max-width: 992px) {
  .navbar-home .logo,
  .navbar .logo {
    width: 140px;
  }
  .navbar-home {
    position: unset;
  }
  .navbar-home .logo-white {
    display: none;
  }
  .navbar-home .logo-black {
    display: block;
  }
  .navbar-home ul li a {
    color: black;
  }
} */

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}
@media (max-width: 992px) {
  .navbar .dropdown-menu {
    border: none;
  }
}
@media (max-width: 992px) {
  .offcanvas-body {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .navbar-nav {
    margin: 0 auto !important;
    align-items: center;
  }
  .dark-btn {
    margin-right: 0 !important;
    margin-top: 1rem !important;
  }
}
.offcanvas-header {
  justify-content: flex-end;
}
.offcanvas-header button {
  background-image: none;
}
/* End Navbar */
/* Start Carousel */
.carousel .content h2 {
  color: var(--first-color);
  font-size: 3rem;
}
.carousel .content h1 {
  font-size: 3.5rem;
}
.carousel .content p {
  font-size: 1.2rem;
}
.carousel-inner {
  height: calc(100vh - 78px);
}
.carousel-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 54%);
  z-index: 10;
}
@media (max-width: 992px) {
  .carousel-inner {
    height: 65vh;
  }
  .carousel .content {
    top: 35%;
    left: 40%;
    width: 90%;
  }
  .carousel-inner::before {
    height: 65vh;
  }
  .carousel-inner img {
    height: 65vh;
    object-fit: cover;
  }
}
.carousel-control-prev,
.carousel-control-next {
  z-index: 999;
  height: fit-content;
  top: 50%;
}
.carousel-control-prev i,
.carousel-control-next i {
  font-size: 24px;
}
@media (max-width: 768px) {
  .carousel .content {
    top: 30%;
    left: 50%;
    width: 90%;
  }
  .carousel .content h2 {
    color: var(--first-color);
    font-size: 2rem;
  }
  .carousel .content h1 {
    font-size: 2.5rem;
  }
  .carousel .content p {
    font-size: 1rem;
  }
}
.carousel .content {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px)  {
  .carousel .content {
    width: 600px;
    left: 67% !important;
  }
  .carousel .content .main-btn {
    margin-left: auto !important;
    margin: 0 !important;
  }
}
.carousel .content h1 {
  color: white;
  font-size: 60px;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .carousel .content {
    width: 98%;
  }
}
@media (max-width: 768px) {
  .carousel .content {
    width: 98%;
  }
  .carousel .content h1 {
    font-size: 40px;
  }
}
.carousel .content .good-btn {
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.8);
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border-width: 1px;
  color: #fff;
  -webkit-box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.5);
  width: fit-content;
}
.carousel .content .links-on {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  z-index: 99;
}
@media (max-width: 992px) {
  .carousel .content .links-on {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .carousel .content .links-on {
    font-size: 13px;
  }
}
.carousel .content .links-on span {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.carousel .content .links-on span .link-on {
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.carousel .content .links-on span a:hover {
  background-color: unset;
}
.carousel marquee {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  color: white;
  font-size: 30px;
}
/* End Carousel */
/* End Swiper */
/* Start Landing Services */
.landing-services {
  margin-top: -5%;
  position: relative;
  z-index: 999;
}
.landing-services .land-serve {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-around;
  background-color: #fff;
  box-shadow: -5px 9px 19px -12px #00000073;
  border-radius: var(--main-radius);
  height: 100%;
}
.landing-services .land-serve h5 {
  padding: 0 10px;
  text-align: center;
  line-height: 1.3;
}
.landing-services img {
  width: 200px;
  height: 200px;
}
/* End Landing Services */
/* Start Services */
.our-services .box {
  webkit-box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%),
    0 2px 4px 0 rgb(0 0 0 / 12%);
  -moz--webkit-box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%),
    0 2px 4px 0 rgb(0 0 0 / 12%);
  box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
  transition: var(--main-transition);
  background-color: white;
  border-radius: var(--main-radius);
}
.our-services .icon {
  background-color: #eee;
  transition: var(--main-transition);
}
.our-services .icon {
  font-size: 36px;
  left: 5%;
  top: 55%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
}
.our-services .icon svg {
  fill: var(--second-color);
  width: 40px;
  height: 40px;

}
.our-services .box img {
  height: 205px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .our-services .icon {
    top: 58%;
  }
}
.our-services .box:hover {
  transform: translateY(-5px);
}
.our-services .box:hover .icon {
  background-color: var(--second-color);
  
}
.our-services .box:hover .icon svg {
  fill: white;
}
.our-services .box h4 {
  position: relative;
  padding: 37px 21px 28px;
  margin: 0;
  font-weight: 600;
  color: #000;
  font-size: 22px;
}
.our-services .box h4::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 50px;
  top: 20%;
  right: 8%;
  background-color: var(--second-color);
}
.our-services .box:hover h4 {
  color: var(--second-color);
}
/* End Services */
/* Start Services */
.services .box {
  border-radius: var(--main-radius);
  webkit-box-shadow: 0 1px 3px rgba(35, 35, 35, 0.15);
  -moz-box-shadow: 0 1px 3px rgba(35, 35, 35, 0.15);
  box-shadow: 0 1px 3px rgba(35, 35, 35, 0.15);

  transition: var(--main-transition);
}
.services .pic-ser {
  height: 600px;
  width: 85%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .services .pic-ser {
    height: auto;
    width: 100%;
  }
}
.services .box img {
  height: 236px;
  width: 100%;
  object-fit: cover;
}
.services .box .content {
  height: 240px;
}
.services .box .content .cont {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 0.3rem;
}
.services .box .content,
.services .box .content h3 {
  transition: 0.3s;
}
.services .box .content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: var(--second-color);
  transition: 0.3s;
  z-index: -1;
}
.services .box .content:hover p,
.services .box .content:hover h3 {
  color: white !important;
  position: relative;
  z-index: 999;
}
.services .box .content:hover:before {
  width: 100%;
  height: 100%;
}
.services h3 {
  color: var(--main-color);
}
/* End Services */
/* Start About Us */
.about-us {
  background-color: #fff !important;
}
.about-us .pic {
  height: 100vh;
}
.about-us li::marker {
  color: var(--second-color);
}
.about-us p {
  color: var(--main-color);
  font-size: 1.2rem;
}
.about-us .pic img {
  width: 100%;
}
.information ul i,
.information ul p {
  color: var(--color-font) !important;
}
.information ul i {
  margin-top: 3px;
}
.information .call-about {
  color: var(--color-font) !important;
  transition: var(--main-transition);
}
.information .call-about i {
  transition: var(--main-transition);
  font-size: 36px;
  border: 1px solid var(--color-font);
  padding: 15px;
  border-radius: 50%;
}
.information .call-about:hover i {
  background-color: var(--color-font);
  color: #fff;
}
/* End About Us */
/* Start Features */
.features {
  background-color: #002E610D;
}
.features h2,
.features p  {
  color: var(--color-font) !important;
}
.features h5 {
  margin: 0;
}
.features h5,
.features i {
  color: var(--color-font);
  font-weight: bold;
}
.features i {
  font-size: 24px;
}
.features p {
  font-size: 16px;
  text-align: justify;
}
/* End Features */
/* Start Contact */
.iti__country-list {
  left: 0;
}
.nice-select.open .list {
  height: 200px;
  overflow-y: scroll;
}
.login .pic {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
}
.login .pic img {
  width: 85%;
}
.login .pic-sign {
  height: 100% !important;
}
@media (max-width: 992px) {
  .login .pic {
    display: none !important;
  }
}
.login .sm-pic {
  width: 150px;
  padding: 10px;
  border-radius: 10px;
}
.form-container {
  width: 70%;
  margin: auto;
}
@media (max-width: 768px) {
  .form-container {
    width: 90%;
  }
}
.form-container span {
  font-weight: 500;
  font-size: 20px !important;
}
.contact-info form input:not(:last-child),
.form-container form input:not(:last-child),
.check,
.form-container form select,
.form-container form .btn {
  height: 58px;
  color: #000 !important;
  font-size: 18px;
  border-radius: 0px;
  outline: none !important;
  font-size: 15px;
  box-shadow: -1px 1px 2px 0px rgb(0 0 0 / 8%);
  -webkit-box-shadow: -1px 1px 2px 0px rgb(0 0 0 / 8%);
}
.form-container .radio-ch {
  height: 16px !important;
}
.form-container form textarea {
  background: #fff !important;
  color: #000 !important;
  font-size: 18px;
  border-radius: 0px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 15px;
}
.form-container form input:focus,
.form-container form textarea:focus {
  border-color: black;
  outline: none;
  box-shadow: 0 1px 0 -1px var(--first-color);
}
.form-container .pic img {
  height: 588px;
  object-fit: cover;
}
.form-container #contactButton {
  background-color: var(--main-color) !important;
  color: white !important;
}
.form-container #contactButton:hover {
  background-color: var(--second-color) !important;
}
@media (max-width: 992px) {
  .form-container .pic img {
    display: none;
  }
}
.form-container .facebook:focus,
.form-container .facebook:focus-visible,
.form-container .facebook:active {
  color: white;
}
.form-container .new {
  text-decoration: none;
}
.form-container .new:hover {
  text-decoration: underline;
}
.form-container .contact-info .more {
  top: -10%;
  left: 5%;
  background-color: white;
  font-size: 14px;
}
.form-container .contact-info i {
  font-size: 20px;
  width: 40px;
  height: 40px;
}
/* End Contact */
/* Start Swiper */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  height: 100px;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  height: 200px;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 45%;
  top: 80%;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 45%;
  top: 80%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  color: white;
  background-color: var(--main-color);
  padding: 8px 10px;
  border-radius: 50%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
@media (max-width: 992px) {
  .swiper-button-next:after,
  .swiper-button-prev:after {
    display: none;
  }
  .swiper-pagination {
    display: block !important;
  }
}
/* .swiper-pagination {
  display: none;
} */
.out-clients .swiper-slide .pic {
  height: 100px;
}
/* Start Employee */

.employee .box {
  box-shadow: 0px 19px 66px -24px rgba(0, 0, 0, 0.2);
  transition: var(--main-transition);
  overflow: hidden;
}
.employee .box .pic {
  overflow: hidden;
}
.employee .box img {
  transition: var(--main-transition);
}
.employee .box:hover img {
  scale: 1.1;
  rotate: 3deg;
}
.employee .box h4 {
  font-size: 1.7rem;
  font-weight: bold;
}
.employee .box a {
  font-size: 20px;
  font-weight: 500;
}
/* End Employee */
/* Start Footer */
.footer {
  position: relative;
  overflow: hidden;
  border-top: 8px solid var(--color-font);
}
.footer .pic {
  width: 190px;
}
.footer h2 {
  position: relative;
  font-size: 18px;
  color: var(--color-font) !important;
  font-weight: 700;
}
.footer svg {
  width: 25px;
}
.footer p, 
.footer a,
.footer i {
  color: var(--color-font) !important;

}

.footer svg {
  fill: var(--color-font) !important;
}
.footer p, 
.footer a {
  font-weight: 500;
}
/* .footer h2::after {
  position: absolute;
  bottom: -15px;
  left: 0;
  content: "";
  width: 70px;
  height: 1px;
  background: white;
} */
@media (max-width: 992px) {
  .footer .ftco-footer {
    align-items: unset !important;
  }
}
.footer .social-icon {
  height: 50px;
  width: 50px;
  display: block;
  float: left;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: relative;
  color: white;
  font-size: 26px;
}
.footer .social-icon:hover i
{
  color: var(--hover-color) !important;
}
.footer .social-icon:hover svg {
  fill: var(--hover-color) !important;
}
.footer ul {
  padding: 0;
  list-style: none;
}
.footer ul .site-link {
  color: white;
}
.footer ul .site-link:hover {
  background-color: unset;
  color: var(--hover-color) !important;
}
@media (max-width: 992px) {
  .footer .copyright {
    padding-top: 2rem;
  }
}
/* End Footer */
.iti {
  width: 100%;
}
.nice-select {
  display: flex;
  align-items: center;
  height: 58px;
}

/* Start About */
.information-2 {
  position: relative;
}
.information-2::before {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  width: 30%;
  height: 100%;
  background-color: var(--color-font);
  z-index: -1;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .information-2::before {
    position: static;
  }
}
.information {
  background: #002E610D;
  padding: 2rem 0 ;
}
@media (max-width: 992px) {
  .information .info,
  .information-2 .info {
    align-items: flex-start !important;
    text-align: right !important;
  }
}
.features {
  background-color: #fafafa;
}
.features .box {
  background-color: #fff ;
  border-radius: 15px;
  box-shadow: 0px 3px 66px -24px rgba(0, 0, 0, 0.2);
  height: 200px;
  padding: 1rem;
  transition: var(--main-transition);
}
.features .box:hover {
  transform: translateY(-10px);
  color: white !important;
  background-color: var(--second-color) !important;
}
.features .box:hover h5,
.features .box:hover p,
.features .box:hover i {
  color: #fff !important;
}
.information h4,
.information-2 h4,
.information h5,
.information-2 h5 {
  color: var(--color-font) !important;
}
.information h5 {
  font-weight: 600;
}
.information p,
.information-2 p,
.information li,
.information-2 li {
  color: var(--color-font) !important;
  line-height: 1.8;
  font-size: 1.1rem;
}
/* End About */
/* Start Employee */
.employee img {
  height: 225px;
  width: 100%;
  object-fit: cover;
}
.employee .content {
  background-color: var();
}
/* End Employee */
/* Start Call Action */
.call-action .container {
  background: var(--color-font);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;

}
.call-action svg {
  fill: #fff;
}
.call-action svg {
  width: 80px;
}
.call-action p {
  font-size: 22px;
}
.call-action i {
  font-size: 65px;
}
/* End Call Action */
/* Start Advertisement */
.advertisement .box-adv {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  direction: rtl;
  /* box-shadow: 0px 3px 66px -24px rgba(0, 0, 0, 0.2); */
}
.advertisement .box-adv p {
  padding: 15px;
}
.advertisement a:hover {
  text-decoration: underline;
  color: var(--color-font);
}
.slick-list {
  direction: ltr;
}
.slick-track {
  display: flex;
  gap: 20px;
}
.slick-slide {
  height: auto;
}
.slick-dots li.slick-active button:before {
  color: var(--main-color);
  opacity: 1;
}
.slick-dots li button:before {
  font-size: 50px;
}
.arrow-prev {
  left: -4%;
  position: absolute;
  top: 45%;
}
.arrow-next {
  right: -4%;
  position: absolute;
  top: 45%;
}
.arrow-prev,
.arrow-next {
  background-color: var(--main-color);
  border-radius: 50%;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
}
.slick-next:before,
.slick-prev:before {
  background-color: var(--main-color);
  padding: 10px;
  border-radius: 50%;
}
.slick-prev {
  left: -4%;
}
@media (max-width: 992px) {
  .slick-next:before,
  .slick-prev:before {
    display: none;
  }
}
/* End Advertisement */
.nav-phone {
  color: #fff !important;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: var(--main-color);
  font-weight: 500;
}

.navbar-expand-lg .navbar-nav {
  margin: auto !important;
}