@charset "UTF-8";
/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Functions Styles _____________ ====================================== */
/* ====================================== _____________ Functions Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
@-webkit-keyframes inputHighlighter {
  from {
    background: #fdfdfd;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@-moz-keyframes inputHighlighter {
  from {
    background: #fdfdfd;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@-o-keyframes inputHighlighter {
  from {
    background: #fdfdfd;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes inputHighlighter {
  from {
    background: #fdfdfd;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@-webkit-keyframes mapPin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@-moz-keyframes mapPin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@-o-keyframes mapPin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes mapPin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Classes Styles _____________ ====================================== */
.container_cust {
  padding-left: 15px;
  margin-left: auto;
}
body.ar .container_cust {
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .container_cust {
    width: 100%;
    padding: 0 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .container_cust {
    width: calc(((100vw - 540px) / 2) + 540px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container_cust {
    width: calc(((100vw - 720px) / 2) + 720px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container_cust {
    width: calc(((100vw - 960px) / 2) + 960px);
  }
}
@media (min-width: 1200px) {
  .container_cust {
    width: calc(((100vw - 1140px) / 2) + 1140px);
  }
}

.news_list_container_cust {
  padding-left: 15px;
  margin-left: auto;
}
body.ar .news_list_container_cust {
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 767px) {
  .news_list_container_cust {
    width: calc(100vw - 15px);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .news_list_container_cust {
    width: calc(((100vw - 540px) / 2) + 540px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news_list_container_cust {
    width: calc(((100vw - 720px) / 2) + 720px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news_list_container_cust {
    width: calc(((100vw - 960px) / 2) + 960px);
  }
}
@media (min-width: 1200px) {
  .news_list_container_cust {
    width: calc(((100vw - 720px) / 2) + 991px);
  }
}

section:not(.banner) {
  padding: 50px 0;
}
@media (max-width: 767px) {
  section:not(.banner) {
    padding: 25px 0;
  }
}

.mainTitle {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
  font-weight: bold;
}

.title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 400;
  text-transform: uppercase;
}
.title.hr {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.subTitle {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
}

p,
.p {
  font-size: 1rem;
  font-weight: 300;
  color: #5c5555;
  margin-bottom: 15px;
}

.sm_link {
  font-size: 0.9rem;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
.sm_link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
.sm_link:hover, .sm_link:focus {
  color: #fff;
}
.sm_link:hover::before, .sm_link:focus::before {
  width: 100%;
}
.sm_link:hover {
  text-decoration: none;
  color: #e51937;
}

.arrow_link {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.arrow_link .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #e51937;
  color: #fff;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
body.ar .arrow_link .arrow {
  margin-right: 0;
  margin-left: 12px;
}
body.ar .arrow_link .arrow i {
  transform: rotate(180deg);
}
.arrow_link .arrow.whtBgColor {
  background-color: #fff;
  color: #e51937;
}
.arrow_link .text {
  color: #5c5555;
  transition: all 0.3s ease-in-out;
}
.arrow_link .text.whtColor {
  color: #fff;
}
.arrow_link:hover {
  opacity: 0.8;
}

.font_light {
  font-weight: 300;
}

.font_regular {
  font-weight: 400;
}

.font_semi_bold {
  font-weight: 500;
}

.font_bold {
  font-weight: 800;
}

.mainColor {
  color: #e51937;
}

.whtColor {
  color: #fff;
}

.blkColor {
  color: #000;
}

.blkColor3 {
  color: #1f1f1f;
}

.textColor {
  color: #5c5555;
}

.offWhtColor {
  color: #a7a3a2 !important;
}

.mainBgColor {
  background-color: #e51937;
}

.blkBgColor3 {
  background-color: #1f1f1f;
}

.grayBgColor {
  background-color: #f3f3f0;
}

.w_70 {
  width: 70%;
}

.zoomin {
  position: relative;
  overflow: hidden;
}
.zoomin img {
  transition: all 0.5s ease-in-out;
}
.zoomin img:hover {
  transform: scale(1.05);
}

img {
  object-fit: cover;
  object-position: center;
}

.font_lg {
  font-size: 1.4rem;
}

.font_md {
  font-size: 1rem;
}

.font_sm {
  font-size: 0.8rem;
}

.font_xs {
  font-size: 0.7rem;
}

.g-recaptcha .rc-anchor-pt {
  display: none !important;
}

/* ====================================== _____________ Classes Styles _____________ ====================================== */
.mainBg {
  background-color: #f1f1f1;
}

.secBg {
  background-color: white;
}

.paddingSection {
  padding: 5rem 0;
}

.innerPadding {
  padding: 2.5rem 3.5rem;
}

@media (max-width: 568px) {
  .innerPadding {
    padding: 1.5rem 1.5rem;
  }
}
.upper {
  text-transform: uppercase;
}

.sm_link {
  display: inline-block;
}

.card1 {
  border: none;
  background-color: none;
}
.card1 .card-header {
  border: none;
  padding-left: 0;
  background-color: transparent;
}
body.ar .card1 .card-header {
  padding-right: 0;
}
.card1 .card-body {
  padding-left: 0;
}
body.ar .card1 .card-body {
  padding-right: 0;
}
.card1 a {
  width: 2.5rem;
}

label.message {
  top: 1rem;
}

textarea {
  height: 10rem !important;
}

.distribution_partner .content p {
  font-weight: 500;
  padding-bottom: 0.25rem;
  opacity: 0.8;
  line-height: 1.3;
  font-size: 0.9rem;
}
.distribution_partner .content h5 {
  font-weight: bold;
  padding-bottom: 0.75rem;
  opacity: 0.8;
}
.distribution_partner .content ol li {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ====================================== _____________ Reset Styles _____________ ====================================== */
* {
  outline: 0 !important;
  box-shadow: none !important;
}

html {
  font-size: 100%;
  overflow-x: hidden;
}
@media (max-width: 576px) {
  html {
    font-size: 85%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 88%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 90%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 95%;
  }
}

body {
  font-family: "Avenir LT Std";
  overflow-x: hidden;
  position: relative;
}
body.ar {
  direction: rtl;
  text-align: right;
}

.overflow_hidden {
  overflow: hidden !important;
  overflow-y: hidden !important;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background-color: transparent;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -5px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: transparent;
}

/* ====================================== _____________ Reset Styles _____________ ====================================== */
/* ====================================== _____________ Fonts Styles _____________ ====================================== */
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-Black.eot");
  src: url("fonts/AvenirLTStd-Black.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-Black.woff2") format("woff2"), url("fonts/AvenirLTStd-Black.woff") format("woff"), url("fonts/AvenirLTStd-Black.ttf") format("truetype"), url("fonts/AvenirLTStd-Black.svg#AvenirLTStd-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-BlackOblique.eot");
  src: url("fonts/AvenirLTStd-BlackOblique.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-BlackOblique.woff2") format("woff2"), url("fonts/AvenirLTStd-BlackOblique.woff") format("woff"), url("fonts/AvenirLTStd-BlackOblique.ttf") format("truetype"), url("fonts/AvenirLTStd-BlackOblique.svg#AvenirLTStd-BlackOblique") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-Book.eot");
  src: url("fonts/AvenirLTStd-Book.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-Book.woff2") format("woff2"), url("fonts/AvenirLTStd-Book.woff") format("woff"), url("fonts/AvenirLTStd-Book.ttf") format("truetype"), url("fonts/AvenirLTStd-Book.svg#AvenirLTStd-Book") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-Book_1.eot");
  src: url("fonts/AvenirLTStd-Book_1.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-Book_1.woff2") format("woff2"), url("fonts/AvenirLTStd-Book_1.woff") format("woff"), url("fonts/AvenirLTStd-Book_1.ttf") format("truetype"), url("fonts/AvenirLTStd-Book_1.svg#AvenirLTStd-Book") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-Oblique.eot");
  src: url("fonts/AvenirLTStd-Oblique.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-Oblique.woff2") format("woff2"), url("fonts/AvenirLTStd-Oblique.woff") format("woff"), url("fonts/AvenirLTStd-Oblique.ttf") format("truetype"), url("fonts/AvenirLTStd-Oblique.svg#AvenirLTStd-Oblique") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-Medium.eot");
  src: url("fonts/AvenirLTStd-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-Medium.woff2") format("woff2"), url("fonts/AvenirLTStd-Medium.woff") format("woff"), url("fonts/AvenirLTStd-Medium.ttf") format("truetype"), url("fonts/AvenirLTStd-Medium.svg#AvenirLTStd-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-Heavy.eot");
  src: url("fonts/AvenirLTStd-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-Heavy.woff2") format("woff2"), url("fonts/AvenirLTStd-Heavy.woff") format("woff"), url("fonts/AvenirLTStd-Heavy.ttf") format("truetype"), url("fonts/AvenirLTStd-Heavy.svg#AvenirLTStd-Heavy") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-LightOblique.eot");
  src: url("fonts/AvenirLTStd-LightOblique.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-LightOblique.woff2") format("woff2"), url("fonts/AvenirLTStd-LightOblique.woff") format("woff"), url("fonts/AvenirLTStd-LightOblique.ttf") format("truetype"), url("fonts/AvenirLTStd-LightOblique.svg#AvenirLTStd-LightOblique") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-HeavyOblique.eot");
  src: url("fonts/AvenirLTStd-HeavyOblique.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-HeavyOblique.woff2") format("woff2"), url("fonts/AvenirLTStd-HeavyOblique.woff") format("woff"), url("fonts/AvenirLTStd-HeavyOblique.ttf") format("truetype"), url("fonts/AvenirLTStd-HeavyOblique.svg#AvenirLTStd-HeavyOblique") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-Light.eot");
  src: url("fonts/AvenirLTStd-Light.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-Light.woff2") format("woff2"), url("fonts/AvenirLTStd-Light.woff") format("woff"), url("fonts/AvenirLTStd-Light.ttf") format("truetype"), url("fonts/AvenirLTStd-Light.svg#AvenirLTStd-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-MediumOblique.eot");
  src: url("fonts/AvenirLTStd-MediumOblique.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-MediumOblique.woff2") format("woff2"), url("fonts/AvenirLTStd-MediumOblique.woff") format("woff"), url("fonts/AvenirLTStd-MediumOblique.ttf") format("truetype"), url("fonts/AvenirLTStd-MediumOblique.svg#AvenirLTStd-MediumOblique") format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-BookOblique.eot");
  src: url("fonts/AvenirLTStd-BookOblique.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-BookOblique.woff2") format("woff2"), url("fonts/AvenirLTStd-BookOblique.woff") format("woff"), url("fonts/AvenirLTStd-BookOblique.ttf") format("truetype"), url("fonts/AvenirLTStd-BookOblique.svg#AvenirLTStd-BookOblique") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("fonts/AvenirLTStd-Roman.eot");
  src: url("fonts/AvenirLTStd-Roman.eot?#iefix") format("embedded-opentype"), url("fonts/AvenirLTStd-Roman.woff2") format("woff2"), url("fonts/AvenirLTStd-Roman.woff") format("woff"), url("fonts/AvenirLTStd-Roman.ttf") format("truetype"), url("fonts/AvenirLTStd-Roman.svg#AvenirLTStd-Roman") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ====================================== _____________ M'Myriad Font Styles _____________ ====================================== */
@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-Bold.eot");
  src: url("fonts/MyriadPro-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/MyriadPro-Bold.woff2") format("woff2"), url("fonts/MyriadPro-Bold.woff") format("woff"), url("fonts/MyriadPro-Bold.ttf") format("truetype"), url("fonts/MyriadPro-Bold.svg#MyriadPro-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-BoldCond.eot");
  src: url("fonts/MyriadPro-BoldCond.eot?#iefix") format("embedded-opentype"), url("fonts/MyriadPro-BoldCond.woff2") format("woff2"), url("fonts/MyriadPro-BoldCond.woff") format("woff"), url("fonts/MyriadPro-BoldCond.ttf") format("truetype"), url("fonts/MyriadPro-BoldCond.svg#MyriadPro-BoldCond") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-Cond.eot");
  src: url("fonts/MyriadPro-Cond.eot?#iefix") format("embedded-opentype"), url("fonts/MyriadPro-Cond.woff2") format("woff2"), url("fonts/MyriadPro-Cond.woff") format("woff"), url("fonts/MyriadPro-Cond.ttf") format("truetype"), url("fonts/MyriadPro-Cond.svg#MyriadPro-Cond") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-Light.eot");
  src: url("fonts/MyriadPro-Light.eot?#iefix") format("embedded-opentype"), url("fonts/MyriadPro-Light.woff2") format("woff2"), url("fonts/MyriadPro-Light.woff") format("woff"), url("fonts/MyriadPro-Light.ttf") format("truetype"), url("fonts/MyriadPro-Light.svg#MyriadPro-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-Semibold.eot");
  src: url("fonts/MyriadPro-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/MyriadPro-Semibold.woff2") format("woff2"), url("fonts/MyriadPro-Semibold.woff") format("woff"), url("fonts/MyriadPro-Semibold.ttf") format("truetype"), url("fonts/MyriadPro-Semibold.svg#MyriadPro-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("fonts/MyriadPro-Regular.eot");
  src: url("fonts/MyriadPro-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/MyriadPro-Regular.woff2") format("woff2"), url("fonts/MyriadPro-Regular.woff") format("woff"), url("fonts/MyriadPro-Regular.ttf") format("truetype"), url("fonts/MyriadPro-Regular.svg#MyriadPro-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ====================================== _____________ Fonts Styles _____________ ====================================== */
/* ====================================== _____________ Global Styles _____________ ====================================== */
/*html {
  scroll-behavior: smooth;
}*/

.banner.internal {
  position: relative;
  height: 350px;
  max-height: 350px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
.banner_bar {
  position: absolute !important;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 3;
  padding: 17px 0;
  color: #fff;
}
.banner_bar_title {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .banner_bar_title {
    font-size: 1.2rem;
  }
}
.banner_bar_share {
  margin-bottom: 0;
  font-size: 18px;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
.banner_bar_share::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
.banner_bar_share:hover, .banner_bar_share:focus {
  color: #fff;
}
.banner_bar_share:hover::before, .banner_bar_share:focus::before {
  width: 100%;
}
.banner_bar_share i {
  margin-left: 5px;
  font-size: 20px;
}
@media (max-width: 576px) {
  .banner_bar_share {
    font-size: 15px;
  }
  .banner_bar_share i {
    font-size: 17px;
  }
}

.dropdown {
  position: relative;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown .dropdown-menu {
  right: 0;
  top: 90%;
  left: auto;
  min-width: 350px;
  padding: 12px 18px;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.dropdown .dropdown-menu:hover {
  display: block;
}
@media (max-width: 576px) {
  .dropdown .dropdown-menu {
    right: -0%;
    transform: translateX(9%);
  }
}
.dropdown .dropdown-menu .dropdown_content_title {
  font-size: 0.9rem;
  padding-bottom: 5px;
  position: relative;
}
.dropdown .dropdown-menu .dropdown_content_title::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 15%;
  height: 1.5px;
  background-color: #e51937;
  z-index: 1;
}
.dropdown .dropdown-menu .dropdown_content .dropdown-item {
  padding: 0;
  padding-bottom: 5px;
  margin: 5px 0;
  color: #fff;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-size: 0.9rem;
}
.dropdown .dropdown-menu .dropdown_content .dropdown-item span {
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
.dropdown .dropdown-menu .dropdown_content .dropdown-item span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
.dropdown .dropdown-menu .dropdown_content .dropdown-item span:hover, .dropdown .dropdown-menu .dropdown_content .dropdown-item span:focus {
  color: #fff;
}
.dropdown .dropdown-menu .dropdown_content .dropdown-item span:hover::before, .dropdown .dropdown-menu .dropdown_content .dropdown-item span:focus::before {
  width: 100%;
}
.dropdown .dropdown-menu .dropdown-item {
  padding: 0;
  padding-bottom: 5px;
  margin: 5px 0;
  color: #fff;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-size: 0.9rem;
  background-color: transparent !important;
}
.dropdown .dropdown-menu .dropdown-item span {
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
.dropdown .dropdown-menu .dropdown-item span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
.dropdown .dropdown-menu .dropdown-item span:hover, .dropdown .dropdown-menu .dropdown-item span:focus {
  color: #fff;
}
.dropdown .dropdown-menu .dropdown-item span:hover::before, .dropdown .dropdown-menu .dropdown-item span:focus::before {
  width: 100%;
}
.dropdown.faq_dropdown .dropdown-menu {
  min-width: 100%;
}

.nav.nav-tabs {
  padding: 50px 0;
  border: 0;
  text-align: center;
  justify-content: center;
}
.nav.nav-tabs .nav-item .nav-link {
  border: none;
  position: relative;
  font-size: 0.9rem;
  color: #000;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.nav.nav-tabs .nav-item .nav-link:hover, .nav.nav-tabs .nav-item .nav-link.active {
  color: #e51937;
}
.nav.nav-tabs .nav-item .nav-link::after {
  position: absolute;
  content: "/";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 400;
  color: #000;
}
.nav.nav-tabs .nav-item:last-of-type .nav-link::after {
  display: none;
}

.parent_float {
  line-height: 0;
  -webkit-column-count: 3;
  -webkit-column-gap: 0px;
  -moz-column-count: 3;
  -moz-column-gap: 0px;
  column-count: 3;
  column-gap: 0px;
}
@media (max-width: 576px) {
  .parent_float {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .parent_float {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .parent_float {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}

.gallery_focus {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 5px 5px;
}
.gallery_focus_link {
  display: block;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}
.gallery_focus_link .overlay_gallery {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  transform: scaleX(0);
  transition: all 0.5s ease-in-out;
}
.gallery_focus_link:hover .overlay_gallery {
  transform: scaleX(1);
}

.loader {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #e51937;
  background: -moz-linear-gradient(left, #e51937 10%, rgba(255, 0, 0, 0) 42%);
  background: -webkit-linear-gradient(left, #e51937 10%, rgba(255, 0, 0, 0) 42%);
  background: -o-linear-gradient(left, #e51937 10%, rgba(255, 0, 0, 0) 42%);
  background: -ms-linear-gradient(left, #e51937 10%, rgba(255, 0, 0, 0) 42%);
  background: linear-gradient(to right, #e51937 10%, rgba(255, 0, 0, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.loader:before {
  width: 50%;
  height: 50%;
  background: #e51937;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.loader:after {
  background: #f1f1f1;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.photo_gallery_slider {
  background-color: #D1D1D1;
}
@media (max-width: 768px) {
  .photo_gallery_slider h3 {
    padding-top: 20px;
  }
}

/* ====================================== _____________ Global Styles _____________ ====================================== */
/* ====================================== _____________ Buttons Styles _____________ ====================================== */
/* ====================================== _____________ Buttons Styles _____________ ====================================== */
/* ====================================== _____________ Slider Styles _____________ ====================================== */
/* ====================================== _____________ Slider Styles _____________ ====================================== */
/* ====================================== _____________ Slider Styles _____________ ====================================== */
.gallery_swiper {
  height: 500px;
  padding: 30px 0;
}
.gallery_swiper .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.gallery_swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.gallery_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e51937;
}

.gallery_info_swiper {
  height: 400px !important;
  padding: 0;
}
.gallery_info_swiper .swiper-slide {
  height: 97%;
  background-size: cover;
  background-position: center;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e51937;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #fff;
  color: #e51937;
}

.gallery-thumbs {
  height: 125px !important;
  padding: 0 !important;
}
.gallery-thumbs .swiper-slide {
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.gallery-thumbs .swiper-slide-thumb-active {
  border: 4px solid #e51937;
}

.products_solutions .pro_sol_slider {
  display: none;
}
.products_solutions .pro_sol_slider.active {
  display: block;
}
.products_solutions_slider {
  height: 160px;
  margin-left: 200px;
  margin-top: 100px;
  margin-bottom: 250px;
}
body.ar .products_solutions_slider {
  margin-left: 0;
  margin-right: 250px;
}
@media (max-width: 576px) {
  .products_solutions_slider {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 100px;
    height: 145px;
  }
  body.ar .products_solutions_slider {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .products_solutions_slider {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }
  body.ar .products_solutions_slider {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .products_solutions_slider {
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }
  body.ar .products_solutions_slider {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .products_solutions_slider {
    margin-left: 100px;
  }
  body.ar .products_solutions_slider {
    margin-left: 0;
    margin-right: 175px;
  }
}
.products_solutions_slider_swiper {
  height: 100%;
  position: relative;
}
.products_solutions_slider_swiper::before, .products_solutions_slider_swiper::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 26%;
  background: #181818;
  z-index: 2;
}
.products_solutions_slider_swiper::before {
  top: 0;
  background: linear-gradient(180deg, #181818 0%, rgba(24, 24, 24, 0) 100%);
}
.products_solutions_slider_swiper::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0) 0%, #181818 100%);
}
.products_solutions_slider_swiper_slide {
  margin: 5px 0;
  padding-left: 20px;
  height: auto !important;
  cursor: pointer;
}
.products_solutions_slider_swiper_slide_text {
  font-size: 0.9rem;
  padding-left: 15px;
  position: relative;
  margin-bottom: 0;
}
body.ar .products_solutions_slider_swiper_slide_text {
  padding-left: 0;
  padding-right: 15px;
}
.products_solutions_slider_swiper_slide_text::before, .products_solutions_slider_swiper_slide_text::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: url(../img/homePage/bean.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
body.ar .products_solutions_slider_swiper_slide_text::before, body.ar .products_solutions_slider_swiper_slide_text::after {
  left: auto;
  right: 0;
}
.products_solutions_slider_swiper_slide_text::before {
  opacity: 1;
  filter: grayscale(1);
}
.products_solutions_slider_swiper_slide-active {
  color: #fff;
}
.products_solutions_slider_swiper_slide-active .products_solutions_slider_swiper_slide_text {
  color: #fff;
}
.products_solutions_slider_swiper_slide-active .products_solutions_slider_swiper_slide_text::before {
  opacity: 0;
}
.products_solutions_slider_swiper_slide-active .products_solutions_slider_swiper_slide_text::after {
  opacity: 1;
}
.products_solutions_slider .swiper-button-next,
.products_solutions_slider .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e51937;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  top: auto;
  margin-top: 0;
  bottom: 0;
}
.products_solutions_slider .swiper-button-next::after,
.products_solutions_slider .swiper-button-prev::after {
  display: none;
}
.products_solutions_slider .swiper-button-prev {
  left: auto;
  right: 65px;
}

/* ====================================== _____________ Slider Styles _____________ ====================================== */
/* ====================================== _____________ Side Button Burger Styles _____________ ====================================== */
.side_button {
  margin-top: 0;
  width: 25px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: relative;
  z-index: 100;
  cursor: pointer;
}
.side_button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #a7a3a2;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.side_button span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}
.side_button span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}
.side_button span:nth-child(1), .side_button span:nth-child(2) {
  top: 0px;
}
.side_button span:nth-child(3), .side_button span:nth-child(4) {
  top: 8px;
}
.side_button span:nth-child(5), .side_button span:nth-child(6) {
  top: 16px;
}
@media (max-width: 578px) {
  .side_button span {
    background: #fff;
    height: 1.5px;
  }
}
.side_button.open span:nth-child(1), .side_button.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.side_button.open span:nth-child(2), .side_button.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.side_button.open span:nth-child(1) {
  left: 3px;
  top: 6px;
}
.side_button.open span:nth-child(2) {
  left: calc(50% - 3px);
  top: 6px;
}
.side_button.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.side_button.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.side_button.open span:nth-child(5) {
  left: 3px;
  top: 13px;
}
.side_button.open span:nth-child(6) {
  left: calc(50% - 3px);
  top: 13px;
}

.burger_menu:hover .burger_menu_text, .burger_menu.open .burger_menu_text {
  color: #fff;
}
.burger_menu:hover .side_button span, .burger_menu.open .side_button span {
  background-color: #fff;
}

/* ====================================== _____________ Side Button Burger Styles _____________ ====================================== */
.main_list ul li a span {
  color: grey;
  position: relative;
}
/* .main_list ul li:nth-child(2) {
  padding-bottom: 10px;
} */
.main_list ul li:last-child a span::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: grey;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.main_list ul li:last-child a span:hover::before {
  width: 0;
}

@media (max-width: 768px) {
  .main_list h5 {
    margin-bottom: 1rem;
  }
}
.modal_video.show .modal-dialog {
  max-width: 65%;
}
.modal_video.show .modal-dialog .modal-content {
  border: none;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}
.modal_video.show .modal-dialog button.close {
  text-align: right;
  padding: 10px 15px;
  background-color: #e51937;
  opacity: 1;
}
.modal_video.show .modal-dialog button.close span {
  color: white;
}
@media (max-width: 768px) {
  .modal_video.show .modal-dialog {
    margin: 0 auto;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .modal {
    padding-right: 0;
  }
}
.video_coffee {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.video_coffee img {
  width: 100%;
  height: 420px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.video_coffee .icon {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.video_coffee .icon i {
  color: #fff;
  background-color: #e51937;
  padding: 25px;
  border-radius: 50%;
  font-size: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.video_coffee:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.video_coffee span {
  font-size: 14px;
}

@media (max-width: 991px) {
  .video_content {
    padding-top: 1rem;
  }
}
@media (max-width: 768px) {
  .video_coffee i {
    padding: 20px !important;
    font-size: 10px !important;
  }
}
.video_coffee .banner_bar_title {
  font-size: 30px;
  font-weight: normal;
}

/* ====================================== _____________ Card Styles _____________ ====================================== */
.card {
  border: none;
  width: 100%;
  background-color: #fff;
}
.card_header {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  background-color: #fff;
}
.card_header img {
  width: 100%;
  height: 100%;
}
.card_body {
  background-color: #fff;
  padding: 0 20px 25px 20px;
}
.card_body_date {
  color: #e51937;
  display: block;
  margin-bottom: 15px;
}

/* ====================================== _____________ Card Styles _____________ ====================================== */
/* ====================================== _____________ Slider Styles _____________ ====================================== */
.popup {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 101;
  overflow-y: auto;
  display: none;
}
.popup_box {
  width: 85%;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  
}
@media (max-width: 576px) {
  .popup_box {
    margin-top: 30px;
  }
}
.popup_box_close {
  position: absolute;
  right: -15px;
top: -15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  color: #e51937;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.popup_box_close:hover {
  background-color: #e51937;
  color: #fff;
}
.popup_box_header {
  overflow: hidden;border: 35px solid rgba(0, 0, 0, 0.9);
}

/* ====================================== _____________ Slider Styles _____________ ====================================== */
/* ====================================== _____________ Grids Styles _____________ ====================================== */
/* ====================================== _____________ Grids Styles _____________ ====================================== */
/* ====================================== _____________ Header Styles _____________ ====================================== */
header {
  padding: 15px 0;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  /*font-family: "Myriad Pro";*/
}
header.header_slide {
  background-color: rgba(0, 0, 0, 0.7);
}
header.header_slide.scrolled {
  background-color: #111111;
}
header.header_slide .navbar_list {
  border-bottom: 1px solid #a7a3a2;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  header.header_slide .navbar_list {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media (max-width: 578px) {
  header {
    padding: 0;
  }
}
header .navbar {
  padding: 15px;
  flex-direction: column;
}
@media (max-width: 578px) {
  header .navbar {
    background-color: #e51937;
    position: fixed;
    width: 100%;
    z-index: 99;
  }
}
header .navbar_brand img {
  width: 150px;
}
@media (max-width: 767px) {
  header .navbar_brand img {
    width: 90px;
  }
}
@media (max-width: 576px) {
  header .navbar_brand img {
    width: 55px;
  }
}
header .navbar_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
header .navbar_list_item {
  margin: 0 8px;
  text-align: center;
}
header .navbar_list_item i {
  margin: 0 0;
  font-size: 20px;
  color: white;
  opacity: 59%;
}
@media (max-width: 567px) {
  header .navbar_list_item i {
    opacity: 100%;
  }
}
header .navbar_list_item i.fa-instagram {
  width: 18px;
  height: 18px;
}
header .navbar_list_item i.fa-youtube-play {
  width: 24px;
  height: 16px;
}
header .navbar_list_item i.fa-linkedin {
  width: 16px;
  height: 16px;
  margin-bottom: 4px;
}
header .navbar_list_item i.fa-facebook {
  width: 8px;
  height: 16px;
}
@media (max-width: 991px) {
  header .navbar_list_item:first-child, header .navbar_list_item:nth-child(2), header .navbar_list_item:nth-child(3), header .navbar_list_item:nth-child(4) {
    display: none;
  }
}
header .navbar_list_item.search {
  position: relative;
  /*overflow: hidden;*/
  transition: all 0.3s ease-in-out;
}
header .navbar_list_item.search i {
  width: 20px;
  height: 20px;
}
header .navbar_list_item.search.p_left {
  padding-left: 200px;
}
@media (max-width: 578px) {
  header .navbar_list_item.search.p_left {
    padding-left: 150px;
  }
}
@media (max-width: 417px) {
  header .navbar_list_item.search.p_left {
    padding-left: 100px;
  }
}
body.ar header .navbar_list_item.search.p_left {
  padding-left: 0;
  padding-right: 200px;
  height: 26px;
}
header .navbar_list_item.country_lang {
  margin: 0 2.5rem;
}
@media (max-width: 576px) {
  header .navbar_list_item.country_lang {
    margin: 0 0.5rem;
  }
}
header .navbar_list_item_link {
  font-size: 0.9rem;
  color: #a7a3a2;
  transition: all 0.2s ease-in-out;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
header .navbar_list_item_link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
header .navbar_list_item_link:hover, header .navbar_list_item_link:focus {
  color: #fff;
}
header .navbar_list_item_link:hover::before, header .navbar_list_item_link:focus::before {
  width: 100%;
}
header .navbar_list_item_link i {
  transition: all 0.3s ease-in-out;
}
@media (max-width: 578px) {
  header .navbar_list_item_link {
    color: #fff;
  }
  header .navbar_list_item_link i {
    margin: 0;
  }
}
.country_lang header .navbar_list_item_link {
  color: #fff;
}
header .navbar_list_item_link:hover i, header .navbar_list_item_link:focus i {
  opacity: 1;
}
header .navbar_list_item_link:hover:before, header .navbar_list_item_link:focus:before {
  width: 0 !important;
}
header .navbar_list_item .dropdown-toggle {
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
header .navbar_list_item .dropdown-toggle::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
header .navbar_list_item .dropdown-toggle:hover, header .navbar_list_item .dropdown-toggle:focus {
  color: #fff;
}
header .navbar_list_item .dropdown-toggle:hover::before, header .navbar_list_item .dropdown-toggle:focus::before {
  width: 100%;
}
header .navbar_list_item .dropdown-toggle:focus {
  color: white;
}
header .navbar_list_item .dropdown-toggle:focus:before {
  width: 100%;
}
header .navbar_list_item_text {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #a7a3a2;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}
body.ar header .navbar_list_item_text {
  margin-left: 15px;
  margin-right: 0;
}
@media (max-width: 576px) {
  header .navbar_list_item_text {
    margin-right: 5px;
    display: none;
  }
}
header .navbar_list_item.dropdown {
  position: relative;
}
header .navbar_list_item.dropdown:hover .dropdown-menu {
  display: block;
}
header .navbar_list_item.dropdown .dropdown-menu {
  max-height: 200px;
  right: -125px;
  top: 90%;
  left: auto;
  min-width: 350px;
  padding: 12px 18px;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  transition: all 0.5s ease-in-out;
  overflow-y: scroll;
}
header .navbar_list_item.dropdown .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}
header .navbar_list_item.dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: #111;
}
header .navbar_list_item.dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: #111;
}
header .navbar_list_item.dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #e51937;
}
@media (max-width: 576px) {
  header .navbar_list_item.dropdown .dropdown-menu {
    right: -50%;
    transform: translateX(9%);
  }
  body.ar header .navbar_list_item.dropdown .dropdown-menu {
    min-width: 200px !important;
    right: -75%;
  }
}
header .navbar_list_item.dropdown .dropdown-menu .dropdown_content_title {
  font-size: 0.9rem;
  padding-bottom: 5px;
  position: relative;
}
header .navbar_list_item.dropdown .dropdown-menu .dropdown_content_title::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 15%;
  height: 1.5px;
  background-color: #e51937;
  z-index: 1;
}
header .navbar_list_item.dropdown .dropdown-menu .dropdown_content .dropdown-item {
  padding: 0;
  padding-bottom: 5px;
  margin: 5px 0;
  color: #fff;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-size: 0.9rem;
  background-color: transparent !important;
}
header .navbar_list_item.dropdown .dropdown-menu .dropdown_content .dropdown-item::before {
  display: none;
}
header .navbar_list_item.dropdown .dropdown-menu .dropdown_content .dropdown-item:hover {
  opacity: 1;
}
header .navbar_list_item.dropdown .dropdown-menu .dropdown_content .dropdown-item:focus {
  opacity: 1;
}
header .navbar_list_item.dropdown .dropdown-menu .dropdown_content .dropdown-item span::before {
  display: none;
}
header .navbar_subnavbar {
  margin-top: 10px;
  padding: 15px 0;
  display: none;
}
@media (max-width: 578px) {
  header .navbar_subnavbar {
    display: none !important;
  }
}
header .navbar_subnavbar_list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
header .navbar_subnavbar_list_item {
  margin: 0 12px;
}
header .navbar_subnavbar_list_item_link {
  color: #a7a3a2;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
header .navbar_subnavbar_list_item_link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
header .navbar_subnavbar_list_item_link:hover, header .navbar_subnavbar_list_item_link:focus {
  color: #fff;
}
header .navbar_subnavbar_list_item_link:hover::before, header .navbar_subnavbar_list_item_link:focus::before {
  width: 100%;
}
@media (max-width: 578px) {
  header .navbar_subnavbar_list_item_link {
    color: white;
  }
}

/* ====================================== _____________ Header Styles _____________ ====================================== */
/* ====================================== _____________ Footer Styles _____________ ====================================== */
footer {
  padding-bottom: 15px;
  background-color: #111111;
}
footer .footer {
  padding: 60px 0 30px;
  background-color: #111111;
}
footer .footer_title {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 30px;
}
footer .footer_list {
  padding: 0;
  margin: 0;
}
footer .footer_list_item {
  margin: 10px 0;
}
footer .footer_list_item-title {
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #a7a3a2;
  font-size: 0.9rem;
}
footer .footer_list_item_link {
  color: #a7a3a2;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
footer .footer_list_item_link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
footer .footer_list_item_link:hover, footer .footer_list_item_link:focus {
  color: #fff;
}
footer .footer_list_item_link:hover::before, footer .footer_list_item_link:focus::before {
  width: 100%;
}
footer .footer_list_item_link.text-normal {
  text-transform: none;
}
footer .footer_branchDetails {
  color: #a7a3a2;
}
footer .footer_branchDetails_text span {
  display: block;
  margin: 10px 0;
  text-transform: uppercase;
  font-size: 0.9rem;
}
footer .footer_socialList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  footer .footer_socialList {
    justify-content: flex-start;
  }
}
footer .footer_socialList_item {
  margin: 0 10px;
}
footer .footer_socialList_item_link {
  color: #a7a3a2;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
footer .footer_socialList_item_link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
footer .footer_socialList_item_link:hover, footer .footer_socialList_item_link:focus {
  color: #fff;
}
footer .footer_socialList_item_link:hover::before, footer .footer_socialList_item_link:focus::before {
  width: 100%;
}
footer .footer_socialList_item_link::before {
  display: none;
}
footer .footer .form-grop {
  position: relative;
}
footer .footer .form-grop i {
  position: absolute;
  top: 3px;
  right: 5px;
  color: white;
  background: #e51937;
  padding: 8px 13px;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 991px) {
  footer .footer .form-grop i {
    top: 3px;
    padding: 6px 11px;
    line-height: 15px;
  }
}
body.ar footer .footer .form-grop i {
  right: inherit;
  left: 5px;
  top: 2px;
}
footer .copyright {
  padding: 25px 0;
  background-color: #000;
}
footer .copyright p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #a7a3a2;
  margin-bottom: 0;
  text-align: center;
}

/* ====================================== _____________ Footer Styles _____________ ====================================== */
/* ====================================== _____________ Sidebar Styles _____________ ====================================== */
.sidebar {
  top: 59px;
  display: none;
  background-color: #111111;
  width: 90%;
  /*height: calc(100% - (60px + 66px));*/
  height:100%;
  position: fixed;
  right: -100%;
  padding: 20px;
  z-index: 555555555555555;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  font-family: "Avenir LT Std";
  overflow-y: auto;
}
body.ar .sidebar {
  right: 100%;
}
.sidebar::-webkit-scrollbar {
  width: 5px;
}
.sidebar::-webkit-scrollbar-track {
  border-radius: 0;
}
.sidebar::-webkit-scrollbar-thumb {
  background: #181818;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background: #000;
}
@media (max-width: 578px) {
  .sidebar {
    display: block;
  }
}
.sidebar ul {
  margin-bottom: 0;
}
.sidebar ul.parent {
  text-align: center;
}
.sidebar ul.parent li {
  font-size: 17px;
  font-weight: bold;
  padding: 8px 0;
  position: relative;
  text-transform: capitalize;
}
.sidebar ul.parent li.Parent_li {
  font-size: 20px;
}
.sidebar ul.parent li a {
  color: white;
}
.sidebar ul.parent li a.buy_sidebar {
  display: block;
  margin-bottom: 1rem;
}
.sidebar ul.parent li:hover a {
  color: #e51937;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.sidebar ul.parent li .child li a {
  color: #b6b4bd;
}
.sidebar ul.parent li .child li a:hover {
  color: #e51937;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.sidebar ul.parent li ul li {
  font-size: 15px;
  font-weight: normal;
}
.sidebar ul.child li {
  font-size: 12px;
  text-transform: capitalize;
}
.sidebar ul a {
  text-decoration: none;
}

.right {
  right: 0;
}
body.ar .right {
  right: 10% !important;
}

.none {
  display: none;
}

/* ====================================== _____________ Sidebar Styles _____________ ====================================== */
/* ====================================== _____________ Forms Styles _____________ ====================================== */
.form.form_search {
  position: absolute;
  top: -15px;
  left: 0;
  width: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
body.ar .form.form_search {
  left: auto;
  right: 0;
}
.form.form_search.open {
  width: 200px;
  opacity: 1;
}
@media (max-width: 578px) {
  .form.form_search.open {
    width: 150px;
  }
}
@media (max-width: 417px) {
  .form.form_search.open {
    width: 100px;
  }
}
.form.form_search .form-group {
  position: relative;
  margin-bottom: 0;
}
.form.form_search .form-group .form-control {
  font-size: 1rem;
  background-color: transparent;
  padding: 8px 15px;
  padding-left: 0;
  display: block;
  border: none;
  border-bottom: 1px solid #a7a3a2;
  box-shadow: none;
  outline: 0;
  border-radius: 0;
  color: #fff;
}
body.ar .form.form_search .form-group .form-control {
  padding-left: 15px;
  padding-right: 0;
}
@media (max-width: 578px) {
  .form.form_search .form-group .form-control {
    border-bottom: 1px solid white;
  }
}
.form.form_search .form-group .form-control:focus, .form.form_search .form-group .form-control.focused {
  outline: none;
  border-bottom: 1px solid transparent;
}
.form.form_search .form-group .form-control:focus ~ label, .form.form_search .form-group .form-control.focused ~ label {
  top: -10px;
  font-size: 0.9rem;
  color: #e51937;
}
.form.form_search .form-group .form-control:focus ~ .bar::before, .form.form_search .form-group .form-control:focus ~ .bar::after, .form.form_search .form-group .form-control.focused ~ .bar::before, .form.form_search .form-group .form-control.focused ~ .bar::after {
  width: 50%;
}
.form.form_search .form-group .form-control:focus ~ .highlight, .form.form_search .form-group .form-control.focused ~ .highlight {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: 0.1s;
  -moz-animation-iteration-count: 0.1s;
  -o-animation-iteration-count: 0.1s;
  animation-iteration-count: 0.1s;
  -webkit-animation-name: inputHighlighter;
  -moz-animation-name: inputHighlighter;
  -o-animation-name: inputHighlighter;
  animation-name: inputHighlighter;
  -webkit-animation-direction: ease;
  -moz-animation-direction: ease;
  -o-animation-direction: ease;
  animation-direction: ease;
}
.form.form_search .form-group label {
  color: #a7a3a2;
  font-size: 1rem;
  font-weight: 600;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 10px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
body.ar .form.form_search .form-group label {
  left: auto;
  right: 0;
}
@media (max-width: 578px) {
  .form.form_search .form-group label {
    color: white;
    font-size: 0.7rem;
    top: 17px;
  }
}
.form.form_search .form-group .bar {
  position: relative;
  display: block;
  width: 100%;
}
.form.form_search .form-group .bar::before, .form.form_search .form-group .bar::after {
  content: "";
  height: 1px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #e51937;
  transition: all 0.3s ease-in-out;
}
.form.form_search .form-group .bar::before {
  left: 50%;
}
.form.form_search .form-group .bar::after {
  right: 50%;
}
.form.form_search .form-group .highlight {
  position: absolute;
  height: 60%;
  width: 100%;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
body.ar .form.form_search .form-group .highlight {
  left: auto;
  right: 0;
}
.form.form_selectBranches {
  position: relative;
}
.form.form_selectBranches .form-control {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  padding: 0;
  border: none;
}
.form.form_selectBranches .form-control::-ms-expand {
  display: none;
}
.form.form_selectBranches .selectize-control.single .selectize-input,
.form.form_selectBranches .selectize-control.single .selectize-input input {
  background-color: transparent;
  border: 1px solid #a7a3a2;
  padding: 8px 10px;
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}
.form.form_selectBranches .selectize-control.single .selectize-input:focus, .form.form_selectBranches .selectize-control.single .selectize-input:hover, .form.form_selectBranches .selectize-control.single .selectize-input:visited, .form.form_selectBranches .selectize-control.single .selectize-input:valid, .form.form_selectBranches .selectize-control.single .selectize-input:active,
.form.form_selectBranches .selectize-control.single .selectize-input input:focus,
.form.form_selectBranches .selectize-control.single .selectize-input input:hover,
.form.form_selectBranches .selectize-control.single .selectize-input input:visited,
.form.form_selectBranches .selectize-control.single .selectize-input input:valid,
.form.form_selectBranches .selectize-control.single .selectize-input input:active {
  border-color: #e51937;
}
.form.form_selectBranches .selectize-control.single .selectize-input:after,
.form.form_selectBranches .selectize-control.single .selectize-input input:after {
  display: none;
}
.form.form_selectBranches .selectize-dropdown {
  border: none;
}
.form.form_selectBranches .selectize-dropdown-content {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16) !important;
  border: 1px solid #a7a3a2;
  max-height: 200px;
  overflow-y: scroll;
  width: 100%;
  padding: 10px;
}
.form.form_selectBranches .selectize-dropdown-content::-webkit-scrollbar {
  width: 5px;
}
.form.form_selectBranches .selectize-dropdown-content::-webkit-scrollbar-track {
  border-radius: 0;
}
.form.form_selectBranches .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background: #e51937;
  border-radius: 0px;
}
.form.form_selectBranches .selectize-dropdown-content ::-webkit-scrollbar-thumb:hover {
  background: rgba(229, 25, 55, 0.9);
}
.form.form_selectBranches .selectize-dropdown-content [data-selectable].option {
  color: #a7a3a2;
}
.form.form_selectBranches .selectize-dropdown-content [data-selectable].option:hover, .form.form_selectBranches .selectize-dropdown-content [data-selectable].option.active {
  background-color: #e51937;
  color: #fff;
}
.form.form_selectBranches .submit {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e51937;
  color: #fff;
  right: 5px;
  top: 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  padding: 1px;
  z-index: 9;
}
body.ar .form.form_selectBranches .submit {
  right: auto;
  left: 5px;
}
body.ar .form.form_selectBranches .submit i {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .form.form_selectBranches .submit {
    top: 3px;
  }
}
.form.form_selectBranches .submit:hover {
  background-color: #e51937;
  opacity: 0.8;
}

/* ====================================== _____________ Forms Styles _____________ ====================================== */
.cust_form .cust_col {
  margin-bottom: 20px;
}
.cust_form .cust_col .custom-file {
  cursor: pointer;
}
.cust_form .cust_col .custom-file .custom-file-label {
  cursor: pointer;
  display: block !important;
}
.cust_form .cust_col .form-group {
  position: relative;
  display: flex;
  align-items: center;
}
.cust_form .cust_col .form-group .form-control {
  color: #5e5e5e;
  font-size: 0.9rem;
  padding: 1.2rem 1rem;
  outline: 0;
  background-clip: inherit;
  box-shadow: none !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  -ms-border-radius: 0px !important;
  -o-border-radius: 0px !important;
}
body.ar .cust_form .cust_col .form-group .form-control {
  padding: 0.6rem 0.8rem;
}
.cust_form .cust_col .form-group .form-control:focus {
  outline: 0;
  border-color: #e51937;
  background-clip: inherit;
  box-shadow: none !important;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.cust_form .cust_col .form-group .form-control:focus ~ label {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.cust_form .cust_col .form-group label {
  position: absolute;
  margin-bottom: 0 !important;
  cursor: text;
}
.cust_form .cust_col .form-group label.label_one {
  left: 8rem;
}
.cust_form .cust_col .form-group label.label_two {
  left: 7.5rem;
}
.cust_form .cust_col .form-group label.label_three {
  left: 7.5rem;
}
.cust_form .cust_col .form-group label.label_four {
  left: 11rem;
}
.cust_form .cust_col .form-group label.label_five {
  left: 5rem;
}
body.ar .cust_form .cust_col .form-group label {
  left: auto !important;
}
body.ar .cust_form .cust_col .form-group label.label_one {
  right: 5rem;
}
body.ar .cust_form .cust_col .form-group label.label_two {
  right: 6.5rem;
}
body.ar .cust_form .cust_col .form-group label.label_three {
  right: 3.5rem;
}
body.ar .cust_form .cust_col .form-group label.label_four {
  right: 5rem;
}
body.ar .cust_form .cust_col .form-group label.label_five {
  right: 7rem;
}
.cust_form .cust_col textarea {
  resize: none;
}
.cust_form .cust_col input[type=number]::-webkit-inner-spin-button,
.cust_form .cust_col input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cust_form button {
  position: relative;
  z-index: 99;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  color: white;
  text-align: center;
  width: 100%;
}
.cust_form button:hover {
  background-color: white;
  border: 1px solid #e51937;
}
.cust_form button:hover span {
  color: black;
}
@media (max-width: 768px) {
  .cust_form {
    margin-bottom: 4rem;
  }
}

@media (max-width: 991px) {
  .contact_us .form {
    margin-bottom: 5rem;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
select.select2 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #00000085;
}

.upload-cv .custom-file-label {
  border: none;
  top: 0;
  left: 0;
  right: 1rem;
  color: #00000085;
}
.upload-cv .form-group label {
  left: 0 !important;
}
body.ar .upload-cv .form-group label {
  left: 1rem !important;
  right: 0rem !important;
  width: 100%;
  height: 100%;
  top: 0;
}
.upload-cv .custom-file-label::after {
  top: 4px;
  content: "Upload";
  cursor: pointer;
  background-color: grey;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 0.35rem 1.8rem;
  font-size: 0.75rem;
}
body.ar .upload-cv .custom-file-label::after {
  content: "تحميل";
  padding: 0 1.8rem;
  line-height: 28px;
  height: 80%;
  top: 4px;
  left: 10px;
}

@media (max-width: 991px) {
  .distribution_partner .form {
    padding-top: 3rem;
    margin-bottom: 0 !important;
  }
}

/* ====================================== _____________ Map Styles _____________ ====================================== */
.map {
  position: relative;
  padding: 80px 0 50px !important;
}
.map .map-sec {
  overflow: scroll;
}
.map .map-sec::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.map .map-sec::-webkit-scrollbar-track {
  border-radius: 0;
}
.map .map-sec::-webkit-scrollbar-thumb {
  background: #181818;
}
.map .map-sec::-webkit-scrollbar-thumb:hover {
  background: #000;
}
.map_markers {
  position: relative;
  width: 100%;
  z-index: 5;
  overflow: scroll;
}





.map_markers::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.map_markers::-webkit-scrollbar-track {
  border-radius: 0;
}
.map_markers::-webkit-scrollbar-thumb {
  background: #181818;
}
.map_markers::-webkit-scrollbar-thumb:hover {
  background: #000;
}
@media (max-width: 767px) {
  .map_markers {
    width: 1100px;
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
}
.map_markers_marker {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.map_markers_marker_pin {
  transition: all 0.5s ease-in-out;
}
.map_markers_marker_details {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 65%;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px 15px 10px 25px;
  width: 350px;
  max-width: 350px;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
  z-index: 99;
}
.map_markers_marker_details h5.subTitle{text-transform:none;}
.map_markers_marker_details h3.title{ font-size:16px;}
body.ar .map_markers_marker_details {
  padding: 10px 25px 10px 15px;
}
.map_markers_marker_details a.ml-0.ml-md-2.font_sm{margin-left:20px !important;}


@media (min-width: 992px) and (max-width: 1199px) {
  .map_markers_marker_details {
    width: 300px;
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  .map_markers_marker_details {
    width: 50vw;
    min-width: 50vw;
    max-width: 50vw;
    overflow: scroll;
  }
}
.map_markers_marker.marker_right .map_markers_marker_details {
  left: auto !important;
  right: 50%;
}
.map_markers_marker.clicked .map_markers_marker_details {
  transform: scale(1);
}

/* ====================================== _____________ Map Styles _____________ ====================================== */
/* ====================================== _____________ Home Page Styles _____________ ====================================== */
.homePage .banner {
  background-image: url(../img/homePage/bg.jpg);
  background-position: center;
  background-size: cover;
  max-height: 100vh;
  width: 100%;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  position: relative;
}
.homePage .banner::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.homePage .banner.black_overlay::before {
  background-color: rgba(0, 0, 0, 0.9);
}
.homePage .banner #bannerVideo {
  height: 113%;
  display: none;
  position: relative;
}
.homePage .banner #bannerVideo::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.homePage .banner_content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (max-width: 991px) {
  .homePage .banner_content {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 767px) {
  .homePage .banner_content {
    width: 100%;
    padding: 0 15px;
  }
}
.homePage .banner_content_title {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  border-bottom: 3px solid #e51937;
}
@media (max-width: 769px) {
  .homePage .banner_content_title {
    text-align: center;
    font-size: 1.4rem;
  }
}
@media (max-width: 568px) {
  .homePage .banner_content_title {
    font-size: 1.2rem;
  }
}
.homePage .banner_content_description {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 769px) {
  .homePage .banner_content_description {
    text-align: center;
    font-size: 1.2rem;
  }
}
@media (max-width: 568px) {
  .homePage .banner_content_description {
    text-align: center;
    font-size: 1rem;
  }
}
.homePage .banner_discoverBuy {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.homePage .banner_discoverBuy.black {
  background-color: #000;
}
.homePage .banner_discoverBuy_title {
  font-size: 1.4rem;
  font-weight: 300;
  color: #a7a3a2;
  margin-bottom: 0;
  padding-bottom: 5px;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.homePage .banner_discoverBuy_title span {
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
.homePage .banner_discoverBuy_title span::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
.homePage .banner_discoverBuy_title span:hover, .homePage .banner_discoverBuy_title span:focus {
  color: #fff;
}
.homePage .banner_discoverBuy_title span:hover::before, .homePage .banner_discoverBuy_title span:focus::before {
  width: 100%;
}
@media (max-width: 991px) {
  .homePage .banner_discoverBuy_title span::before {
    display: none;
  }
}
.homePage .banner_discoverBuy_title.active {
  margin-bottom: 20px;
}
.homePage .banner_discoverBuy_title.active span::before {
  width: 100%;
}
.homePage .banner_discoverBuy_list {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  display: none;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .homePage .banner_discoverBuy_list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.homePage .banner_discoverBuy_list_item {
  margin: 0 15px;
}
.homePage .banner_discoverBuy_list_item:first-of-type {
  margin-left: 0;
}
body.ar .homePage .banner_discoverBuy_list_item:first-of-type {
  margin-right: 0;
  margin-left: 15px;
}
.homePage .banner_discoverBuy_list_item_link {
  color: #a7a3a2;
  font-size: 1rem;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .homePage .banner_discoverBuy_list_item {
    margin: 0;
    padding: 10px 0;
  }
}
.homePage .coffee {
  padding: 30px 0;
}
.homePage .coffee_card {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.homePage .coffee_card:hover .coffee_card_body_title,
.homePage .coffee_card:hover .arrow_link {
  opacity: 0.7;
}
.homePage .coffee_card:hover .coffee_card_header img {
  transform: scale(1.05);
}
.homePage .coffee_card_body {
  padding: 15px 0;
}
.homePage .coffee_card_body_title {
  margin-bottom: 10px;
  font-size: 1.4rem;
  transition: all 0.3s ease-in-out;
}
.homePage .coffee_card_body_text {
  margin-bottom: 10px 0;
  line-height: 1.3;
}
.homePage .coffee_card_body .arrow_link {
  transition: all 0.3s ease-in-out;
}
.homePage .products_solutions {
  position: relative;
}
@media (max-width: 991px) {
  .homePage .products_solutions {
    min-height: 150vh;
    min-height: 1170px;
  }
}
.homePage .products_solutions::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background-color: #f3f3f0;
  z-index: -1;
}
body.ar .homePage .products_solutions::before {
  left: auto;
  right: 0;
}
@media (max-width: 991px) {
  .homePage .products_solutions::before {
    width: 100%;
    height: 40%;
    background-color: #181818;
  }
}
@media (max-width: 576px) {
  .homePage .products_solutions::before {
    height: 34%;
  }
}
.homePage .products_solutions::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background-color: #181818;
  z-index: -1;
}
body.ar .homePage .products_solutions::after {
  left: 0;
  right: auto;
}
@media (max-width: 991px) {
  .homePage .products_solutions::after {
    width: 100%;
    height: 60%;
    top: auto;
    bottom: 0;
    background-color: #f3f3f0;
  }
}
@media (max-width: 576px) {
  .homePage .products_solutions::after {
    height: 66%;
  }
}
@media (max-width: 991px) {
  .homePage .products_solutions .xs-gray {
    order: 2;
    padding-top: 50px;
  }
}
@media (max-width: 991px) {
  .homePage .products_solutions .xs-black {
    order: 1;
  }
}
.homePage .products_solutions_title {
  font-size: 2.7rem;
}
.homePage .products_solutions_title span {
  font-size: 1.6rem;
}
.homePage .products_solutions_text {
  margin-bottom: 200px;
}
@media (max-width: 991px) {
  .homePage .products_solutions_text {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .homePage .products_solutions_text {
    max-width: 55%;
  }
}
.homePage .products_solutions_content {
  display: none;
}
.homePage .products_solutions_content.active {
  display: block;
}
.homePage .products_solutions .content {
  transition: all 0.3s ease-in-out;
}
.homePage .products_solutions .content .img {
  position: absolute;
  right: -40%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
}
@media (max-width: 991px) {
  .homePage .products_solutions .content .img {
    position: static;
    text-align: center;
    transform: translateY(0);
    margin: 15px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .homePage .products_solutions .content .img {
    right: -30%;
  }
}
.homePage .products_solutions .content .img img {
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.16));
}
@media (min-width: 992px) and (max-width: 1199px) {
  .homePage .products_solutions .content .img img {
    max-width: 150px;
  }
}
.homePage .products_solutions_nav {
  padding: 15px 0;
}
.homePage .products_solutions_nav_list {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
}
@media (min-width: 1200px) {
  .homePage .products_solutions_nav_list {
    justify-content: flex-end;
    width: 70%;
  }
}
.homePage .products_solutions_nav_list_item {
  margin: 0 15px;
}
.homePage .products_solutions_nav_list_item_link {
  color: #a7a3a2;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
.homePage .products_solutions_nav_list_item_link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
.homePage .products_solutions_nav_list_item_link:hover, .homePage .products_solutions_nav_list_item_link:focus {
  color: #fff;
}
.homePage .products_solutions_nav_list_item_link:hover::before, .homePage .products_solutions_nav_list_item_link:focus::before {
  width: 100%;
}
.homePage .products_solutions_nav_list_item_link.active {
  color: #fff;
}
.homePage .products_solutions .navigation_content:not(.active) {
  display: none;
}
.homePage .products_solutions .slider {
  height: 500px;
  padding: 100px 10px 100px 200px;
  position: relative;
}
@media (max-width: 991px) {
  .homePage .products_solutions .slider {
    padding: 50px 65px;
    height: 350px;
  }
}
@media (max-width: 576px) {
  .homePage .products_solutions .slider {
    padding: 50px 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .homePage .products_solutions .slider {
    padding: 100px 0px 100px 65px;
  }
}
.homePage .map {
  position: relative;
}
@media (max-width: 576px) {
  .homePage .map {
    padding-top: 50px;
  }
}
.homePage .map_nav {
  padding: 25px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}
.homePage .map_nav_list {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.homePage .map_nav_list_item {
  margin: 0 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.homePage .map_nav_list_item.p_left {
  padding-left: 200px;
}
.homePage .map_nav_list_item .dropdown-menu {
  min-width: auto;
  max-height: 210px;
  overflow-x: auto;
}
.homePage .map_nav_list_item .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}
.homePage .map_nav_list_item .dropdown-menu::-webkit-scrollbar-track {
  background: #111;
}
.homePage .map_nav_list_item .dropdown-menu::-webkit-scrollbar-thumb {
  background: #111;
}
.homePage .map_nav_list_item .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #e51937;
}
.homePage .map_nav_list_item a img {
  margin-bottom: 5px;
  width: 1.3333333em !important;
}
.homePage .map_nav_list_item_link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: #a7a3a2;
  transition: all 0.3s ease-in-out;
  margin: 0 8px;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease-in-out;
}
.homePage .map_nav_list_item_link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #e51937;
  transition: all 0.3s ease-in-out;
}
.homePage .map_nav_list_item_link:hover, .homePage .map_nav_list_item_link:focus {
  color: #fff;
}
.homePage .map_nav_list_item_link:hover::before, .homePage .map_nav_list_item_link:focus::before {
  width: 100%;
}
.homePage .map_nav_list_item_link.dropdown-toggle:hover ~ .dropdown-menu {
  display: block;
}
.homePage .map_nav_list_item_link.first_span {
  color: #e51937;
}
.homePage .map_nav_list_item_link.first_span a {
  color: #e51937;
}
.homePage .map_nav_list_item_link span {
  font-size: 0.9rem;
  margin-right: 15px;
}
.homePage .map_nav_list_item_link.map_search {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.homePage .map_nav_list_item_link.map_search span {
  color: #e51937;
  transition: all 0.3s ease-in-out;
}
.homePage .map_nav_list_item_link.map_search i {
  transition: all 0.3s ease-in-out;
}
.homePage .map_nav_list_item i {
  color: #a7a3a2;
  line-height: 0.2;
}
.homePage .map_destribution {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: #a7a3a2;
  left: 25%;
  width: 20%;
}
@media (max-width: 767px) {
  .homePage .map_destribution {
    top: auto;
    bottom: 0;
    transform: translateY(0);
    padding: 30px 15px;
    width: 100%;
    left: 0;
  }
}
.homePage .map_destribution_title {
  text-transform: uppercase;
  color: white;
  font-size: 30px;
}
body.ar .homePage .map_destribution_title {
  font-size: 60px;
}
.homePage .map_destribution_title img {
  width: 35px !important;position: relative;margin-top: -10px;
}
.homePage .map_destribution_title span {
  font-size: 20px;
  margin-top: -10px;
  display: block;
}
.homePage .map_destribution_text {
  color: #a7a3a2;
}
.homePage .map .map_icon {
  width: 20px;
}
.homePage .latest_news_swiper {
  padding: 25px 0;
}
.homePage .latest_news_swiper_slide {
  height: 500px;
  max-width: 25%;
  transition: all 0.3s ease-in-out;
}
.homePage .latest_news_swiper_slide .card {
  height: 100%;
}
.homePage .latest_news_swiper_slide .card .card_header {
  max-height: 150px;
  position: relative;
}
.homePage .latest_news_swiper_slide .card .card_header::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.homePage .latest_news_swiper_slide .card .absolute-active {
  display: none;
}
.homePage .latest_news_swiper_slide.swiper-slide-active {
  width: 46%;
  max-width: 46%;
}
.homePage .latest_news_swiper_slide.swiper-slide-active .card:hover .arrow_link {
  opacity: 0.7;
}
.homePage .latest_news_swiper_slide.swiper-slide-active .card .card_header {
  position: relative;
  max-height: 300px;
}
.homePage .latest_news_swiper_slide.swiper-slide-active .card .card_header .absolute-active {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  padding: 25px 20px;
  z-index: 2;
}
.homePage .latest_news_swiper_slide.swiper-slide-active .card .card_body {
  padding: 25px 15px;
}
.homePage .latest_news_swiper_slide.swiper-slide-active .card .card_body .card_body_date {
  display: none;
}
.homePage .latest_news_swiper_slide.swiper-slide-active .card .card_body .card_body_title {
  display: none;
}
.homePage .latest_news_card {
  position: relative;
  overflow: hidden;
}
.homePage .latest_news_card_header {
  overflow: hidden;
  overflow-x: hidden !important;
}
@media (max-width: 767px) {
  .homePage .latest_news_card_header {
    margin-bottom: 1rem;
  }
}
.homePage .latest_news_card_header img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.homePage .testimonials_swiper {
  padding: 40px 0;
}
.homePage .testimonials_swiper_slide {
  transition: all 0.3s ease-in-out;
}
.homePage .testimonials_swiper_slide_card {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16) !important;
  background-color: #fff;
  padding: 25px 40px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.homePage .testimonials_swiper_slide_card .chat_icon {
  text-align: left;
}
body.ar .homePage .testimonials_swiper_slide_card .chat_icon {
  text-align: right;
}
.homePage .testimonials_swiper_slide_card .chat_icon i {
  color: #e51937;
  transition: all 0.3s ease-in-out;
}
.homePage .testimonials_swiper_slide_card .smTitle {
  color: #424242;
  transition: all 0.3s ease-in-out;
}
.homePage .testimonials_swiper_slide.swiper-slide-active .testimonials_swiper_slide_card {
  background-color: #e51937;
  box-shadow: none !important;
}
.homePage .testimonials_swiper_slide.swiper-slide-active .testimonials_swiper_slide_card .chat_icon i {
  color: #fff;
}
.homePage .testimonials_swiper_slide.swiper-slide-active .testimonials_swiper_slide_card .smTitle {
  color: #fff;
}
.homePage .testimonials_swiper_slide.swiper-slide-active .testimonials_swiper_slide_card p,
.homePage .testimonials_swiper_slide.swiper-slide-active .testimonials_swiper_slide_card .p {
  color: #fff;
}
.homePage .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  border: 2px solid #e51937;
  background-color: transparent;
  width: 10px;
  height: 10px;
}
.homePage .swiper-pagination-bullet-active {
  background-color: #e51937 !important;
}
.homePage .preparation {
  background-image: url(../img/homePage/preparation-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 150px 0;
}
@media (max-width: 991px) {
  .homePage .preparation {
    padding: 50px 0;
  }
}
.homePage .preparation .h3_parent h3 {
  font-size: 32px;
}
@media (max-width: 567px) {
  .homePage .preparation .h3_parent h3 {
    font-size: 25px;
  }
}
@media (max-width: 1200px) {
  .homePage .preparation .h3_parent {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .homePage .preparation .play_video_icon {
    margin: 75px 0 75px !important;
  }
}
.homePage .preparation p {
  text-align: justify;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .homePage .preparation p {
    color: white !important;
  }
}
@media (max-width: 568px) {
  .homePage .preparation .icon_parent {
    margin: 40px 0 60px;
  }
}
.homePage .preparation .play_icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #e51937;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  margin: auto;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
.homePage .preparation .play_icon i {
  font-size: 20px;
}
.homePage .preparation .play_video_text {
  text-transform: uppercase;
  display: inline-block;
  margin-top: 20px;
}
@media (max-width: 568px) {
  .homePage .preparation p {
    margin: 30px 0 0;
  }
}

/* ====================================== _____________ Home Page Styles _____________ ====================================== */
.banner.search {
  background-image: url(../img/search/bg.jpg);
}

.result h3 {
  font-size: 24px;
}
.result h5 {
  font-size: 18px;
}
@media (max-width: 768) {
  .result .media {
    display: block;
  }
}
.result .media a.sm_link:focus {
  color: #e51937;
}
.result .media a.sm_link.less {
  padding-top: 0 !important;
}
.result ul {
  margin-bottom: 0;
}
.result ul li {
  margin: 1.5rem 0;
}
.result ul li p {
  margin-bottom: 7px;
  color: #1E1E1E;
}
.result ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .result .media {
    display: block;
  }
  .result .media img {
    width: 100%;
  }
  .result .media .media-body {
    padding: 0.8rem 0;
  }
  .result .media .media-body p {
    margin: 0.5rem 0 !important;
  }
}
@media (max-width: 500px) {
  .result .title {
    font-size: 1rem;
  }
}
.banner.branches {
  background-image: url(../img/search/bg.jpg);
}

.branches .branch span {
  color: black;
}
.branches .branch span a {
  color: grey;
}
.branches .branch .map_link a {
  position: relative;
}
.branches .branch .map_link a:before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: grey;
  transition: all 0.2s ease-in-out;
}
.branches .branch .map_link a:hover::before {
  width: 0;
}

body.ar .map_link a:before {
  right: 0;
}

.coffe_preparation .video_coffee_img img {
  height: 100% !important;
}

@media (min-width: 1200px) {
  .coffe_preparation .container {
    max-width: 85%;
  }
}
.banner.faqs {
  background-image: url(../img/search/bg.jpg);
}

.menu .branches_answers,
.menu .coffee_answers,
.menu .distribution_answers,
.menu .global_answers {
  display: none;
}

.questions {
  padding: 1.5rem 2.5rem 0.7rem 2.5rem;
}
@media (max-width: 767px) {
  .questions {
    padding: 1.5rem 2.5rem 1.5rem 2.5rem;
  }
}
.questions ul li {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  transition: mainTransition;
  -webkit-transition: mainTransition;
  -moz-transition: mainTransition;
  -ms-transition: mainTransition;
  -o-transition: mainTransition;
  cursor: pointer;
  font-weight: 0.9rem;
}
.questions ul li.active {
  color: #e51937;
}
.questions ul li:hover {
  color: #e51937;
}
@media (max-width: 991px) {
  .questions ul li {
    width: 33%;
  }
  .questions ul li a {
    padding: 0;
  }
}
@media (max-width: 568px) {
  .questions ul li {
    width: 50%;
  }
}

.faqs .nav_two {
  display: none !important;
}
.faqs .nav_two .dropdown {
  width: 100%;
}
.faqs .nav_two .dropdown:hover .dropdown-menu {
  width: 100%;
}
.faqs .nav_two .dropdown button {
  text-align: left;
  width: 100%;
  background: white;
  border-radius: 50px;
  border-color: #80808059;
  color: black;
  opacity: 0.7;
  padding: 0.5rem 2rem;
  font-size: 15px;
  font-weight: normal;
}
body.ar .faqs .nav_two .dropdown button {
  text-align: right;
}
.faqs .nav_two .dropdown button::after {
  position: absolute;
  right: 25px;
  top: 50%;
  border-top: 0.3em solid #e51937;
}
body.ar .faqs .nav_two .dropdown button::after {
  left: 25px;
  right: auto;
}
.faqs .nav_two .dropdown button:focus {
  background-color: #e51937;
  color: white;
  border-color: #e51937;
}
.faqs .nav_two .dropdown button:focus::after {
  border-top-color: white;
}
.faqs .nav_two .dropdown .dropdown-menu {
  background-color: white;
}
.faqs .nav_two .dropdown .dropdown-menu a {
  color: black;
}
.faqs .nav_two .dropdown .dropdown-menu a.active {
  color: #e51937;
}
@media (max-width: 767px) {
  .faqs .nav_one {
    display: none !important;
  }
  .faqs .nav_two {
    display: block !important;
  }
}

.faqs .questions ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.answers {
  text-transform: capitalize;
}
.answers h5 {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
}
.answers p {
  font-weight: 500;
  color: black;
  opacity: 0.7;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}
.answers p.more_p {
  display: none;
}
@media (max-width: 768px) {
  .answers p {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
}
.answers .card-body {
  padding-bottom: 0.5rem;
}
body.ar .answers .card-body {
  padding-bottom: 0;
}
.answers a {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
}
.answers a.sm_link::before {
  right: 0;
}
.answers a.sm_link:hover, .answers a.sm_link:focus {
  color: #e51937;
}
.answers a.sm_link:hover::before, .answers a.sm_link:focus::before {
  width: 70%;
  right: 0;
}
body.ar .answers a {
  margin-top: 1rem;
}

@media (min-width: 1200px) {
  .brands .container {
    max-width: 1190px;
  }
}

.where_to_buy svg, .where_to_buy path {
  width: 1rem;
  fill: #e51937;
  margin: -7px 10px 0 0;
}
body.ar .where_to_buy svg, body.ar .where_to_buy path {
  margin: -7px 0 0 10px;
}
@media (max-width: 767px) {
  .where_to_buy .distributer .head {
    order: 2;
  }
}
.where_to_buy .distributer .head span {
  font-size: 25px;
  font-weight: normal;
}
.where_to_buy .distributer .head h2 {
  font-weight: bold;
  font-size: 36px;
}
@media (max-width: 767px) {
  .where_to_buy .distributer .col-12 {
    order: 3;
  }
}
.where_to_buy .distributer .col-12 p {
  color: #737272;
  font-size: 18px;
}
@media (max-width: 767px) {
  .where_to_buy .distributer .cust_form {
    margin-bottom: 1rem;
  }
}
.where_to_buy .distributer .cust_form .cust_col {
  width: 15%;
}
@media (max-width: 1200px) {
  .where_to_buy .distributer .cust_form .cust_col {
    width: 19%;
  }
}
@media (max-width: 991px) {
  .where_to_buy .distributer .cust_form .cust_col {
    width: 23%;
  }
}
@media (max-width: 767px) {
  .where_to_buy .distributer .cust_form .cust_col {
    margin-right: auto;
    margin-left: 0;
    width: 30%;
  }
  body.ar .where_to_buy .distributer .cust_form .cust_col {
    margin-right: 0;
    margin-left: auto;
  }
}
@media (max-width: 576px) {
  .where_to_buy .distributer .cust_form .cust_col {
    width: 100%;
  }
}
.where_to_buy .distributer .cust_form .cust_col select {
  color: #e51937 !important;
  border: 2px solid black;
  padding: 0 1rem;
}
.where_to_buy .distributer .cust_form .cust_col .form-control {
  border-radius: 50px !important;
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  -ms-border-radius: 50px !important;
  -o-border-radius: 50px !important;
}
.where_to_buy .contact {
  background: black;
  margin-bottom: 3rem;
  color: white;
}
.where_to_buy .contact .address {
  display: flex;
  justify-content: center;
  justify-content: space-around;
  padding: 2rem 1rem;
  opacity: 0.9;
}
.where_to_buy .contact .address svg, .where_to_buy .contact .address path {
  fill: white;
  margin: -7px 7px 0 0;
  width: 1rem;
}
body.ar .where_to_buy .contact .address svg, body.ar .where_to_buy .contact .address path {
  margin: 0 0 -3px 7px;
}
@media (max-width: 991px) {
  .where_to_buy .contact .address {
    text-align: left;
    padding: 1rem;
  }
  body.ar .where_to_buy .contact .address {
    padding: 1rem 2rem;
    text-align: right;
  }
}
.where_to_buy .contact .address .head {
  font-weight: bold;
  font-size: 20px;
}
.where_to_buy .contact .address .underline {
  text-decoration: underline;
}
.where_to_buy .contact .address .link_parent a {
  font-size: 0.8rem;
}
.where_to_buy .contact .address .link_parent a i {
  margin-right: 5px;
  font-size: 1rem;
}
body.ar .where_to_buy .contact .address .link_parent a i {
  margin-left: 5px;
  margin-right: 0;
}
@media (max-width: 991px) {
  .where_to_buy .contact .address .link_parent {
    padding: 0.5rem 1rem !important;
  }
  body.ar .where_to_buy .contact .address .link_parent {
    padding: 0.65rem 0 !important;
  }
}
.where_to_buy .brand {
  background-color: #8080801f;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  overflow: hidden;
}
body.ar .where_to_buy .brand {
  padding-bottom: 1rem;
}
.where_to_buy .brand:hover {
  border: 2px solid #e51937;
}
.where_to_buy .brand:hover img {
  filter: none;
  -webkit-filter: none;
}
.where_to_buy .brand img {
  width: 75%;
  margin-bottom: -1rem;
  margin-top: -1rem;
  filter: grayscale(100%);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.where_to_buy .brand p {
  margin-bottom: 0;
}
.where_to_buy .brand a {
  text-decoration: underline;
}
@keyframes border-width {
  0% {
    width: 0;
    height: 0;
  }
  25% {
    width: 100%;
    height: 0;
  }
  50%, 100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes border-color {
  0%, 50%, 100% {
    border-bottom-color: #e51937;
    border-left-color: #e51937;
  }
}
.where_to_buy .online_store {
  background-image: url("../img/where_to_buy/WhatsApp_Image_2021-03-16_at 12.33.11_PM.jpeg");
  background-size: cover;
  padding: 3rem 0;
  color: white;
}
.where_to_buy .online_store p {
  margin-bottom: 2rem;
  color: white;
  opacity: 0.7;
}
.where_to_buy .online_store a {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
}
.where_to_buy .online_store a:hover {
  background-color: #e51937;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .where_to_buy .online_store {
    padding: 3rem 1.5rem;
  }
  .where_to_buy .online_store h5 {
    font-size: 1rem;
  }
  .where_to_buy .online_store p {
    font-size: 0.8rem;
  }
  .where_to_buy .online_store a {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}
.where_to_buy .buy_online {
  display: none;
}
.where_to_buy .questions {
  padding: 0;
  display: inherit;
}
.where_to_buy .questions ul {
  position: relative;
}
.where_to_buy .questions ul::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #d8d8d8;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.where_to_buy .questions ul li {
  position: relative;
  color: #e51937;
  font-size: 20px;
}
.where_to_buy .questions ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
}
.where_to_buy .questions ul li::after {
  display: none;
}
@media (max-width: 991px) {
  .where_to_buy .questions ul li {
    width: 50% !important;
    margin-right: 0 !important;
    padding-left: 20px;
  }
  body.ar .where_to_buy .questions ul li {
    margin-left: 0 !important;
    padding-right: 20px;
  }
}
@media (max-width: 400px) {
  .where_to_buy .questions ul li {
    font-size: 15px;
  }
}
.where_to_buy .questions ul li:hover, .where_to_buy .questions ul li.active {
  color: black;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.where_to_buy .questions ul li:hover::before, .where_to_buy .questions ul li.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: black;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.where_to_buy .questions ul li:hover::after, .where_to_buy .questions ul li.active::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 5px;
  width: 0;
  height: 0;
  transition: all 0.2s ease-in-out;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid black;
  display: block;
}
body.ar .where_to_buy .questions ul li:hover::after, body.ar .where_to_buy .questions ul li.active::after {
  left: inherit;
  right: 5px;
  border-left: 0;
  border-right: 5px solid black;
}
@media (max-width: 991px) {
  .where_to_buy .questions ul li:hover::after, .where_to_buy .questions ul li.active::after {
    top: calc(50% - 5px - 0.25rem);
    left: 0;
  }

  body.ar .where_to_buy .questions ul li:hover::after, body.ar .where_to_buy .questions ul li.active::after {
    left: inherit;
    right: 0;
    border-left: 0;
  }
}
.where_to_buy .buy_online h4 {
  padding-left: 1rem;
  font-weight: bold;
}
.where_to_buy .buy_online ul {
  margin-bottom: 0;
  padding: 1rem 0 0 1rem;
}
.where_to_buy .buy_online ul .link_parent {
  padding-bottom: 0.5rem;
}
.where_to_buy .buy_online ul .link_parent a {
  font-size: 0.9rem;
  transition: mainTransition;
  -webkit-transition: mainTransition;
  -moz-transition: mainTransition;
  -ms-transition: mainTransition;
  -o-transition: mainTransition;
}
.where_to_buy .buy_online ul .link_parent a.underline {
  text-decoration: underline;
}
.where_to_buy .buy_online ul .link_parent a.to_map {
  border: 2px solid red;
  padding: 0.25rem 1.25rem;
  margin-top: 0.5rem;
  display: inline-block;
  border-radius: 40px;
}
.where_to_buy .buy_online ul .link_parent a.to_map:hover {
  background-color: #e51937;
  color: white;
}
.where_to_buy .buy_online ul i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 300px;
  width: 100%;
}

.mapouter {
  position: relative;
  text-align: right;
  height: 303px;
  margin-bottom: 100px !important;
  width: 100%;
}
.mapouter .buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  text-align: center;
}
@media (max-width: 576px) {
  .mapouter .buttons {
    bottom: -90px;
  }
}
.mapouter .buttons a {
  padding: 0.5rem 1.5rem;
  color: white;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  font-size: 0.9rem;
}
@media (max-width: 991px) {
  .mapouter .buttons a {
    padding: 0.5rem 1.25rem;
  }
}
@media (max-width: 568px) {
  .mapouter .buttons a {
    font-size: 15px;
    padding: 0.5rem 1.6rem;
  }
}
@media (max-width: 422px) {
  .mapouter .buttons a {
    font-size: 10px;
    padding: 0.5rem 1rem;
  }
}

iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 576px) {
  .online_brands {
    margin-top: 30px;
  }
}

.form-group i {
  position: absolute;
  right: 1rem;
  color: #e51937;
}
body.ar .form-group i {
  right: inherit;
  left: 1rem;
}

/* ====================================== _____________ Gallery Page Styles _____________ ====================================== */
.photoGalleryPage .banner.photo_gallery {
  background-image: url(../img/photo_gallery/bg.jpg);
}

/* ====================================== _____________ Gallery Page Styles _____________ ====================================== */
/* ====================================== _____________ News Page Styles _____________ ====================================== */
.newsPage {
  background-color: #f1f1f1;
}
.newsPage .banner.news {
  background-image: url(../img/news/bg.jpg);
}
.newsPage .more,
.newsPage .less,
.newsPage .more_ar {
  color: #5c5555;
  cursor: pointer;
  padding: 0 0 0 !important;
}
.newsPage .more {
  padding: 0 0 20px !important;
}
.newsPage .load_more {
  padding-bottom: 30px !important;
}
.newsPage .news2,
.newsPage .news2_ar {
  display: none;
  transition: all 0.3s ease-in-out;
}
.newsPage .news2.show,
.newsPage .news2_ar.show {
  display: flex;
  transition: all 0.3s ease-in-out;
}

/* ====================================== _____________ News Page Styles _____________ ====================================== */
/* ====================================== _____________ AR Pages Styles _____________ ====================================== */
body.ar .banner_discoverBuy_list_item:first-of-type {
  margin-left: 15px;
  margin-right: 0;
}
body.ar .products_solutions::before {
  left: auto;
  right: 0;
}
body.ar .products_solutions::after {
  left: 0;
  right: auto;
}
body.ar .products_solutions .slider {
  padding: 100px 90px 100px 10px;
}
body.ar .products_solutions .content .img {
  right: auto;
  left: -40%;
  top: 150px;
}
body.ar .banner_bar_share i img{ display:inline-block;transform: rotate(20deg);transform: rotate(180deg);}


@media (min-width: 992px) and (max-width: 1199px) {
  body.ar .products_solutions .content .img {
    left: -34%;
  }
}
body.ar .products_solutions_swiper_slide p {
  text-align: right;
  padding-left: 0;
  padding-right: 15px;
}
body.ar .products_solutions_swiper_slide p::before {
  left: auto;
  right: 0;
}
body.ar .products_solutions_swiper_slide p::after {
  left: auto;
  right: 0;
}
/*body.ar .swiper-button-next,
body.ar .swiper-container-rtl .swiper-button-prev {
  right: 15px;
}*/
body.ar .swiper-button-prev {
  right: auto;
  left: 15px;
}
body.ar .map_nav_list_item_link span {
  margin-right: 0;
  margin-left: 15px;
}
body.ar .dropdown-menu {
  right: auto;
  left: 0;
}
body.ar .nav.nav-tabs .nav-item .nav-link::after {
  right: auto;
  left: 0;
}
body.ar .sidebar {
  right: 100%;
}
body.ar .sidebar.ar_right {
  right: 10%;
}

/* ====================================== _____________ AR Pages Styles _____________ ====================================== */
.video_gallery a {
  display: block;
}
.video_gallery span {
  font-size: 14px;
}

.less {
  cursor: pointer;
}

.load_more {
  cursor: pointer;
  padding: 35px 0 0 !important;
}
body.ar .load_more {
  padding: 0 !important;
}

.load_more h5 {
  color: #3F3F3F;
  font-size: 14px;
}

.video_gallery2 {
  display: none;
  transition: all 0.3s ease-in-out;
  padding-top: 35px;
}

.video_gallery2.show {
  display: flex;
  transition: all 0.3s ease-in-out;
}

/* ====================================== _____________ Theme Styles _____________ ====================================== */
/* ====================================== _____________ Theme Styles _____________ ====================================== */

/*# sourceMappingURL=style.css.map */

section.about_us {background: #fbfbfb;}

.videoWrapper{position: relative;padding-bottom: 56.25%;height: 0;}
.videoWrapper iframe{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
.WhtColor {color:#fff !important;}
.textcolor1{color:rgba(255, 255, 255, 0.7);}
.loadmorebtn{ font-size:14px; color:#3f3f3f; text-transform:uppercase; text-align:center;font-weight: bold; margin-top:40px;}
.loadmorebtn img{ display:inline-block; margin-bottom:20px;}
.loadmorebtn a{color:#3f3f3f;}
.testimonial-quoteicon{ display:inline-block; width:71px; height:60px; background: url(../img/quote-red.png) no-repeat left top; background-size:cover;}
.swiper-slide-active .testimonial-quoteicon{background: url(../img/quotewhite.png) no-repeat left top;}
.card h5.card_body_title {font-weight: 700 !important; text-transform:none !important; font-size:24px;}
.news_list.container-fluid {padding-left:50px; padding-right:0px;}
.productsection-desktop{display:block;}
.productsection-mobile{display:none; background-color:#f3f3f1; padding:20px 15px;}


.productsection-mobile .tab-content .dropdown-menu{ display:none;}
.productsection-mobile .tab-content .dropdown-menu.show{ display: block !important;}
.productsection-mobile .tab-content .dropdown:hover .dropdown-menu {display: none;}
.productsection-mobile .tab-content .nav.nav-tabs {padding:10px 0; background-color:#fff; border:1px solid #e9eae6; border-radius:25px; text-align:left; margin-bottom:10px; width:100%;}
.productsection-mobile .tab-content li.dropdown.active a{ display:block;color:#b2b2b2; font-size:16px;}
.productsection-mobile .tab-content .tab-content>.active {display: block; opacity:1;}
.productsection-mobile .tab-content h4{ font-weight:bold; text-transform:uppercase; padding:10px 0px; font-size:24px;}
.productsection-mobile .tab-content p{ font-size:16px; padding-bottom:10px;}
.productsection-mobile .tab-content .dropdown {display: block;text-align: left;width: 100%;padding-left: 15px; padding-right:15px; color:#b2b2b2; font-size:16px;}
.productsection-mobile .tab-content .dropdown i{ float:right; color:#cc0f2b; display:inline-block;}
.productsection-mobile .tab-content .dropdown .dropdown-menu{ width:100%;min-width: inherit; background-color:#ffffff;border:1px solid #e9eae6; -webkit-border-bottom-right-radius: 25px;
-webkit-border-bottom-left-radius: 25px;-moz-border-radius-bottomright: 25px;-moz-border-radius-bottomleft: 25px;border-bottom-right-radius: 25px;border-bottom-left-radius: 25px;padding-left:30px;    float: left !important; border-top:0px;
left: 0 !important;transform: unset !important;top: 20px !important;z-index: 60;}
.productsection-mobile .tab-content ul .dropdown-menu.show li a{ padding: 10px 0px;color:#1f1f1f;}
.productsection-mobile .tab-content ul .dropdown-menu.show li a:hover{ font-weight:bold; color:#1f1f1f;}
.productsection-mobile .tab-content .dropdown.show i{    transform: rotate(180deg);top: 5px;position: relative;}
.productsection-mobile .tab-content {position: relative;margin:20px 0 0 0;}

.mob_tab_head .nav.nav-tabs{ background:none; border:none; border-radius:0px;padding:0px 0;}

.mob_tab{position: relative; padding:10px 0 !important;}
.mob_tab img{ width:100%;}
.mob_tab_head{position: relative;}
.mob_tab_head_cont{position: relative;}
.mob_tab_head_cont ul{position: relative;display: flex;
    justify-content: center;}
.mob_tab_head_cont ul li { position: relative;width: 50%;text-align: center;padding: 0;}
.mob_tab_head_cont ul li a {position: relative;color: #000;font-size: 18px;
    padding: 0 10px 0 0;text-align: left;width: 100%; float: left;}

.mob_tab_head_cont ul li .active{color: #e51837;font-weight: bold;}

.mob_tab_head_cont ul li a:after {content: '';position: absolute;bottom: -5px;
    background-color: #000;left: 0;height: 2px;width: 100%;}
.mob_tab_head_cont ul li .active:after{background-color: #e51837;}
.grey_img {position: relative;width: 30px; float: left;left: 0px;bottom: 6px;transition: 0.5s ease-in-out;
    margin: 0 15px 0 0;}
.red_img {position: relative;width: 30px;float: left;left: 0px;bottom: 6px;display: none;transition: 0.5s ease-in-out;margin: 0 15px 0 0;}
.mob_tab_head_cont ul li .active .grey_img{display: none;}
.mob_tab_head_cont ul li .active .red_img{display: block;}
.tab-content{position: relative;margin: 30px 0 0 0;}
.tab-area{width: 100%;}
.tab-area select {width: 100%;position: relative; border: none;background: #fff;padding: 20px 30px;
    border-radius: 50px;color: #ccc;font-size: 21px;border: 1px solid #ccc;}






#home_tabs{background: rgba(0, 0, 0, 0.5);position: absolute;width: 100%;bottom: 0; left:0px; right:0px; z-index:10; padding:0px;}
#home_tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {color: #f3f3f3;background-color: transparent;}
#home_tabs .nav-tabs .nav-link {color:rgba(255, 255, 255, 0.60);font-size: 23px; background:transparent; position:relative; text-align:left; padding-left:0px; border:none; padding:18px 0px;}
#home_tabs .nav-tabs .nav-link:hover{color: rgba(255,255,255, 1);} 
#nav-tabContent{transition: all .3s ease;margin: 0px 0 0 0;}
#home_tabs .nav-tabs .nav-link::after{content: '';display: block;width: 0;position: absolute;left: 0;bottom: 15px;height: 2px;background: #9d0a23;transition: width 1s;}
#home_tabs .nav-tabs .nav-link.active::after{width:150px;}	

#home_tabs .tab-pane{ height:0;animation: fadeInUp 0.3s ease-out;}	
#home_tabs .tab-pane.active{ height:100px;}	
.dropdown-menu.show{animation: fadeInUp 0.3s ease-out;}

#home_tabs .nav.nav-tabs{padding:0px 0;}
#home_tabs .navbar-light .navbar-nav .nav-link{color: rgba(255,255,255,.5);}
#home_tabs .nav-tabs .nav-link.active{color: rgba(255,255,255, 1);}
#home_tabs .navbar-light .navbar-nav .nav-link:hover{color: rgba(255,255,255,1);}
#home_tabs{animation: fadeInUp 1s ease-out;}
.navbar-expand-lg .navbar-collapse ul li.nav-item{opacity:0;}
.navbar-expand-lg .navbar-collapse ul li.nav-item:nth-child(1){animation: fadeInUp 0.4s ease-out; opacity:1;}
.navbar-expand-lg .navbar-collapse ul li.nav-item:nth-child(2){animation: fadeInUp 0.6s ease-out; opacity:1;}
.navbar-expand-lg .navbar-collapse ul li.nav-item:nth-child(3){animation: fadeInUp 0.8s ease-out; opacity:1;}
.navbar-expand-lg .navbar-collapse ul li.nav-item:nth-child(4){animation: fadeInUp 1s ease-out; opacity:1;}
.navbar-expand-lg .navbar-collapse ul li.nav-item:nth-child(5){animation: fadeInUp 1.2s ease-out; opacity:1;}
.second_bannertab{padding-left:10px;}

#home_tabs .navbar.navbar-expand-lg.navbar-light{ padding:0px;}
#home_tabs .navbar.navbar-expand-lg.navbar-light a{ padding:0px; margin-right:30px;}






/*==================== black_chrome_tabbing =====================*/

.black_chrome_tabbing{ background-color:#f3f3f0; position:relative; margin:35px 0px; padding:50px 0px 20px 0px;z-index:0; min-height:650px;}
.black_chrome_tabbing:after{ background-color:#181818; content:''; position: absolute; right:0px; top:0px; width:43%; height:100%; z-index:-1;}

.product_tabbing .nav-link{ padding:0px; background:transparent; text-transform:uppercase;}
.product_tabbing nav {padding: 0px;width: 300px;position: relative;right: 0;float: right;z-index: 9;font-family: 'MyriadProRegular';}
.product_tabbing nav .nav-item.nav-link{font-family: 'MyriadProRegular';}
.tabbing_productbox{ position:relative;}

.tabbing_productbox .nav-tabs .nav-item{display:block;}
.tabbing_productbox .nav.nav-tabs{display:block; margin-bottom:5px; margin-top:140px; min-height:250px;}
.tabbing_productbox .nav-link1{color:rgba(119, 119, 119, 0.31);font-family: 'MyriadProSemibold'; font-size:14px; margin-bottom:4px; text-transform:uppercase;}
.tabbing_productbox .nav-link1:hover{color:rgba(255, 255, 255, 1);}
.tabbing_productbox .nav-link1.active{color:rgba(255, 255, 255, 1);}

.tabbing_productbox .nav-link2{color:rgba(119, 119, 119, 0.31);font-family: 'MyriadProSemibold'; font-size:14px; margin-bottom:4px; text-transform:uppercase;}
.tabbing_productbox .nav-link2:hover{color:rgba(255, 255, 255, 1);}
.tabbing_productbox .nav-link2.active{color:rgba(255, 255, 255, 1);}

.tabbing_productbox .tab-content h6{font-family: 'AvenirLTStdRoman'; display:block; text-transform: uppercase; color:#e51937; font-size:22px; margin-bottom:65px;}
.tabbing_productbox .tab-content h1{ position:relative; display:inline-block; text-transform: uppercase; max-width:425px;}
.tabbing_productbox .tab-content h1::after {content: '';position: absolute;left: 0;bottom: -20px;width: 100%;height: 2px;background-color: #dd042b;margin: 0 auto;
right: 0px;}
.tabbing_productbox .tab-content p{ color:#757474; margin:10px 0px 20px 0px; min-height:200px;}

.product_tab_contentwork {max-width: 500px;}
.product_tab_mainimg {position: absolute;top: 0px;margin-right: 0px;transition: all .3s ease;display: block;float: right;margin-left: 600px;}
.tabbing_productbox .fade:not(.show) {display:none;}
.product_tabarrow{ display:block; text-align:right;}
.product_tabarrow .btn{padding: .375rem .25rem;}

.tabbing_productbox .fade.show.active{animation: fadeInUp 1s ease-out;}




.addReadMore.showlesscontent .SecSec,
.addReadMore.showlesscontent .readLess {
display: none;}

.addReadMore.showmorecontent .readMore {display: none;}

.addReadMore .readMore,
.addReadMore .readLess { color:#e51937; display:block; padding-top:15px; cursor:pointer;}
.addReadMore .readMore:hover,.addReadMore .readLess:hover{ text-decoration:underline;}



.addReadMoreWrapTxt.showmorecontent .SecSec,
.addReadMoreWrapTxt.showmorecontent .readLess {display: block; }

.card1.faqpage{font-weight: 500;color: black;opacity: 0.7;margin-bottom: 0;font-size: 16px;line-height: 24px;}
.card.addReadMore{ margin-bottom:50px;}

body.ar .productsection-mobile .tab-content .nav.nav-tabs{text-align:right;}
body.ar .productsection-mobile .tab-content .dropdown i{float:left;}
body.ar .productsection-mobile .tab-content li.dropdown.active a{text-align:right;}
body.ar #home_tabs .nav-tabs .nav-link{ text-align:right;}
body.ar #home_tabs .nav-tabs .nav-link::after { left:inherit; right:0px;}
body.ar #home_tabs .navbar.navbar-expand-lg.navbar-light a {margin-right:0px;margin-left: 30px;}
body.ar .swiper-button-next {left: 65px; right: auto;}
body.ar header .navbar_list_item.dropdown .dropdown-menu .dropdown_content_title::before {right: 0; left:auto;}









@media only screen and (min-width:1301px) and (max-width:1400px) {





}
@media only screen and (min-width:1200px) and (max-width:1300px) {


}
@media only screen and (min-width:992px) and (max-width:1199px) {







}
@media only screen and (min-width:768px) and (max-width:991px) {
.videoWrapper{padding-bottom:89.25%;}
.videoWrapper iframe {width: 140%;}
.productsection-desktop{display:none;}
.productsection-mobile{display:block;}
.homePage .map_nav_list{ display:block; text-align:center;}
.homePage .map_nav_list li{ display:inline-block;}
#home_tabs .nav-tabs .nav-link{ text-align:center;}
#home_tabs .nav-tabs .nav-link::after { display:none;}
#home_tabs .collapse.navbar-collapse {display: block;}
.second_bannertab{ text-align:center;}
#home_tabs .navbar.navbar-expand-lg.navbar-light a {margin-right: 0;}
#home_tabs .navbar-light .navbar-nav .nav-link {color: rgba(255,255,255,1);}
a.nav-item.nav-link.homebannertab { width: 50%; text-align: center;}
div#navbarSupportedContent{max-width: 50%;text-align: center;}
#home_tabs .navbar.navbar-expand-lg.navbar-light a{ padding:5px 0px;}
#home_tabs{background: rgba(0, 0, 0, 0.8);}



}
@media only screen and (min-width:480px) and (max-width:767px) {



}
@media only screen and (max-width:479px) {



}
@media only screen and (max-width:767px) {
.videoWrapper{padding-bottom:89.25%;}
.videoWrapper iframe {width: 140%;}
.banner.internal{ background-attachment:scroll;}
.banner.internal {height:250px;max-height:250px;}
.form.form_search .form-group .form-control { padding-bottom:0px; font-size:12px;}
.card h5.card_body_title {font-size:20px;}
.homePage .latest_news_swiper_slide {max-width: 100%;width: 100% !important;}
.homePage .latest_news_swiper_slide.swiper-slide-active {width: 100% !important;max-width: 100% !important;}
.news_list.container-fluid {padding-left: 15px;padding-right: 15px;}
.productsection-desktop{display:none;}
.productsection-mobile{display:block;}
.homePage .map_nav_list{ display:block; text-align:center;}
.homePage .map_nav_list li{ display:inline-block;}
#home_tabs .nav-tabs .nav-link{ text-align:center;}
#home_tabs .nav-tabs .nav-link::after { display:none;}
#home_tabs .collapse.navbar-collapse {display: block;}
.second_bannertab{ text-align:center;}
#home_tabs .navbar.navbar-expand-lg.navbar-light a {margin-right: 0;}
#home_tabs .navbar-light .navbar-nav .nav-link {color: rgba(255,255,255,1);}
a.nav-item.nav-link.homebannertab { width: 50%; text-align: center;}
div#navbarSupportedContent{max-width: 50%;text-align: center;}
#home_tabs .navbar.navbar-expand-lg.navbar-light a{ padding:5px 0px;}
#home_tabs{background: rgba(0, 0, 0, 0.8);}
.about_us h3{ text-align:left !important;}
.about_us p{ width:100% !important; text-align: left !important;}
body.homePage.ar .about_us h3{ text-align:right !important;}
body.homePage.ar .about_us p{ width:100% !important; text-align: right !important;}
.homePage .map_nav_list_item a img{ float:left;}
.homePage .map_nav_list_item i{float:left;top: 8px;position: relative;}

body.ar .map_nav_list_item a img{ float:right;}
body.ar .map_nav_list_item i{float:right;}
body.ar #home_tabs .nav-tabs .nav-link{ text-align:center;}
body.ar header .navbar_list_item.search.p_left {padding-right: 100px;}

}
















