@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --c_primary: #FD7B33;
  --c_secondary: #353535;
  --c_gray: #626262;
  --c_dark: #25272C;
  --c_black: #000000;
  --c_white: #ffffff;
  
  --bg_primary: #FD7B33;
  --bg_primaryGrad:linear-gradient(179.25deg, rgba(87, 89, 92, 0.1) 0.61%, rgba(253, 123, 51, 0.1) 99.32%);
  --bg_primaryGrad2:linear-gradient(180deg, rgba(53, 53, 53, 0.03) 0%, rgba(253, 123, 51, 0.05) 100%);
  --bg_secondary: #353535;
  --bg_dark: #25272C;
  --bg_gray: #626262;
  --bg_black: #000000;
  --bg_white: #ffffff;

  --border_1:#62626280;
  --border_2:#C5C1D0;
  --border_3:rgba(0, 0, 0, 0.14);


  --ff_public_sans: "Public Sans", sans-serif;
  --ff_inter: "Inter", sans-serif;
  /* 
    --container_lg:1164px; 
    --container_md:1086px; 
    --container_sm:740px; 
  */

  --fs_xl3:48px;
  --fs_xl2:45px;
  --fs_xl:40px;
  --fs_lg2:36px;
  --fs_lg:30px;
  --fs_md3:24px;
  --fs_md2:22px;
  --fs_md:20px;
  --fs_def2:18px;
  --fs_def:16px;
  --fs_sm:14px;
  --fs_xsm2:12px;
  --fs_xsm:9px;
  
  --lh_187:1.87em;
  --lh_166:1.66em;
  --lh_150:1.50em;
  --lh_133:1.33em;
  --lh_125:1.25em;
  --lh_120:1.20em;
  --lh_118:1.18em;
  --lh_116:1.16em;
  --lh_083:0.83em;

  --m_xxl3:114px;
  --m_xxl2:64px;
  --m_xxl:60px;
  --m_xl:50px;
  --m_lg3:40px;
  --m_lg2:34px;
  --m_lg:30px;
  --m_md2:24px;
  --m_md:21px;
  --m_sm:15px;
  --m_xsm2:12px;
  --m_xsm:10px;

  --p_xxl:100px;
  --p_xl2:56px;
  --p_xl:50px;
  --p_md:20px;

  --g_lg2:32px;
  --g_lg:30px;

  --rounded_md:28px;
  --rounded_sm:8px;

  --shadow_def:0px 4px 40px rgba(0, 0, 0, 0.15);
}

body{
  font-family: var(--ff_public_sans);
  line-height: 1.5;
  color: var(--c_secondary);
}
h1,h2,h3,h4,h5,h6{
  font-weight: 700;
}
.c_primary{color: var(--c_primary);}
.c_primaryGrad{
  background: -o-linear-gradient(left, #FD7B33 0%, #FFCAAD 100%);
  background: -webkit-gradient(linear, left top, right top, from(#FD7B33), to(#FFCAAD));
  background: linear-gradient(90deg, #FD7B33 0%, #FFCAAD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.c_primaryGrad2{
  background: -o-linear-gradient(left, #FD7B33 0%, #FFFFFF 100%);
  background: -webkit-gradient(linear, left top, right top, from(#FD7B33), to(#FFFFFF));
  background: linear-gradient(90deg, #FD7B33 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.c_secondary{color: var(--c_secondary);}
.c_dark{color: var(--c_dark);}
.c_gray{color: var(--c_gray);}
.c_black{color: var(--c_black);}
.c_white{color: var(--c_white);}

.bg_primary{background-color: var(--bg_primary);}
.bg_primaryGrad{background: var(--bg_primaryGrad);}
.bg_primaryGrad2{background: var(--bg_primaryGrad2);}
.bg_secondary{background-color: var(--bg_secondary);}
.bg_dark{background-color: var(--bg_dark);}
.bg_gray{background-color: var(--bg_gray);}
.bg_black{background-color: var(--bg_black);}
.bg_white{background-color: var(--bg_white);}
.border_1{border-color: var(--border_1) !important;}
.border_2{border-color: var(--border_2) !important;}
.border_3{border-color: var(--border_3) !important;}
.ff_public_sans{font-family: var(--ff_public_sans);}
.ff_inter{font-family: var(--ff_inter);}

.fs_xl3{font-size: var(--fs_xl3);}
.fs_xl2{font-size: var(--fs_xl2);}
.fs_xl{font-size: var(--fs_xl);}
.fs_lg2{font-size: var(--fs_lg2);}
.fs_lg{font-size: var(--fs_lg);}
.fs_md3{font-size: var(--fs_md3);}
.fs_md2{font-size: var(--fs_md2);}
.fs_md{font-size: var(--fs_md);}
.fs_def2{font-size: var(--fs_def2);}
.fs_def{font-size: var(--fs_def);}
.fs_sm{font-size: var(--fs_sm);}
.fs_xsm2{font-size: var(--fs_xsm2);}
.fs_xsm{font-size: var(--fs_xsm);}

p{
  font-size: var(--fs_def);
  line-height: 1.5em;
}
.lh_187{line-height: var(--lh_187);}
.lh_166{line-height: var(--lh_166);}
.lh_150{line-height: var(--lh_150);}
.lh_133{line-height: var(--lh_133);}
.lh_125{line-height: var(--lh_125);}
.lh_120{line-height: var(--lh_120);}
.lh_118{line-height: var(--lh_118);}
.lh_116{line-height: var(--lh_116);}
.lh_083{line-height: var(--lh_083);}

.mb_xxl3{margin-bottom: var(--m_xxl3);}
.mb_xxl2{margin-bottom: var(--m_xxl2);}
.mb_xxl{margin-bottom: var(--m_xxl);}
.mb_xl{margin-bottom: var(--m_xl);}
.mt_xl{margin-top: var(--m_xl);}
.mb_lg3{margin-bottom: var(--m_lg3);}
.mb_lg2{margin-bottom: var(--m_lg2);}
.mb_lg{margin-bottom: var(--m_lg);}
.mb_md2{margin-bottom: var(--m_md2);}
.mb_md{margin-bottom: var(--m_md);}
.mb_sm{margin-bottom: var(--m_sm);}
.mb_xsm2{margin-bottom: var(--m_xsm2);}
.mb_xsm{margin-bottom: var(--m_xsm);}

.py_xxl{padding-top: var(--p_xxl);padding-bottom: var(--p_xxl)}
.pt_xxl{padding-top: var(--p_xxl);}
.pb_xxl{padding-bottom: var(--p_xxl);}
.py_xl2{padding-top: var(--p_xl2);padding-bottom: var(--p_xl2)}
.pt_xl2{padding-top: var(--p_xl2);}
.pb_xl2{padding-bottom: var(--p_xl2);}
.py_xl{padding-top: var(--p_xl);padding-bottom: var(--p_xl)}
.pt_xl{padding-top: var(--p_xl);}
.pb_xl{padding-bottom: var(--p_xl);}
.py_md{padding-top: var(--p_md);padding-bottom: var(--p_md)}
.pt_md{padding-top: var(--p_md);}
.pb_md{padding-bottom: var(--p_md);}
.rounded_md{border-radius: var(--rounded_md);}
.rounded_sm{border-radius: var(--rounded_sm);}
.shadow_def{-webkit-box-shadow: var(--shadow_def);box-shadow: var(--shadow_def);}
.btn{
  font-size: var(--fs_def);
  font-weight: 600;
  padding: 0.75em;
  border-radius: 0.5em;
}
.btn i.fa-square-arrow-up-right{
  font-size: 2em;
  line-height: 1em;
  margin-left: 0.5em;
  vertical-align: middle;
}
.btn_primary{
  color: var(--c_white);
  background-color: var(--bg_primary);
}
.btn_primary:hover{
  color: var(--c_white);
  background-color: #ee5b0c;
}
.btn-outline-light i{
  color: var(--c_primary);
}

/* ....................... end home page ....................... */
.header {
  padding: 20px 0px;
}
.header.active_header{
  background-color: var(--bg_dark);
}
.brand_logo {
  width: 174.37px;
  height: 29.47px;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo_dark{
  display: none;
}
.header .navbar-nav {
  padding-right: 46px;
  margin-bottom: 0px;
}
.header .nav-item{
  margin: 0px 19px;
}
.header .nav-link {
  font-size: var(--fs_sm);
  color: var(--c_white);
  padding: 0px !important;
}
.header .nav-link:hover,
.header .nav-link.active {
  color: var(--c_primary);
}
.header .nav-link.active {
  font-weight: 600;
}
.has_megaMenu .dropdown-toggle{
  position: relative;
  z-index: 1;
}
.has_megaMenu:hover .dropdown-toggle{
  color: var(--c_primary);
}
.has_megaMenu .dropdown-toggle::before{
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 65px;
  /* background-color: red; */
  cursor: default;
  pointer-events: none;
}
.has_megaMenu:hover .dropdown-toggle::before{
  pointer-events: initial;
}
.mega_dropdownTglBtn{
  display: none;
}
.mega_dropdownMenu{
  color: var(--c_white);
  position: fixed;
  top:98px;
  left: 0px;
  width: 100%;
  background-color: var(--bg_dark);
  padding: 45px 0px;

  background-image: url("../img/logo_dots_2.svg"), url("../img/logo_dots_2.svg");
  background-repeat: no-repeat;
  background-position: right 24px top -125px,bottom 37px left -144px;
  background-size: 355px;


  -webkit-transition: 0.3s;


  -o-transition: 0.3s;


  transition: 0.3s;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  pointer-events: none;

}
.mega_dropdownMenu .border-end{
  border-color: rgba(255, 255, 255, 0.2);
}

.has_megaMenu:hover .mega_dropdownMenu{
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.mega_dropdownItem{
  padding: 30px 34px;
}
.mega_navbar{
  list-style:none;
  padding: 0px;
  margin: 0px;
}
.mega_navbar li{
  margin-bottom: var(--m_md2);
}
.mega_navLink{
  color: var(--c_white);
  font-size: var(--fs_def2);
  line-height: 1.1667em;
  text-decoration: none;
}
.mega_navLink.active,
.mega_navLink:hover{
  color: var(--c_primary);
  text-decoration: underline;
}
.menu_toggleBtn{
  color: var(--c_white);
}
/*  */
.main{
  max-width: 100vw;
  overflow: hidden;
}
.hero_sec{
  padding: 204px 0px 122px 0px;
  background-color: var(--bg_dark);
  background-image: url("../img/logo_dots_2.svg"), url("../img/logo_dots_2.svg");
  background-repeat: no-repeat;
  background-position: right 24px top -27px,bottom 37px left -144px;
  background-size: 355px;
  color: var(--c_white);
  min-height: 430px;
}
.typed::after {
  content: '|';
  display: inline;
  -webkit-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}
@-webkit-keyframes blink {
  0% {
      opacity: 1
  }
  50% {
      opacity: 0
  }
  100% {
      opacity: 1
  }
}

@keyframes blink {
  0% {
      opacity: 1
  }
  50% {
      opacity: 0
  }
  100% {
      opacity: 1
  }
}
.card_1{
  background-color: var(--bg_white);
  border-radius: var(--rounded_sm);
  -webkit-box-shadow: var(--shadow_def);
          box-shadow: var(--shadow_def);
  padding: 30px 20px;
  height: 100%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.card_1:hover{
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.30);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.30);
}
.card_1 .card_icon{
  height: 38px;
  margin-bottom: var(--m_md2);
}

.dark_secBox{
  color: var(--c_white);
  padding: 63px 34px;
  background-color: var(--bg_dark);
  border-radius: var(--rounded_sm);
}
.os_secBox{
  background-image: url("../img/logo_dots_2.svg");
  background-repeat: no-repeat;
  background-position: left 158px top 50px;
  background-size: 355px;
}

.os_featureItem{
  padding-left: 24px;
}
.os_featureItem{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--fs_md2);
  font-weight: 700;
  margin-bottom: 1.6em;
}
.os_featureItem:last-child{
  margin-bottom: 0px;
}
.os_featureItem>div:last-child{
  padding-top: 0.4545em;
}
.os_featureIcon{
  width: 2.4545em;
  margin-right: 1.0455em;
}


.wu_featureItem{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: var(--m_lg2);
}
.wu_featureItem:last-child{
  margin-bottom: 0px;
}
.wu_featureIcon{
  width: 50px;
  margin-right: 18px;
}
.info_list{
  list-style: none;
}
.info_list li{
  padding-left: 2.25em;
  margin-bottom: 3.125em;
  position: relative;
}
.info_list li:last-child{
  margin-bottom: 0px;
}
.info_list li::before{
  content: "\f058";
  font: var(--fa-font-solid);
  font-size: 1.25em;
  color: var(--c_primary);
  position: absolute;
  top:0.1em;
  left: 0px;
}


.ju_secBox{
  padding: 28px 40px 52px 40px;
  margin-top: 65px;
}
.ju_formBox{
  color: var(--c_secondary);
  padding: 36px 22px 16px;
  border-radius: var(--rounded_sm);
  background-color: var(--bg_white);
  margin-bottom: 38px;
  margin-top: -88px;
  -webkit-box-shadow: var(--shadow_def);
          box-shadow: var(--shadow_def);
}
div.error{
  color: var(--bs-danger);
  padding-top: 4px;
  font-size: 14px;
}
.info_listNum li{
  padding-bottom: 3.125em;
  margin-bottom: 0px;
}
.info_listNum li:last-child{
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.info_listNum li::before{
  content: none;
}
.info_listNum li::after{
  content: "";
  display: block;
  border-left: 1px dashed rgba(208, 213, 221, 0.43);
  position: absolute;
  height: 100%;
  top:2px;
  left: 0.7em;
}
.info_listNum li:last-child:after{
  content: none;
}
.info_listNum li span:first-child{
  font-size: 12px;
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--bg_primary);
  position: absolute;
  z-index: 1;
  top:0.1em;
  left: 0px;
}

.footer{
  color: var(--c_white);
  background-color: var(--bg_dark);
}
.footer_top{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 33px 0px;
  border-bottom:1px solid rgba(255, 255, 255, 0.1);
}
.footer_nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.footer_navItem{
  font-size: var(--fs_sm);
  margin-left: 3.3333em;
}
.footer_navLink{
  color: var(--c_white);
  text-decoration: none;
}
.footer_navLink:hover{
  color: var(--c_primary);
  text-decoration: underline;
}
.footer_bottom{
  padding: 20px 0px 40px 0px;
}
@media(min-width:992px){
  :root{
    --container_sm:685px;
  }
  .container_sm{max-width: var(--container_sm);}
}
@media(min-width:1200px){
  :root{
    --container_lg:1060px; 
    --container_md:1020px; 
  }
  .container_lg{max-width: var(--container_lg);}
  .container_md{max-width: var(--container_md);}
  .g_lg2{
    --bs-gutter-x: var(--g_lg2);
    --bs-gutter-y: var(--g_lg2);
  }
  .g_lg{
    --bs-gutter-x: var(--g_lg);
    --bs-gutter-y: var(--g_lg);
  }
}
@media(min-width:1400px){
  :root{
    --container_lg:1188px; /* 1164px + 24px */
    --container_md:1110px; /* 1086px + 24px */
    --container_sm:764px; /* 740px + 24px */
  }
}
@media (max-width: 1399.98px) {
  :root{
    --fs_xl3:43px; /**/
    --fs_xl2:40px; /**/
    --fs_xl:36px; /**/
    --fs_lg2:33px; /**/
    --fs_lg:26px; /**/
    --fs_md3:22px; /**/
    --fs_md2:20px; /**/
    --fs_md:18px; /**/
    --fs_def2:15px; /**/
    --fs_def:14px; /**/
    --fs_sm:12px; /**/
    --fs_xsm2:11px; /**/
    --fs_xsm:8px; /**/

    --m_xxl3:92px; /**/
    --m_xxl2:60px; /**/
    --m_xxl:56px; /**/
    --m_xl:48px; /**/
    --m_lg3:36px; /**/
    --m_lg2:30px; /**/
    --m_lg:26px; /**/
    --m_md2:22px; /**/
    --m_md:18px; /**/
    --m_sm:13px; /**/
    --m_xsm2:10px; /**/
    --m_xsm:8px; /**/

    --p_xxl:88px; /**/
    --p_xl2:52px; /**/
    --p_xl:46px; /**/
    --p_md:16px; /**/

    --rounded_md:24px;
    --rounded_sm:6px;
  
    --shadow_def:0px 3px 30px rgba(0, 0, 0, 0.15);
  }
  .header {
    padding: 18px 0px;
  }
  .brand_logo {
    width: 157.5px;
    height: 27px;
  }
  .mega_dropdownMenu{
    top:87px;
    padding: 40px 0px;
    background-position: right 22px top -110px,bottom 29px left -132px;
    background-size: 320px;
  }
  .mega_dropdownItem {
    padding: 16px 20px;
  }
  .has_megaMenu .dropdown-toggle::before {
    height: 56px;
  }
  .hero_sec {
    padding: 178px 0px 112px 0px;
    background-position: right 22px top -24px,bottom 29px left -132px;
    background-size: 320px;
  }
  .card_1 {
    padding: 26px 18px;
  }
  .card_1 .card_icon {
    height: 34px;
  }
  .dark_secBox {
    padding: 52px 32px;
  }
  .os_secBox {
    background-position: left 150px top 46px;
    background-size: 302px;
  }
  .wu_featureIcon {
    width: 46px;
    margin-right: 16px;
  }
  .ju_secBox {
    padding: 24px 32px 46px 32px;
    margin-top: 58px;
  }
  .footer_top {
    padding: 30px 0px;
  }
  .footer_bottom {
    padding: 20px 0px 36px 0px;
  }
}
@media (max-width: 1199.98px) {
  .g_lg,
  .g_lg2{
    --bs-gutter-y: 1.5rem;
  }
  .header {
    padding: 16px 0px;
  }
  .brand_logo {
    height: 40px;
  }
  .header_navContent {
    position: fixed;
    z-index: 1000;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: var(--bg_dark);
    width: 320px;
    max-width: 100%;
    padding: 20px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .header_navContent {
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .header .navbar-nav{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header.show_sideMenu .header_navContent {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  .header_navContent .navbar-toggler {
    display: block;
    margin-left: auto;
  }
  .header .navbar-nav {
    padding-right: 0px;
    padding-top: 16px;
  }
  .header .nav-item {
    margin: 0px;
    margin-bottom: 16px;
  }
  .header .nav-link {
    margin-left: 0px;
    padding: 8px !important;
    font-size: 14px;
  }
  .header .nav-link:hover {
    background-color: var(--bg_light);
  }
  .header.show_sideMenu .header_backDrop {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #00000080;
  }
  .has_megaMenu .dropdown-toggle::before,
  .has_megaMenu .dropdown-toggle::after {
    content: none;
  }
  .mega_dropdownMenu{
    display: none;
    opacity: 1;
    position: initial;
    padding: 12px;
    padding-bottom: 0px;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    border-left: 1px solid gray;
  }
  .show_megaDropdown .mega_dropdownMenu{
    display: block;
  }
  .mega_dropdownMenu .row{
    --bs-gutter-y: 0px;
    --bs-gutter-x: 0px;
  }
  .mega_dropdownItem {
    padding: 0px;
  }
  .has_megaMenu{
    position: relative;
  }
  .mega_dropdownTglBtn{
    display: -ms-grid;
    display: grid;
    place-items: center;
    position: absolute;
    z-index: 3;
    top: 0px;
    right: 0px;
    font-size: 14px;
    width: 32px;
    height: 32px;
    color: var(--c_white);
    border: 1px solid var(--c_white);
  }
  .show_megaDropdown .mega_dropdownTglBtn i{
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@media (max-width: 991.98px) {
  .container .container{
    padding-left: 0px;
    padding-right: 0px;
  }
  :root {
    --m_xxl3: 70px;
    --m_xxl2: 50px;
  }
  .cs_img{
    width: 300px;
  }
  .hero_sec {
    padding: 170px 0px 110px 0px;
    background-size: 275px;
  }
  .os_features {
    padding-top: 30px;
  }
  .os_featureItem {
    padding-left: 0px;
  }
  .info_list {
    padding-top: 30px;
  }
  .footer_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer_brand{
    margin-bottom: 30px;
  }
  .footer_navItem:first-child {
    margin-left: 0px;
  }
}
@media(max-width:575.98px){
  :root {
    --m_xxl3: 45px;
    --m_xxl2: 40px;
  }
  .cs_img{
    width: 200px;
  }
  .hero_sec,
  .os_secBox {
    background-size: 230px;
  }
  .dark_secBox {
    padding: 30px 24px;
  }
  .wu_featureIcon {
    width: 40px;
    margin-right: 14px;
  }
  .info_list{
    padding-left: 0px;
  }
  .ju_formBox {
    padding: 30px 16px
  }
  .footer_nav{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer_navItem{
    margin: 0px auto 16px !important;
  }
}

/* ....................... end home page ....................... */

/* ....................... start about page ....................... */
.sqr_cards{
  border: 1px solid var(--border_2);
  border-radius: var(--rounded_md);
  background-color: var(--bg_white);
}
.sqr_card{
  padding: 24px 16px 40px 24px;
  position: relative;
}
.sqr_card::after{
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}

.sqr_card:nth-child(1):after,
.sqr_card:nth-child(4):after{
  width:1px;
  height:calc(100% - 22px);
}
.sqr_card:nth-child(2):after,
.sqr_card:nth-child(3):after{
  width:calc(100% - 22px);
  height:1px;
}
.sqr_card:nth-child(1):after{
  right: -0.5px;
  bottom: -0.5px;
  background: -o-linear-gradient(bottom,#C5C1D0,#00000000);
  background: -webkit-gradient(linear,left bottom, left top,from(#C5C1D0),to(#00000000));
  background: linear-gradient(to top,#C5C1D0,#00000000);
}
.sqr_card:nth-child(2):after{
  left: -0.5px;
  bottom: -0.5px;
  background: -o-linear-gradient(left,#C5C1D0,#00000000);
  background: -webkit-gradient(linear,left top, right top,from(#C5C1D0),to(#00000000));
  background: linear-gradient(to right,#C5C1D0,#00000000);
}
.sqr_card:nth-child(3):after{
  right: -0.5px;
  top: -0.5px;
  background: -o-linear-gradient(right,#C5C1D0,#00000000);
  background: -webkit-gradient(linear,right top, left top,from(#C5C1D0),to(#00000000));
  background: linear-gradient(to left,#C5C1D0,#00000000);
}
.sqr_card:nth-child(4):after{
  left: -0.5px;
  top: -0.5px;
  background: -o-linear-gradient(top,#C5C1D0,#00000000);
  background: -webkit-gradient(linear,left top, left bottom,from(#C5C1D0),to(#00000000));
  background: linear-gradient(to bottom,#C5C1D0,#00000000);
}
.sqr_cardIcon{
  width: 54px;
  margin-bottom: var(--m_md2);
}
.oe_feature_wrapper{
  max-height: 450px;
}
.feature_wrapper{
  overflow-y: auto;
  padding-right: 10px;
}
.feature_list{
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.feature_item{
  padding-bottom: var(--m_md2);
  margin-bottom: var(--m_md2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.feature_item:last-child{
  margin-bottom: 0px;
  border-bottom: none;
}
.feature_title{
  font-size: var(--fs_md2);
  margin-bottom: var(--m_xsm2);
  padding-left: 1.3em;
  position: relative;
}
.feature_title::before{
  content: "\f192";
  font: var(--fa-font-solid);
  font-size: 0.8em;
  color: var(--c_primary);
  position: absolute;
  top: 0.2em;
  left: 1px;
}
.feature_desc{
  margin-bottom: 0px;
}
.oc_infoCard{
  padding: 24px 16px;
  border-radius: var(--rounded_sm);
  -webkit-box-shadow:0px 4px 40px rgba(0, 0, 0, 0.05);
          box-shadow:0px 4px 40px rgba(0, 0, 0, 0.05);
}
.oc_infoCard_1,
.oc_infoCard_3{
  margin-bottom: 30px;
}
.oc_infoCardIcon{
  height: 36px;
  margin-bottom: var(--m_xsm2);
}
.oc_infoCard_3{
  margin-top: 70px;
}

.scrollbar-track,
.scrollbar-thumb{
  width: 4px !important;
}
.logo_dotsImg{
  width: 356px;
}
@media(max-width:1399.98px){
  .sqr_card {
    padding: 22px 16px 36px 22px;
  }
  .sqr_cardIcon {
    width: 48px;
  }
  .oe_feature_wrapper {
    max-height: 400px;
  }
}
@media(max-width:767.98px){
  .sqr_card::after{
    content: none;
  }
  .sqr_card{
    border-bottom: 1px solid var(--border_2);
  }
  .sqr_card:last-child{
    border-bottom: none;
  }
  .feature_wrapper{
    max-height: -webkit-max-content !important;
    max-height: -moz-max-content !important;
    max-height: max-content !important;
    padding-right: 0px !important;
  }
  .oc_infoCard_1,
  .oc_infoCard_3{
    margin-bottom: 1.5rem;
  }
  .oc_infoCard_3{
    margin-top: 0px;
  }
}
/* ....................... end about page ....................... */

/* ....................... start solutions page ....................... */
.os_cardItem{
  margin-top: var(--m_xl);
  background-color: var(--bg_white);
  border-radius: var(--rounded_sm);
  overflow: hidden;
  -webkit-box-shadow: var(--shadow_def);
          box-shadow: var(--shadow_def);
}
.os_cardItem:nth-child(2n){
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.os_cardItem .sqr_cardIcon{
  margin-bottom: var(--m_lg2);
}
.os_itemContent{
  padding: 36px;
}
@media(max-width:991.98px){
  .os_cardImg{
    max-width: 160px;
  }
}
@media(max-width:767.98px){
  .os_cardItem{
    margin-top: 30px;
  }
  .os_cardImg{
    max-width: 100%;
    height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .os_cardItem .sqr_cardIcon{
    margin-bottom: 20px;
  }
  .os_itemContent {
    padding: 24px;
  }
}
/* ....................... end solutions page ....................... */

/* ....................... start product page ....................... */
.dot_infoList li{
  margin-bottom: var(--m_lg);
}
.info_list li::before {
  content: "\f192";
}
@media (max-width: 991.98px) {
  .dot_infoList {
    padding-top: 0px;
  }
}
/* ....................... end product page ....................... */

/* ....................... start staffing page ....................... */
.oa_feature_wrapper{
  max-height: 526px;
}
@media(max-width:1399.98px){
  .oa_feature_wrapper {
    max-height: 476px;
  }
}
/* ....................... end staffing page ....................... */

/* ....................... start services page ....................... */
.oe_feature_wrapper2{
  max-height: 500px;
}
.oe_feature_wrapper3{
  max-height: 660px;
}
.oe_feature_wrapper4,
.oe_feature_wrapper5{
  max-height: 586px;
}
.oe_feature_wrapper6{
  max-height: 727px;
}
.oa_feature_wrapper2{
  max-height: 584px;
}
.oa_feature_wrapper3{
  max-height: 536px;
}
.oa_feature_wrapper4{
  max-height: 512px;
}
.oa_feature_wrapper5,
.oa_feature_wrapper6{
  max-height: 490px;
}
.feature_listLine .feature_item{
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: var(--m_lg3);
  position: relative;
}
.feature_listLine .feature_item::before{
  content: "";
  display: block;
  position: absolute;
  left: 9px;
  top: 4px;
  height: 100%;
  border-left: 1px dashed rgba(53, 53, 53, 0.5);
  pointer-events: none;
}
.feature_listLine .feature_item:last-child::before{
  content: none;
}
.feature_listLine .feature_desc{
  padding-left: 29px;
}
@media(max-width:1399.98px){
  .oe_feature_wrapper2{
    max-height: 460px;
  }
  .oe_feature_wrapper3{
    max-height: 580px;
  }
  .oe_feature_wrapper4,
  .oe_feature_wrapper5{
    max-height: 516px;
  }
  .oe_feature_wrapper6{
    max-height: 645px;
  }
  .oa_feature_wrapper2{
    max-height: 540px;
  }
  .oa_feature_wrapper3{
    max-height: 500px;
  }
  .oa_feature_wrapper4{
    max-height: 480px;
  }
  .oa_feature_wrapper5,
  .oa_feature_wrapper6{
    max-height: 440px;
  }
}
@media(max-width:767.98px){
  .mobile_bannerImg{
    width: 250px;
  }
  .mobile_img{
    width: 200px;
  }
}
/* ....................... end services page ....................... */