/* Armcade */
/* -------------------------------------------------------------------------- */
/*                               ROOT Variables                               */
/* -------------------------------------------------------------------------- */
:root {
  /* colors */
  /* main color Fades */
  --mc1: #000000;

  /* black to white colors */

  --bw-fade-1: #ffffff;
  --bw-fade-2: #f5f5f5;
  --bw-fade-3: #ebebeb;
  --bw-fade-4: #9d9d9d;
  --bw-fade-5: #616161;
  --bw-fade-6: #333333;
  --bw-fade-7: var(--mc1);
  --error: red;

  /* legacy variables */

  --tc1: var(--bw-fade-7);
  --tc2: var(--bw-fade-5);
  --tc3: var(--bw-fade-4);

  --white: #fff;
  --black: #000;

  --fancybox-accent-color: var(--bw-fade-2);

  /* Border Radius */
  --border-radius-sm: 0.5rem;
  --border-radius: 1rem;
  /* button radius */

  /* animate css library delay factor */
  --animate-delay: 1s;

  /* Box Shadows */
  --box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  --box-shadow-event: 0px 4px 20px rgba(0, 0, 0, 0.5);

  /* Gap */
  --gap: 0.5rem;

  /* Font Sizes */
  --fz-xs: 12px;
  --fz-xs-res: 12px;

  --fz-sm: 14px;
  --fz-sm-res: 12px;

  --fz-md: 16px;
  --fz-md-res: 14px;

  --fz-lg: 18px;
  --fz-lg-res: 16px;

  --fz-xl: 24px;
  --fz-xl-res: 18px;

  --fz-xxl: 36px;
  --fz-xxl-res: 24px;

  /* Line Height */
  --lh-xs: normal;
  --lh-sm: normal;
  --lh-md: normal;
  --lh-lg: normal;
  --lh-xl: normal;
  --lh-xxl: normal;

  /* Font Weight */
  --fw-300: 300;
  --fw-400: 400;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /* Button Sizing (padding) */
  --pad-pri: 0.75rem 2rem;
  --pad-sec: 0.75rem 2rem;

  /* border (buttons) */
  --brd-pri: solid 1px;
  --brd-sec: solid 1px;

  /* WB Icon size*/
  --icon: 1.5rem;

  --icon-color: var(--tc1);

  /* main section white space (WBcontainer mb or mt) */
  /* choose whether from top or bottom in (*change) */
  --main-space: 80px;
  --title-space: 2.5rem;
  --bottom-space: 2.5rem;

  /* transition */
  --transition: 0.3s;

  /* Drop downs hidden state position */
  --drop-pos: 50px;

  scroll-behavior: smooth;
}

/* ?------------------------------- Responsive ------------------------------- */
@media (max-width: 992px) {
  :root {
    /* Font Sizes  responsive*/
    --fz-xs: var(--fz-xs-res);
    --fz-sm: var(--fz-sm-res);
    --fz-md: var(--fz-md-res);
    --fz-lg: var(--fz-lg-res);
    --fz-xl: var(--fz-xl-res);
    --fz-xxl: var(--fz-xxl-res);
    --fz-titleh1: var(--fz-titleh1-res);

    --main-space: 3rem;
    --title-space: 1.5rem;
    --bottom-space: 1.5rem;
  }
}

/* -------------------------------------------------------------------------- */
/*                                 Style Reset                                */
/* -------------------------------------------------------------------------- */
html::-webkit-scrollbar-thumb {
  border-radius: 0;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* font family */
@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakh/YekanBakhFaNum-400Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakh/YekanBakhFaNum-600SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakh/YekanBakhFaNum-700Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YekanBakh";
  src: url("../fonts/YekanBakh/YekanBakhFaNum-800ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body,
span,
option,
html,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
article,
li,
div {
  font-family: "YekanBakh";
}

.fancybox__content {
  border-radius: var(--border-radius);
  overflow: hidden;
}

::-moz-selection {
  /* Code for Firefox */
  background: var(--mc1);
}

::selection {
  background: var(--mc1);
}

.m-hight-none {
  min-height: 0;
}

.pad-none {
  padding-right: 0;
  padding-left: 0;
}

html {
  font-size: 100%;
  /* 1rem = 16px */
}

a:focus {
  outline: none;
}

a,
a:hover,
a:visited,
a:focus {
  text-decoration: none;
  color: inherit;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin: 0;
}

ul,
ol {
  margin-right: 0;

  margin-left: 0;
  margin-bottom: 0;
}

body {
  padding: 0;
  line-height: 24px;
  overflow-x: hidden;
  font-size: 0.875rem;
  background-color: var(--white);
}

body.rtl {
  direction: rtl;
  text-align: right;
}

p {
  margin: 0;
}

li {
  list-style: none;
  list-style-position: inside;
}

li p {
  line-height: inherit;
}

img[alt="edit"] {
  width: auto !important;
  margin: 0 !important;
  display: inline !important;
}

#wrap {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: var(--main-space);
  background-color: var(--white);
}

#wrap:has(.logolounge_hero) {
  padding-top: unset;
}

/* H1 tag for order page */
.h1Tag-order {
  margin-top: 1rem;
  font-family: inherit;
  line-height: 1.5;
  font-weight: bold;
  font-size: 1.25rem !important;
  vertical-align: middle;
  color: black;
  text-align: center;
}

.parallax_Pane {
  position: sticky;
  top: 0;
}

#contentWrapper1 {
  position: relative;
  padding: 0 0;
}

.main-content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

main {
  min-height: calc(100vh - 300px);
  /* overflow: hidden; */
}

#scrollToTop {
  --iconUrl: url(../Images/chevDown.svg);
  --icon: 2.5rem;
  border: solid 1px var(--mc1);
  background-color: var(--bw-fade-3);
  border-radius: var(--border-radius-sm);
  position: fixed;
  bottom: 2rem;
  right: -5.5rem;
  display: block;
  transform: rotate(180deg);
  transition: var(--transition);
  z-index: 19;
}

body.page_scrolled_Middle #scrollToTop {
  right: 2.5rem;
}

body.page__Scrolled_Last #scrollToTop {
  background-color: var(--mc1);
  --icon-color: var(--white);
  border-color: var(--white);
}

/*Repier Magement Menu*/

.subNav.advanced dl {
  width: 600px !important;
}

.subNav.advanced {
  width: 695px !important;
}

img {
  border: 0 none;
  height: auto;
}

img,
object,
embed {
  max-width: 100%;
}

.hephaistos .tp-bullet:hover,
.hephaistos .tp-bullet.selected {
  border-color: var(--main-text-color);
}

.wb-carousel {
  background-color: var(--white);
  padding: 16px 15px;
}

.wb-carousel .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wb-carousel .img-wrap {
  /* display: flex !important; */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.wb-carousel img {
  max-height: 60px;
  width: auto;
  display: block;
  margin: auto;
}

/* ?------------------------------- Responsive ------------------------------- */

@media (min-width: 1200px) {
  .container,
  .container-lg {
    max-width: 1320px;
  }
}

@media (max-width: 991px) {
  #scrollToTop {
    bottom: 5rem;
  }
}

/* -------------------------------------------------------------------------- */
/*                                 Components                                 */
/* -------------------------------------------------------------------------- */

/* ------ Font Size start------ */
.fz-xs {
  font-size: var(--fz-xs);
  line-height: var(--lh-xs);
}

.fz-sm {
  font-size: var(--fz-sm);
  line-height: var(--lh-sm);
}

.fz-md {
  font-size: var(--fz-md);
  line-height: var(--lh-md);
}

.fz-lg {
  font-size: var(--fz-lg);
  line-height: var(--lh-lg);
}

.fz-xl {
  font-size: var(--fz-xl);
  line-height: var(--lh-xl);
}

.fz-xxl {
  font-size: var(--fz-xxl);
  line-height: var(--lh-xxl);
}

.fz-titleh1 {
  font-size: var(--fz-titleh1);
  line-height: normal;
}

@media (max-width: 991px) {
  .fz-titleh1 {
    font-size: 1rem !important;
    line-height: normal;
  }
}

.paragraph__Lh {
  line-height: 2rem;
}

/* ------ Font Size end------ */

/* ------ Text Color ------ */
.tc1 {
  color: var(--tc1) !important;
  --icon-color: var(--tc1);
}

.tc2 {
  color: var(--tc2) !important;
  --icon-color: var(--tc2);
}

.tc3 {
  color: var(--tc3) !important;
  --icon-color: var(--tc3);
}

.tcm {
  color: var(--mc1) !important;
  --icon-color: var(--mc1);
}

.tcw {
  color: var(--white) !important;
  --icon-color: var(--white);
}

.bgm {
  background-color: var(--mc1) !important;
}

.hcw {
  transition: color var(--transition);
}

.hcw:hover,
.hcw:focus,
.hcw:visited {
  color: var(--white) !important;
  --icon-color: var(--white);
}

.hcm {
  transition: color var(--transition);
}

.hcm:hover,
.hcm:focus,
.hcm:visited {
  color: var(--mc1) !important;
  --icon-color: var(--mc1);
}

/* ------ Font Weight ------ */
.fw-400 {
  font-weight: var(--fw-400);
}

.fw-600 {
  font-weight: var(--fw-600);
}

.fw-700 {
  font-weight: var(--fw-700);
}

.fw-800 {
  font-weight: var(--fw-800);
}

/* ------ Button Style ------ */

.btnStyle_Primary,
.btnStyle_Primary:visited,
.download-brand-logo .download-text .download-link,
.download-brand-logo .download-text .download-link:visited {
  --btn-accent: var(--white);
  padding: var(--pad-pri);
  border: var(--brd-pri) var(--btn-accent);
  background-color: var(--mc1);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  width: fit-content;
  column-gap: var(--gap);
  color: var(--btn-accent) !important;
  --icon-color: var(--btn-accent);
}

.btnStyle_Primary:hover,
.btnStyle_Primary:focus,
.download-brand-logo .download-text .download-link:hover,
.download-brand-logo .download-text .download-link:focus {
  background-color: var(--white);
  --btn-accent: var(--mc1);
}

.btnStyle_Secoundary,
.btnStyle_Secoundary:visited {
  --btn-accent: var(--mc1);
  padding: var(--pad-pri);
  border: var(--brd-pri) var(--btn-accent);
  background-color: var(--white);
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  width: fit-content;
  column-gap: var(--gap);
  color: var(--btn-accent) !important;
  --icon-color: var(--btn-accent);
}

.btnStyle_Secoundary:hover,
.btnStyle_Secoundary:focus {
  background-color: var(--mc1);
  --btn-accent: var(--white);
}

/* ------ Icon Style ------ */

.WbIcon {
  height: var(--icon);
  width: var(--icon);
  min-width: var(--icon);
  min-height: var(--icon);
  display: inline-flex;
  vertical-align: middle;
  background: var(--icon-color);
  mask: var(--iconUrl) no-repeat center;
  mask-size: cover;
  -webkit-mask: var(--iconUrl) no-repeat center;
  -webkit-mask-size: cover;
  margin: var(--icon-mt, 0) var(--icon-mr, 0) var(--icon-mb, 0)
    var(--icon-ml, 0);
  transition: var(--transition);
}

.main_Space {
  /****change****/
  margin-bottom: var(--main-space) !important;
  /* margin-top   : var(--main-space); */
}

.title_Space {
  margin-bottom: var(--title-space) !important;
}

.bottom_Space {
  margin-top: var(--bottom-space);
}

/* ------ Gap ------ */

.col-gap-1 {
  column-gap: calc(var(--gap) * 0.5);
}

.col-gap-2 {
  column-gap: calc(var(--gap) * 1);
}

.col-gap-3 {
  column-gap: calc(var(--gap) * 2);
}

.col-gap-4 {
  column-gap: calc(var(--gap) * 3);
}

.row-gap-1 {
  row-gap: calc(var(--gap) * 0.5);
}

.row-gap-2 {
  row-gap: calc(var(--gap) * 1);
}

.row-gap-3 {
  row-gap: calc(var(--gap) * 2);
}

.row-gap-4 {
  row-gap: calc(var(--gap) * 3);
}

/* ------ Container Style ------ */

.WBContainer_Sidebar {
  /****change****/
  /* border-radius: var(--border-radius-sm);
    background: var(--white);
    border: 1px solid var(--bw-fade-6);
    padding: 1rem;
    margin-bottom: var(--main-space);
    margin-top: var(--main-space); */
}

.Title_Sidebar_Text {
  border-bottom: 1px solid var(--bw-fade-6);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem !important;
  color: var(--mc2);
}

/* ------ Container Style ------ */
.wb__Dropdown_Menu.active {
  visibility: visible;
  opacity: 1;
}

.wb__Dropdown_Menu {
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  position: absolute;
  min-width: 10rem;
  background: var(--white);
  padding: 1rem;
  top: 100%;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--box-shadow);
}

.wb__Dropdown_Menu .nav-pills {
  flex-direction: column;
}

/* .title__Effect_Container{
    display: flex;
    width: 100%;
    justify-content: center;
} */

/* !animated title end */

/* remove overflow for ABOUT US and SPECIALS PORTFOLIO pages */
.tabid-236 main,
.tabid-273 main {
  overflow-x: hidden;
}

/* NICE SELECT  */
.nice-select {
  width: 100% !important;
  border: none !important;
  border-bottom: 1px solid var(--mc4) !important;
  border-radius: 0 !important;
  padding: 0 0.5rem !important;
  float: unset !important;
}

.rtl .nice-select .option {
  text-align: right;
}

.nice-select * {
  font-family: "YekanBakh";
}

.nice-select::after {
  right: unset !important;
  left: 12px !important;
  width: 10px !important;
  height: 10px !important;
}

.nice-select ul.list {
  width: 100%;
  border-radius: 0 !important;
  max-height: calc(7 * 40px) !important;
  overflow-y: auto;
}

.nice-select .current {
  display: block;
  width: 100%;
  text-align: right;
  color: var(--mc1);
}

.nice-select .option.selected {
  color: var(--mc1);
}

/* -------------------------------------------------------------------------- */
/*                                  PAGINATION                                */
/* -------------------------------------------------------------------------- */
/* make it higher specifity to overwrite the  */
.PagingTable.PagingTable.PagingTable {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0;
  border: none !important;
  min-height: unset !important;
  background: transparent !important;
  margin: unset !important;
  margin-top: 2rem !important;
  row-gap: 1rem;
}

.PagingTable em,
.PagingTable a,
.PagingTable.row a.showInMobile {
  border: none !important;
  color: black !important;
  background: transparent !important;
  border-radius: calc(var(--border-radius-sm) / 2) !important;
  min-width: 36px !important;
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: normal !important;
  padding: unset !important;
}

.PagingTable .NextPage::before,
.PagingTable .PreviousPage::after {
  display: none;
}

.PagingTable a:is(.PreviousPage, .NextPage) {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 1px solid #00000021 !important;
  font-size: 0 !important;
}

.PagingTable .NextPage::after,
.PagingTable .PreviousPage::before {
  content: "" !important;
  --icon: 1.5rem;
  height: var(--icon);
  width: var(--icon);
  min-width: var(--icon);
  min-height: var(--icon);
  mask: url(../Images/chevDown.svg) no-repeat center;
  mask-size: cover;
  -webkit-mask: url(../Images/chevDown.svg) no-repeat center;
  -webkit-mask-size: cover;
  display: block;
  background-color: var(--icon-color);
  transition: var(--transition);
}

.PagingTable .NextPage::after {
  transform: rotate(90deg);
}

.PagingTable .PreviousPage::before {
  transform: rotate(-90deg);
}

.PagingTable a:is(.PreviousPage, .NextPage)::before,
.PagingTable a:is(.PreviousPage, .NextPage)::after {
  font-size: 16px;
}

.PagingTable a.FirstPage::before,
.PagingTable a.PreviousPage::before,
.PagingTable a.NextPage::after,
.PagingTable a.LastPage::after {
  margin-top: -2px !important;
}

.PagingTable a:not([href]),
.PagingTable a:is(.FirstPage, .LastPage) {
  display: none !important;
}

.PagingTable a.PreviousPage,
.PagingTable a.NextPage {
  font-size: 0 !important;
}

.PagingTable a.PreviousPage,
.PagingTable a.NextPage {
  background-color: white !important;
  border: solid 1px black !important;
  --icon-color: var(--mc1);
}

.PagingTable a.PreviousPage:hover,
.PagingTable a.NextPage:hover {
  background-color: black !important;
  --icon-color: var(--white);
}

.PagingTable a.PreviousPage:before,
.PagingTable a.NextPage:after {
  font-size: 17px !important;
  margin: 0 !important;
  color: inherit !important;
}

.PagingTable .NextPage:before,
.PagingTable .PreviousPage:after {
  display: none !important;
}

.PagingTable.PagingTable.PagingTable a.PreviousPage:not([href]),
.PagingTable.PagingTable.PagingTable a.NextPage:not([href]) {
  background: var(--bw-fade-3) !important;
  border-color: var(--bw-fade-3) !important;
  display: flex !important;
  cursor: not-allowed;
  color: #fff !important;
}

.PagingTable.PagingTable.PagingTable a:hover,
.PagingTable.row a.showInMobile:hover,
.PagingTable em {
  background: black !important;
  color: white !important;
}

.PagingTable a.PagerNormalDisabled,
.PagingTable a.FirstPage,
.PagingTable a.LastPage {
  display: none !important;
}

.MobilePaging.PagingTable {
  gap: 1rem;
}

.sliderPane {
  margin-top: calc(-1 * var(--main-space));
}

/* ?------------------------------- Responsive ------------------------------- */

@media (min-width: 992px) {
  .threePane {
    --main-space: 2rem;
    --title-space: 1rem;
  }
}

@media (max-width: 991px) {
  .PagingTable :is(.NextPage, .PreviousPage),
  .PagingTable :is(.NextPage, .PreviousPage) {
    margin: 0;
  }
}

/* -------------------------------------------------------------------------- */
/*                                  BREADCRUMB                                */
/* -------------------------------------------------------------------------- */
.WB-breadcrumb {
  margin-bottom: var(--title-space);
  max-width: 100% !important;
  padding: 0 !important;
}

.WB-breadcrumb ol {
  color: var(--tc1) !important;
  font-weight: 600;
}

.WB-breadcrumb li i {
  color: var(--tc1) !important;
  font-size: 12px !important;
  background: url("../Images/arrow_forward.svg") no-repeat center;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.WB-breadcrumb li i::before {
  content: unset;
}

.WB-breadcrumb .lblFinalUrl {
  color: var(--mc1);
  font-weight: var(--fw-800);
}

.WB-breadcrumb li a {
  font-size: inherit !important;
}

/* -------------------------------------------------------------------------- */
/*                                    SLICK                                   */
/* -------------------------------------------------------------------------- */

/* Effected css styles */

.slick-arrow {
  --arrow-accent: var(--bw-fade-4);
  width: 50px;
  height: 50px;
  background: var(--white) !important;
  border: solid 1px var(--arrow-accent) !important;
  outline: none !important;
  font-size: 0 !important;
  transition: var(--transition) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  position: absolute !important;
  border-radius: calc(var(--border-radius-sm) / 2) !important;
  z-index: 1 !important;
}

.slick-arrow.slick-prev {
  left: calc(100% + 1.5rem) !important;
  right: auto !important;
  --rotation: rotate(-90deg);
}

.slick-arrow.slick-next {
  left: auto !important;
  right: calc(100% + 1.5rem) !important;
  --rotation: rotate(+90deg);
}

.slick-slider .slick-arrow::before {
  content: "" !important;
  font-size: 0 !important;
  transform: var(--rotation) !important;
  transition: var(--transition) !important;
  mask: url(../Images/Chevdown.svg) no-repeat center;
  mask-size: cover;
  -webkit-mask: url(../Images/Chevdown.svg) no-repeat center;
  -webkit-mask-size: cover;
  background-color: var(--arrow-accent) !important;
  width: 100%;
  height: 100%;
  display: block;
}

.slick-slider .slick-arrow:hover {
  --arrow-accent: var(--bw-fade-6);
}

.slide-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 1;
  background: #f4f4f4;
  border-radius: 50%;
  text-align: center;
}

.slide-arrow.arrow-prev {
  left: 0;
}

.slide-arrow.arrow-prev:before {
  content: "\f104";
  font-family: "fontawesome";
  line-height: 20px;
  font-size: 20px;
}

.slide-arrow.arrow-next {
  right: 0;
}

.slide-arrow.arrow-next:before {
  content: "\f105";
  font-family: "fontawesome";
  line-height: 20px;
  font-size: 20px;
}

/* slick dots */

.slick-dots {
  position: static !important;
  margin-top: var(--bottom-space);
}

.slick-dots li {
  width: auto !important;
  height: auto !important;
  margin-inline: 0.25rem;
}

.slick-dots li button {
  background: var(--bw-fade-4) !important;
  border-radius: 50% !important;
  width: 0.5rem !important;
  height: 0.5rem !important;
  transition: var(--transition);
  padding: 0 !important;
}

.slick-dots li.slick-active button {
  background: var(--mc1) !important;
}

.slick-dots li button::before {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

/* -------------------------------------------------------------------------- */
/*                                 LIVE FORM                                  */
/* -------------------------------------------------------------------------- */
/* General Style */
.LiveForm.Default td,
.LiveForm.Default th,
.LiveForm.Default table,
.LiveForm.Default .Field input,
.LiveForm.Default .Field select,
.LiveForm.Default .Field textarea,
.LiveForm.Default .Field button {
  font-family: inherit;
}

.LiveForm.Default ul.page-break-section,
.LiveForm.Default .thank-you {
  background: none !important;
  box-shadow: none !important;
}

/* Upload Style */

.LiveForm .plupload_filelist_header,
.LiveForm .plupload_filelist {
  display: none !important;
}

.LiveForm .plupload_filelist_header,
.LiveForm .plupload_filelist_footer,
.LiveForm .plupload_container {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
}

.LiveForm.Default .Fileupload > label {
  display: none !important;
}

.LiveForm.Default .plupload_buttons {
  position: relative !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.LiveForm.Default .plupload_buttons__Text {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  border: 1px solid #bdbdbd;
  border-left: none;
  border-radius: 0 10px 10px 0;
  font-size: 0.875rem !important;
  color: var(--tc1);
  padding: 12px;
  max-width: calc(100% - 120px);
  overflow: auto;
}

.LiveForm.Default .plupload_button {
  position: relative !important;
  display: inline-block !important;
  padding-right: 16px !important;
  padding-left: 40px !important;
  border-radius: 10px 0 0 10px !important;
  margin-right: 0 !important;
  white-space: nowrap;
  min-width: 120px !important;
}

.LiveForm.Default .plupload_button::before {
  content: "\f093 ";
  font-family: "FontAwesome";
  display: block;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.875rem;
}

.LiveForm.Default .plupload_button__Upload::before {
  content: "\f110 ";
  animation: 1s rotateAnime infinite ease-in-out;
}

.LiveForm.Default .plupload_button__Failed::before {
  content: "\f071 ";
}

.LiveForm.Default .plupload_button__Done::before {
  content: "\f00c ";
}

.LiveForm.Default input[type="submit"],
.LiveForm.Default input[type="button"] {
  background: var(--mc1);
}

.LiveForm.Default input[type="submit"]:hover,
.LiveForm.Default input[type="button"]:hover {
  box-shadow: 0 0 0 2px white, 0 0 0 3px var(--mc1);
}

@keyframes rotateAnime {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* -------------------------------------------------------------------------- */
/*                                 Userdash                                   */
/* -------------------------------------------------------------------------- */

.ModDDRMenuC .nav.nav-pills {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  list-style: none;
  flex-direction: column;
  border: 1px solid #dfdfdf;
  padding: 0px;
  background-color: #f3f3f3;
}

.userProfileBox {
  border-radius: var(--border-radius) !important;
  padding: 15px !important;
  box-shadow: 0 1px 6px 0 rgb(0 0 0 / 10%) !important;
  background: #fbfbfb !important;
}

#btnUpdateUser,
.ModWBUserOrderC .user-order .firstNav input[type="button"] {
  border-radius: var(--border-radius) !important;
  background: var(--mc1) !important;
  border: 1px solid var(--mc1) !important;
  font-family: inherit !important;
  transition: var(--transition) !important;
  float: left;
  font-size: 1rem;
}

#btnUpdateUser:focus,
#btnUpdateUser:hover,
.ModWBUserOrderC .user-order .firstNav input[type="button"]:focus,
.ModWBUserOrderC .user-order .firstNav input[type="button"]:hover {
  background: transparent !important;
  color: var(--mc1) !important;
  box-shadow: unset !important;
}

.ModDDRMenuC .nav-pills {
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  box-shadow: 0 1px 6px 0 rgb(0 0 0 / 10%);
}

.ModDDRMenuC .nav-pills > li {
  width: 100%;
  margin: 0 !important;
  font-size: 0.875rem;
  border-bottom: 1px dashed#821c6b14;
}

.ModDDRMenuC .nav-pills > li a {
  padding: 10px;
  display: block;
}

.ModDDRMenuC .nav-pills > li.active,
.ModDDRMenuC .nav-pills > li.active > a:focus,
.ModDDRMenuC .nav-pills > li.active > a:hover {
  background: var(--mc1);
}

.ModDDRMenuC .nav-pills > li.active a {
  background-color: transparent;
  color: white;
}

table#orderList thead {
  background: var(--mc1) !important;
  color: #fff;
}

table.dataTable thead th::before,
table.dataTable thead td::before,
table.dataTable thead th::after,
table.dataTable thead td::after {
  content: none !important;
}

.table-striped tbody tr > td:has(.btn) {
  display: flex;
}

.ModWBUserChangePasswordC .user-password .btnBox button,
.ModWBUserChangePasswordC .user-password .btnBox button:hover {
  font-size: inherit;
  background-color: var(--mc1);
  border-color: var(--mc1);
  box-shadow: none;
  font-family: inherit;
}

/*
table.dataTable thead th,
table.dataTable thead td {
    width: 25% !important;
} */

#orderList th.sorting_disabled {
  width: auto !important;
}

.user-order .tableBox {
  margin-top: 15px;
}

.user-order .modal-header .close {
  margin: -1rem auto -1rem -1rem;
}

.user-order .modal-header .close span {
  font-size: 24px;
}

.DnnModule-DDRMenu,
.userProfileBox,
.DnnModule-WB_User_Order,
.DnnModule-WB_User_ChangePassword {
  margin-top: 48px;
}

@media (max-width: 991px) {
  .ModDDRMenuC .table__Wrapper {
    overflow: auto;
  }
}

/* -------------------------------------------------------------------------- */
/*                                  COMMENT                                   */
/* -------------------------------------------------------------------------- */
#dnn_ctr403_ViewDNNArticle_ctl10_trComment {
  margin-bottom: 35px;
  border: 0;
  padding: 0;
}

#btnCommentClient {
  padding: 10px 30px;
  font-size: 16px;
}

.CommentOut {
  padding: 0 !important;
  border-radius: var(--border-radius);
  margin-top: 48px;
}

.CommentHead {
  font-size: var(--fz-xl);
  font-weight: var(--fw-800);
}

.CommentHead span {
  border-bottom: 1px solid var(--mc1);
  display: inline-block;
  padding-bottom: 8px;
}

.DnnModule-DNNArticle-ArticleView .outerCommentSection {
  padding: 0 !important;
  margin: 0 auto !important;
  border: none;
  border-radius: var(--border-radius);
}

.DnnModule-DNNArticle-ArticleView .submitBox,
.DnnModule-DNNArticle-ArticleView
  .commentTextBox
  .reply-wrap
  .reply-fields-wrap,
.comment-view .btnCommentClientBox,
.comment-view .txtNameClientBox {
  text-align: left;
}

.DnnModule-DNNArticle-ArticleView #btnCommentClient,
.DnnModule-DNNArticle-ArticleView .commentTextBox #btnCommentClient,
.DnnModule-DNNArticle-ArticleView .commentTextBox .reply-box #txtNameClient,
.comment-view #btnCommentClient,
.comment-view .reply-box #txtNameClient {
  background: var(--mc1) !important;
  border: 1px solid var(--mc1) !important;
  outline: none !important;
  transition: var(--transition) !important;
  padding: 6px 24px !important;
  height: 44px !important;
}

.DnnModule-DNNArticle-ArticleView #btnCommentClient:hover,
.DnnModule-DNNArticle-ArticleView .commentTextBox #btnCommentClient:hover,
.DnnModule-DNNArticle-ArticleView
  .commentTextBox
  .reply-box
  #txtNameClient:hover,
.comment-view #btnCommentClient:hover,
.comment-view .reply-box #txtNameClient:hover {
  background: transparent !important;
  color: var(--mc1) !important;
}

.DnnModule-DNNArticle-ArticleView .commentTextBox .main-comment,
.comment-view .main-comment {
  border-radius: var(--border-radius) !important;
  background: transparent !important;
  border: 1px solid #e1e1e1 !important;
}

.DnnModule-DNNArticle-ArticleView .commentTextBox {
  padding: 0;
  border: none !important;
  margin-top: 24px;
}

.DnnModule-DNNArticle-ArticleView .insertCommentBox .modern-label,
.comment-view .modern-label {
  line-height: normal;
}

.commentTextBox .user-comments-view .user-comment,
.comment-view .user-comments-view .user-comment {
  padding: 0px !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  border: none;
}

.insertCommentBox input[type="text"],
.insertCommentBox textarea,
.commentTextBox .modern-input,
.comment-view .modern-input {
  padding: 10px 10px 8px !important;
  border-radius: var(--border-radius-sm);
}

.commentTextBox .user-comments-view .user-name,
.comment-view .user-comments-view .user-name {
  position: relative;
  color: #757575 !important;
  font-size: var(--fz-md);
}

.replay-comment {
  margin-top: 16px !important;
}

.comment-view .user-comments-view .comment-date {
  padding: 0;
}

.blogDetail .outerCommentSection {
  padding: 0;
  border: none;
  border-radius: 0;
}

.blogDetail .commentTextBox {
  padding: 0;
}

.blogDetail .outerCommentSection .insertCommentBox {
  border-radius: 0.5rem;
  background-color: #ebebeb;
  padding: 1rem 1rem 2.5rem !important;
  border: none;
}

.blogDetail .commentTextBox {
  border: none;
}

.blogDetail .submitBox {
  text-align: left;
}

.blogDetail #btnCommentClient,
.blogDetail .commentTextBox #btnCommentClient,
.blogDetail .commentTextBox .reply-box #txtNameClient {
  background-color: #101010;
  border: none;
  box-shadow: none;
}

/* comment bubbles */
.blogDetail .commentTextBox .main-comment {
  background: transparent;
  border: none !important;
  /* border-top: 1px solid var(--mc1) !important; */
  padding: 2rem 0 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0 !important;
}

/* .blogDetail .commentTextBox .main-comment:last-of-type {
    border-bottom: 1px solid var(--mc1) !important;
} */

.blogDetail .commentTextBox .main-comment p {
  font-weight: bold !important;
  font-size: var(--fz-md);
}

.blogDetail .commentTextBox .main-comment:not(:first-of-type) {
  border-top: solid 1px black !important;
}

.blogDetail .commentTextBox .main-comment:last-of-type {
  border-bottom: solid 1px black !important;
}

.blogDetail .replay-comment {
  color: #626262;
  background-color: #f2f2f2;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: none;
}

.blogDetail .replay-comment p {
  color: #626262;
}

span.answer {
  color: #808080;
}

/* ?------------------------------- Responsive ------------------------------- */

@media (max-width: 991px) {
  .blogDetail .replay-comment {
    margin-right: 0 !important;
  }
}

@media (min-width: 992px) {
  .CommentOut .insertCommentBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .insertCommentBox .nameBox,
  .insertCommentBox .emailBox {
    width: calc(50% - 6px);
  }

  .insertCommentBox .opinionBox,
  .insertCommentBox .submitBox {
    width: 100%;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .CommentOut {
    margin-bottom: 32px !important;
  }
}

@media (max-width: 576px) {
  .CommentOut {
    margin-bottom: 32px !important;
  }
}

/* -------------------------------------------------------------------------- */
/*                                   SLIDER                                   */
/* -------------------------------------------------------------------------- */
.main-slider {
  margin-bottom: 80px;
}

.wb-slides .DescriptionBox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.wb-slides .item {
  height: 610px;
}

.wb-slides .item_Img {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
}

.wb-slides .caption_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.wb-slides .caption_title__Second {
  position: relative;
}

.wb-slides {
  position: relative;
  background: transparent;
}

.wbSlides__Nav {
  display: flex;
  position: absolute;
  bottom: 5rem !important;
  left: 50%;
  transform: translateX(-50%);
}

.sectionTtl2 {
  line-height: 60px;
}

.item__Image {
  height: 480px;
}

/* -------------------------------------------------------------------------- */
/*                                         HELP                               */
/* -------------------------------------------------------------------------- */

.helpMe {
  text-align: right;
  width: 500px;
  margin: 50px auto;
  padding: 20px 0;
}

.helpMe table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: var(--border-radius);
  overflow: hidden;
  color: var(--tc1);
  background: #fbfbfb;
  -webkit-box-shadow: 11px 11px 38px #c9c9c9, -11px -11px 38px #ffffff;
  box-shadow: 11px 11px 38px #c9c9c9, -11px -11px 38px #ffffff;
}

.helpMe tr td:first-child {
  background-color: #b7b7b767;
}

.helpMe tr td {
  border: 1px solid #e9e9e9;
  padding: 10px;
  text-align: center;
  width: 520px;
}

/* -------------------------------------------------------------------------- */
/*                                 Services                                   */
/* -------------------------------------------------------------------------- */

/* *------------------------------- services Menu Start ------------------------------- */

.services__Desc_Wrapper ul {
  line-height: 32px;
}

.services__Desc_Wrapper ul li,
.services__Desc_Wrapper p {
  font-size: var(--fz-md);
  font-weight: var(--fw-600);
  color: var(--bw-fade-5);
}

.services__Desc_Wrapper h1,
.services__Desc_Wrapper h2 {
  margin-bottom: 1rem;
}

.services__List_Wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 318px), 1fr));
  grid-auto-flow: dense;
  column-gap: 1rem;
  row-gap: 1.5rem;
}

.services__List_Wrapper .service__Item {
  border-radius: var(--border-radius);
  border: 1px solid var(--bwf-7-text-elements, #000);
  background: var(--bwf-2-bg, #f5f5f5) url("../Images/service-bg.webp");
  height: 200px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  padding-bottom: 2rem;
  justify-content: flex-end;
  overflow: hidden;
}

.service__Item_Text {
  color: var(--bwf-7-text-elements, #000);
  text-align: right;
  font-size: 1.5rem;
  font-weight: var(--fw-700);
  position: relative;
  width: fit-content;
}

.service__Item_Text::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 2px;
  left: 0;
  bottom: -10px;
  background-color: var(--bw-fade-7);
}

.service__Latin_Text {
  width: 280px;
  height: auto;
  object-fit: contain;
  object-position: right;
  opacity: 0.3;
  margin-bottom: -12px;
}

.services__Desc_showmore.services__Desc_showmore {
  margin-top: unset !important;
}

/* !------------------------------- services Menu End --------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                  ShowMore                                  */
/* -------------------------------------------------------------------------- */

.services__Desc_showmore a {
  text-decoration: underline;
}

/* check to see if the show-less button is visible do not show */
.showmore__Wrapper:has(.show-less) .services__Desc_showmore::after {
  display: none;
}

/* check to see if the show more button is not visible do not show gradient */
.showmore__Wrapper:not(:has(.showmore-button)) .services__Desc_showmore::after {
  display: none;
}

.showmore__Wrapper:has(.services__Colors_Wrapper) .showmore-button,
.showmore__Wrapper:has(.services__Sample_Wrapper) .showmore-button {
  margin-top: 1.5rem;
}

/* generated show more button with jquery show more plugin */
.showmore-button {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  justify-content: center;
  font-weight: 800;
  color: var(--mc1);
  z-index: 1;
  user-select: none;
  translate: 0 -0.85rem;
  margin-bottom: px;
  padding-inline: 0.5rem;
  background: #fff;
  width: fit-content;
  margin-inline: auto;
}

/* show more gradient for text elipses */
.showmore__Wrapper[data-showmore] .services__Desc_showmore::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--white) 50%);
  bottom: 0px;
  right: 0;
}

/* decrease gradient height in smaller screen */
@media (max-width: 991px) {
  .services__Desc_showmore::after {
    height: 60px;
  }
}

/* -------------------------------------------------------------------------- */
/*                                  services                                  */
/* -------------------------------------------------------------------------- */

/*--------------------------------- services description --------------------*/

.services__Desc_showmore,
.services__Desc {
  padding: 32px;
  border-radius: 16px;
  position: relative;
}

.services__Desc_Wrapper > p {
  line-height: 32px;
  text-align: justify;
}

@media (min-width: 992px) {
  .services__Desc_showmore.has-border,
  .services__Desc.has-border {
    border: 1px solid #dfdfdf;
  }
}

@media (max-width: 992px) {
  .services__Desc_showmore,
  .services__Desc {
    padding: 16px;
  }
}

.services__Desc_Wrapper ul > li {
  list-style: disc outside;
  line-height: 32px;
  margin-right: 15px;
}

.services__Desc_Wrapper ol > li {
  list-style: numeric outside;
  line-height: 32px;
  margin-right: 15px;
}

/* -------------------------------------------------------------------------- */
/*                               Contact Banner                               */
/* -------------------------------------------------------------------------- */

.contact__Baner {
  --icon-color: #fff;
  --icon: 40px;
  padding: 32px 18px;
  color: #fff;
  background: var(--black) url("../Images/contact-banner-bg.svg") center
    no-repeat;
  background-size: cover;
  padding-inline: 80px;
  border-radius: var(--border-radius-sm);
}

.contact__Baner > h3 {
  color: #fff;
  line-height: 2rem;
}

.contact__Banner_phone {
  font-size: 32px;
  font-weight: 800;
}

@media (max-width: 992px) {
  .contact__Baner {
    --icon: 28px;
    gap: 2rem;
    text-align: center;
    padding-inline: 32px;
  }

  .contact__Banner_phone {
    font-size: 24px;
    line-height: 37px;
  }
}

/* -------------------------------------------------------------------------- */
/*                            Product Nav Accordion                           */
/* -------------------------------------------------------------------------- */

.product_Nav {
  --icon: 24px;
  --icon-color: #000;
  max-width: 1320px;
  padding-block: 40px;
  margin-inline: auto;
  background: #f5f5f5;
  border-radius: var(--border-radius-sm);
}

.product_Nav > h1 {
  margin-bottom: 40px;
  font-size: 24px;
  color: #000;
  font-weight: 800;
}

.product_Nav__Wrapper {
  width: 100%;
  position: relative;
  display: flex;
  /* justify-content: end; */
  margin-inline: auto;
  max-width: 1100px;
  border-radius: 10%;
}

.product_Nav__Accordion {
  --icon-color: #616161;
  --icon-size: 24px;
  --icon-ml: 8px;
  background: #ffff;
  color: #616161;
  border-radius: 0 16px 16px 0;
  /* padding-inline: 16px; */
  padding-top: 32px;
  padding-bottom: 16px;
}

.accordion-trigger {
  background: transparent;
  border: 0;
  color: inherit;
  width: 100%;
  border-radius: 8px;
  padding-block: 10px;
}

.accordion-panel:not(:first-child) .accordion-trigger {
  margin-top: 2px;
}

.accordion-content {
  border-radius: 16px 0 0 16px;
}

.accordion-trigger {
  padding-inline: 24px;
  transition: var(--transition);
  color: var(--mc1);
  --icon-color: var(--mc1);
  font-weight: var(--fw-600);
}

.accordion-trigger.active {
  --icon-color: var(--white);
  background-color: #363636;
  color: var(--white);
}

.accordion-content__Text > img {
  border-radius: var(--border-radius-sm);
  width: 100%;
  max-width: 100%;
}

.accordion-content__Text > p {
  color: #616161;
  margin-top: 24px;
  line-height: 32px;
  font-size: 16px;
  font-weight: 600;
}

.accordion-content .accordion-content__Text {
  font-weight: var(--fw-600);
  color: var(--tc2);
  font-size: var(--fz-md);
  line-height: 2;
}

/*----- nav-accordion desktop styles ----*/
/*  in this component because so much styles changes in different screen sizes
i choosed to assign different styles for it  */
@media (min-width: 992px) {
  .product_Nav__Accordion {
    width: 30%;
  }

  .accordion-trigger .WbIcon.chev {
    display: none;
  }

  .accordion-trigger:not(.active):hover {
    background-color: #ececec;
  }

  .product_Nav__Accordion .scroll {
    overflow-y: scroll;
    min-height: 500px;
    height: fit-content;
    max-height: 652px;
    padding-inline: 16px;
  }

  .product_Nav__Accordion .scroll::-webkit-scrollbar {
    width: 2px;
  }

  .product_Nav__Accordion .scroll::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 50px;
  }

  .product_Nav__Accordion .scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  .accordion-content {
    background-color: #fff;
    padding-top: 32px;
    padding-bottom: 16px;
    padding-inline: 32px;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    text-align: right;
    width: 70%;
    height: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .accordion-content::-webkit-scrollbar {
    display: none;
  }

  .accordion-content .accordion-content__Text {
    z-index: 2;
    visibility: hidden;
    position: relative;
    transition: var(--transition);
    opacity: 0;
  }

  .accordion-trigger.active ~ .accordion-content .accordion-content__Text {
    visibility: visible;
    opacity: 1;
    transition-delay: var(--transition);
  }
}

.accordion-content > div {
  overflow: hidden;
}

/*----- nav-accordion tablet and mobile styles ----*/
@media (max-width: 992px) {
  .product_Nav__Wrapper {
    padding-inline: 16px;
  }

  .product_Nav__Accordion {
    border-radius: 16px;
    padding-top: 0;
  }

  .accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    padding-inline: 16px;
    transition: grid-template-rows calc(var(--transition) * 3);
    text-align: right;
  }

  .accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .accordion-trigger .WbIcon.chev {
    --icon-ml: 0;
    --icon-mr: 0;
    transition: calc(var(--transition) * 3);
  }

  .accordion-content__Text {
    margin-top: 8px;
  }

  .accordion-content__Text > p {
    font-size: 14px;
  }

  .accordion-trigger.active ~ .accordion-content {
    grid-template-rows: 1fr;
  }

  .accordion-trigger.active .WbIcon.chev {
    transform: rotate(180deg);
  }

  .accordion-trigger.active ~ .accordion-content .accordion-content__Text {
    margin-top: 24px;
  }
}

/* -------------------------------------------------------------------------- */
/*                            Service Contact Form                            */
/* -------------------------------------------------------------------------- */

#ServiceContactForm {
  scroll-margin-top: 120px;
}

.service_Form {
  padding-top: 72px;
  padding-bottom: 42px;
  padding-inline: 0;
  position: relative;
  background-color: #c6c6c6;
}

.service_Form .services__Form_Background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service_Form .services__Form_Background .form__Background_Lottie:nth-child(1) {
  height: 100%;
  width: auto;
  position: absolute;
  top: 54%;
  left: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.service_Form .services__Form_Background .form__Background_Lottie:nth-child(2) {
  height: 100%;
  width: auto;
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translate(+50%, +50%) rotate(0);
}

/*
.service_Form {
    background: #f5f5f5 url("../Images/service_Form__Pattern.svg") no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 72px;
    padding-bottom: 42px;
    padding-inline: 0;
} */

/* select live form wrapper */
.service_Form__Form .LiveForm.Default ul.page-break-section {
  padding-inline: 0;
}

/* select each field wrapper */
.service_Form__Form .LiveForm.Default ul.page-break-section .Field {
  padding-inline: 0;
}

/* select each input except submit button */
.service_Form__Form .Field input:not([type="submit"]) {
  border: 1px solid #bcbaba !important;
  padding: 13px 1rem !important;
  font-weight: 600 !important;
  font-size: var(--fz-md) !important;
  color: #6a6a6a !important;
  height: auto;
}

.service_Form__Form .Field-Container,
.service_Form__Form .Field-Container input {
  width: 100% !important;
}

/* select each input placeholder except submit button */
.service_Form__Form .Field input:not([type="submit"])::placeholder {
  font-weight: 400 !important;
  color: #8a8a8a !important;
}

/* select input submit button */
.service_Form__Form .LiveForm.Default .Field input[type="submit"] {
  width: 100% !important;
  max-width: 230px;
  border-radius: var(--border-radius-sm);
  font-size: var(--fz-md);
  padding: 13px 1rem !important;
  background-color: var(--mc1);
  border: solid 1px var(--mc1);
}

.LiveForm.Default input[type="submit"]:hover,
.LiveForm.Default input[type="button"]:hover {
  box-shadow: unset !important;
  background-color: var(--white) !important;
  color: var(--mc1);
}

@media (min-width: 992px) {
  .service_Form {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
  }
}

@media (max-width: 991px) {
  .service_Form__Parent {
    padding-inline: 0;
  }

  .service_Form {
    padding-top: 48px;
    padding-bottom: 14px;
    background-position: center;
    background-size: auto 100%;
  }

  .service_Form__wrapper {
    padding-inline: 16px !important;
  }

  .service_Form__Form .Field input:not([type="submit"]) {
    padding: 12px 1rem !important;
  }

  .service_Form__Form .LiveForm.Default .Field input[type="submit"] {
    padding: 13px 1rem !important;
  }
}

/* -------------------------------------------------------------------------- */
/*                                Services FAQ                                */
/* -------------------------------------------------------------------------- */
.services_Faq {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.services_Faq__Wrapper {
  background-color: var(--bw-fade-2);
  flex: 1;
}

.services__Faq__desc {
  line-height: 32px;
}

.services_Faq__Item__Wrapper {
  font-weight: var(--fw-700);
  padding-inline: 24px;
}

.services_Faq__Item__Wrapper:hover {
  background-color: var(--bw-fade-3);
}

.services_Faq__Item {
  padding-block: 24px;
}

.services_Faq__Item__Wrapper:not(:last-child) .services_Faq__Item {
  border-bottom: 1px solid #bcbaba;
  transition: var(--transition);
}

.services_Faq__Item.active {
  border-color: var(--bw-fade-5);
  padding-bottom: 0;
}

.services_Faq__title {
  cursor: pointer;
}

.services_Faq__title .WbIcon {
  --iconUrl: url(../Images/plus.svg);
  --icon-mr: 0.5rem;
  transform: rotate(90deg);
}

.services_Faq__Item.active .WbIcon {
  --iconUrl: url(../Images/minus.svg);
  transform: rotate(0deg);
}

.services__Faq__desc {
  display: grid;
  grid-template-rows: 0fr;
  transition: var(--transition);
}

.Faq__desc_Inner {
  overflow: hidden;
}

.Faq__desc_Inner ul {
  margin: 0;
}

.services_Faq__Item.active .services__Faq__desc {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
}

.services_Faq__img {
  flex: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* *image samples start */
.services__Sample_Wrapper {
  display: flex;
  gap: 1.5rem 1rem;
  --sample-col: 2;
  flex-wrap: wrap;
}

.services__Sample_Wrapper.single__Column {
  gap: var(--title-space) 0;
  --sample-col: 1;
}

.Service__Sample_Item {
  overflow: hidden;
  width: calc(100% / var(--sample-col) - 1rem / var(--sample-col));
  position: relative;
}

.Service__Sample_Item .sample__Media_Content {
  border-radius: var(--border-radius-sm);
}

.sample__Video {
  height: 100%;
  aspect-ratio: 1.31/1;
  border: 1px solid #000;
}

.sample__Media_Content_Logo {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  scale: 1;
  opacity: 1;
  visibility: visible;
  transition: 600ms;
  pointer-events: none;
}

@media (max-width: 991px) {
  .sample__Media_Content_Logo {
    max-width: 60%;
    max-height: 30%;
  }
}

.sample__Video.playing .sample__Media_Content_Logo {
  scale: 0;
  opacity: 0;
  visibility: hidden;
}

.sample__Video:has(.sample__Media_Content_Logo)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: 800ms;
}

.sample__Video.playing:has(.sample__Media_Content_Logo)::after {
  opacity: 0;
}

.services__Sample_Wrapper:not(.single__Column) .Service__Sample_Item {
  border-radius: var(--border-radius-sm);
}

.services__Sample_Wrapper.single__Column .Service__Sample_Item {
  width: 100%;
}

.sample__Dark .service__Sample_Title:is(.title__OnCard, .title__Center) {
  --title-accent: var(--white);
  --title-accent-opposite: var(--mc1);
  --title-grad-from: rgba(0, 0, 0, 0.36);
  --title-grad-to: rgba(0, 0, 0, 0.8);
}

.sample__Light .service__Sample_Title {
  --title-accent: var(--mc1);
  --title-accent-opposite: var(--white);
  --title-grad-from: rgba(255, 255, 255, 0.36);
  --title-grad-to: rgba(255, 255, 255, 0.8);
}

video.sample__Media_Content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service__Sample_Title {
  width: 100%;
  display: flex;
  align-items: center;
  color: var(--title-accent);
  font-size: var(--fz-md);
  font-weight: var(--fw-800);
  column-gap: 1rem;
  text-decoration: none;
}

.service__Sample_Title:is(.title__OnCard, .title__Center) {
  position: absolute;
  padding: 1.5rem;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.01) 0%,
    rgba(0, 0, 0, 0.65) 95%
  );
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2;
}

.title__UnderCard {
  position: static;
  --title-accent: var(--mc1);
  margin-top: 0.5rem;
  text-decoration: unset;
}

.service__Sample_Title .title__Text {
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
  min-width: fit-content;
}

.service__Sample_Title .title__Text::after,
.service__Sample_Title.title__Center .title__Text::before,
.service__Sample_Title.title__UnderCard .title__Text::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--title-accent);
  margin-right: 1rem;
}

.service__Sample_Title.title__Center .title__Text::before,
.service__Sample_Title.title__UnderCard .title__Text::before {
  margin-right: 0;
  margin-left: 1rem;
}

.sample__Play_Btn {
  display: flex;
  min-width: fit-content;
  align-items: center;
  padding: 0.25rem 1rem;
  border-radius: var(--border-radius-sm);
  background-color: var(--title-accent);
  color: var(--title-accent-opposite);
}

.sample__Play_Btn .WbIcon {
  background-color: var(--title-accent-opposite);
}

.Container__Sample_Card .Service__Sample_Item {
  --card-container-padding: 2rem 2.5rem;
  padding: var(--card-container-padding);
  background-color: var(--bw-fade-2);
}

.Container__Sample_Card
  .service__Sample_Title:is(.title__OnCard, .title__Center) {
  padding: 0;
  position: static;
  background: none;
  margin-top: calc(var(--title-space) * (3 / 4));
}

.title__Center {
  font-size: var(--fz-lg);
}

.Container__Sample_Card img {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

@media (min-width: 992px) {
  .services_Faq > .d-flex {
    max-height: 610px;
  }

  .main_Faq .services_Faq > .d-flex {
    max-height: none;
  }

  .services_Faq__Wrapper {
    /* max-height: 610px; */
    overflow-y: auto;
    scrollbar-gutter: stable;
  }

  /* width */
  .services_Faq__Wrapper::-webkit-scrollbar {
    width: 10px;
  }

  /* Track */
  .services_Faq__Wrapper::-webkit-scrollbar-track {
    background: transparent;
  }

  /* Handle */
  .services_Faq__Wrapper::-webkit-scrollbar-thumb {
    background: var(--bw-fade-4);
  }
}

@media (max-width: 991px) {
  .services__Sample_Wrapper {
    --sample-col: 1;
  }

  .services__Sample_Wrapper .Service__Sample_Item {
    width: 100%;
  }

  .Container__Sample_Card .Service__Sample_Item {
    --card-container-padding: 1rem;
  }
}

/* !image samples end */

/* *testmonial start */
.services__Testmonial_Item {
  border: solid 1px var(--bw-fade-3);
  border-radius: var(--border-radius-sm);
  margin: 0 0.5rem;
  margin-top: 1rem;
}

.services__Testmonial_Item .testmonialDescription {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem var(--title-space);
}

.services__Testmonial_Item .testmonialDescription p::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.services__Testmonial_Item .testmonialDescription p {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.services__Testmonial_Item .testmonialDescription::before {
  content: "";
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  background: url(../Images/qoute.svg) no-repeat center;
  background-size: cover;
  margin-bottom: 0.5rem;
  margin-top: -1rem;
  margin-right: auto;
}

.testmonial__Person_Wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 0 1.5rem;
  position: relative;
  margin-top: 50px;
  background-color: var(--bw-fade-6);
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

.testmonialTitleImage {
  margin-top: -50px;
  width: 100px;
  height: 100px;
  border: solid 0.5rem var(--bw-fade-6);
  border-radius: 50%;
  overflow: hidden;
}

.testmonial {
  min-height: 565px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testmonialImg {
  aspect-ratio: 1;
}

@media (max-width: 991px) {
  .testmonial {
    min-height: 410px;
  }
}

.SliderTestmonial .slick-list {
  margin: 0 -0.5rem;
}

/* !testmonial end */

/* *bottom services list start */
.service__Page_Slider .slick-list {
  margin-inline: -0.75rem;
}

.service__Page_Slider .wbSlides__Item {
  aspect-ratio: 1;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bw-fade-1);
  transition: var(--transition);
  border: solid 1px var(--bw-fade-3);
  border-radius: var(--border-radius-sm);
  margin-inline: 0.75rem;
  color: #303030;
  text-align: center;
  padding-inline: 0.5rem;
  font-weight: var(--fw-800);
  font-size: var(--fz-md);
  margin-bottom: 0.25rem;
}

.service__Page_Slider .wbSlides__Item:hover {
  background-color: var(--bw-fade-2);
  border-color: var(--bw-fade-7);
}

.grid_Services .wbSlides__Item:not(.empty):hover {
  background-color: var(--bw-fade-2);
  border-color: var(--bw-fade-7);
}

.service__Page_Icon {
  width: 3.625rem;
  height: 3.625rem;
}

@media (max-width: 991px) {
  .service__Page_Slider .wbSlides__Item {
    height: 150px;
    width: 150px;
    min-width: 150px;
    margin: 0;
  }

  .service__Page_Slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 1.5rem;
    margin-inline: -15px;
    padding-inline: 15px;
  }
}

/* !bottom services list end */

/* *service toppage video start */

.services__HeaderVideo_Wrapper {
  position: relative;
  height: 35vh;
}

.services__HeaderVideo_Wrapper.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000045;
}

.services__HeaderVideo_Wrapper > video {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ?------------------------------- responsive ------------------------------- */
@media (max-width: 991px) {
  .services__HeaderVideo_Wrapper {
    position: relative;
    height: 180px;
  }
}

/* !service toppage video end */

/* *service archetypes start  */
.services__Archetype_Wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1rem;
}

.services__Archetype_Item,
.archetype__Modal {
  --theme-light: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    linear-gradient(0deg, var(--theme-color), var(--theme-color));
  --theme-dark: linear-gradient(
      0deg,
      rgba(250, 250, 250, 0.8),
      rgba(250, 250, 250, 0.8)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.07)),
    linear-gradient(0deg, var(--theme-color), var(--theme-color));
  --card-accent: var(--theme-color);
  --icon-color: var(--card-accent);
}

.services__Archetype_Item {
  background: var(--theme-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  --icon: 2rem;
  --icon-ml: 1rem;
}

.archetype__Image_Box {
  background: var(--theme-dark);
}

.archetype__Image_Box .archetype__Title {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  mix-blend-mode: difference;
}

.archetype__Image_Box > img {
  mix-blend-mode: multiply;
  height: 300px;
}

.archetype__Image_Box > img {
  mix-blend-mode: multiply;
  height: 300px;
}

.archetype__Button {
  --icon: 1.5rem;
  --icon-ml: 0;
  --icon-mr: 0.5rem;
  --iconUrl: url(../Images/chevDown.svg);
  border: none;
  outline: none;
  color: var(--card-accent);
  background-color: transparent;
}

.archetype__quote,
.archetype__Identity {
  color: var(--card-accent);
}

.archetype__Button .WbIcon {
  transform: rotate(90deg);
}

.archetype__Modal::-moz-selection,
.archetype__Modal::selection {
  background: var(--card-accent);
}

.archetype__Modal .modal-body {
  padding: 0;
  border-radius: var(--border-radius-sm);
  background: var(--theme-dark);
  overflow: hidden;
}

.archetype__Modal .modal-content {
  border-radius: var(--border-radius);
  padding: 1rem;
  border: none;
}

.archetype__Modal .archetype__Image_Box > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: right;
}

.archetype__Modal .archetype__Content_Box {
  padding-block: 1.5rem;
  padding-right: 2.5rem;
  text-align: justify;
  --icon-ml: 1rem;
}

.modal-header {
  padding: 0;
  margin-bottom: 1.5rem;
  border: none;
  justify-content: end;
}

.archetype__Desc {
  line-height: 2rem;
}

/* ?------------------------------- Responsive ------------------------------- */

@media (max-width: 1199px) {
  .archetype__Modal .archetype__Content_Box {
    padding-inline: 1rem;
  }

  .archetype__Modal .modal-body {
    background: var(--theme-light);
  }

  .archetype__Modal .archetype__Image_Box {
    background: var(--theme-dark);
  }
}

@media (max-width: 991px) {
  .services__Archetype_Item {
    --icon: 1.5rem;
  }

  .services__Archetype_Wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .archetype__Image_Box .archetype__Title {
    right: 1rem;
  }
}

@media (max-width: 576px) {
  .services__Archetype_Wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* !service archetypes end  */

/* *------------------------------- mascot service Start ------------------------------- */

.services__Mascot_Inner {
  display: flex;
  flex-direction: column;
  row-gap: var(--main-space);
}

.mascot__Card_Item {
  background-color: var(--mascot-color);
  padding: var(--title-space);
  --fancybox-accent-color: var(--mascot-color);
  border-radius: var(--border-radius);
}

.mascot__Card_Item .slick-dots li button {
  background-color: var(--white) !important;
  width: 12px !important;
  height: 12px !important;
}

.mascot__Card_Item .slick-dots li.slick-active button {
  background-color: var(--mc1) !important;
  width: 20px !important;
  height: 20px !important;
}

.mascot__Card_Item video {
  max-width: 100%;
  display: block;
}

.mascot__Media_Content {
  width: 100%;
}

.mascot__Card_Item .thumbnail__Wrapper {
  padding-inline: 0.8rem;
  position: relative;
}

.mascot__Card_Item .video_Content::before {
  content: "";
  --icon: 4rem;
  height: var(--icon);
  width: var(--icon);
  min-width: var(--icon);
  min-height: var(--icon);
  mask: url(/Portals/0/Images/playButton.svg) no-repeat center center / cover;
  -webkit-mask: url(/Portals/0/Images/playButton.svg) no-repeat center center /
    cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  z-index: 2;
}

.thumbnail__Wrapper.video_Content::before {
  --icon: 2.5rem;
}

.mascot__Card_Item .thumbnail__Wrapper .thumbnail__Inner {
  border: solid 0.25rem transparent;
  transition: var(--transition);
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.mascot__Card_Item .thumbnail__Wrapper.slick-current .thumbnail__Inner {
  border-color: var(--white);
}

.mascot__Card_Item .thumbnail__Wrapper .video_Content .thumbnail__Inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000066;
}

.mascot__Card_Item .slick-list:has(.thumbnail__Wrapper) {
  margin-inline: -1rem;
}

.mascot__Card_Item .slick-arrow.slick-next {
  right: auto !important;
  left: 1rem !important;
}

.mascot__Card_Item .slick-arrow.slick-prev {
  left: auto !important;
  right: 1rem !important;
}

.mascot__Card_Item .slick-arrow {
  background-color: transparent !important;
  --arrow-accent: var(--bw-fade-3);
}

.mascot__Card_Item .slick-arrow:hover {
  --arrow-accent: var(--white);
}

.mascot__Card_Item .content__Inner {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.mascot__Card_Item .content__Inner.video_Content::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000066;
}

.mascot__Base_Image {
  height: 320px;
}

.mascot__Logo_Image {
  height: 100px;
}

/* ?------------------------------- responsive ------------------------------- */
@media (max-width: 991px) {
  .mascot__Card_Item {
    padding: 48px 1rem;
  }

  .mascot__Card_Item .content__Wrapper {
    padding-inline: 0.5rem;
  }

  .mascot__Card_Item .slick-list:has(.content__Wrapper) {
    margin-inline: -12px;
  }
}

/* !------------------------------- mascot service End --------------------------------- */

/* *services color pallete start */

.services__Colors_Wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--title-space);
}

.Service__Color_Item {
  background-color: #f5f5f5;
}

@media (min-width: 992px) {
  .services__Colors_BrandDesc {
    text-align: justify !important;
  }
}

/* !services color pallete end */

/* --------------------------------------- live form */
/* select inside form consulting page */
.service_Form__Form .Field select {
  border: 1px solid #bcbaba !important;
  font-weight: 600 !important;
  font-size: var(--fz-md) !important;
  color: var(--bw-fade-5) !important;
  min-height: 53px;
}

.service_Form__Form .nice-select {
  width: 100%;
  height: 53px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: var(--fz-md);
  color: var(--bw-fade-5);
  padding-inline: 16px;
  border-color: #bcbaba;
}

.service_Form__Form .nice-select .list {
  width: 100%;
}

.service_Form__Form .nice-select .list .option {
  text-align: right;
}

.thank-you {
  text-align: center;
  font-weight: 600;
  font-size: var(--fz-md);
  color: var(--bw-fade-5);
}

.thank-you > h2 {
  font-size: var(--fz-xxl);
  font-weight: 700;
  color: #000;
}

/* -------------------------------------------------------------------------- */
/*                       brand consulting features card                       */
/* -------------------------------------------------------------------------- */
.features__Card_Wrapper {
  display: grid;
  grid-auto-flow: dense;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.features__Card_Wrapper > div {
  border-radius: calc(var(--border-radius-sm) / 2);
  padding: 1.5rem 2rem;
  user-select: none;
  min-height: 112px;
  font-size: var(--fz-md);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: var(--fw-700);
  line-height: 32px;
  position: relative;
  background-color: var(--mc1);
}

.features__Card_Wrapper > div::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../Images/footerPattern.svg) no-repeat;
  background-size: 450%;
  z-index: 0;
  opacity: 0.8;
}

.features__Card_Wrapper > div:nth-child(1)::before {
  background-position: 15% 80%;
}

.features__Card_Wrapper > div:nth-child(2)::before {
  background-position: 45% 80%;
}

.features__Card_Wrapper > div:nth-child(3)::before {
  background-position: 75% 80%;
}

.features__Card_Wrapper > div:nth-child(4)::before {
  background-position: 15% 90%;
}

.features__Card_Wrapper > div:nth-child(5)::before {
  background-position: 45% 90%;
}

.features__Card_Wrapper > div:nth-child(6)::before {
  background-position: 75% 90%;
}

/* belongs to nav-acc */
.accordion-trigger {
  scroll-margin-top: 20px;
}

/* belongs to nav-acc */
.accordion-trigger {
  scroll-margin-top: 20px;
}

/* -------------------------------------------------------------------------- */
/*                           brand consulting prices                          */
/* -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .prices__Card_Wrapper {
    padding-inline: 116px;
  }
}

.prices__Card_Wrapper .session_Number {
  font-size: var(--fz-lg);
  font-weight: var(--fw-800);
  background: var(--bw-fade-2);
  width: 30px;
  display: inline-flex;
  height: 30px;
  border-radius: var(--border-radius-sm);
  align-items: center;
  justify-content: center;
}

.prices__Card {
  min-width: min(340px, 100%);
  border: 1px solid var(--card-color);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.prices__Card_Title {
  padding-block: 20px;
  background-color: var(--card-color);
}

.prices__Card_Desc {
  padding-block: 24px;
}

.prices__Card_Price {
  padding-block: 16px;
  background-color: var(--bw-fade-2);
}

.showmore-button .fa {
  margin-right: 0.5rem;
}

/* -------------------------------------------------------------------------- */
/*                                    HOME                                    */
/* -------------------------------------------------------------------------- */

/* *---------------------------- Home main slider start ---------------------------- */

.homePgae__Video_Section {
  height: calc(100vh - 80px);
  height: calc(100svh - 80px);
  min-height: 550px;
  position: relative;
  z-index: 3;
}

.video__Wrapper {
  width: 100%;
  height: 100%;
}

.homePgae__Video_Section video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.videoSection__Content_Wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.videoSection__Content_Wrapper .video__Section_mottom {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 30px;
  line-height: normal;
  font-weight: 800;
  width: 100%;
}

.videoSection__Content_Wrapper .video__Section_mottom h1 {
  color: var(--white);
  padding-bottom: 1.5rem;
  font-size: 34px;
}

.videoSection__Content_Wrapper .video__Section_Counter {
  width: 100%;
  position: absolute;
  top: 73%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.videoSection__Content_Wrapper .video__Section_Counter .row {
  row-gap: 1px;
}

.video__Section_Counter .counter__Cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
  font-weight: bold;
  font-size: 20px;
  line-height: normal;
  padding-block: 1rem;
}

.video__Section_Counter .counter__Cell {
  background: #ffffff66;
}

.video__Section_Counter .counter__Cell .counter__Num {
  font-size: 50px;
  line-height: normal;
  font-weight: 800 !important;
}

.video__Section_Counter .counter__Cell .counter__Title {
  font-size: 1rem;
  line-height: normal;
}

.homePgae__Video_Section .video__bottom_Link {
  position: absolute;
  left: 50%;
  bottom: 0;
  border-radius: 35px 35px 0px 0px;
  transform: translate(-50%);
  background: var(--white);
  color: var(--mc1);
  z-index: 2;
  width: 310px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: 0.5s;
}

.homePgae__Video_Section .video__bottom_Link:hover {
  background: var(--bw-fade-3);
}

body:has(.homePgae__Video_Section) .tel-fix {
  transition: 0.5s;
  transform: translateY(100%);
}

body.page__Scrolled .tel-fix {
  transform: translate(0);
}

@media (min-width: 992px) {
  .video__Section_Counter .counter__Cell {
    justify-content: center;
  }

  .video__Section_Counter .counter__Cell .counter__Num {
    margin-left: 1rem;
  }

  .video__Section_Counter .counter__Cell .counter__Title {
    min-width: fit-content;
  }
}

@media (max-width: 991px) and (min-width: 576px) {
  .video__Section_Counter .counter__Cell .counter__Num {
    font-size: 25px;
  }

  .video__Section_Counter .counter__Cell .counter__Title {
    font-size: 1.5vw;
    text-align: center;
  }

  .video__Section_Counter .counter__Cell {
    flex-direction: column;
  }

  .video__Section_mottom > div {
    font-size: 1.5rem;
  }

  .homePgae__Video_Section .video__bottom_Link {
    width: 180px;
    height: 50px;
    font-size: 1rem;
    border-radius: 24px 24px 0px 0px;
  }
}

@media (max-width: 767px) {
  .videoSection__Content_Wrapper .video__Section_mottom h1 {
    padding-bottom: 1rem;
    font-size: 22px;
  }

  .videoSection__Content_Wrapper .video__Section_Counter {
    background: transparent;
  }

  .videoSection__Content_Wrapper .video__Section_mottom {
    font-size: 16px;
    top: 26%;
  }

  .video__Section_Counter .counter__Cell {
    justify-content: start;
    column-gap: 5%;
  }

  .video__Section_Counter .counter__Cell {
    flex-direction: row;
  }

  .video__Section_Counter .counter__Cell .counter__Num {
    width: 20%;
    text-align: center;
    font-size: 25px;
  }

  .video__Section_Counter .counter__Cell .counter__Title {
    font-size: 18px;
  }

  .videoSection__Content_Wrapper .video__Section_Counter {
    top: 65%;
  }

  .homePgae__Video_Section .video__bottom_Link {
    width: 200px;
    height: 50px;
    font-size: 1rem;
    border-radius: 24px 24px 0px 0px;
  }

  .video__Section_mottom > div {
    font-size: 1.3rem;
    padding: 0 15px;
  }
}

/* !---------------------------- Home main slider end ---------------------------- */

/* *---------------------------- Home Personel Slider Start ---------------------------- */

.home__PersonelSlider_Wrapper {
  position: relative;
}

.personel__Slider_Item {
  overflow: hidden;
  position: relative;
  border: solid var(--bw-fade-3) 1px;
  border-radius: var(--border-radius-sm);
}

.personel__Title_Column .header__Tool_Item:hover {
  background-color: var(--mc1) !important;
  color: var(--white) !important;
}

.WB_Personel_Slider .slick-list {
  margin-inline: -0.5rem;
}

.personel__Image {
  width: 100%;
  transition: var(--transition);
  filter: grayscale(0.8);
  -webkit-filter: grayscale(0.8);
}

.personel__Slider_Item:hover .personel__Image {
  transform: scale(1.02);
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

/* ?------------------------------- responsive ------------------------------- */
@media (min-width: 992px) {
  .home__PersonelSlider_Wrapper::before {
    content: "";
    width: 40%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../Images/lightBemanBakPattern.svg) no-repeat top center /
      cover;
  }

  .personel__Slider_Item {
    margin-inline: 0.5rem;
  }
}

@media (max-width: 575px) {
  .WB_Personel_Slider {
    display: flex;
    overflow-x: scroll;
    padding-inline: 15px;
    margin-inline: -15px;
    column-gap: 1rem;
  }

  .personel__Slider_Item {
    min-width: 183px;
    width: 183px;
  }
}

/* !---------------------------- Home Personel Slider End ---------------------------- */

/* *---------------------- Personel Bubble slider Start ---------------------- */

.WB_Personel_Bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.personel__Bubble_Item {
  aspect-ratio: 1;
  width: 80px;
  border-radius: 50%;
  border: solid 1px var(--bw-fade-2);
  overflow: hidden;
  background-color: var(--white);
  filter: grayscale(1);
}

.personel__Bubble_Image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 575px) {
  .WB_Personel_Bubbles {
    gap: 0.5rem;
  }

  .personel__Bubble_Item {
    width: 70px;
  }
}

/* !---------------------- Personel Bubble slider End ------------------------ */

/* *---------- ---------------- personel Grid Start ------- ------------------- */

.WB_Personel_Grid {
  display: grid;
  grid-auto-flow: dense;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(40%, 245px), 2fr));
}

.personel__Grid_Item {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  filter: grayscale(1);
  background-color: var(--bw-fade-2);
  border: var(--bw-fade-3) solid 1px;
  min-width: 245px;
  aspect-ratio: 5/6.2;
}

@media (max-width: 991px) {
  .personel__Grid_Item {
    min-width: 125px;
  }
}

/* !---------- ---------------- personel Grid End ------------ ---------------- */

/* *---------------------- Home Testemonial slider start --------------------- */

.WB_HomePage_Testmonial {
  padding: 2rem;
  border-radius: var(--border-radius);
  border: solid 1px var(--mc1);
  background-color: var(--bw-fade-2);
  overflow: hidden;
}

.WB_HomePage_Testmonial .home__Testemonial_Item {
  margin-top: unset !important;
  flex-direction: row !important;
}

.WB_HomePage_Testmonial .home__Testemonial_Image .slick-list {
  margin-inline: -0.5rem;
}

.home__Testemonial_Img {
  border-radius: var(--border-radius-sm);
  position: relative;
  z-index: 2;
  width: 100%;
}

.WB_HomePage_Testmonial .image__Item {
  margin-inline: 0.5rem;
  display: flex;
}

.WB_HomePage_Testmonial .home__Testemonial_Image .slick-dots {
  margin-top: calc(var(--bottom-space) / 1.5);
}

.WB_HomePage_Testmonial .info__Item.slick-current {
  transition-delay: 0.25s !important;
}

.Testemonial__info_Titles {
  border-bottom: solid 1px var(--bw-fade-5);
}

.testmonial__Quote {
  transform: translateY(-50%);
  background-color: var(--bw-fade-2);
}

.WB_HomePage_Testmonial .slick-dots button {
  width: 12px !important;
  height: 12px !important;
}

.WB_HomePage_Testmonial li.slick-active button {
  width: 1rem !important;
  height: 1rem !important;
}

@media (min-width: 992px) {
  .home__Testemonial_Info {
    padding-right: 2rem !important;
  }

  .WB_HomePage_Testmonial {
    padding-right: 0;
  }

  .WB_HomePage_Testmonial .image__Item::before {
    content: "";
    min-width: 2rem;
    height: 100%;
    display: block;
  }

  .WB_HomePage_Testmonial .home__Testemonial_Img {
    width: calc(100% - 2rem);
  }

  .append__HomeTestmonial_Dots {
    margin-right: 2rem;
  }
}

@media (max-width: 991px) {
  .WB_HomePage_Testmonial {
    padding: 1rem;
  }

  .WB_HomePage_Testmonial .home__Testemonial_Image .slick-dots {
    margin-bottom: 1rem;
  }
}

/* !---------------------- Home Testemonial slider end --------------------- */

/* *---------------------------- Contact US Start ---------------------------- */

.contact__Info_Wrapper {
  border-radius: var(--border-radius);
  background-color: var(--bw-fade-2);
  position: relative;
  z-index: 2;
}

.contact__Image_Column img {
  border-radius: var(--border-radius-sm);
  max-width: unset;
}

.contact__Info_Item {
  display: flex;
}

.contact__Divider {
  border-color: var(--bw-fade-4);
}

.contact__Bottom {
  background: url(/Portals/0/Images/contactLocationBak.webp) no-repeat center;
  background-size: cover;
  height: 450px;
  display: block;
  border-radius: 0.5rem;
}

/* ?------------------------------- responsive ------------------------------- */
@media (min-width: 992px) {
  .contact__Info_Wrapper {
    margin-left: -50px;
    padding: var(--title-space) 50px !important;
  }

  .contact__Image_Column img {
    width: calc(100% + 50px);
  }
}

@media (max-width: 991px) {
  .contact__Info_Wrapper {
    padding: 1rem !important;
    margin-bottom: -2rem;
  }

  .contact__Image_Column img,
  .contact__Bottom {
    width: calc(100% + 30px) !important;
    transform: translate(+15px);
  }
}

/* !---------------------------- Contact US End ---------------------------- */

/* -------------------------------------------------------------------------- */
/*                                  About Us                                  */
/* -------------------------------------------------------------------------- */

.about_Image {
  border-radius: var(--border-radius-sm);
}

.about__Beman_BlackSpace {
  background: var(--mc1);
  position: relative;
  padding: 40px;
  border-radius: var(--border-radius-sm);
}

.about__Beman_BlackSpace::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../Images/footerPattern.svg) no-repeat;
  background-position: 60% 80%;
  background-size: 250%;
  opacity: 0.8;
}

/* ?------------------------------- responsive ------------------------------- */

@media (max-width: 991px) {
  .about__Beman_BlackSpace {
    padding: 40px 1rem;
  }
}

/* *----------------------- about service slider start ----------------------- */

.service__pages_Group {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  margin-inline: 0.75rem;
}

.about_servicePages_Slider {
  margin-inline: -0.75rem;
}

/* !----------------------- about service slider end ----------------------- */

/* -------------------------------------------------------------------------- */
/*                              HOME PRODUCT LIST                             */
/* -------------------------------------------------------------------------- */
.ProductList.homeLatest {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ProductList.homeLatest .ListCell {
  flex: 1;
}

.home_Portfolio_Footer > a {
  cursor: pointer;
  position: relative;
  font-size: var(--fz-lg-res);
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: color;
  margin-inline: auto;
  display: inline-block;
}

.home_Portfolio_Footer > a:focus:after,
.home_Portfolio_Footer > a:hover:after {
  width: 100%;
  left: 0%;
}

.home_Portfolio_Footer > a:after {
  content: "";
  pointer-events: none;
  bottom: -2px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--tc1);
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

@media (max-width: 991px) {
  .ProductList.homeLatest .ListCell {
    min-width: 236px;
  }

  .ProductList.homeLatest {
    overflow-x: scroll;
    margin-inline: -15px;
    padding-inline: 15px;
  }
}

/* grid service */
.grid_Services {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  /* 6 columns for desktop */
  gap: 10px;
  justify-content: center;
  justify-items: stretch;
}

.about_servicePages_Slider .wbSlides__Item,
.grid_Services .wbSlides__Item {
  border: 1px solid #dbdbdb;
  text-align: center;
  padding-inline: 1rem;
  padding-block: 2rem;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: var(--fz-sm);
  font-weight: var(--fw-600);
  color: var(--black);
  transition: var(--transition);
  height: min(200px, 25vh) !important;
  border-radius: var(--border-radius-sm);
  aspect-ratio: 1/1;
}

.grid_Services .wbSlides__Item span {
  height: 40px;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .grid_Services .wbSlides__Item {
    height: auto !important;
  }

  .grid_Services .wbSlides__Item span {
    height: auto;
  }
}

.grid_Services .wbSlides__Item.empty:nth-child(1) {
  grid-area: 1/1/2/1;
}

.grid_Services .wbSlides__Item.empty:nth-child(2) {
  grid-area: 1/7/1/8;
}

.grid_Services .wbSlides__Item.empty:nth-child(3) {
  grid-area: 3/1/3/1;
}

.grid_Services .wbSlides__Item.empty:nth-child(4) {
  grid-area: 3/7/3/8;
}

.grid_Services .wbSlides__Item.empty {
  border: none;
}

@media (min-width: 992px) {
  /* testing services list */
  @property --start {
    syntax: "<number>";
    inherits: true;
    initial-value: 0;
  }

  .grid_Services {
    --spread: 60;
    margin-bottom: 2rem;
  }

  /* :is(.home__ServiceList_Wrapper, .about__ServiceList_Wrapper) .wbSlides__Item {
        border: none !important;
        --active: 0.15;
        --start: 0;
        transition: none !important;
        position: relative;
    }

    :is(.home__ServiceList_Wrapper, .about__ServiceList_Wrapper) .wbSlides__Item:not(.empty):hover {
        border-color: none !important;
        background-color: #fff !important;
    }

    :is(.home__ServiceList_Wrapper, .about__ServiceList_Wrapper) .wbSlides__Item:not(.empty)::before {
        position: absolute;
        inset: 0;
        border: 2px solid transparent;
        content: "";
        border-radius: var(--border-radius-sm);
        pointer-events: none;
        background: #dbdbdb;
        background-attachment: fixed;
        -webkit-mask: linear-gradient(#0000, #0000), conic-gradient(hsl(0 0% 86% / 0.3), hsl(0 0% 86% / 0.3));
        mask: linear-gradient(#0000, #0000), conic-gradient(hsl(0 0% 86% / 0.3), hsl(0 0% 86% / 0.3));
        mask-clip: padding-box, border-box;
        mask-composite: intersect;
        opacity: 1;
        transition: opacity 1s;
    }

    .wbSlides__Item:not(.empty)::after {
        --bg-size: 100%;
        content: "";
        pointer-events: none;
        position: absolute;
        background: conic-gradient(
            from 180deg at 50% 70%,
            hsla(0, 0%, 98%, 1) 0deg,
            #000 72.0000010728836deg,
            #0f0f0f 144.0000021457672deg,
            #222222 216.00000858306885deg,
            #323232 288.0000042915344deg,
            hsla(0, 0%, 98%, 1) 1turn
        );

        background-attachment: fixed;
        border-radius: var(--border-radius-sm);
        opacity: var(--active, 0);
        transition: opacity 1s;
        --alpha: 0;
        inset: 0;
        border: 2px solid transparent;
        -webkit-mask: linear-gradient(#0000, #0000),
            conic-gradient(
                from calc(((var(--start) + (var(--spread) * 0.25)) - (var(--spread) * 0.5)) * 1deg),
                #0000 0deg,
                #fff,
                #0000 calc(var(--spread) * 0.5deg)
            );
        mask: linear-gradient(#0000, #0000),
            conic-gradient(
                from calc(((var(--start) + (var(--spread) * 0.25)) - (var(--spread) * 0.5)) * 1deg),
                #0000 0deg,
                #fff,
                #0000 calc(var(--spread) * 0.5deg)
            );
        filter: brightness(1.5);
        mask-clip: padding-box, border-box;
        mask-composite: intersect;
    } */
}

@media (max-width: 991px) {
  .grid_Services {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid_Services .wbSlides__Item.empty {
    display: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/*                             HOME BRAND CAROUSEL                            */
/* -------------------------------------------------------------------------- */
.brand_Carousel {
  overflow: hidden;
  padding-block: 2rem;
  border: 1px solid var(--bw-fade-3);
  position: relative;
  border-radius: var(--border-radius-sm);
}

.brand_Carousel:is(::before, ::after) {
  content: "";
  z-index: 1;
  width: 1.5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, var(--white) 75%);
}

.brand_Carousel::after {
  right: 0;
}

.brand_Carousel::before {
  left: 0;
  transform: rotate(180deg);
}

.brand_Carousel__Wrapper {
  width: max-content;
  display: flex;
  gap: 2.5rem;
  animation: brand-scroll 60s var(--animation-direction, forwards) linear
    infinite;
}

.brand_Carousel__Wrapper.bottom {
  --animation-direction: reverse;
  margin-top: 2.5rem;
}

.brand_Carousel .brands {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;
  object-position: center;
  width: 170px;
  height: 170px;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transition: var(--transition);
}

.brand_Carousel .brands:hover {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.brand_Carousel .brands img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .brand_Carousel .brands {
    width: 120px;
    height: 120px;
  }

  .brand_Carousel {
    border: none;
  }

  #brand-carousel {
    padding: 0;
  }

  .brand_Carousel__Wrapper {
    gap: 0.75rem;
    animation: brand-scroll-mobile 40s var(--animation-direction, forwards)
      linear infinite;
  }

  .brand_Carousel .brands {
    padding: 1rem;
  }
}

@keyframes brand-scroll {
  to {
    transform: translate(calc(50% + 1.25rem));
  }
}

@keyframes brand-scroll-mobile {
  to {
    transform: translate(calc(50% + 0.375rem));
  }
}

/* -------------------------------------------------------------------------- */
/*                                WORK PROCESS                                */
/* -------------------------------------------------------------------------- */
.work_Process_Wrapper {
  gap: 1.5rem;
  margin-inline: auto;
  margin-top: 2rem;
}

.work_Process > p {
  font-size: 4rem;
  color: #cdcdcd;
  text-align: center;
  transform: translateY(0.4rem);
  transition: var(--transition);
}

.work_Process {
  flex: 1;
}

.work_Process_Card {
  position: relative;
  text-align: center;
  z-index: 1;
  font-size: var(--fz-md);
  color: var(--mc1);
  padding-block: 1rem;
  padding-inline: 0.5rem;
  height: 110px;
  font-weight: var(--fw-600);
  border: 1px solid var(--bw-fade-3);
  background-color: var(--white);
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
}

.work_Process:hover > p {
  color: var(--mc1);
}

.work_Process:hover .work_Process_Card {
  border-color: var(--mc1);
}

@media (max-width: 991px) {
  .work_Process_Wrapper {
    margin-top: 0.5rem;
  }

  .work_Process_Wrapper .slick-track {
    padding-top: 1rem;
  }

  .work_Process > p {
    font-size: 3.125rem;
  }

  .work_Process {
    margin-inline: 1rem;
  }

  .work_Process_Wrapper .slick-list {
    margin-inline: -1rem;
  }
}

/* -------------------------------------------------------------------------- */
/*                                BEMAN OUTLOOK                               */
/* -------------------------------------------------------------------------- */
.outlook_Image {
  flex: 1;
}

.outlook_Image > img {
  border-radius: var(--border-radius-sm);
}

.outlook_Desc {
  flex: 1;
}

.outlook_Desc > p {
  line-height: 32px;
  font-size: var(--fz-md);
}

.outlook .second-row {
  margin-top: var(--main-space);
}

@media (max-width: 991px) {
  .outlook .second-row {
    margin-top: var(--title-space);
  }

  .outlook {
    text-align: center;
  }

  .outlook_Desc {
    padding-inline: 0 !important;
  }
}

/* *------------------------------- hiring page start ------------------------------ */

.WB_HiringJob_Links {
  display: grid;
  grid-auto-flow: dense;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
}

.hiring__Card_Image {
  width: 100%;
}

.hiring__Job_Card {
  position: relative;
}

.hiring__Job_Title {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: fit-content;
}

/* ?------------------------------- responsive ------------------------------- */

@media (max-width: 991px) {
  .hiring__Job_Card {
    --fz-md: 16px;
    --fz-sm: 14px;
  }
}

/* !------------------------------- hiring page end ------------------------------ */

/* *----------------------------- FAQ page start ----------------------------- */

.faqPage__MainEffect .services_Faq__Wrapper {
  height: fit-content;
}

.threePane .DnnModule:has(.side__BlogSticky_Wrapper) {
  position: sticky;
  top: 7rem;
  transition: var(--transition);
}

.page__Scrolled_Down .threePane .DnnModule:has(.side__BlogSticky_Wrapper) {
  top: 1rem;
}

.side__Menu_Header {
  border-bottom: solid 1px var(--mc1);
  border-bottom: solid 1px var(--mc1);
  position: sticky;
  top: 0;
  background-color: var(--bw-fade-2);
  margin-inline: 1.5rem;
  padding-top: 1rem;
}

.side__Menu_Wrapper {
  background-color: var(--bw-fade-2);
  border-radius: var(--border-radius-sm);
  overflow-y: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.WbSideMenu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: var(--fz-md);
  font-weight: var(--fw-600);
  padding: 1.5rem;
  max-height: 420px;
  overflow-y: scroll;
}

.WbSideMenu::-webkit-scrollbar-track {
  background: transparent;
}

.WbSideMenu::-webkit-scrollbar {
  width: 4px;
}

.WbSideMenu::-webkit-scrollbar-thumb {
  background: #000;
}

.WbSideMenu::-webkit-scrollbar {
  width: 4px;
}

.SideMenu_Link > img {
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
}

.SideMenu_Item:hover {
  font-weight: var(--fw-800);
}

.sideMenu__Contact_Card {
  padding: 1rem 2rem;
  text-align: center;
  position: relative;
  background-color: var(--mc1);
  z-index: 2;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.sideMenu__Contact_Card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
  top: 0;
  left: 0;
  background: url("../Images/footerPattern.svg") no-repeat;
  background-size: 200%;
  background-position: 10% 80%;
  mask: linear-gradient(
    69deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.1) 49%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask: linear-gradient(
    69deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.1) 49%,
    rgba(0, 0, 0, 1) 100%
  );
}

/* !----------------------------- FAQ page end ----------------------------- */

/* *------------------------------- portfolio list Start ------------------------------- */

.home__Sample_Wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--title-space) 1rem;
}

.home__Sample_Item {
  position: relative;
  width: 100%;
  perspective: 700px;
  --transition: 0.5s;
}

.item__Title_Card {
  width: 100%;
  height: fit-content;
  aspect-ratio: 3/2;
  position: relative;
  transform-origin: right;
  transform: rotateY(0);
  transition: var(--transition);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.title__Card_Image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__Sample_Item:hover .item__Title_Card {
  transform: rotateY(-15deg);
}

.title__Card_Wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  min-width: 100%;
  width: fit-content;
  height: fit-content;
  color: var(--white);
  padding: var(--title-space);
}

.title__Image_Wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.title__Image_Wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      297deg,
      rgba(0, 0, 0, 0.5) 37.46%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    rgba(211, 211, 211, 0) -102.611px 0px / 127.335% 100% no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.title__Card_Wrap hr {
  width: 50%;
}

.item__Screen_Card {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 35%;
  transition: var(--transition);
  transform-origin: left;
  transform: rotateY(0);
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.2));
}

.home__Sample_Item:hover .item__Screen_Card {
  opacity: 1;
  visibility: visible;
  transform: rotateY(20deg);
}

@media (max-width: 991px) {
  .home__Sample_Wrapper {
    grid-template-columns: 1fr;
  }
}

/* !------------------------------- portfolio list End --------------------------------- */

/* branding page */
.Services_Branding_Img {
  margin-inline: calc(50% - 50vw);
}

.Services_Branding_Img img {
  width: 100%;
}

/* -------------------------------------------------------------------------- */
/*                                PERSONAL PAGE                               */
/* -------------------------------------------------------------------------- */

/* ------------------------------ Personal Bio ------------------------------ */
.personal__Bio_Wrapper {
  position: relative;
  margin-top: -80px;
}

.personal__Info_eng {
  background: #484848;
  position: absolute;
  top: 91px;
  width: 391px;
  color: var(--bw-fade-1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 1rem;
  z-index: -1;
  text-align: left;
}

.personal__Bio_Wrapper img {
  margin-right: auto;
  display: block;
}

.personal__Info_Wrapper {
  position: relative;
  color: var(--bw-fade-1);
  --icon-color: var(--bw-fade-1);
  --icon: 32px;
}

.personal__Info_Pic {
  position: absolute;
  bottom: 0;
  right: 212px;
  z-index: 1;
}

.personal__Info_Pic img {
  width: 325px;
  aspect-ratio: 1/2.1;
  object-fit: cover;
  object-position: center;
}

.personal__Info {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-inline: 60px;
  min-height: 165px;
  background-color: var(--bw-fade-7);
}

.personal__Info_Name {
  margin-right: 460px;
  color: var(--bw-fade-1);
}

.personal__Info_Name h3,
.personal__Info_eng h3 {
  font-size: 2rem;
  font-weight: var(--fw-700);
  margin-bottom: 0.5rem;
  color: var(--bw-fade-1);
}

.personal__Info_Name p,
.personal__Info_eng p {
  font-size: 1.5rem;
  font-weight: var(--fw-400);
}

.personal__Info_eng {
  z-index: 0;
}

.personal__Info_eng > div {
  margin-left: 1rem;
}

.personal__Desc p {
  font-size: 1.25rem;
  font-weight: var(--fw-400);
  line-height: 32px;
  color: #0b0b0b;
  text-align: justify;
}

.personal__Info_Socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.personal__Info_Socials a:hover {
  opacity: 0.7;
}

@media (max-width: 991px) {
  .personal__Info_eng h3 {
    margin-bottom: 0;
  }

  .personal__Bio_Pattern {
    max-width: 100%;
    margin-right: auto;
    display: block;
    height: 320px;
    object-fit: cover;
  }

  .personal__Info_eng {
    width: 200px;
    left: 0;
    padding-block: 0.25rem;
    justify-content: end;
    z-index: 0;
  }

  .personal__Info_Socials {
    position: absolute;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 3;
    right: 1rem;
    --icon: 18px;
  }

  .personal__Info {
    min-height: 70px;
    padding-inline: 1rem;
    padding-block: 0.25rem;
  }

  .personal__Info_Name {
    margin-right: 162px;
  }

  .personal__Info_Pic {
    right: 1rem;
    z-index: 1;
  }

  .personal__Info_Pic img {
    width: 175px;
  }

  .personal__Desc p {
    font-size: 0.875rem;
  }

  .personal__Info_Name h3,
  .personal__Info_eng h3 {
    font-size: 0.875rem;
  }

  .personal__Info_Name p,
  .personal__Info_eng p {
    font-size: 0.875rem;
  }
}

.personal__View_Sm {
  max-width: 872px;
}

/* personal resume */
.personal__Img_Gallery_Wrapper h3,
.personal__Resume_Wrapper h3 {
  color: var(--mc1);
  text-align: center;
  font-size: 1.5rem;
  font-weight: var(--fw-800);
  margin-bottom: 1.5rem;
}

.personal__Resumes_Card {
  display: flex;
  align-items: stretch;
  margin-bottom: 1rem;
  border: 1px solid var(--mc1);
  border-radius: var(--border-radius);
  overflow: clip;
  height: 7.8125rem;
  --icon: 24px;
  --icon-color: var(--bw-fade-1);
}

.resume_Card_Header {
  background-color: var(--mc1);
  color: var(--bw-fade-1);
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-block: 1.625rem;
}

.resume_Card_Header p {
  font-weight: var(--fw-600);
  font-size: 20px;
}

.resume_Card_Header .resume_Card_Header_Title {
  font-size: 2rem;
}

.resume_Card_Desc {
  padding-block: 1rem;
  padding-inline: 1.5rem;
  font-size: 1rem;
  line-height: 28px;
  font-weight: var(--fw-400);
  display: grid;
  place-items: center;
  width: 70%;
}

@media (max-width: 991px) {
  .resume_Card_Header img {
    width: 24px;
    aspect-ratio: 1/1;
  }

  .personal__Resumes_Card {
    flex-direction: column;
    height: auto;
    --icon: 10px;
  }

  .resume_Card_Header {
    flex-direction: row;
  }

  .resume_Card_Desc,
  .resume_Card_Header {
    width: 100%;
  }

  .resume_Card_Header.resume_Card_Header p {
    font-size: 0.875rem;
  }
}

/* do not copy styles */
.personal__Resume_Wrapper,
.personal__Desc {
  margin-bottom: 4rem;
}

/* -------------------------- personal gallery grid ------------------------- */
.personal__Img_Gallery_Wrapper h3 {
  color: var(--mc1);
  text-align: center;
  font-size: 1.5rem;
  font-weight: var(--fw-800);
  margin-bottom: 1.5rem;
}

.personal__Img_Gallery {
  line-height: 0;
  column-count: 3;
  column-gap: 1rem;
  row-gap: 1rem;
}

.personal__Img_Gallery img {
  width: 100% !important;
  height: auto !important;
  margin-bottom: 1rem;
  border-radius: 1rem;
}

.personal__Img_Gallery img.video {
  margin-bottom: 0;
}

.personal__Img_Gallery .video_Wrapper {
  margin-bottom: 1rem;
  position: relative;
  border-radius: 1rem;
  overflow: clip;
}

.personal__Img_Gallery .video_Wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: 0.5;
}

.personal__Img_Gallery img.playBtn {
  position: absolute;
  width: 54px !important;
  aspect-ratio: 1/1;
  right: 50%;
  translate: 50% 50%;
  margin-bottom: 0 !important;
  bottom: 50%;
}

@media (max-width: 991px) {
  .personal__Img_Gallery {
    column-count: 2;
  }

  .personal__Img_Gallery_Wrapper h3 {
    font-size: 1rem;
  }
}

/* brand name Intro */
.brandname_Intro {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.brandname_Intro p {
  color: #616161;
  font-size: var(--fz-md);
  font-weight: var(--fw-600);
  line-height: 32px;
  /* 200% */
}

.brandname_Intro > div {
  flex: 1;
}

.brandname_Intro__Video {
  border-radius: var(--border-radius);
  overflow: clip;
  position: relative;
  display: block;
}

.brandname_Intro__Video img {
  filter: grayscale(1);
}

.brandname_Intro__Video .WbIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  --icon: 64px;
  --icon-color: #fff;
}

@media (max-width: 991px) {
  .brandname_Intro {
    flex-direction: column;
  }
}

/* fancy box */
.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: none !important;
}

.fancybox__html5video,
.fancybox__iframe {
  border-radius: 1rem;
}

.fancybox__track {
  position: relative;
}

.fancybox__track::after {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 25vw;
  height: 80%;
  display: inline-flex;
  vertical-align: middle;
  background: linear-gradient(90deg, #fff 0%, #ffffff3b 85%);
  mask: url("/Portals/0/images/fancy-pattern-left.svg") no-repeat center;
  mask-size: cover;
  -webkit-mask: url("/Portals/0/images/fancy-pattern-left.svg") no-repeat center;
  -webkit-mask-size: cover;
  opacity: 0.75;
}

.fancybox__track::before {
  content: "";
  right: 0;
  bottom: 0;
  position: absolute;
  width: 25vw;
  height: 80%;
  display: inline-flex;
  vertical-align: middle;
  background: linear-gradient(90deg, #fff 0%, #ffffff4d 85%);
  mask: url("/Portals/0/images/fancy-pattern-left.svg") no-repeat center;
  mask-size: cover;
  -webkit-mask: url("/Portals/0/images/fancy-pattern-left.svg") no-repeat center;
  -webkit-mask-size: cover;
  opacity: 0.7;
  scale: -1;
}

/* -------------------------------------------------------------------------- */
/*                            AR-AE SPECIAL STYLES                            */
/* -------------------------------------------------------------------------- */
html[lang="ar-AE"] .grid_Services .wbSlides__Item.empty:nth-child(3) {
  grid-area: 2/1/3/1;
}

html[lang="ar-AE"] .grid_Services .wbSlides__Item.empty:nth-child(4) {
  grid-area: 2/7/3/8;
}

html[lang="ar-AE"] .video__Section_Counter .counter__Cell {
  justify-content: flex-start;
  padding-inline: clamp(1rem, 20vw, 6rem);
}

.arabic-advice-button {
  max-width: 36px;
}

.arabic-starthere-button {
  min-width: 120px;
}

/* -------------------------------------------------------------------------- */
/*                                COURSE FORM                                 */
/* -------------------------------------------------------------------------- */
.tabid-230 #dnn_ctr1090_ContentPane {
  padding: 16px;
}

.course__Form {
  border: 2px solid #712893;
  border-radius: 10px;
  padding: 56px 43px;
  width: 93%;
  margin-bottom: 30px;
}

.course__Form .ttlInfo h3 {
  font-weight: 700 !important;
  font-size: 24px;
}

.ttlInfo {
  display: inline-block;
  background: white;
  transform: translateY(-75px);
  padding: 0 10px;
}

.row.course__Info {
  transform: translateY(-60px);
  display: flex;
  padding-bottom: 4rem;
}

.row.course__Info .col-md-4 {
  position: absolute;
  left: -15%;
}

.course__Info__Goals {
  display: flex;
  justify-content: flex-start;
  padding-left: 20px;
}

.course__Info_ttl {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.course__Info_ttl h4 {
  font-weight: 700 !important;
  padding-bottom: 0.5rem;
}

.course__Info__Goals .course__Goal {
  margin-left: 31px;
  color: #8a8a8a;
  font-size: 16px;
}

.course__Info__Goals .course__Goal:last-child {
  margin: 0;
}

.course__Info__Goals .course__Goal p {
  position: relative;
  padding-right: 10px;
  font-size: 14px !important;
  margin-bottom: 10px;
}

.course__Info__Goals .course__Goal p:before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  background: #712893;
  top: 10px;
  right: 0;
  border-radius: 50%;
}

.course__Form .LiveForm.Default .thank-you p {
  font-size: 14px !important;
}

.Beman__Logos {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.Beman__Logos > div {
  margin: 0 16px;
}

.course__Form .LiveForm.Default .bSubmit:hover {
  box-shadow: none !important;
  background-color: #712893 !important;
}

.course__Info__Goals .course__Goal p span {
  color: #712893;
}

.course__Banner {
  background: url(/Portals/_default/skins/armcade970617/Images/2.jpg) no-repeat
    top right;
  background: radial-gradient(#eaeaec 50%, #dacde3);
  display: flex;
  flex-direction: column;
  width: 460px;
  padding: 30px 32px 0;
  border-radius: 10px;
}

.course__Banner.WorkShop-ba5 {
  padding: 0;
  overflow: hidden;
}

.course__Gallery__Content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .course__Gallery__Content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .course__Gallery__Content {
    grid-template-columns: repeat(1, 1fr);
  }
}

.logoBeman {
  text-align: left;
  padding-bottom: 50px;
}

.course__Banner__ttl {
  font-size: 25px;
  font-weight: bold !important;
  line-height: 36px;
  margin: 1rem 0;
  text-align: center;
}

.course__Banner__Img img {
  text-align: center;
  width: 396px;
  mix-blend-mode: darken;
  max-width: 100%;
}

.course__Banner__Time {
  padding-top: 66px;
  display: flex;
  justify-content: space-evenly;
  font-weight: 700 !important;
}

.course__Banner__Date p,
.course__Banner__Date__Wrapper span {
  font-weight: bold;
  font-weight: 700 !important;
}

.course__Banner__Date__Wrapper {
  display: flex;
}

.course__Banner__Date__Wrapper > span:last-child {
  display: flex;
  flex-direction: column;
  margin-right: 4px;
}

.beman__Social {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-top: 50px;
  padding-bottom: 27px;
}

.beman__Social a {
  color: black;
}

.course__Banner__Date.first {
  text-align: left;
}

.border {
  width: 1px;
  background: #712893;
  margin: 0 8px;
}

span.WbIcon.contactUs_Icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  display: inline-block;
  background: var(--mc2);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: cover;
  -webkit-mask-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.beman__Social > div {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

li#Field_1090_11 {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-100%, 93%);
}

.course__Form .LiveForm.Default .Field label {
  transform: translate(-18px, 14px);
  background: white;
  width: auto !important;
  display: inline-block;
  padding: 0 8px !important;
  color: #8a8a8a;
  font-weight: 700 !important;
  font-size: 14px;
}

.course__Form .LiveForm.Default input,
.course__Form .LiveForm.Default select,
.course__Form .LiveForm.Default textarea {
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  padding: 12px 24px;
  font-family: "IRANSans" !important;
  color: #1f1f1f;
  font-weight: 700 !important;
  font-size: 14px;
}

.course__Form .LiveForm.Default textarea {
  height: 205px;
  resize: none;
}

.course__Form .LiveForm.Default input,
.course__Form .LiveForm.Default select:not([size]) {
  height: 48px;
}

.course__Form .LiveForm.Default ul.page-break-section .Field {
  padding: 5px 0 0 15px;
}

.course__Form .LiveForm.Default ul.page-break-section,
.course__Form .LiveForm.Default .thank-you {
  background: none !important;
  box-shadow: none;
  padding: 0;
  border-top: 2px dashed #712893;
  padding-top: 27px;
}

.course__Form li#Field_1090_12 {
  padding-left: 14px;
  padding-top: 22px;
}

.course__Form .LiveForm.Default .bSubmit {
  background: #712893 !important;
  border-radius: 4px;
  color: #ffffff !important;
  border: none !important;
  padding: 8px 29px !important;
}

.course__Form .LiveForm.Default .Field.Required input {
  border-right: 1px solid #dbdbdb !important;
  border-left: 1px solid #dbdbdb !important;
  padding: 12px 24px !important;
}

.course__Form .LiveForm.Default input.error,
.course__Form .LiveForm.Default textarea.error,
.course__Form .LiveForm.Default select.error {
  border: 1px solid #dbdbdb;
  border-radius: 4px;
}

.course__Form .LiveForm.Default .Field label.error {
  font-size: 14px;
  line-height: 22px;
  padding-right: 20px !important;
  color: black;
}

.course__Form .LiveForm.Default .Field label.error:before {
  content: "";
  width: 28px;
  height: 26px;
  display: inline-block;
  position: absolute;
  right: -20px;
  background: url(/Portals/_default/skins/armcade970617/Images/error.svg)
    no-repeat center;
  top: -3px;
}

.beman__Social__tel a,
.beman__Social__insta a {
  position: relative;
  padding: 15px;
  padding-left: 25px;
  font-size: 20px;
}

.beman__Social__tel a:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  left: 0;
  background: url(/Portals/_default/skins/armcade970617/Images/tel.svg)
    no-repeat center;
  top: 18px;
}

.beman__Social__insta a:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  left: 0;
  background: url(/Portals/_default/skins/armcade970617/Images/insta.svg)
    no-repeat center;
  top: 18px;
}

.beman__Social__tel a:hover,
.beman__Social__insta a:hover {
  color: #712893;
  transition: all 0.5s ease;
}

.course__Gallery {
  margin: 32px 0 64px;
}

.course__Gallery__Card {
  padding: 12px !important;
  position: relative;
  float: right;
}

.course__Gallery__Card a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 0;
}

.course__Gallery__Card img {
  max-width: 100%;
}

.course__Gallery__Card a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #712893b3 url(./Images/search.svg) center no-repeat;
  background-size: 32px;
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 0;
}

.course__Gallery__Card a:hover::before {
  opacity: 1;
}

#LiveForm1090,
#LiveForm1111 {
  position: relative;
}

#LiveForm1090 .formOverlay {
  position: absolute;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

#LiveForm1090 .formOverlay h4 {
  font-size: 24px;
  font-weight: bold;
  margin: 8px 0;
  line-height: normal;
}

#LiveForm1090 .formOverlay p {
  text-decoration: underline !important;
  color: #6f2893;
  margin-bottom: 16px;
}

.goToCourseGallery {
  cursor: pointer;
}

.second__Course .logoBeman {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-bottom: 0;
}

.second__Course .logoBeman__txt {
  font-size: 16px;
  font-weight: 900 !important;
  padding-bottom: 10px;
  color: #752c97;
  text-align: right;
}

.Banner__txt p {
  font-size: 15px !important;
  font-weight: 900 !important;
  padding-bottom: 0;
  color: #752c97;
  text-align: right;
}

.course__Form .LiveForm.Default ul.page-break-section {
  display: flex;
  flex-wrap: wrap;
}

.course__Form
  .LiveForm.Default
  ul.page-break-section
  .Field.Textbox:nth-child(1),
.course__Form
  .LiveForm.Default
  ul.page-break-section
  .Field.Textbox:nth-child(2) {
  width: 50% !important;
}

.course__Form
  .LiveForm.Default
  ul.page-break-section
  .Field.Textbox:nth-child(3),
.course__Form
  .LiveForm.Default
  ul.page-break-section
  .Field.Textbox:nth-child(4),
.course__Form
  .LiveForm.Default
  ul.page-break-section
  .Field.Textbox:nth-child(5) {
  width: 33.33% !important;
}

.course__Form .LiveForm.Default ul.page-break-section .Field.Textarea,
.course__Form .LiveForm.Default ul.page-break-section .Field.Textarea textarea,
.course__Form
  .LiveForm.Default
  ul.page-break-section
  .Field.Textarea
  .Field-Container-Wide {
  width: 100% !important;
}

.course__Form
  .LiveForm.Default
  ul.page-break-section
  .Field.Textbox:nth-child(2),
.course__Form
  .LiveForm.Default
  ul.page-break-section
  .Field.Textbox:nth-child(5),
.course__Form .LiveForm.Default ul.page-break-section .Field.Textarea,
.course__Form .LiveForm.Default ul.page-break-section .Field.Submitbutton {
  padding-left: 0;
}

.course__Form .LiveForm.Default .thank-you > h2 {
  padding-top: 1rem;
}

.workshopbanner_Descktop {
  border-radius: 1rem;
  overflow: hidden;
}

.workshopbanner_Mobile_Wrapper {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.workshopbanner_Mobile__Shadow {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.workshopbanner_Mobile {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  padding: 2rem 1rem;
  width: 100%;
  max-width: 440px;
}

.workshopbanner_Mobile a {
  display: block;
}

.workshopbanner_Mobile__Close {
  position: absolute;
  top: 3rem;
  right: 2rem;
}

/* -------------------------------------------------------------------------- */
/*                                  Personal Landing                          */
/* -------------------------------------------------------------------------- */

body:has(.personal_Landing) {
  position: relative;
}

body:has(.personal_Landing)::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 851px;
  height: 734px;
  background: url(/Portals/0/Images/personal-landing-effect.svg) no-repeat
    center;
  background-size: cover;
  z-index: 1;
  opacity: 70%;
}

.personal_Landing {
  margin-top: -5rem;
  position: relative;
  z-index: 2;
}

.personal_Info {
  margin-top: 28rem;
}

.personal_Info h1 {
  font-size: 55px;
  font-weight: var(--fw-700);
  color: var(--black);
  line-height: 85px;
  padding-bottom: 1.25rem !important;
}

.personal_Info p {
  font-size: 40px;
  color: var(--black);
}

.personal_Info img {
  margin-right: auto;
  margin-top: 2.5rem;
}

.personal_Info a {
  --icon: 51px;
  background-color: var(--black);
}

.personal_Info > div {
  width: max-content;
}

.personal_Info__Socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  width: 100% !important;
}

.personal_Info {
  width: max-content;
}

.personal_Info__Socials .btnStyle_Primary {
  padding-inline: 1rem;
  padding-block: 0.5rem;
  --icon: 34px;
}

.personal_Landing__Text {
  margin-top: 5rem;
}

.personal_Landing__Text p,
.personal_Landing__Text h4 {
  text-align: justify;
  line-height: 40px;
  font-size: 22px;
  color: #0b0b0b;
}

.personal_Landing__Text h4 {
  font-weight: var(--fw-700);
  padding: 2rem 0 1.5rem;
}

.personal_Landing__adviceFields {
  margin: 5rem 0 8.5rem;
  padding: 0 3.25rem !important;
}

.personal_Landing__adviceFields__Image {
  width: 100%;
  border: 15px solid #f0f0f0;
  border-radius: 50%;
}

.personal_Landing__adviceFields__Image img {
  width: 100%;
}

.personal_Landing__Resume .col-lg-3,
.personal_Landing__Resume .col-lg-4 {
  display: flex;
  align-items: end;
}

.personal_Landing__adviceFields h4,
.personal_Landing__Resume h4 {
  font-size: 45px;
  color: #0b0b0b;
  padding-bottom: 4.25rem;
}

.personal_Landing__Resume h4 {
  padding-bottom: 0;
}

.personal_Landing__adviceFieldList.startAnimation
  .personal_Landing__adviceField__Progress {
  animation: advicefieldProgress 1s ease forwards;
}

@keyframes advicefieldProgress {
  0% {
    width: 0;
  }

  100% {
    width: var(--progress-bar-width);
  }
}

.personal_Landing__adviceField:not(:last-child) {
  margin-bottom: 3rem;
}

.personal_Landing__adviceField__Info {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.personal_Landing__adviceField__Title {
  font-size: 25px;
  line-height: 39px;
  color: #0b0b0b;
}

.personal_Landing__adviceField__Percent {
  position: absolute;
  top: 50%;
  right: var(--progress-bar-width);
  translate: 100% -50%;
  font-size: 25px;
  color: #cacaca;
  opacity: 0;
  scale: 0;
}

.personal_Landing__adviceFieldList.startAnimation
  .personal_Landing__adviceField__Percent {
  animation: advicefieldProgressPercent 0.3s ease 1s forwards;
}

@keyframes advicefieldProgressPercent {
  0% {
    opacity: 0;
    scale: 0;
  }

  100% {
    opacity: 1;
    scale: 1;
  }
}

.personal_Landing__adviceField__Tape {
  position: relative;
  height: 22px;
  background-color: #cacaca;
  border-radius: 100px;
  margin-top: 1rem;
}

.personal_Landing__adviceField__Progress {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: var(--black);
  border-radius: 100px;
  width: 0;
}

.personal_Landing__Resume .row,
.personal_Landing .row {
  margin: 0 !important;
}

.personal_Landing__Resume__Image {
  filter: grayscale(100%);
}

/* .personal_Landing__Resume .col-lg-4 .personal_Landing__Resume__Image {
    height: 80%;
} */

/* .personal_Landing__Resume .col-lg-4 .personal_Landing__Resume__Image img {
    height: 100%;
    object-fit: cover;
} */

.personal_Landing__ResumeList {
  padding: 3.25rem 0 3rem;
}

.personal_Landing__ResumeBox:not(:last-child) {
  margin-bottom: 2.5rem;
}

.personal_Landing__ResumeBox {
  display: flex;
  height: 137px;
  width: 872px;
  border-radius: 1rem;
  overflow: hidden;
}

.personal_Landing__Resume .col-lg-8 .personal_Landing__ResumeBox {
  width: 800px;
}

.personal_Landing__ResumeBox:nth-child(2) {
  margin-right: 7rem;
}

.personal_Landing__Resume .col-lg-8 .personal_Landing__ResumeBox:nth-child(2) {
  margin-right: 4.5rem;
}

.personal_Landing__ResumeBox__Title {
  width: 220px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  color: var(--white);
  font-size: 20px;
  font-weight: var(--fw-600);
}

.personal_Landing__Resume .col-lg-8 .personal_Landing__ResumeBox__Title {
  width: 200px;
}

.personal_Landing__ResumeBox__Content {
  width: 652px;
  height: 100%;
  background-color: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: justify;
  font-size: 16px;
  line-height: 28px;
  color: var(--black);
  padding: 0 1.5rem;
}

.personal_Landing__Resume .col-lg-8 .personal_Landing__ResumeBox__Content {
  width: 600px;
}

.personal_Landing__ServicesPrice .prices__Card_Price {
  display: none;
}

.personal_Landing__ServicesPrice__Title {
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  background-color: var(--black);
  border-radius: 25px 25px 0px 0px;
  font-size: 30px;
  color: var(--white);
}

.personal_Landing__ServicesPrice__List {
  width: calc(100% - 90px);
  margin: 0 auto;
  position: relative;
  padding: 8rem 3.5rem 8rem;
  background: url(/Portals/0/Images/personal-landing-services.jpg) no-repeat
    center;
  background-size: cover;
  border-radius: 0px 0px 25px 25px;
}

.personal_Landing__ServicesPrice__List::before,
.personal_Landing__ServicesPrice__List::after {
  content: "";
  width: 45px;
  height: 26px;
  background-color: #444444;
  position: absolute;
  left: 100%;
  top: -1px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.personal_Landing__ServicesPrice__List::after {
  left: unset;
  right: 100%;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.personal_Landing__ServicesPrice__List .prices__Card_Wrapper {
  justify-content: center;
}

.personal_Landing__ServicesPrice__List .prices__Card_Desc {
  background-color: var(--white);
}

.personal_Landing__Advice {
  margin-top: 3.5rem;
}

.personal_Landing__Advice:has(.thank-you) .personal_Landing__Advice__Text {
  display: none;
}

.personal_Landing__Advice h2,
.personal_Landing__Advice p {
  text-align: center;
}

.personal_Landing__Advice__Form .LiveForm.Default ul.page-break-section .Field {
  padding: 12px 0;
}

.personal_Landing__Advice__Form .Field input:not([type="submit"]),
.personal_Landing__Advice__Form .nice-select {
  border: 1px solid #bcbaba !important;
  border-radius: 8px !important;
  height: 58px;
  padding: 0.75rem 1rem !important;
  font-size: 16px;
  line-height: 32px;
  color: #8a8a8a;
}

.personal_Landing__Advice__Form .current {
  font-size: 16px;
  line-height: 32px;
  color: #8a8a8a;
}

.personal_Landing__Advice__Form .LiveForm.Default .Field input[type="submit"] {
  border-radius: 8px;
  border: 1px solid var(--black) !important;
  background-color: var(--black);
  font-size: 18px;
  color: var(--white);
  width: 100% !important;
  height: 58px !important;
}

.personal_Landing__Advice__Form
  .LiveForm.Default
  .Field
  input[type="submit"]:hover {
  background-color: var(--white) !important;
  color: var(--black);
}

.personal_Landing__Comments h4 {
  font-size: 30px;
  line-height: 47px;
  color: var(--black);
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 5.5rem;
}

@media (max-width: 991px) {
  .personal_Landing__Resume__Image {
    display: none;
  }

  .personal_Landing__adviceFields h4,
  .personal_Landing__Resume h4 {
    font-size: 25px;
    text-align: center;
  }

  .personal_Landing__ResumeList {
    padding: 1.5rem 0 4rem;
  }

  .personal_Landing__ResumeBox:not(:last-child) {
    margin: 0 0 1rem;
  }

  .personal_Landing__ResumeBox {
    flex-direction: column;
    width: 100% !important;
    height: auto;
  }

  .personal_Landing__ResumeBox__Title {
    width: 100% !important;
    height: 4rem;
    border-radius: 1rem 1rem 0 0;
    font-size: 18px;
  }

  .personal_Landing__ServicesPrice__Title {
    font-size: 20px;
    padding: 1.5rem 0;
  }

  .personal_Landing__Comments h4 {
    font-size: 20px;
    padding: 0 2rem;
  }

  .personal_Landing__ServicesPrice__List {
    padding: 3rem 2rem;
  }

  .personal_Landing__ResumeBox__Content {
    width: 100% !important;
    height: auto;
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
  }

  .personal_Landing__Resume
    .col-lg-8
    .personal_Landing__ResumeBox:nth-child(2) {
    margin-right: 0;
  }

  .personal_Info {
    margin-top: 3rem;
  }

  .personal_Info h1 {
    font-size: 45px;
    padding-bottom: 0 !important;
  }

  .personal_Info p {
    font-size: 20px;
  }

  .personal_Info__Socials {
    margin-top: 2rem;
    margin-right: auto;
  }

  .personal_Landing__Text {
    margin-top: 3rem;
  }

  .personal_Landing__Text p,
  .personal_Landing__Text h4 {
    font-size: 16px;
  }

  .personal_Landing__adviceFields__Image {
    border-color: #efaf39;
  }

  .personal_Landing__adviceFields h4 {
    padding: 4rem 0 3rem;
  }

  .personal_Landing__adviceField__Title {
    font-size: 18px;
  }

  .personal_Landing__adviceField__Percent {
    font-size: 14px;
  }

  .personal_Landing__Text h4 {
    padding: 1.25rem 0 0.5rem;
  }

  .personal_Landing__adviceFields {
    padding: 0 !important;
    margin: 4rem 0;
  }

  .personal_Landing__adviceField:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 575px) {
  .personal_Landing__adviceField__Percent {
    top: 110%;
  }

  .personal_Landing__ServicesPrice__List {
    padding: 2rem 1rem;
  }

  .personal_Landing__ServicesPrice__List {
    width: calc(100% - 50px);
  }

  .personal_Landing__ServicesPrice__List::before,
  .personal_Landing__ServicesPrice__List::after {
    width: 25px;
  }

  body:has(.personal_Landing)::before {
    width: 50%;
    height: 500px;
  }
}

/* ------- Responsive ------ */

@media (min-width: 1600px) {
  .row.course__Info .col-lg-4 {
    left: -15%;
    translate: 0 4rem;
    position: absolute;
  }

  .row.course__Info .col-lg-8 {
    flex: 0 0 82%;
    max-width: 82%;
  }

  .course__Form div#dnn_ctr1090_ModuleContent,
  .course__Form div#dnn_ctr1111_ModuleContent {
    width: 75%;
    margin-top: -31px;
  }

  .course__Form {
    min-height: 900px;
    margin-top: 4rem;
  }

  .course__Form.newVersion .LiveForm .page-break-section {
    width: 80%;
  }

  .row.course__Info {
    padding-bottom: 0;
  }

  .course__Form.newVersion .imgWrapper {
    transform: translate(-50px, 0);
    border-radius: 10px;
    overflow: hidden;
  }

  .course__Form .LiveForm.Default ul.page-break-section {
    width: 82% !important;
  }

  .course__Info .col-md-8 {
    flex: 0 0 82%;
    max-width: 82%;
  }

  .course__Form .LiveForm.Default .thank-you {
    margin-top: 0;
    width: 82%;
  }
}

@media (max-width: 1599px) {
  .course__Form {
    margin-top: 7rem;
    width: 100%;
  }

  .course__Info__Goals {
    flex-direction: column;
  }

  .row.course__Info .col-md-4 {
    position: static;
  }

  .logoBeman {
    padding-bottom: 30px;
  }

  .course__Banner__ttl {
    font-size: 25px;
    line-height: 36px;
    margin: 1rem 0;
  }

  .course__Banner__Time {
    padding-top: 44px;
  }

  .beman__Social {
    padding-top: 28px;
    padding-bottom: 10px;
  }

  .course__Banner,
  .course__Form.newVersion .imgWrapper {
    transform: translate(25px, -100px);
    width: 117%;
    border-radius: 10px;
  }

  .course__Form.newVersion .imgWrapper {
    overflow: hidden;
    margin-top: 3rem;
  }

  .row.course__Info {
    margin-right: 0;
    margin-left: 0;
  }

  .row.course__Info {
    padding-right: 0;
  }

  .course__Form .LiveForm [class*="form-col-"] {
    width: 50% !important;
  }
  li#Field_1111_7 {
    width: 100% !important;
  }

  .course__Form .LiveForm.Default ul.page-break-section,
  .course__Form .LiveForm.Default .thank-you {
    margin-top: -15%;
  }

  li#Field_1090_11 {
    transform: translate(-100%, 85%);
  }

  li#Field_1090_7,
  li#Field_1090_8 {
    width: 25% !important;
  }

  .course__Form li#Field_1090_12 {
    margin-top: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1599x) {
  .row.course__Info .col-md-4 {
    position: static;
    width: 50% !important;
  }
  .course__Banner {
    width: 460px !important;
  }

  .course__Form .LiveForm.Default ul.page-break-section,
  .course__Form .LiveForm.Default .thank-you:not(.course__Form.newVersion) {
    margin-top: -15%;
  }
  li#Field_1090_11 {
    transform: translate(-100%, 87%);
  }
  .course__Form li#Field_1090_12 {
    width: 50% !important;
  }
}

@media (max-width: 991px) {
  .course__Banner {
    transform: translate(0, 0.5rem);
    width: 145%;
    padding: 1rem 0.75rem 0;
  }

  .course__Form
    .LiveForm.Default
    ul.page-break-section
    .Field.Textbox:nth-child(1),
  .course__Form
    .LiveForm.Default
    ul.page-break-section
    .Field.Textbox:nth-child(2),
  .course__Form
    .LiveForm.Default
    ul.page-break-section
    .Field.Textbox:nth-child(3),
  .course__Form
    .LiveForm.Default
    ul.page-break-section
    .Field.Textbox:nth-child(4),
  .course__Form
    .LiveForm.Default
    ul.page-break-section
    .Field.Textbox:nth-child(5),
  .course__Form .LiveForm.Default ul.page-break-section .Field.Submitbutton {
    width: 100% !important;
    padding-left: 0;
  }

  .Beman__Logos {
    margin-bottom: 7rem;
  }

  .course__Form .LiveForm.Default .thank-you > h2 {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .row.course__Info {
    flex-direction: column-reverse;
  }

  .row.course__Info .col-md-4,
  .row.course__Info .col-md-10 {
    width: 100%;
    padding: 0;
  }

  .course__Form .LiveForm.Default ul.page-break-section .Field {
    padding: 0;
  }

  .row.course__Info .col-md-4 {
    display: flex;
    justify-content: center;
  }

  .ttlInfo {
    display: none;
  }

  .course__Banner,
  .course__Form.newVersion .imgWrapper {
    transform: translate(0px, -45px);
    width: 100%;
  }

  .row.course__Info {
    padding-bottom: 0;
  }

  .course__Info__Goals {
    padding: 0;
  }

  .course__Info .col-lg-4 {
    padding: 0;
  }

  .course__Form .LiveForm.Default ul.page-break-section,
  .course__Form .LiveForm.Default .thank-you:not(.course__Form.newVersion) {
    margin-top: -10%;
  }

  .course__Form .LiveForm [class*="form-col-"] {
    width: 100% !important;
  }

  li#Field_1090_7,
  li#Field_1090_8 {
    width: 100% !important;
  }

  li#Field_1090_11 {
    position: static;
    transform: none;
  }
  .course__Form {
    padding: 56px 1rem;
    margin-top: 5rem;
  }

  .row.course__Info .col-lg-8 {
    padding: 0;
  }

  .course__Banner__ttl {
    font-size: 22px;
    line-height: 50px;
  }

  .course__Banner__Img img {
    width: 100%;
  }

  .course__Banner__Date p {
    font-size: 13px !important;
    line-height: 20px !important;
  }
  .beman__Social__tel a,
  .beman__Social__insta a {
    font-size: 13px;
  }
  .beman__Social__tel a,
  .beman__Social__insta a {
    padding-right: 0;
  }
  .course__Form li#Field_1090_12 {
    padding-left: 0;
  }
  .course__Form .LiveForm.Default .Field label {
    font-size: 12px;
  }
  .second__Course .logoBeman {
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 0;
  }
  .second__Course .logoBeman__txt {
    padding-bottom: 0;
    padding-top: 10px;
    text-align: center;
  }
  .second__Course .Banner__txt p {
    text-align: center;
  }

  .DnnModule-1111 .course__Info_ttl h4:first-child {
    display: none;
  }
  .second__Course .logoBeman img {
    width: 120px;
  }

  html[lang="ar-AE"] .video__Section_Counter .counter__Cell {
    justify-content: flex-start;
    padding-inline: clamp(1rem, 20vw, 1rem);
  }
}

@media (max-width: 498px) {
  .row.course__Info .col-md-4,
  .row.course__Info .col-md-10 {
    width: 100%;
  }
}

/* logolounge section */

.logolounge_hero {
  width: 100%;
  height: calc(100vh - 103px);
  position: relative;
  max-height: 800px;
}
.logolounge_hero_video {
  object-fit: cover;
  object-position: top;
}

.logolounge_hero_information_wrapper {
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  top: 0;
  max-width: 1320px;
  justify-self: center;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: start;
  height: 100%;
  width: 100%;
  padding: 0 15px;
}

.logolounge_hero_information {
  color: #e4b565;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  font-size: 32px;
  font-weight: 800;
}
.logolounge_cup_image {
  position: absolute;
  left: 0;
  animation: upanddown 5s infinite;
  scale: 0.9;
  bottom: 50%;
  transform: translate(0, 37%);
  transition: scale 0.2s ease;
}

.logolounge_hero_title {
  background: linear-gradient(90deg, #91714b, #e4b565, #ca994c);
  font-size: 48px;
  font-weight: bold;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: start;
  line-height: 1.5;
}

@keyframes upanddown {
  0% {
    transform: translate(0, 37%);
  }
  50% {
    transform: translate(0, 43%);
  }
  100% {
    transform: translate(0, 37%);
  }
}

@keyframes upanddown_mobile {
  0% {
    transform: translate(0, 8%);
  }
  50% {
    transform: translate(0, 16%);
  }
  100% {
    transform: translate(0, 8%);
  }
}


.logolounge_about_prize {
  height: 95vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  padding: 0 64px;
  gap: 114px;
  max-width: 1320px;
  align-self: center;
  justify-self: center;
  max-height: 800px;
}
.logolounge_about_prize_right {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  justify-content: center;
  gap: 16px;
}
.logolounge_about_prize_right h2 {
  font-size: 24px;
  font-weight: 800;
}
.logolounge_about_prize_right div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  direction: rtl;
}
.logolounge_about_prize_left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-direction: row-reverse;
}
.logolounge_about_prize_left img {
  position: relative;
  top: 0;
}
.logolounge_logo_section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logolounge_logo_section picture {
  width: 100%;
}
.logolounge_logo_section img {
  width: 100%;
}
.logolounge_logo_description {
  height: 300px;
  width: 90%;
  border-radius: 24px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -150px;
  padding: 0 200px;
  text-align: center;
  gap: 16px;
  margin-bottom: 64px;
  max-width: 1320px;
}
.logolounge_logo_description h2 {
  font-size: 24px;
  font-weight: 800;
}
.logolounge_logo_description > p {
  font-size: 16px;
  line-height: 1.5;
}
.logolounge_logo_images_container_second {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 1320px;
  border-radius: 24px;
}
.logolounge_logo_images_container {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 1320px;
  border-radius: 24px;
}
.logolounge_logo_images_container_video {
  border-radius: 24px;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}
.logolounge_logo_images_container {
  background: rgba(0, 30, 27, 1);
}

.logolounge_logo_images_container_second {
  background: rgba(26, 26, 34, 1);
}

.logolounge_logo_images_container div,
.logolounge_logo_images_container_second div {
  position: absolute;
  display: grid;
  column-gap: 16px;
  row-gap: 16px;
  direction: ltr;
}

.argo_12_12 {
  grid-row: 1/2;
  grid-column: 1/2;
}
.argo_13_34 {
  grid-row: 1/3;
  grid-column: 3/4;
}
.argo_14_23 {
  grid-row: 1/4;
  grid-column: 2/3;
}
.argo_24_12 {
  grid-row: 2/5;
  grid-column: 1/2;
}
.argo_35_34 {
  grid-row: 3/5;
  grid-column: 3/4;
}
.argo_45_13 {
  grid-row: 4/5;
  grid-column: 1/3;
}
.pasha_12_12 {
  grid-row: 1/2;
  grid-column: 1/2;
}
.pasha_13_23 {
  grid-row: 1/3;
  grid-column: 2/3;
}
.pasha_13_34 {
  grid-row: 1/3;
  grid-column: 3/4;
}
.pasha_24_12 {
  grid-row: 2/4;
  grid-column: 1/2;
}
.pasha_34_24 {
  grid-row: 3/4;
  grid-column: 2/4;
}

.logolounge_logo_texts_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: justify;
  direction: rtl;
  padding: 64px 0;
  width: 90%;
  gap: 32px;
  line-height: 1.4;
  max-width: 1320px;
}
.logolounge_logo_texts_container p {
  font-size: 16px;
  line-height: 1.5;
}

.logolounge_logo_texts_container span {
  font-size: 18px;
  font-weight: 800;
}

.logolounge_logo_texts_container_right,
.logolounge_logo_texts_container_left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.logolounge_logo_logos_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 32px;
  column-gap: 24px;
  margin: 64px 0;
}
.logolounge_logo_logos_container img {
  width: 643px;
  height: 729px;
  border-radius: 24px;
}

.logolounge_footer_wrapper {
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 64px;
}

.logolounge_footer {
  width: 100%;
  height: 314px;
  background-color: #272727;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  position: relative;
  max-width: 1320px;
}

.logolounge_footer_left {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
  text-align: start;
  padding: 40px;
  justify-content: space-between;
}
.logolounge_footer_left span {
  font-size: 24px;
  font-weight: 700;
}

.logolounge_footer_desc {
  line-height: 1.5;
  font-size: 16px;
}

.logolounge_footer_desc_bold {
  font-size: 18px;
  font-weight: 700;
}

.footer_title {
  font-size: 24px;
}
.logolounge_footer_pattern {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.logolounge_footer_btn {
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  word-spacing: -2px;
}
.logolounge_footer_btn:hover {
  background-color: #e6e6e6;
}
.logolounge_footer_cup {
  position: absolute;
  bottom: -40px;
  left: 140px;
}
.logolounge_footer_pattern {
  height: 314px;
}
.logolounge_sparcle {
  position: absolute;
  top: -76px;
  height: 407px;
  left: 76px;
}

.logolounge_argo_motion_video {
  width: 643px;
    height: 729px;
    border-radius: 24px;
    scale: 0.9;
    margin-top: 5px;
}

.logolounge_argo_motion_video_wrapper {
    border-radius: 24px;
    background: #01423C;
    height: 729px;
}

.logolounge_pasha_motion_video {
    width: 643px;
    height: 729px;
    border-radius: 24px;
    object-fit: cover;
}

@media screen and (min-width : 1800px) {
  .logolounge_cup_image {
    scale: 1.2;
  }
}

@media screen and (max-width: 600px) {
  .logolounge_hero_information {
    position: static;
    align-items: start;
    transform: unset;
    z-index: 2;
  }
  .logolounge_hero_video {
    position: absolute;
  }
  .logolounge_hero_information_wrapper {
    padding: 16px;
    position: relative;
    flex-direction: column;
  }
  .logolounge_about_prize {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 16px;
    position: relative;
    margin-top: 114px;
    gap: 64px;
  }
  .logolounge_hero_title {
    font-size: 32px;
  }
  .logolounge_about_prize_left img {
    width: 157px;
  }
  .logolounge_about_prize_right h2 {
    position: absolute;
    top: -64px;
  }
  .logolounge_logo_logos_container {
    row-gap: 16px;
    margin: 36px 20px 144px;
    column-gap: 8px;
  }
  .logolounge_logo_logos_container:has(.pasha_bg_1) {
    margin: 36px 20px;
  }
  .logolounge_logo_logos_container img {
    width: 100%;
    height: unset;
    object-fit: contain;
  }

  .logolounge_argo_motion_video_wrapper {
    width: 100%;
    height: unset;
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }

  .logolounge_pasha_motion_video, .logolounge_argo_motion_video {
    width: 100%;
    height: unset;
    object-fit: contain;
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }

  .logolounge_logo_images_container,
  .logolounge_logo_images_container_second {
    background: unset;
    height: unset;
    width: 100%;
    margin: 24px 0;
  }
  .logolounge_logo_images_container div,
  .logolounge_logo_images_container_second div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 16px;
    position: relative;
  }
  .logolounge_logo_description {
    height: unset;
    padding: 38px 24px;
    margin: 0 16px;
    margin-top: -100px;
  }
  .logolounge_logo_texts_container_left {
    display: none;
  }
  .argo_14_23 {
    order: 2;
  }
  .argo_13_34,
  .argo_35_34,
  .argo_45_13,
  .pasha_13_23,
  .pasha_13_34 {
    display: none;
  }
  .logolounge_logo_texts_container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: unset;
  }
  .logolounge_footer_right {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .logolounge_footer_wrapper {
    padding: 16px;
    margin-bottom: 64px;
  }
  .logolounge_footer {
    height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 48px;
    gap: 64px;
  }
  .logolounge_footer_cup {
    position: static;
    z-index: 2;
  }
  .logolounge_footer_left {
    padding: 24px;
  }
  .logolounge_sparcle {
    height: unset;
    top: -108px;
    left: 50%;
    transform: translate(-50%);
  }
  .logolounge_hero {
    height: unset;
  }
  .logolounge_footer_pattern {
    display: none;
  }
  .logolounge_cup_image {
    position: relative;
    left: unset;
    bottom: unset;
    scale: 1;
    transform: translate(0, 0);
    animation: upanddown_mobile 5s infinite;
  }
  .pasha_bg_1,
  .argo_bg_1 {
    grid-row: 2/3;
    grid-column: 1/3;
  }
  .pasha_bg_2,
  .argo_bg_2 {
    grid-row: 2/3;
    grid-column: 1/3;
  }
  .pasha_bg_3,
  .argo_bg_3 {
    grid-row: 3/4;
    grid-column: 1/2;
  }
  .pasha_bg_4,
  .argo_bg_4 {
    grid-row: 3/4;
    grid-column: 2/3;
  }
  .logolounge_footer_desc {
    line-height: 2;
  }
  .logolounge_footer_left span,
  .logolounge_footer_desc_bold {
    line-height: 1.5;
  }
  .logolounge_logo_images_container_video {
    display: none;
  }
}


.pasha_banner , .argo_banner {
  max-height: 800px;
  object-fit: cover;
}



/* costumer sound page */


.costumers_sound {
      display: flex
;
    flex-direction: column;
    align-items: center;
}

.services__Desc_showmore:has(.costumers_sound) {
  border: unset !important;
}

.costumers_sound h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.costumers_sound_info_section {
  border: 1px solid #DBDBDB;
    border-radius: 10p x;
    display: flex
;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    width: 100%;
    font-size: 16px;
}

.costumers_sound_info_section span {
    font-weight: 700;
}
.costumers_sound_info_section .more-text {
  font-weight: 400;
}

.costumers_sound_info_section .toggle-btn {
  background: white;
    border: unset;
    font-weight: bold;
}

.costumers_sound_info_section p {
    font-weight: 400;
    line-height: 2;
}

.costumers_voice_section {
      display: grid
;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    gap: 16px;
    padding: 16px;
    margin: 100px;
}

.costumer_info {
    width: 100%;
    padding: 16px;
    padding-bottom: 0;
    display: flex
;
    flex-direction: column;
    justify-content: space-evenly;
}

.costumer_info:hover {
  cursor: pointer;
  box-shadow: 0px 4px 4px 0px #0000001A;
}

.costumer_info_top_section {
  display: flex
;
    align-items: start;
    border-bottom: 1px dashed gray;
    justify-content: space-between;
    padding: 0 32px 16px;
}

.costumer_info_top_section img {
    width: 64px;
}
.costumer_name_section {
    display: flex
;
    flex-direction: column;
    gap: 16px;
}

.costumer_info_bottom_section .custom-player {
      display: flex
;
    align-items: center;
    gap: 10px;
    /* background: #111; */
    padding: 10px;
    border-radius: 12px;
    color: black;
}

.costumer_info_bottom_section button {
  background: none;
    /* background: #4caf50; */
    border: none;
    color: black;
    /* padding: 4px; */
    width: 24px;
    height: 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 10px;
    border-radius: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    outline: none;
}

.costumer_info_bottom_section .progress {
  flex: 1;
  height: 6px;
  background: #D4D4D4;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  justify-content: end;
}

.costumer_info_bottom_section .progress-bar {
  width: 0;
  height: 100%;
  background: #171717;
}

.costumer_info_bottom_section .time {
  font-size: 14px;
  width: 30px;
}

.costumer_time_section {
  display: flex
;
    flex-direction: column;
    align-items: end;
    color: #808080;
}

.costumer_shop_name {
  font-size: 16px;
}

.costumer_name {
  font-size: 14px;
}

#dnn_ctr1797_View_Index_plLicense {
  display: flex;
  flex-direction: column;
  align-items: center;
}


@media (max-width: 991px) {
  .costumers_voice_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  max-height: 90vh;
  scroll-snap-type: y mandatory;
  padding: 20px 0;
  margin: 100px 0;
  width : 100%;
  gap: 0;
}
  .costumer_info {
  width: 80%;
  padding: 15px;
  background: #EDEDED;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0.4;
  transform: scale(0.85);
  scroll-snap-align: center;
  box-shadow: 0px 4px 4px 0px #ADADAD40;
  width: 100%;
}


/* 🔥 Active (playing) card */
.costumer_info.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

/* Neighbors (just above / below active) */
.costumer_info.prev,
.costumer_info.next {
  opacity: 0.7;
  transform: scale(0.9);
}

/* Farther away cards */
.costumer_info.faded {
  opacity: 0.3;
  transform: scale(0.8);
  filter: blur(1px);
}

.costumer_info_top_section img {
  width: 48px;
}

.costumer_info_top_section {
    display: flex
;
    align-items: center;
    border-bottom: 1px dashed gray;
    justify-content: start;
    /* padding: 0 32px 16px; */
    padding-bottom: 14px;
    margin-bottom: 16px;
    gap: 24px;
    padding-right: 0;
}
.costumer_name_section {
    display: flex
;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: right;
}
.costumer_time_section {
  display: none;
}
}


/* form tahlil va ham afzaei */

.title {
  margin-bottom: -32px;
}
.form_tahlil {
  margin-bottom: 100px;
}

.form_tahlil .title h2 {
  font-size: 18px !important;
  font-weight: 600 !important;
  border: unset !important;
}

.form_tahlil .description h2 {
  font-size: 16px !important;
  font-weight: 400 !important;
  border: unset !important;
}

.form_title {
  margin-bottom: -28px !important;
}

.form_tahlil .form_title h2 {
  font-size: 16px !important;
  font-weight: 600 !important;
  border: unset !important;
}

.form_tahlil .form_title h2::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #434343;
  border-radius: 100px;
}

.form_tahlil .form_title h2::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #434343;
  margin-left: 8px; /* space between circle and text */
  border-radius: 50%; /* makes it a circle */
  vertical-align: middle; /* aligns with label text */
}


.input_lable {
  position: relative;
}

.input_lable input {
  width: 100%;
  padding: 16px 12px 8px 12px;
  border: 1px solid #D9D9D9 !important;
  border-radius: 8px !important;
  /* height: 42px !important; */
}

.input_lable > label {
  position: absolute;
    right: 24px;
    top: 50%;
    transform: translate(0, -50%);
    color: #6C6C6C;
    font-size: 14px;
    pointer-events: none;
    transition: 0.2s ease all;
}

.input_lable:has( input:focus ) > label ,
.input_lable:has( input.filled ) > label{
  top: 10px;
  right: 30px !important;
  font-size: 10px !important;
  background: white !important;
  width: fit-content !important;
  padding: 0 4px !important;
}

.checkbox_input table input[type="checkbox"] {
  accent-color: #4C4C4C;
  width: 16px !important;
  height: 16px !important;
  border-radius: 4px !important;
}

.radio_input table input[type="radio"] {
  accent-color: #4C4C4C;
}

.checkbox_input > label {
  opacity: 0 !important;
}
.checkbox_input {
  margin-top: -20px;
}
.extra_input2 {
  margin-top: -32px;
}

.form_tahlil .LiveForm.Default .Field input[type="submit"] {
  background: #3F3F3F !important;
  border-radius: 8px !important;
}

.form_tahlil .LiveForm.Default .Field input[type="submit"]:hover {
  color: white !important;
}
.rtl .LiveForm.Default .Submit-Align-Right {
  text-align: right !important;
}

@media (max-width: 991px) {
  .form_tahlil .LiveForm.Default .Field input[type="submit"]{
    width: 100% !important;
    height: 40px !important;
  }
}


.goToday {
      font-size: 12px !important;
    height: 32px;
    text-align: center;
    display: flex !important
;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    width: unset !important;

}

.input_lable:has(div label) > label {
  top : 35%;
}

.selector_input > label {
  display: none !important;
}

.selector_input select {
  font-weight: bold;
  font-size: 14px;
}


.selector_input > div {
    border: 1px solid #D9D9D9 !important;
  border-radius: 8px !important;
}

.selector_input .nice-select {
  border-radius: 8px !important;
}

.selector_input .nice-select .current {
  color: #6C6C6C;
    font-size: 14px;
    font-weight: bold;
}

.selector_input div .nice-select .list li:first-child , .selector_input div .nice-select .list li:nth-child(2) {
  display: none !important;
}