/**DO NOT EDIT**/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th {
  padding: 0;
  order: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
  margin: 0px;
}

html {
  width: 100%;
  display: inline-block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

li {
  list-style: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clear {
  clear: both;
  height: 0;
  overflow: hidden;
}

.clearfix {
  display: inline-block;
  width: 100%;
}

html, body {
  max-width: 100%;
}

figure, figcaption {
  margin: 0;
  padding: 0;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a, a:hover {
  text-decoration: none;
}

::-moz-selection {
  color: #fff;
  background: #0B1320;
}

::selection {
  color: #fff;
  background: #0B1320;
}

/* FONTS */
@font-face {
  font-family: "pc_Light";
  src: url("../fonts/GraphikLight.eot");
  src: url("../fonts/GraphikLight.eot?#iefix") format("embedded-opentype"), url("../fonts/GraphikLight.woff2") format("woff2"), url("../fonts/GraphikLight.woff") format("woff"), url("../fonts/GraphikLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "pc_Regular";
  src: url("../fonts/GraphikRegular.eot");
  src: url("../fonts/GraphikRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/GraphikRegular.woff2") format("woff2"), url("../fonts/GraphikRegular.woff") format("woff"), url("../fonts/GraphikRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "pc_Medium";
  src: url("../fonts/GraphikSemibold.eot");
  src: url("../fonts/GraphikSemibold.eot?#iefix") format("embedded-opentype"), url("../fonts/GraphikSemibold.woff2") format("woff2"), url("../fonts/GraphikSemibold.woff") format("woff"), url("../fonts/GraphikSemibold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "pc_semi";
  src: url("../fonts/GraphikMedium.eot");
  src: url("../fonts/GraphikMedium.eot?#iefix") format("embedded-opentype"), url("../fonts/GraphikMedium.woff2") format("woff2"), url("../fonts/GraphikMedium.woff") format("woff"), url("../fonts/GraphikMedium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "pc_bold";
  src: url("../fonts/GraphikBold.eot");
  src: url("../fonts/GraphikBold.eot?#iefix") format("embedded-opentype"), url("../fonts/GraphikBold.woff2") format("woff2"), url("../fonts/GraphikBold.woff") format("woff"), url("../fonts/GraphikBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* FONTS */
.arrowBtn {
  display: flex;
  align-items: center;
  color: var(--theme-red);
  font-family: "pc_semi";
  font-size: 18px;
}
.arrowBtn i {
  display: inline-block;
  aspect-ratio: 1;
  position: relative;
  width: 11px;
  margin-left: 22px;
  transition: 0.5s ease;
  border-top: 1px solid var(--theme-red);
  border-right: 1px solid var(--theme-red);
  transform: rotate(45deg);
}
.arrowBtn i:before {
  background: var(--theme-red);
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  right: 0;
  top: 0;
  transform-origin: right top;
  transform: rotate(-45deg) translateY(-50%);
}
.arrowBtn:hover i {
  transform: rotate(45deg);
}

body {
  font-family: "pc_Regular";
}

p, li {
  font-size: 1.125rem;
  color: #1e1e1e;
  line-height: 30px;
}

* + h1, * + h2, * + h3, * + h4, * + h5, * + h6 {
  margin-top: 1em;
  margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin-bottom: 15px;
  line-height: 130%;
  color: #000;
  letter-spacing: -1px;
}

h1 {
  font-size: 50px;
  font-family: "pc_Regular";
}

h2 {
  font-size: 40px;
  font-family: "pc_semi";
  margin-bottom: 20px;
}

h3 {
  font-size: 30px;
  font-family: "pc_semi";
}

h4 {
  font-size: 25px;
  margin-bottom: 15px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

li a, p a {
  color: var(--theme-red);
  font-weight: bold;
}

/* GRID */
.gridwrap {
  display: grid;
  grid-template-rows: repeat(var(--kg-rows, 1), 1fr);
  grid-template-columns: repeat(var(--kg-columns, 12), 1fr);
  gap: var(--kg-gap, 1.5rem);
}
.gridwrap .g-col-1 {
  grid-column: auto/span 1;
}
.gridwrap .g-col-2 {
  grid-column: auto/span 2;
}
.gridwrap .g-col-3 {
  grid-column: auto/span 3;
}
.gridwrap .g-col-4 {
  grid-column: auto/span 4;
}
.gridwrap .g-col-5 {
  grid-column: auto/span 5;
}
.gridwrap .g-col-6 {
  grid-column: auto/span 6;
}
.gridwrap .g-col-7 {
  grid-column: auto/span 7;
}
.gridwrap .g-col-8 {
  grid-column: auto/span 8;
}
.gridwrap .g-col-9 {
  grid-column: auto/span 9;
}
.gridwrap .g-col-10 {
  grid-column: auto/span 10;
}
.gridwrap .g-col-11 {
  grid-column: auto/span 11;
}
.gridwrap .g-col-12 {
  grid-column: auto/span 12;
}
.gridwrap .g-start-1 {
  grid-column-start: 1;
}
.gridwrap .g-start-2 {
  grid-column-start: 2;
}
.gridwrap .g-start-3 {
  grid-column-start: 3;
}
.gridwrap .g-start-4 {
  grid-column-start: 4;
}
.gridwrap .g-start-5 {
  grid-column-start: 5;
}
.gridwrap .g-start-6 {
  grid-column-start: 6;
}
.gridwrap .g-start-7 {
  grid-column-start: 7;
}
.gridwrap .g-start-8 {
  grid-column-start: 8;
}
.gridwrap .g-start-9 {
  grid-column-start: 9;
}
.gridwrap .g-start-10 {
  grid-column-start: 10;
}
.gridwrap .g-start-11 {
  grid-column-start: 11;
}
@media (min-width: 250px) {
  .gridwrap .g-col-sm-1 {
    grid-column: auto/span 1;
  }
  .gridwrap .g-col-sm-2 {
    grid-column: auto/span 2;
  }
  .gridwrap .g-col-sm-3 {
    grid-column: auto/span 3;
  }
  .gridwrap .g-col-sm-4 {
    grid-column: auto/span 4;
  }
  .gridwrap .g-col-sm-5 {
    grid-column: auto/span 5;
  }
  .gridwrap .g-col-sm-6 {
    grid-column: auto/span 6;
  }
  .gridwrap .g-col-sm-7 {
    grid-column: auto/span 7;
  }
  .gridwrap .g-col-sm-8 {
    grid-column: auto/span 8;
  }
  .gridwrap .g-col-sm-9 {
    grid-column: auto/span 9;
  }
  .gridwrap .g-col-sm-10 {
    grid-column: auto/span 10;
  }
  .gridwrap .g-col-sm-11 {
    grid-column: auto/span 11;
  }
  .gridwrap .g-col-sm-12 {
    grid-column: auto/span 12;
  }
  .gridwrap .g-start-sm-1 {
    grid-column-start: 1;
  }
  .gridwrap .g-start-sm-2 {
    grid-column-start: 2;
  }
  .gridwrap .g-start-sm-3 {
    grid-column-start: 3;
  }
  .gridwrap .g-start-sm-4 {
    grid-column-start: 4;
  }
  .gridwrap .g-start-sm-5 {
    grid-column-start: 5;
  }
  .gridwrap .g-start-sm-6 {
    grid-column-start: 6;
  }
  .gridwrap .g-start-sm-7 {
    grid-column-start: 7;
  }
  .gridwrap .g-start-sm-8 {
    grid-column-start: 8;
  }
  .gridwrap .g-start-sm-9 {
    grid-column-start: 9;
  }
  .gridwrap .g-start-sm-10 {
    grid-column-start: 10;
  }
  .gridwrap .g-start-sm-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 768px) {
  .gridwrap .g-col-md-1 {
    grid-column: auto/span 1;
  }
  .gridwrap .g-col-md-2 {
    grid-column: auto/span 2;
  }
  .gridwrap .g-col-md-3 {
    grid-column: auto/span 3;
  }
  .gridwrap .g-col-md-4 {
    grid-column: auto/span 4;
  }
  .gridwrap .g-col-md-5 {
    grid-column: auto/span 5;
  }
  .gridwrap .g-col-md-6 {
    grid-column: auto/span 6;
  }
  .gridwrap .g-col-md-7 {
    grid-column: auto/span 7;
  }
  .gridwrap .g-col-md-8 {
    grid-column: auto/span 8;
  }
  .gridwrap .g-col-md-9 {
    grid-column: auto/span 9;
  }
  .gridwrap .g-col-md-10 {
    grid-column: auto/span 10;
  }
  .gridwrap .g-col-md-11 {
    grid-column: auto/span 11;
  }
  .gridwrap .g-col-md-12 {
    grid-column: auto/span 12;
  }
  .gridwrap .g-start-md-1 {
    grid-column-start: 1;
  }
  .gridwrap .g-start-md-2 {
    grid-column-start: 2;
  }
  .gridwrap .g-start-md-3 {
    grid-column-start: 3;
  }
  .gridwrap .g-start-md-4 {
    grid-column-start: 4;
  }
  .gridwrap .g-start-md-5 {
    grid-column-start: 5;
  }
  .gridwrap .g-start-md-6 {
    grid-column-start: 6;
  }
  .gridwrap .g-start-md-7 {
    grid-column-start: 7;
  }
  .gridwrap .g-start-md-8 {
    grid-column-start: 8;
  }
  .gridwrap .g-start-md-9 {
    grid-column-start: 9;
  }
  .gridwrap .g-start-md-10 {
    grid-column-start: 10;
  }
  .gridwrap .g-start-md-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 992px) {
  .gridwrap .g-col-lg-1 {
    grid-column: auto/span 1;
  }
  .gridwrap .g-col-lg-2 {
    grid-column: auto/span 2;
  }
  .gridwrap .g-col-lg-3 {
    grid-column: auto/span 3;
  }
  .gridwrap .g-col-lg-4 {
    grid-column: auto/span 4;
  }
  .gridwrap .g-col-lg-5 {
    grid-column: auto/span 5;
  }
  .gridwrap .g-col-lg-6 {
    grid-column: auto/span 6;
  }
  .gridwrap .g-col-lg-7 {
    grid-column: auto/span 7;
  }
  .gridwrap .g-col-lg-8 {
    grid-column: auto/span 8;
  }
  .gridwrap .g-col-lg-9 {
    grid-column: auto/span 9;
  }
  .gridwrap .g-col-lg-10 {
    grid-column: auto/span 10;
  }
  .gridwrap .g-col-lg-11 {
    grid-column: auto/span 11;
  }
  .gridwrap .g-col-lg-12 {
    grid-column: auto/span 12;
  }
  .gridwrap .g-start-lg-1 {
    grid-column-start: 1;
  }
  .gridwrap .g-start-lg-2 {
    grid-column-start: 2;
  }
  .gridwrap .g-start-lg-3 {
    grid-column-start: 3;
  }
  .gridwrap .g-start-lg-4 {
    grid-column-start: 4;
  }
  .gridwrap .g-start-lg-5 {
    grid-column-start: 5;
  }
  .gridwrap .g-start-lg-6 {
    grid-column-start: 6;
  }
  .gridwrap .g-start-lg-7 {
    grid-column-start: 7;
  }
  .gridwrap .g-start-lg-8 {
    grid-column-start: 8;
  }
  .gridwrap .g-start-lg-9 {
    grid-column-start: 9;
  }
  .gridwrap .g-start-lg-10 {
    grid-column-start: 10;
  }
  .gridwrap .g-start-lg-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 1200px) {
  .gridwrap .g-col-xl-1 {
    grid-column: auto/span 1;
  }
  .gridwrap .g-col-xl-2 {
    grid-column: auto/span 2;
  }
  .gridwrap .g-col-xl-3 {
    grid-column: auto/span 3;
  }
  .gridwrap .g-col-xl-4 {
    grid-column: auto/span 4;
  }
  .gridwrap .g-col-xl-5 {
    grid-column: auto/span 5;
  }
  .gridwrap .g-col-xl-6 {
    grid-column: auto/span 6;
  }
  .gridwrap .g-col-xl-7 {
    grid-column: auto/span 7;
  }
  .gridwrap .g-col-xl-8 {
    grid-column: auto/span 8;
  }
  .gridwrap .g-col-xl-9 {
    grid-column: auto/span 9;
  }
  .gridwrap .g-col-xl-10 {
    grid-column: auto/span 10;
  }
  .gridwrap .g-col-xl-11 {
    grid-column: auto/span 11;
  }
  .gridwrap .g-col-xl-12 {
    grid-column: auto/span 12;
  }
  .gridwrap .g-start-xl-1 {
    grid-column-start: 1;
  }
  .gridwrap .g-start-xl-2 {
    grid-column-start: 2;
  }
  .gridwrap .g-start-xl-3 {
    grid-column-start: 3;
  }
  .gridwrap .g-start-xl-4 {
    grid-column-start: 4;
  }
  .gridwrap .g-start-xl-5 {
    grid-column-start: 5;
  }
  .gridwrap .g-start-xl-6 {
    grid-column-start: 6;
  }
  .gridwrap .g-start-xl-7 {
    grid-column-start: 7;
  }
  .gridwrap .g-start-xl-8 {
    grid-column-start: 8;
  }
  .gridwrap .g-start-xl-9 {
    grid-column-start: 9;
  }
  .gridwrap .g-start-xl-10 {
    grid-column-start: 10;
  }
  .gridwrap .g-start-xl-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 1400px) {
  .gridwrap .g-col-xxl-1 {
    grid-column: auto/span 1;
  }
  .gridwrap .g-col-xxl-2 {
    grid-column: auto/span 2;
  }
  .gridwrap .g-col-xxl-3 {
    grid-column: auto/span 3;
  }
  .gridwrap .g-col-xxl-4 {
    grid-column: auto/span 4;
  }
  .gridwrap .g-col-xxl-5 {
    grid-column: auto/span 5;
  }
  .gridwrap .g-col-xxl-6 {
    grid-column: auto/span 6;
  }
  .gridwrap .g-col-xxl-7 {
    grid-column: auto/span 7;
  }
  .gridwrap .g-col-xxl-8 {
    grid-column: auto/span 8;
  }
  .gridwrap .g-col-xxl-9 {
    grid-column: auto/span 9;
  }
  .gridwrap .g-col-xxl-10 {
    grid-column: auto/span 10;
  }
  .gridwrap .g-col-xxl-11 {
    grid-column: auto/span 11;
  }
  .gridwrap .g-col-xxl-12 {
    grid-column: auto/span 12;
  }
  .gridwrap .g-start-xxl-1 {
    grid-column-start: 1;
  }
  .gridwrap .g-start-xxl-2 {
    grid-column-start: 2;
  }
  .gridwrap .g-start-xxl-3 {
    grid-column-start: 3;
  }
  .gridwrap .g-start-xxl-4 {
    grid-column-start: 4;
  }
  .gridwrap .g-start-xxl-5 {
    grid-column-start: 5;
  }
  .gridwrap .g-start-xxl-6 {
    grid-column-start: 6;
  }
  .gridwrap .g-start-xxl-7 {
    grid-column-start: 7;
  }
  .gridwrap .g-start-xxl-8 {
    grid-column-start: 8;
  }
  .gridwrap .g-start-xxl-9 {
    grid-column-start: 9;
  }
  .gridwrap .g-start-xxl-10 {
    grid-column-start: 10;
  }
  .gridwrap .g-start-xxl-11 {
    grid-column-start: 11;
  }
}

/* GRID */
/* COMMON */
:root {
  --theme-blue: #1B1464;
  --theme-red: #DD0000;
  --theme-grey:#F5F5F5;
}

.container {
  max-inline-size: 80vw;
  margin: auto;
}

.container-fluid {
  max-inline-size: 90vw;
  margin: auto;
}

.img_fluid, .img_fluid img {
  width: 100%;
  height: auto;
}

.align-items-center {
  align-items: center;
}

.empty10 {
  height: 10px;
}

.empty20 {
  height: 20px;
}

.empty30 {
  height: 30px;
}

.empty40 {
  height: 40px;
}

.empty50 {
  height: 50px;
}

.empty60 {
  height: 60px;
}

.empty80 {
  height: 80px;
}

.empty100 {
  height: 100px;
}

.empty150 {
  height: 150px;
}

.center75 {
  width: 75%;
  margin: auto;
}

.vis_hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.svgIcon {
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  display: inline-block;
  height: 1em;
  width: 1em;
}

.strokeBtn {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #fff;
  border: 1px solid #fff;
  padding: 13px 21px;
  transition: 0.5s ease;
  font-family: "pc_semi";
}
.strokeBtn:hover {
  background: var(--theme-red);
  border: 1px solid var(--theme-red);
}
.strokeBtn {
  border-radius: 100px;
}

.theme_white_btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #fff;
  color: var(--theme-blue);
  padding: 13px 21px;
  font-size: 14px;
  font-family: "pc_semi";
  transition: 0.5s ease;
}
.theme_white_btn:hover {
  background: var(--theme-red);
  color: #fff;
}
.theme_white_btn {
  border-radius: 100px;
}

.wp-block-button a, .theme_color_btn {
  background: var(--theme-red);
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  padding: 20px 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 11px 25px -20px #2e2403;
  transition: 0.5s ease;
  position: relative;
  z-index: 1;
  font-family: "pc_Regular";
}
.wp-block-button a:hover, .theme_color_btn:hover {
  background: #b10000;
}

.full_height_img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.tickBullet li {
  position: relative;
  padding-left: 30px;
}
.tickBullet li:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  left: 6px;
  top: 14px;
  border-bottom: 2px solid var(--theme-red);
  border-left: 2px solid var(--theme-red);
  transform: rotate(-45deg);
}
.tickBullet li:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 8px;
  border: 2px solid var(--theme-red);
  border-radius: 50%;
}
.tickBullet li:not(:last-child) {
  margin-bottom: 15px;
}

header {
  box-shadow: 0 1px 1px rgba(35, 31, 32, 0.2);
  position: relative;
  transition: 0.5s ease;
  z-index: 10000000;
}
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
}
header .headerWrap {
  display: grid;
  gap: 30px;
  gap: 0px;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  background: #fff;
  padding-left: 30px;
}
header .headerWrap .headerLogo img {
  width: 200px;
}
header .headerWrap .grp_web {
  display: flex;
  align-items: center;
}
header .headerWrap .grp_web a {
  display: block;
}
header .headerWrap .grp_web a img {
  width: 120px;
}
header .headerWrap .headerRightsec .headerTop {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 30px;
  position: relative;
  padding: 10px 10vw 10px 0;
}
header .headerWrap .headerRightsec .headerTop .headerTopMenu ul {
  display: flex;
  justify-content: right;
  align-items: center;
}
header .headerWrap .headerRightsec .headerTop .headerTopMenu ul li {
  display: flex;
  align-items: center;
}
header .headerWrap .headerRightsec .headerTop .headerTopMenu ul li:not(:last-child)::after {
  background: #fff;
  width: 1px;
  height: 10px;
  content: "";
  display: block;
  margin: 0 15px;
}
header .headerWrap .headerRightsec .headerTop .headerTopMenu ul li a {
  font-size: 14px;
  position: relative;
  transition: 0.5s ease;
  color: #000;
}
header .headerWrap .headerRightsec .headerTop .headerTopMenu ul li a:hover {
  color: var(--theme-red);
}
header .headerWrap .headerRightsec .headerBtm {
  display: flex;
  justify-content: right;
  gap: 20px;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu {
  display: flex;
  justify-content: flex-end;
  transition: 0.5s ease;
  position: relative;
  margin-right: 10px;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul {
  display: flex;
  gap: 19px;
  position: relative;
  align-items: center;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul::marker {
  display: none;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul li {
  height: 100%;
  position: relative;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul li a {
  color: #707070;
  font-size: 0.75rem;
  transition: 0.5s ease;
  font-size: 16px;
  font-weight: normal;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul li a:hover {
  background: rgba(255, 255, 255, 0.7803921569);
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul li:hover > ul {
  display: block;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--theme-grey);
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 2px 1px 1px rgba(35, 31, 32, 0.2);
  width: 300px;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul ul li {
  position: relative;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul ul li a {
  padding: 5px 20px;
  color: #000;
  font-size: 16px;
  white-space: pre-wrap;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul ul ul {
  top: 50%;
  left: 100%;
  width: -moz-max-content;
  width: max-content;
  border-radius: 10px;
  transform: translateY(-50%);
}
header .headerWrap .headerRightsec .headerBtm .mainmenu ul ul ul ul {
  width: 300px;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu li.current_page_parent > a, header .headerWrap .headerRightsec .headerBtm .mainmenu li.current-menu-parent > a, header .headerWrap .headerRightsec .headerBtm .mainmenu li.current-menu-ancestor > a {
  color: #000;
}
header .headerWrap .headerRightsec .headerBtm .mainmenu li.current-menu-item > a, header .headerWrap .headerRightsec .headerBtm .mainmenu li.current_page_item > a {
  color: #000;
  background: rgba(255, 255, 255, 0.2);
}
header .theme_color_btn {
  padding: 25px;
  white-space: nowrap;
  font-size: 16px;
}
header .mainmenu li.menu-item-has-children > ul::before {
  content: "";
  display: block;
  border-bottom: 10px solid #d7d7d7;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  width: 0;
  height: 0;
  position: absolute;
  top: -10px;
  left: 25px;
}
header .mainmenu li li.menu-item-has-children > ul::before {
  content: "";
  display: block;
  border-top: 10px solid transparent;
  border-right: 10px solid #d7d7d7;
  border-bottom: 10px solid transparent;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

.header_search {
  color: #000;
  border-left: 1px solid #e9e9e9;
  display: flex;
}

.searchSec {
  color: #707070;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  top: 0;
  font-size: 12px;
  gap: 5px;
  flex-direction: column;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 20px;
}
.searchSec .closeSVG, .searchSec.openBtn .searchSVG {
  display: none;
}
.searchSec .searchSVG, .searchSec.openBtn .closeSVG {
  display: block;
}
.searchSec svg {
  font-size: 20px;
}
.searchSec svg.closeSVG {
  width: 20px;
  cursor: pointer;
  font-size: 15px;
}

.serviceShow {
  display: none;
  position: absolute;
  right: 0px;
  width: 100%;
  background: #fff;
  z-index: -1;
  height: 100%;
  transition: 0.5s ease;
  top: 100%;
  overflow: hidden;
  transform: translateY(-5px);
  opacity: 0;
  border-top: 1px solid #e9e9e9;
  box-shadow: 0 1px 1px rgba(35, 31, 32, 0.2);
}
.serviceShow input {
  display: block;
  margin: 0 auto;
  background: #fff;
  border: 0;
  height: 100%;
  color: #000;
  font-size: 25px;
  width: 100%;
  padding: 15px;
}
.serviceShow.showsearchw {
  display: block;
  overflow: visible;
  transform: translateY(0px);
  z-index: 10;
  opacity: 1;
}
.serviceShow form {
  display: flex;
  height: 100%;
}
.serviceShow button {
  transition: 0.5s ease;
  background: none;
  border: 0;
  cursor: pointer;
  color: #000;
  font-size: 20px;
  padding-right: 20px;
}
.serviceShow ::-moz-placeholder {
  color: #706d6e;
}
.serviceShow ::placeholder {
  color: #706d6e;
}

.smallmenu {
  display: none;
}
.smallmenu .menu-dropdown-icon {
  position: absolute;
  right: 40px;
}
.smallmenu .menu-dropdown-icon:after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  cursor: pointer;
  transform: rotate(135deg);
  margin: 6px auto;
}
.smallmenu nav {
  display: none;
  position: absolute;
  top: 100%;
  background: var(--theme-grey);
  width: 100%;
  left: 0;
  z-index: 1000;
  padding: 20px;
  box-shadow: 0 1px 1px rgba(35, 31, 32, 0.2);
}
.smallmenu nav .sub-menu {
  display: none;
}
.smallmenu nav .subMenu {
  margin-left: 40px;
}
.smallmenu nav .menuBtn a {
  background: linear-gradient(90deg, #27A5FF 0%, #40D2C3 51%, #F9DC18 100%);
}
.smallmenu nav a {
  color: #707070;
  font-size: 15px;
  padding: 5px 10px;
  border-radius: 5px;
  display: block;
  position: relative;
  width: 90%;
}
.smallmenu nav a.theme_color_btn {
  padding: 10px 20px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.smallmenu .menu-mobile {
  position: absolute;
  right: 35px;
  top: 20px;
  z-index: 100;
  width: 26px;
  height: 26px;
  margin-left: auto;
  cursor: pointer;
}
.smallmenu .menu-mobile .finalChild, .smallmenu .menu-mobile .firstChild, .smallmenu .menu-mobile .secChild {
  background: #000;
  width: 25px;
  height: 2px;
  display: block;
  margin: 4px 0;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  position: absolute;
}
.smallmenu .menu-mobile .firstChild {
  top: 0;
}
.smallmenu .menu-mobile .secChild {
  top: 7px;
}
.smallmenu .menu-mobile .finalChild {
  bottom: 1px;
}
.smallmenu .menu-mobile.openBtn .firstChild {
  transform: rotate(45deg);
  top: 8px;
}
.smallmenu .menu-mobile.openBtn .secChild {
  display: none;
}
.smallmenu .menu-mobile.openBtn .finalChild {
  transform: rotate(-45deg);
  bottom: 8px;
}
.smallmenu .menu-item-has-children ul {
  border-bottom: 2px solid #ccc;
}

.main_hero {
  position: relative;
}
.main_hero .main_hero_banner {
  position: relative;
}
.main_hero .main_hero_banner::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.8117647059), transparent);
  position: absolute;
  top: 0;
  right: 0;
}
.main_hero .heroBox_container {
  position: absolute;
  right: 30px;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 100;
}
.main_hero .hero_bxWrap {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
.main_hero .hero_bxWrap .hero_bx {
  display: grid;
  gap: 30px;
  gap: 10px;
}
.main_hero .hero_bxWrap .hero_bx .hero_bx_list {
  background: var(--theme-blue);
  font-size: 22px;
  color: #fff;
  padding: 20px;
  clip-path: inset(0 round 10px);
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
  align-items: center;
  transition: 0.5s ease;
}
.main_hero .hero_bxWrap .hero_bx .hero_bx_list:hover {
  transform: scale(1.1);
}
.main_hero .hero_bxWrap .hero_bx .hero_bx_list .ser_list {
  width: 150px;
}
.main_hero .hero_bxWrap .hero_bx .hero_bx_list img {
  width: 40px;
}
.main_hero .hero_bxWrap .hero_bx .hero_bx_list:last-child {
  font-size: 22px;
  background: var(--theme-red);
}
.main_hero .hero_bxWrap .hero_bx .hero_bx_list:last-child .roundArrow {
  background: #fff;
  color: var(--theme-red);
}

.roundArrow {
  background: var(--theme-red);
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 100px;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  position: inherit;
  right: inherit;
  top: inherit;
}

.company_profile {
  background: var(--theme-grey);
  overflow: hidden;
}
.company_profile .profile_grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.company_profile .profile_grid .profile_grid_left, .company_profile .profile_grid .wp-block-column:first-child {
  padding: 100px 100px 100px 0;
}
.company_profile .profile_grid .profile_grid_left h1, .company_profile .profile_grid .wp-block-column:first-child h1 {
  color: #000;
  font-family: "pc_semi";
}
.company_profile .profile_grid .profile_grid_left h1 small, .company_profile .profile_grid .wp-block-column:first-child h1 small {
  display: block;
  color: var(--theme-red);
  font-family: "pc_Regular";
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-left: 100px;
}
.company_profile .profile_grid .profile_grid_left h1 small::after, .company_profile .profile_grid .wp-block-column:first-child h1 small::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  left: 0;
  top: 50%;
  background: var(--theme-red);
}
.company_profile .profile_grid .profile_grid_left p, .company_profile .profile_grid .wp-block-column:first-child p {
  color: #727272;
}
.company_profile .profile_grid .profile_grid_left p strong, .company_profile .profile_grid .wp-block-column:first-child p strong {
  font-family: "pc_semi";
  display: block;
  margin-bottom: 20px;
}
.company_profile .profile_grid .profile_grid_left .arrowBtn, .company_profile .profile_grid .wp-block-column:first-child .arrowBtn {
  margin-top: 20px;
}
.company_profile .profile_grid .profile_grid_right, .company_profile .profile_grid .wp-block-column:last-child {
  position: relative;
}
.company_profile .profile_grid .profile_grid_right::after, .company_profile .profile_grid .wp-block-column:last-child::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 250px;
  right: 0;
  top: 50%;
  background: var(--theme-red);
  transform: translateY(-50%);
  right: inherit;
  left: 0;
}
.company_profile .profile_grid .profile_grid_right img, .company_profile .profile_grid .wp-block-column:last-child img {
  position: absolute;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 130%;
}

.companyIfo {
  margin: 100px 0;
}
.companyIfo .companyIfo_grid {
  width: 80%;
  margin: auto;
}
.companyIfo .companyIfo_grid .gridBx {
  background: var(--theme-grey);
  padding: 50px;
  position: relative; z-index:10;
  border: 1px solid #dbdbdb;
  padding-inline-end: 40%;
}
.companyIfo .companyIfo_grid .gridBx::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 250px;
  right: 0;
  top: 50%;
  background: var(--theme-red);
  transform: translateY(-50%);
}
.companyIfo .companyIfo_grid .gridBx h2 {
  color: var(--theme-red);
  margin-bottom: 50px;
}
.companyIfo .companyIfo_grid .gridBx h2 small {
  display: block;
  font-size: 25px;
  letter-spacing: 2px;
  line-height: normal;
  color: var(--theme-red);
  margin-bottom: 10px;
}
.companyIfo .companyIfo_grid .gridBx ul li .news_date {
  font-family: "pc_semi";
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.companyIfo .companyIfo_grid .gridBx ul li:not(:last-child) {
  border-bottom: 1px solid #CBCBCB;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.companyIfo .companyIfo_grid .gridBx:last-child h2 {
  font-family: "pc_light";
  color: #333333;
  font-size: 50px;
}
.companyIfo .companyIfo_grid .gridBx:last-child p {
  margin-bottom: 50px;
}
.companyIfo .companyIfo_grid .gridBx p {
  font-size: 25px;
  font-family: "pc_semi";
  margin-top: 10px;
  line-height: 150%;
  color: #333333;
}
.companyIfo .companyIfo_grid .gridBx .text_link_arrow {
  display: flex;
  align-items: center;
  color: var(--theme-red);
  font-family: "pc_semi";
  font-size: 18px;
}
.companyIfo .companyIfo_grid .gridBx .text_link_arrow i {
  display: inline-block;
  aspect-ratio: 1;
  position: relative;
  width: 11px;
  margin-left: 22px;
  transition: 0.5s ease;
  border-top: 1px solid var(--theme-red);
  border-right: 1px solid var(--theme-red);
  transform: rotate(45deg);
}
.companyIfo .companyIfo_grid .gridBx .text_link_arrow {
  display: inline-block;
  font-size: 15px;
  margin-left: 10px;
  font-family: "pc_Regular";
}
.companyIfo .companyIfo_grid .gridBx .text_link_arrow i {
  width: 8px;
  margin-left: 3px;
}
.companyIfo .companyIfo_grid img {
  position: absolute;
  bottom: -30px;
  width: 40%;
  right: 0;
}

.faqSec {
  background: var(--theme-grey);
  padding: 100px 0;
}
.faqSec .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
.faqSec .theme_color_btn {
  border-radius: 100px;
}

.faqlist_wrap {
  background: #fff;
  padding: 50px;
  width: 65%;
  margin: auto;
  position: relative;
  border-radius: 10px;
}
.faqlist_wrap:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 250px;
  right: 0;
  top: 50%;
  background: var(--theme-red);
  transform: translateY(-50%);
  height: 50%;
}
.faqlist_wrap .faq_list {
  padding: 30px 0;
  position: relative;
}
.faqlist_wrap .faq_list:first-child {
  padding-top: 0;
}
.faqlist_wrap .faq_list:first-child .faqexcol_ico {
  top: 7px;
}
.faqlist_wrap .faq_list:last-child {
  padding-bottom: 0;
}
.faqlist_wrap .faq_list .faqexcol_ico {
  position: absolute;
  right: 0px;
  top: 35px;
  width: 25px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.faqlist_wrap .faq_list .faqexcol_ico::after, .faqlist_wrap .faq_list .faqexcol_ico::before {
  transition: 0.5s ease;
  font-size: 30px;
  background: var(--theme-red);
  font-family: "pc_light";
}
.faqlist_wrap .faq_list .faqexcol_ico::after {
  content: "";
  width: 26px;
  height: 2px;
}
.faqlist_wrap .faq_list .faqexcol_ico::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 26px;
  left: 12px;
  top: 0;
}
.faqlist_wrap .faq_list:not(:last-child) {
  border-bottom: 1px solid #CBCBCB;
}
.faqlist_wrap .faq_list .faq_question {
  font-size: 23px;
  font-family: "pc_semi";
  cursor: pointer;
  width: 90%;
  line-height: 150%;
  letter-spacing: 0;
}
.faqlist_wrap .faq_list.active .faq_question {
  margin-bottom: 15px;
  color: var(--theme-red);
}
.faqlist_wrap .faq_list.active .faqexcol_ico::after {
  opacity: 0;
  width: 0;
}
.faqlist_wrap .faq_list.active .faqexcol_ico::before {
  transform: rotate(90deg);
  transform-origin: center;
}
.faqlist_wrap .faq_list .faq_content h5 {
  font-family: "pc_semi";
  margin: 40px 0 15px 0;
}
.faqlist_wrap .faq_list .faq_content li {
  position: relative;
  padding-left: 30px;
}
.faqlist_wrap .faq_list .faq_content li:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  left: 6px;
  top: 14px;
  border-bottom: 2px solid var(--theme-red);
  border-left: 2px solid var(--theme-red);
  transform: rotate(-45deg);
}
.faqlist_wrap .faq_list .faq_content li:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 8px;
  border: 2px solid var(--theme-red);
  border-radius: 50%;
}
.faqlist_wrap .faq_list .faq_content li:not(:last-child) {
  margin-bottom: 15px;
}
.faqlist_wrap .faq_list .faq_content li {
  color: #6c6c6c;
  width: 90%;
}
.faqlist_wrap .faq_list .faq_content p {
  margin-bottom: 15px;
  color: #6c6c6c;
  width: 90%;
}

.subPage.no_banner {
  background: var(--theme-grey);
}

.introBx {
  width: 70%;
  margin: auto;
  text-align: center;
  padding: 100px 50px 0 50px;
}
.introBx h1 {
  font-family: "pc_semi";
}

.awsm-job-form-inner {
  padding: 25px;
}
.awsm-job-form-inner h2 {
  font-size: 30px;
}

.awsm-application-form .awsm-job-form-group:nth-child(5) {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.awsm-application-form .awsm-job-form-group:nth-child(5) small {
  font-size: 12px;
}
.awsm-application-form .awsm-job-form-field {
  border: 1px solid #dbdbdb;
  color: #9A9A9A;
  padding: 10px;
  border-radius: 3px;
  font-size: 15px;
  width: 100%;
}
.awsm-application-form .awsm-job-form-group input[type=checkbox], .awsm-application-form .awsm-job-form-group input[type=radio] {
  width: auto;
}

.awsm-application-submit-btn {
  background: var(--theme-red);
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  padding: 20px 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 11px 25px -20px #2e2403;
  transition: 0.5s ease;
  position: relative;
  z-index: 1;
  font-family: "pc_Regular";
}
.awsm-application-submit-btn:hover {
  background: #b10000;
}
.awsm-application-submit-btn {
  border: none;
}

.awsm-job-wrap {
  width: 60%;
  margin: auto;
}

.awsm-job-item h2.awsm-job-post-title a {
  color: #000;
}
.awsm-job-item h2.awsm-job-post-title a:hover {
  color: var(--theme-red);
}

.awsm-job-more {
  color: var(--theme-red);
}

.awsm-job-form-options-container label, .awsm-job-inline-group label {
  font-size: 12px;
}

.quickContactSec {
  position: relative;
  z-index: 10;
}
.quickContactSec .quickContact {
  display: grid;
  gap: 30px;
  gap: 90px;
  grid-template-columns: 1fr 2fr;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137), 0 3px 6px rgba(0, 0, 0, 0.231372549);
  padding: 50px;
  border-radius: 10px;
  margin: 100px auto;
  width: 80%;
}
.quickContactSec form p {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
/*.quickContactSec .text_field {*/
/*  border: 1px solid #dbdbdb;*/
/*  color: #9A9A9A;*/
/*  padding: 17px 15px;*/
/*  border-radius: 3px;*/
/*  font-size: 15px;*/
/*  width: 100%;*/
/*}*/
.quickContactSec .wpcf7-form-control-wrap[data-name=Message] {
  grid-column: 1/-1;
}
.quickContactSec .wpcf7-form-control-wrap[data-name=enquiry-type] {
  grid-column: 1/-1;
  position: relative;
  font-weight: bold;
}
.quickContactSec .wpcf7-form-control-wrap[data-name=enquiry-type]::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 20px;
  top: 25px;
  border-top: 5px solid var(--theme-red);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.quickContactSec .wpcf7-form-control-wrap[data-name=enquiry-type] select {
  width: 100%;
  -webkit-appearance: none;
}
.quickContactSec .wpcf7-form-control-wrap textarea {
  width: 100%;
  height: 120px;
}
.quickContactSec ::-moz-placeholder {
  text-transform: uppercase;
  font-size: 11px;
}
.quickContactSec ::placeholder {
  text-transform: uppercase;
  font-size: 11px;
}
.quickContactSec .theme_color_btn {
  border: 0;
  width: -moz-fit-content;
  width: fit-content;
}

.wpcf7-not-valid-tip {
  text-align: right;
  margin-top: -6px;
}

.thnkbx {
  background: var(--kg-primary-bg);
  padding: 15px;
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto;
  text-align: center;
}

footer .footBg {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}
footer .grpincLogo img {
  mix-blend-mode: multiply;
  width: 80%;
  height: auto;
}
footer .footergridwrap {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
footer .footbx h6 {
  font-size: 20px;
  font-family: "pc_semi";
}
footer .footbx ul.policyMenu {
  display: flex;
  gap: 15px;
  justify-content: center;
}
footer .footbx ul.policyMenu li a {
  border-right: 1px solid #000;
  padding: 0 10px 0 0;
  font-size: 13px;
}
footer .footbx ul.policyMenu li:last-child a {
  border: 0;
}
footer .footbx ul li {
  font-size: 15px;
}
footer .footbx ul li a {
  color: #333;
  font-weight: normal;
}
footer .footbx ul li a:hover {
  color: #000;
  text-decoration: underline;
}
footer .footbx:last-child {
  text-align: right;
}
footer .copyRights {
  padding: 30px 0 20px 0;
  background: #e5e5e5;
  color: #000;
  margin-top: 30px;
}
footer .copyRights .footCopywrap {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
footer .copyRights .footCopywrap .conncteSocial {
  display: flex;
  gap: 20px;
  align-items: center;
  line-height: 0;
  justify-content: center;
}
footer .copyRights .footCopywrap .conncteSocial a {
  color: #0a66c2;
  font-size: 25px;
}
footer p {
  text-align: right;
  margin-bottom: 0 !important;
  font-size: 13px;
}
footer .footerMenu {
  margin-top: 25px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.mobile-view .footbx h6 {
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.mobile-view .footbx h6::after, .mobile-view .footbx h6::before {
  content: "";
  transition: 0.5s ease;
  font-size: 30px;
  background: #000;
  font-family: "pc_light";
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.mobile-view .footbx h6::after {
  width: 20px;
  height: 2px;
  right: 0;
}
.mobile-view .footbx h6::before {
  width: 2px;
  height: 20px;
  right: 9px;
}
.mobile-view .footbx.active h6::after {
  opacity: 0;
  width: 0;
}
.mobile-view .footbx.active h6::before {
  transform: rotate(90deg);
  transform-origin: center;
}

.subPage .subBanner .container {
  position: relative;
}
.subPage .subBanner .banner_image {
  position: relative;
}
.subPage .subBanner .banner_image:after {
  border: 5px solid var(--theme-red);
  bottom: 0;
  content: "";
  position: absolute;
  width: 30%;
  right: 0;
}
.subPage .subBanner .banner_image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.subPage .subBanner .banner_content {
  position: absolute;
  padding: 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background: #fff;
  left: 0;
  bottom: -100px;
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--theme-red);
  background: linear-gradient(to right, var(--theme-red), var(--theme-blue));
}
.subPage .subBanner .banner_content h1 {
  font-family: "pc_semi";
  position: relative;
  margin-bottom: 0;
  color: #fff;
}
.subPage .subBanner .banner_content p {
  color: #fff;
  font-size: 22px;
  line-height: 150%;
}
.subPage .subBanner.woBannerImge {
  margin-bottom: 50px;
  background: var(--theme-grey);
}
.subPage .subBanner.woBannerImge .banner_content {
  position: inherit;
  width: 80%;
  margin: auto;
}

.ag-timeline-block {
  padding: 100px 0 80px 0;
  width: 60%;
  margin: auto;
}

.ag-timeline_box {
  position: relative;
}

.ag-timeline-carousel-arrow_box {
  z-index: 9999;
  position: absolute;
  left: 0;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.ag-timeline-carousel-arrow {
  display: block;
  height: 52px;
  width: 52px;
  border: 1px solid #000;
  background-color: #000;
  cursor: pointer;
  stroke: #FFF;
  border-radius: 50%;
  transition: all 0.2s ease-out 0s;
  position: absolute;
}
.ag-timeline-carousel-arrow:hover {
  border: 1px solid #000;
  background-color: transparent;
}

.js-ag-timeline-carousel-arrow_prev {
  left: 0;
}

.js-ag-timeline-carousel-arrow_next {
  right: 0;
}

.js-ag-timeline-carousel-arrow_prev:hover, .js-ag-timeline-carousel-arrow_next:hover {
  stroke: #000;
}

.svg-arrow-left, .svg-arrow-right {
  height: 18px;
  width: 10px;
  margin: -8px 0 0 -5px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.ag-timeline-carousel_list {
  text-align: center;
  width: 83%;
  margin: auto !important;
}
.ag-timeline-carousel_list p {
  width: 80%;
  margin: auto;
}

.ag-timeline_year {
  line-height: 1;
  margin: 0 0 40px;
  font-size: 90px;
  color: #041C2C;
  font-family: "pc_semi";
  background: linear-gradient(45deg, var(--theme-red) 40%, var(--theme-blue) 70%);
  -background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -text-fill-color: transparent;
}
.ag-timeline_year p {
  line-height: 1.36;
  margin: 0 0 15px;
  font-size: 16px;
  color: #041C2C;
}
.ag-timeline_year a {
  text-decoration: underline;
  color: var(--theme-blue);
}
.ag-timeline_year a:hover {
  text-decoration: none;
}

.js-timeline-carousel_nav .slick-track {
  transform: translate3d(0, 0px, 0px) !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: auto !important;
}

.ag-timeline-carousel-nav_box {
  position: relative;
}
.ag-timeline-carousel-nav_box:before, .ag-timeline-carousel-nav_box:after {
  content: "";
  height: 150px;
  width: 20%;
  margin: 0 0;
  z-index: 9999;
  position: absolute;
  bottom: 0;
}
.ag-timeline-carousel-nav_box:before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 35%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f4f4f4', endColorstr='#f4f4f4',GradientType=1 );
  right: 0;
}
.ag-timeline-carousel-nav_box:after {
  background: linear-gradient(to right, #ffffff 0%, #ffffff 65%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#00f4f4f4',GradientType=1 );
  left: 0;
}

.ag-timeline-carousel-nav_list {
  position: relative;
}
.ag-timeline-carousel-nav_list:after {
  content: "";
  height: 1px;
  background-color: var(--theme-blue);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
}

.ag-timeline-carousel-nav_item {
  display: inline-block;
  line-height: 1;
  width: 70px;
  padding: 130px 15px 0;
  cursor: pointer;
  vertical-align: bottom;
  text-align: center;
  font-size: 16px;
  color: #041C2C;
  position: relative;
}
.ag-timeline-carousel-nav_item:before {
  content: "";
  height: 5px;
  width: 5px;
  margin: 0 auto;
  background-color: #bbbbbb;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 102px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.ag-timeline-carousel-nav_item:after {
  content: "";
  height: 40px;
  width: 1px;
  margin: 0 auto;
  background-color: var(--theme-blue);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
}
.ag-timeline-carousel-nav_item.slick-current {
  margin: -5px 0 0;
  font-weight: 700;
  font-size: 22px;
  color: var(--theme-red);
}
.ag-timeline-carousel-nav_item.slick-current:before {
  height: 16px;
  width: 16px;
  background-color: var(--theme-red);
  bottom: 110px;
}
.ag-timeline-carousel-nav_item.slick-current:after {
  bottom: 59px;
  background-color: var(--theme-red);
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }
  .ag-timeline-carousel_list {
    padding: 0;
  }
  .ag-timeline-carousel-arrow_box {
    padding: 12px 0 12px 12px;
    background-color: #F4F4F4;
    z-index: 1000;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
  }
  .ag-timeline-carousel-arrow {
    display: inline-block;
    height: 33px;
    width: 33px;
  }
  .js-ag-timeline-carousel-arrow_prev {
    margin: 0 8px 0 0;
  }
  .js-ag-timeline-carousel-arrow_prev:before, .js-ag-timeline-carousel-arrow_next:before {
    height: 12px;
    width: 8px;
    margin: -6px auto 0;
  }
  .ag-timeline_year {
    font-size: 60px;
  }
  .ag-timeline-carousel-nav_box:before, .ag-timeline-carousel-nav_box:after {
    display: none;
    background: none;
    position: static;
  }
  .svg-arrow-left, .svg-arrow-right {
    height: 12px;
    width: 8px;
    margin: -6px 0 0 -4px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .ag-format-container {
    width: 750px;
  }
}
@media (min-width: 980px) and (max-width: 1161px) {
  .ag-format-container {
    width: 960px;
  }
}
.tab_container {
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  margin-top: 100px;
}
.tab_container .tabNav {
  margin-bottom: 50px;
  position: sticky;
  top: 0px;
  z-index: 10;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  background: var(--theme-blue);
  z-index: 10000;
}
.tab_container .tabNav ul {
  display: flex;
  margin: 0 30px;
  gap: 30px;
  justify-content: space-between;
}
.tab_container .tabNav ul li a {
  color: #fff;
  display: block;
  padding: 2rem 0;
  font-family: "pc_semi";
  font-weight: normal;
}
.tab_container .tabNav ul li a.active {
  border-bottom: 6px solid var(--theme-red);
  color: #fff;
}
.tab_container .tabcontent {
  padding: 50px 0;
  position: relative;
  margin: 0 80px;
}
.tab_container #eng1 .engpageciowrap, .tab_container #eng3 .engpageciowrap, .tab_container #eng5 .engpageciowrap {
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
.tab_container #eng1 .engpagecioimg, .tab_container #eng3 .engpagecioimg, .tab_container #eng5 .engpagecioimg {
  grid-area: 1;
}
.tab_container #eng6 .engpagecioimg {
  display: none;
}

.products-template-engineering {
  background: var(--theme-grey);
}

.engpageciowrap {
  display: grid;
  gap: 30px;
  grid-template-columns: 2fr 1fr;
  align-items: flex-start;
}
.engpageciowrap .engpagecio {
  height: 100%;
}
.engpageciowrap .engpagecio img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.engpageciowrap .engpagecio p {
  margin-bottom: 20px;
}

.aboutSub {
  background: var(--theme-grey);
  display: inline-block;
  width: 100%;
}
.aboutSub.subpageCon {
  padding-top: 0;
}
.aboutSub .company_profile {
  background: #fff;
  padding-top: 100px;
}
.aboutSub .company_profile .profile_grid {
  margin-top: 80px;
}
.aboutSub .company_profile .profile_grid .wp-block-column:first-child p {
  font-size: 24px;
  line-height: 150%;
}
.aboutSub .company_profile .profile_grid .wp-block-column:first-child p strong {
  display: inline-block;
  margin: 0;
}
.aboutSub .tab_container {
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  margin-top: 100px;
}
.aboutSub .tab_container .tabcontent {
  margin: 0 80px;
}
.aboutSub .tab_container .tabcontent .placeanddate {
  color: #333;
  margin-bottom: 25px;
  font-size: 16px;
}
.aboutSub .tab_container .tabcontent p:not(:last-child) {
  margin-bottom: 15px;
}
.aboutSub .tab_container .tabcontent .theme_color_btn {
  margin-top: 20px;
}
.aboutSub .tab_container .tabcontent .boardMembrs {
  padding: 100px;
}
.aboutSub .tab_container .tabcontent .boardMembrs img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  top: 0;
  left: 0;
}
.aboutSub .tab_container .tabcontent .boardMembrs .boardMemCon {
  position: relative;
  z-index: 10;
}
.aboutSub .tab_container .tabcontent .boardMembrs .boardMemCon h4 {
  color: #fff;
  font-size: 40px;
  font-family: "pc_bold";
  width: -moz-min-content;
  width: min-content;
}
.aboutSub .tab_container .tabcontent h4 {
  margin-bottom: 20px;
  font-family: "pc_semi";
  color: var(--theme-red);
  font-size: 20px;
}
.aboutSub .tab_container .tabcontent.our-history .introPara {
  text-align: center;
  width: 60%;
  margin: auto;
}

.leadership_mem_wrap:not(:last-child) {
  margin-bottom: 50px;
}
.leadership_mem_wrap .leadership_list {
  position: relative;
  display: inline-block;
  width: 24%;
  margin-bottom: 20px;
}
.leadership_mem_wrap .leadership_list img {
  display: block;
  width: 100%;
  height: auto;
}
.leadership_mem_wrap .leadership_list .leaderDetails {
  padding: 20px;
  background: var(--theme-grey);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 120px;
}
.leadership_mem_wrap .leadership_list .leaderDetails:hover::after {
  height: 100%;
}
.leadership_mem_wrap .leadership_list .leaderDetails::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 250px;
  right: 0;
  top: 50%;
  background: var(--theme-red);
  transform: translateY(-50%);
  width: 3px;
  height: 40px;
  transition: 0.5s ease;
}
.leadership_mem_wrap .leadership_list .leaderDetails h5 {
  font-size: 20px;
  font-family: "pc_semi";
  margin-bottom: 0;
}
.leadership_mem_wrap .leadership_list .leaderDetails p {
  font-size: 15px;
  color: #858585;
  margin: 0 !important;
  display: block;
  line-height: 130%;
}
.leadership_mem_wrap .leadership_list .leaderDetails span {
  font-size: 13px;
  font-family: "pc_Regular";
  margin-top: 10px;
}
.leadership_mem_wrap .leadership_list .leaderDetails span.arrowBtn i {
  width: 6px;
  margin-left: 5px;
}
.leadership_mem_wrap .leadership_list .leaderDetails span.arrowBtn i::before {
  display: none;
}

.leaderShipCon {
  display: none;
  width: 98%;
  float: left;
  padding: 35px;
  background: var(--theme-grey);
  min-height: 200px;
  position: relative;
  margin: 5px 0 20px 0;
  transform: scale(0.5);
}

.leaderActive:after, .leaderActive:before {
  position: absolute;
  content: "";
}
.leaderActive:after {
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid var(--theme-red);
}
.leaderActive:before {
  width: 100%;
  background: var(--theme-red);
  height: 3px;
  left: 0;
  bottom: -25px;
}

.leaderActivecon {
  transform: scale(1);
}

.closeBtn {
  position: absolute;
  top: 15px;
  right: 15px;
}

.closeBtn img {
  width: 20px;
}

.leaderDetailslist {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 50px;
}
.leaderDetailslist li {
  text-align: center;
  padding: 20px;
  background: var(--theme-grey);
  position: relative;
  left: inherit;
  font-weight: bold;
}
.leaderDetailslist li:hover::after {
  height: 100%;
}
.leaderDetailslist li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 250px;
  right: 0;
  top: 50%;
  background: var(--theme-red);
  transform: translateY(-50%);
  width: 3px;
  height: 40px;
  transition: 0.5s ease;
  left: inherit;
}
.leaderDetailslist li::before {
  display: none;
}

.leadership_mem_secwrap .leadership_mem_wrap {
  margin-bottom: 0;
}

p.hightLightPara {
  font-size: 30px;
  line-height: 150%;
  font-family: "pc_light";
}

.footerWaveimg {
  background-image: url(../images/footerbg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  padding-bottom: 350px !important;
}

.subpageCon {
  padding: 100px 0;
}
.subpageCon.contact-us .container {
  position: relative;
}

.anualreport_list_wrap {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.anualreport_list_wrap .anualreport_list {
  background: #000b26 url(../images/annual-report-pattern.png) no-repeat top right;
  background-size: 100%;
  transition: 0.5s ease;
  position: relative;
}
.anualreport_list_wrap .anualreport_list p {
  position: relative;
  display: block;
  color: #fff;
  font-size: 35px;
  aspect-ratio: 1;
  display: flex;
  padding: 40px 40px 20px 40px;
  flex-direction: column;
  justify-content: flex-end;
}
.anualreport_list_wrap .anualreport_list p strong {
  color: var(--theme-red);
  font-size: 55px;
  font-weight: bold;
  display: block;
  font-family: "pc_bold";
  line-height: 130%;
}
.anualreport_list_wrap .anualreport_list a {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
}
.anualreport_list_wrap .anualreport_list a::after {
  background: url(../images/arrow-red.svg) no-repeat center;
  background-size: 100%;
  top: 30px;
  right: 30px;
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1;
}
.anualreport_list_wrap .anualreport_list:hover {
  background-size: 110%;
}

.disclosures_list_wrap {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.disclosures_list {
  transition: 0.5s ease;
  position: relative;
}
.disclosures_list p {
  position: relative;
  display: block;
  color: #fff;
  font-size: 35px;
  aspect-ratio: 1;
  display: flex;
  padding: 40px 40px 20px 40px;
  flex-direction: column;
  justify-content: flex-end;
  font-weight: bold;
  line-height: 130%;
  height: 100%;
  width: 100%;
}
.disclosures_list a {
  text-indent: -999px;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
}
.disclosures_list a::after {
  background: url(../images/arrow-red.svg) no-repeat center;
  background-size: 100%;
  top: 30px;
  right: 30px;
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 1;
}
.disclosures_list a:hover {
  background: none;
}
.disclosures_list .wp-block-cover .wp-block-cover__inner-container, .disclosures_list .wp-block-cover-image .wp-block-cover__inner-container {
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
}

.contact_page_wrap {
  display: grid;
  gap: 30px;
  grid-template-columns: 2fr 3fr;
}
.contact_page_wrap .mapaccSec {
  position: relative;
}
.contact_page_wrap .quickContactSec {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 33px 26px;
  background: var(--theme-grey);
}
.contact_page_wrap iframe {
  width: 100%;
}

.addressList {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 25px;
  background: var(--theme-grey);
  position: relative;
}
.addressList::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 50px;
  top: 100%;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--theme-red);
  z-index: 10;
}
.addressList h4 {
  color: var(--theme-red);
  font-family: "pc_semi";
}
.addressList ul {
  margin-top: 20px;
}
.addressList ul li {
  padding-left: 0 !important;
}
.addressList ul li::after, .addressList ul li::before {
  display: none;
}
.addressList ul li:not(:last-child) {
  margin-bottom: 10px;
}
.addressList a {
  color: var(--theme-red);
}
.addressList {
  word-break: break-word;
  overflow-wrap: break-word;
  display: inline-block;
}
.addressList span, .addressList strong {
  width: 65px;
  display: inline-block;
  font-family: "pc_bold";
}
.addressList iframe {
  width: 100%;
  background: #fff;
  padding: 10px;
  height: 200px;
}

.products-template-claim-services .addressList span, .products-template-claim-services .addressList strong {
  width: 135px;
}

.con_grp-detail iframe {
  width: 100%;
  height: 200px;
}
.con_grp-detail.active .addressList {
  position: relative;
}
.con_grp-detail.active .addressList::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 50px;
  top: 100%;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--theme-red);
  z-index: 10;
}
.con_grp-detail.active iframe {
  display: block;
}

.mapArea {
  grid-column: 1/-1;
}
.mapArea iframe {
  width: 100%;
}

.single-products .addressList strong {
  width: auto;
  margin-right: 20px;
}

.wp-block-button a {
  border-radius: 0 !important;
}

.careerPage {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.careerPage::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, var(--theme-red) 40%, var(--theme-blue) 70%);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
.careerPage .container {
  position: relative;
  z-index: 10;
}
.careerPage h1 {
  color: #fff;
  padding: 200px 0;
  font-family: "pc_semi";
  display: inline-block;
  width: 100%;
}

.careerListBxwrap {
  position: relative;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: auto;
}
.careerListBxwrap .careerListBx {
  background: #fff;
  padding: 30px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  position: relative;
  transition: 0.5s ease;
}
.careerListBxwrap .careerListBx::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 5px;
  right: 0;
  top: 100%;
  background: var(--theme-red);
  transition: 0.5s ease;
}
.careerListBxwrap .careerListBx:hover {
  background: var(--theme-grey);
}
.careerListBxwrap .careerListBx:hover::after {
  width: 100%;
}
.careerListBxwrap .careerListBx h4 {
  color: var(--theme-red);
  font-family: "pc_bold";
}
.careerListBxwrap .careerListBx.active {
  background: var(--theme-blue);
}
.careerListBxwrap .careerListBx.active h4, .careerListBxwrap .careerListBx.active p {
  color: #fff;
}
.careerListBxwrap .careerListBx.active::after {
  width: 100%;
}
.career_tabcontent {
  display: none;
  background: #fff;
  padding: 60px;
  width: 80%;
  margin: auto;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 100px;
}
.career_tabcontent .wp-block-list li {
  position: relative;
  padding-left: 30px;
}
.career_tabcontent .wp-block-list li:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  left: 6px;
  top: 14px;
  border-bottom: 2px solid var(--theme-red);
  border-left: 2px solid var(--theme-red);
  transform: rotate(-45deg);
}
.career_tabcontent .wp-block-list li:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 8px;
  border: 2px solid var(--theme-red);
  border-radius: 50%;
}
.career_tabcontent .wp-block-list li:not(:last-child) {
  margin-bottom: 15px;
}

.careerIntro img {
  margin-top: -200px;
  position: relative;
  margin-bottom: 50px;
}

.aboutSub .visionMissionsec {
  background: #fff;
}

.visionMissionsec {
  background: var(--theme-grey);
  padding: 80px 0;
}

.valuesBx .wp-block-column {
  background: var(--theme-grey);
  padding: 20px 30px 20px 20px;
  position: relative;
}
.valuesBx .wp-block-column::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 250px;
  right: 0;
  top: 50%;
  background: var(--theme-red);
  transform: translateY(-50%);
  width: 5px;
  height: 100px;
}
.valuesBx .wp-block-column img {
  width: 100px;
  aspect-ratio: 1;
}

.lifeatmsf {
  padding: 0 100px;
}

.grBg {
  padding: 0 100px;
  background: var(--theme-grey);
  width: 60%;
  margin: auto;
}

.our_offer ul li {
  position: relative;
  padding-left: 30px;
}
.our_offer ul li:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  left: 6px;
  top: 14px;
  border-bottom: 2px solid var(--theme-red);
  border-left: 2px solid var(--theme-red);
  transform: rotate(-45deg);
}
.our_offer ul li:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 8px;
  border: 2px solid var(--theme-red);
  border-radius: 50%;
}
.our_offer ul li:not(:last-child) {
  margin-bottom: 15px;
}

.currentvac {
  width: 60%;
  margin: auto;
}
.currentvac .wp-block-column {
  background: var(--theme-grey);
  padding: 40px;
  position: relative;
}
.currentvac .wp-block-column::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 250px;
  right: 0;
  top: 50%;
  background: var(--theme-red);
  transform: translateY(-50%);
  width: 5px;
  height: 100px;
}

.texsubBanner {
  background: linear-gradient(90deg, var(--theme-blue) 0%, var(--theme-red) 100%);
  padding: 50px 0;
  text-align: center;
}
.texsubBanner h1 {
  color: #fff;
}

.procatList {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.procatList .procatListbx {
  position: relative;
  background: var(--theme-grey);
  padding: 30px;
  box-shadow: 0 1px 1px rgba(35, 31, 32, 0.2);
}
.procatList .procatListbx::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 250px;
  right: 0;
  top: 50%;
  background: var(--theme-red);
  transform: translateY(-50%);
  height: 100px;
  width: 5px;
  transition: 0.5s ease;
}
.procatList .procatListbx:hover::after {
  height: 100%;
}

.singleTwoGrid {
  display: grid;
  gap: 30px;
  grid-template-columns: 3fr 1fr;
  gap: 50px;
}
.singleTwoGrid .singrbx {
  height: 100%;
}
.singleTwoGrid .singrbx .singrbxInner {
  padding: 20px;
  border: 1px solid var(--theme-red);
  box-shadow: 0 1px 1px rgba(35, 31, 32, 0.2);
  background: #fff;
  border-radius: 5px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 10px;
}

.iconWrap {
  display: grid !important;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.iconWrap .wp-block-column {
  background: var(--theme-grey);
  padding: 25px;
  box-shadow: 0 1px 1px rgba(35, 31, 32, 0.2);
  position: relative;
  padding-left: 30px;
}
.iconWrap .wp-block-column:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  left: 6px;
  top: 14px;
  border-bottom: 2px solid var(--theme-red);
  border-left: 2px solid var(--theme-red);
  transform: rotate(-45deg);
}
.iconWrap .wp-block-column:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 8px;
  border: 2px solid var(--theme-red);
  border-radius: 50%;
}
.iconWrap .wp-block-column:not(:last-child) {
  margin-bottom: 15px;
}
.wp-block-accordion-item {
  margin-top: 20px;
}

.wp-block-group .accordion-header {
  font-size: 25px;
}

.wp-block-group .accordion-content {
  display: none !important;
}

.wp-block-group.accordion-item .active .accordion-content {
  display: flex !important;
}

.accordion-item:first-child .accordion-content {
  display: block;
}
.accordion-item:not(:last-child) {
  border-bottom: 1px solid var(--theme-red);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.accordion-header {
  width: 100%;
  padding: 16px 0;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: var(--theme-red);
  font-family: "pc_semi";
  position: relative;
}
.accordion-header::after, .accordion-header::before {
  content: "";
  transition: 0.5s ease;
  font-size: 30px;
  background: var(--theme-red);
  font-family: "pc_light";
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.accordion-header::after {
  width: 26px;
  height: 2px;
  right: 0;
}
.accordion-header::before {
  width: 2px;
  height: 26px;
  right: 12px;
}

.accordion-content {
  display: none;
}
.accordion-content a {
  padding: 10px 0px;
  color: #787777;
  font-size: 18px;
  display: block;
  transition: 0.5s ease;
}
.accordion-content a:hover {
  color: #000;
}

.accordion-item.active .accordion-content {
  display: block;
}
.accordion-item.active .accordion-header::after {
  opacity: 0;
  width: 0;
}
.accordion-item.active .accordion-header::before {
  transform: rotate(90deg);
  transform-origin: center;
}

.postid-611 .accordion-item.active .accordion-content {
  display: block !important;
}

.overlappingSec img {
  width: 100%;
  height: auto;
}
.overlappingSec .overlappingCon {
  margin: -150px auto 0 auto;
  background: #fff;
  padding: 50px;
  position: relative;
  width: 80%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.overlappingSec .overlappingCon ul {
  margin-top: 40px;
}
.overlappingSec .overlappingCon li {
  position: relative;
  padding-left: 30px;
}
.overlappingSec .overlappingCon li:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  left: 6px;
  top: 14px;
  border-bottom: 2px solid var(--theme-red);
  border-left: 2px solid var(--theme-red);
  transform: rotate(-45deg);
}
.overlappingSec .overlappingCon li:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 8px;
  border: 2px solid var(--theme-red);
  border-radius: 50%;
}
.overlappingSec .overlappingCon li:not(:last-child) {
  margin-bottom: 15px;
}

.taxonoCon {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.taxonoCon .taxConList li {
  position: relative;
  padding-left: 30px;
}
.taxonoCon .taxConList li:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  left: 6px;
  top: 14px;
  border-bottom: 2px solid var(--theme-red);
  border-left: 2px solid var(--theme-red);
  transform: rotate(-45deg);
}
.taxonoCon .taxConList li:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 8px;
  border: 2px solid var(--theme-red);
  border-radius: 50%;
}
.taxonoCon .taxConList li:not(:last-child) {
  margin-bottom: 15px;
}
.taxonoCon .taxConList p strong {
  font-size: 30px;
  line-height: 150%;
  font-family: "pc_light";
  font-weight: normal;
}
.taxonoCon .taxConList p:not(:last-child) {
  margin-bottom: 15px;
}
.taxonoCon .taximage img {
  width: 100%;
  height: auto;
}

.claimDownload .wp-block-column img {
  display: none;
}
.claimDownload p {
  height: 100%;
}
.claimDownload a {
  position: relative;
  display: block;
  padding: 20px;
  text-align: center;
  height: 100%;
  border: 1px solid #fff;
  transition: 0.5s ease;
  font-size: 19px;
  color: #000;
}
.claimDownload a::before {
  content: "";
  width: 100px;
  height: 134px;
  background: url(../images/pdf-icon.png) no-repeat left top;
  display: block;
  background-size: 100%;
  margin: 0 auto 20px auto;
}
.claimDownload a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: var(--theme-grey);
  z-index: -1;
  border-radius: 10px;
  transition: 0.5s ease;
}
.claimDownload a:hover::after {
  background: #dbdbdb;
}

#crumbs {
  font-size: 13px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
#crumbs a {
  color: #fff;
}
#crumbs span {
  color: rgba(255, 255, 255, 0.6117647059);
}

.has-inline-color {
  font-size: 30px;
  line-height: 150%;
  font-family: "pc_light";
}

.wp-block-list li {
  position: relative;
  padding-left: 30px;
}
.wp-block-list li:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  left: 6px;
  top: 14px;
  border-bottom: 2px solid var(--theme-red);
  border-left: 2px solid var(--theme-red);
  transform: rotate(-45deg);
}
.wp-block-list li:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 8px;
  border: 2px solid var(--theme-red);
  border-radius: 50%;
}
.wp-block-list li:not(:last-child) {
  margin-bottom: 15px;
}

.subPage .wp-block-cover {
  padding: 40px;
}

.motorQuota {
  display: flex;
  gap: 50px;
  align-items: center;
  background: var(--theme-grey);
  padding: 30px;
  justify-content: center;
}
.motorQuota h4 {
  margin-bottom: 0;
}
.wp-block-table table {
  width: -moz-fit-content;
  width: fit-content;
}
.wp-block-table table tr:first-child {
  font-weight: bold;
  background: #000;
  color: #fff;
}

.subpageCon .wp-block-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.errorCon {
  display: flex;
  flex-direction: column;
  margin: 100px 0;
  align-items: center;
}
.errorCon h1 {
  font-size: 100px;
  font-family: "pc_bold";
}
.errorCon h5 {
  font-size: 70px;
  margin: 0 0 50px 0;
}
.errorCon a {
  background: var(--theme-red);
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  padding: 20px 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 11px 25px -20px #2e2403;
  transition: 0.5s ease;
  position: relative;
  z-index: 1;
  font-family: "pc_Regular";
}
.errorCon a:hover {
  background: #b10000;
}
.errorCon a {
  width: -moz-fit-content;
  width: fit-content;
}

.careerListemp .wp-block-column {
  margin-bottom: 20px;
  min-height: 300px;
}
.careerListemp .wp-block-column img {
  width: 100px;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  border-radius: 4px;
  display: none;
  z-index: 999;
}

#scrollTopBtn:hover {
  background: #444;
}

.floatButtons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.floatButtons a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 20px;
  position: relative;
  margin-right: 10px;
  transition: 0.5s ease;
  justify-content: flex-end;
}
.floatButtons a i {
  width: 50px;
  background: #fff;
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  box-shadow: 1px 1px 10px 2px #b5b5b5;
  position: relative;
}
.floatButtons a i img {
  width: 25px;
  height: auto;
}
.floatButtons a span {
  background: var(--theme-red);
  padding: 0 10px 0 20px;
  height: 55px;
  display: flex;
  align-items: center;
  font-family: "pc_bold";
  transform: translateX(340px);
  transition: 0.5s ease;
  position: relative;
  border-radius: 40px 0 0 40px;
  opacity: 0;
}
.floatButtons a span::after {
  content: "";
  display: block;
  background: var(--theme-red);
  width: 100px;
  height: 100%;
  position: absolute;
  border-radius: 0 40px 40px 0;
  right: -53px;
  z-index: -1;
}
.floatButtons a:hover i {
  box-shadow: 1px 1px 10px 2px #a10202;
}
.floatButtons a:hover span {
  transform: translateX(0px);
  opacity: 1;
}
.floatButtons a.pdfIcon i img {
  width: 20px;
}

.wp-block-accordion {
  border: 1px solid var(--theme-red);
  padding: 20px;
}
.wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading {
  margin-bottom: 0;
  font-family: "pc_Regular";
  color: var(--theme-red);
}
.page-id-795 .subpageCon p, .page-id-795 .subpageCon ul, .page-id-790 .subpageCon p, .page-id-790 .subpageCon ul, .page-id-860 .subpageCon p, .page-id-860 .subpageCon ul, .page-id-3 .subpageCon p, .page-id-3 .subpageCon ul, .page-id-849 .subpageCon p, .page-id-849 .subpageCon ul, .page-id-787 .subpageCon p, .page-id-787 .subpageCon ul {
  margin-bottom: 20px;
}

.page-id-795 .subpageCon h4, .page-id-790 .subpageCon h4 {
  font-weight: bold;
}

.page-id-795 .subpageCon .wp-block-table table,
.page-id-790 .subpageCon .wp-block-table table {
  margin-bottom: 30px;
}
.page-id-795 .subpageCon .wp-block-table table thead tr:first-child,
.page-id-790 .subpageCon .wp-block-table table thead tr:first-child {
  background: #000;
  color: #fff;
}
.page-id-795 .subpageCon .wp-block-table table tr:first-child,
.page-id-790 .subpageCon .wp-block-table table tr:first-child {
  background: #fff;
  color: #000;
  font-weight: normal;
}

.newssec {
  display: flex;
  gap: 50px;
  background: var(--theme-grey);
  width: -moz-fit-content;
  width: fit-content;
  margin: 100px auto;
  padding: 50px 70px 50px 50px;
  position: relative;
  z-index: 10;
  position: relative;
  box-shadow: 0 1px 4px rgba(35, 31, 32, 0.2);
  border-radius: 5px;
}
.newssec::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 250px;
  right: 0;
  top: 50%;
  background: var(--theme-red);
  transform: translateY(-50%);
  height: 80px;
}
.newssec p {
  font-size: 30px;
  line-height: 150%;
}

.home footer .copyRights {
  padding: 120px 0 20px 0;
}

.page-template-about footer .copyRights {
  margin-top: 0;
}

/** SLICK **/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots li {
  float: left;
}

.slick-dots span {
  width: 8px;
  height: 8px;
  background: #4C4C4C;
  border-radius: 100%;
  border: 0;
  text-indent: -9999px;
  display: block;
  cursor: pointer;
  margin: 0 10px;
}

.slick-dots span:hover {
  background: #7fab13;
}

/** SLICK **/
@media (max-width: 1400px) {
  .container {
    max-inline-size: 85vw;
  }
  .company_profile .profile_grid .profile_grid_left, .company_profile .profile_grid .wp-block-column:first-child {
    padding: 100px 0px 100px 0;
  }
  .quickContactSec .quickContact, .companyIfo .companyIfo_grid {
    width: 100%;
  }
  .faqlist_wrap {
    width: 90%;
  }
  .taxonoCon .taxConList p strong, .has-inline-color, p.hightLightPara {
    font-size: 25px;
  }
  .tab_container .tabNav ul {
    margin: 0 20px;
  }
  .tab_container .tabNav ul li a {
    font-weight: normal;
    font-size: 17px;
  }
  .aboutSub .tab_container .tabcontent {
    margin: 0 50px;
  }
  .tax-products_category .taximage img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 66%;
       object-position: 66%;
  }
  .single-products .subpageCon .wp-block-image {
    height: 100%;
  }
  .single-products .subpageCon .wp-block-image img {
    height: 100%;
  }
  .single-products .subpageCon .overlappingSec .wp-block-image {
    height: auto;
  }
  .single-products .subpageCon .overlappingSec .wp-block-image img {
    height: auto;
  }
  .single-products .subpageCon.claim-contact-us .wp-block-image {
    height: auto;
  }
  .single-products .subpageCon.claim-contact-us .wp-block-image img {
    height: auto;
  }
  .singleTwoGrid {
    grid-template-columns: 3fr 1.2fr;
  }
  .claimDownload a::before {
    width: 80px;
    height: 114px;
  }
  .claimDownload a::after {
    height: 70%;
  }
  .overlappingSec .overlappingCon {
    width: 95%;
  }
  .valuesBx.wp-block-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .currentvac, .grBg {
    width: 80%;
  }
  .careerListBxwrap, .career_tabcontent {
    width: 100%;
  }
  .footerWaveimg {
    padding-bottom: 250px !important;
  }
  .claims-process .singleTwoGrid {
    grid-template-columns: 1fr;
  }
  .claims-process .singleTwoGrid .singrbx:last-child {
    display: none;
  }
}
.products-template-claim-services .addressList::after, .postid-701 .addressList::after {
  display: none;
}

.products-template-claim-services .careerListBxwrap {
  width: 50%;
  margin: 0;
}
.products-template-claim-services .career_tabcontent {
  width: 100%;
}
.products-template-claim-services .careerListBxwrap .careerListBx h4 {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  .smallmenu {
    display: block;
  }
  header .header_search {
    display: none;
  }
  header .headerWrap {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 0;
  }
  header .headerWrap .grp_web, header .headerWrap .quick_top_contact {
    display: none;
  }
  header .headerWrap .headerRightsec .headerBtm {
    display: block;
  }
  header .headerWrap .headerRightsec .headerBtm .mainmenu {
    display: none;
  }
  .main_hero {
    height: auto;
    margin-bottom: 50px;
  }
  .main_hero .hero_bxWrap .hero_bx .hero_bx_list {
    padding: 10px;
  }
  .main_hero .hero_bxWrap .hero_bx .hero_bx_list img {
    width: 30px;
  }
  .main_hero .hero_bxWrap .hero_bx .hero_bx_list .roundArrow {
    width: 30px;
    font-size: 10px;
  }
  .main_hero .hero_bxWrap .hero_bx:last-child {
    margin-top: 0;
  }
  .company_profile .profile_grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .company_profile .profile_grid .profile_grid_left {
    padding: 50px 0;
  }
  .company_profile .profile_grid .profile_grid_right img, .company_profile .profile_grid .profile_grid_right .wp-block-column:last-child img {
    position: inherit;
  }
  .companyIfo .companyIfo_grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .companyIfo .companyIfo_grid .gridBx {
    padding: 30px 40% 30px 30px;
  }
  .companyIfo .companyIfo_grid .gridBx p {
    font-size: 18px;
  }
  .companyIfo .companyIfo_grid .gridBx ul li .news_date {
    font-size: 13px;
  }
  .companyIfo .companyIfo_grid .gridBx:last-child h2 {
    font-size: 33px;
    margin-bottom: 20px;
  }
  .faqlist_wrap {
    width: 100%;
    padding: 30px;
  }
  .faqlist_wrap .faq_list p {
    font-size: 17px;
    line-height: 130%;
  }
  .faqlist_wrap .faq_list .faq_question {
    font-size: 18px;
  }
  .quickContactSec .quickContact {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 30px;
    padding: 30px;
  }
  .quickContactSec form p {
    grid-template-columns: 1fr;
  }
  footer .grpincLogo img {
    width: 60%;
  }
  footer .footergridwrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  footer .footbx img {
    width: 100%;
  }
  footer .copyRights p {
    text-align: left;
  }
  footer .copyRights .footCopywrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  footer .copyRights .footCopywrap .conncteSocial {
    justify-content: flex-start;
  }
  .subPage .subBanner .banner_image img {
    height: auto;
  }
  .subPage .subBanner .banner_content {
    position: inherit;
    width: 100%;
    left: inherit;
    bottom: inherit;
    padding: 30px;
  }
  .aboutSub .company_profile {
    padding-top: 0;
  }
  .aboutSub .company_profile .profile_grid {
    margin-top: 20px;
  }
  .aboutSub .company_profile .profile_grid .wp-block-column:first-child {
    padding: 20px 0;
  }
  .aboutSub .company_profile .profile_grid .wp-block-column:first-child p {
    font-size: 18px;
  }
  .aboutSub .company_profile .profile_grid .wp-block-column:last-child img {
    position: inherit;
  }
  .aboutSub .tab_container .tabcontent {
    margin: 0 20px;
  }
  .aboutSub .tab_container .tabcontent .boardMembrs {
    padding: 30px;
  }
  .aboutSub .tab_container .tabcontent .boardMembrs .boardMemCon h4 {
    font-size: 25px !important;
  }
  .aboutSub .tab_container .tabcontent.our-history .introPara {
    width: 100%;
  }
  .ag-timeline-carousel_list, .ag-timeline-block {
    width: 100%;
  }
  .has-inline-color, p.hightLightPara {
    font-size: 20px;
  }
  .wp-block-button a, .theme_color_btn {
    padding: 15px 20px;
    font-size: 15px;
  }
  .ag-timeline-carousel-nav_box {
    display: none;
  }
  .ag-timeline-carousel-arrow_box {
    background: none;
  }
  .tab_container .tabNav {
    display: none;
  }
  .ag-timeline-block {
    padding-bottom: 0;
  }
  .leadership_mem_wrap .leadership_list {
    width: 30%;
  }
  .taxonoCon {
    grid-template-columns: 1fr;
  }
  .taxonoCon .taxConList p strong {
    font-size: 22px;
  }
  .footerWaveimg {
    padding-bottom: 80px !important;
  }
  .careerPage h1 {
    padding: 80px 0;
  }
  .carrerPageCon {
    margin-top: 40px;
  }
  .careerIntro {
    padding-top: 50px;
  }
  .careerIntro img {
    margin-top: 0;
  }
  .overlappingSec .overlappingCon {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .grBg {
    padding: 20px;
    width: 90%;
  }
  .currentvac {
    width: 90%;
  }
  .careerListBxwrap {
    display: none;
  }
  .career_tabcontent {
    padding: 30px;
    width: 100%;
    display: block !important;
  }
  .introBx {
    width: 100%;
    padding: 100px 0px 0 0px;
  }
  .quickContactSec {
    order: -1;
  }
  .singleTwoGrid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .singleTwoGrid .singrbx .singrbxInner {
    display: none;
  }
  .motorQuota {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .tab_container .tabcontent {
    margin: 0 20px;
  }
  .tab_container #eng1 .engpageciowrap, .tab_container #eng3 .engpageciowrap, .tab_container #eng5 .engpageciowrap {
    grid-template-columns: 1fr;
  }
  .engpageciowrap {
    grid-template-columns: 1fr;
  }
  .tab_container #eng1 .engpagecioimg, .tab_container #eng3 .engpagecioimg, .tab_container #eng5 .engpagecioimg {
    grid-area: inherit;
  }
  .wp-block-group .accordion-header {
    font-size: 20px;
  }
  footer .grpincLogo {
    text-align: left;
  }
}
@media (max-width: 782px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  .smallmenu {
    display: block;
  }
  header .headerWrap {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 0;
  }
  header .headerWrap .grp_web, header .headerWrap .quick_top_contact, header .headerWrap .header_search {
    display: none;
  }
  header .headerWrap .headerRightsec .headerBtm {
    display: block;
  }
  header .headerWrap .headerRightsec .headerBtm .mainmenu {
    display: none;
  }
  .main_hero {
    height: auto;
  }
  .main_hero .main_hero_banner::after {
    display: none;
  }
  .main_hero .heroBox_container {
    position: inherit;
    transform: inherit;
    margin-top: 50px;
    right: inherit;
    top: inherit;
  }
  .main_hero .hero_bxWrap {
    justify-content: center;
  }
  .main_hero .hero_bxWrap .hero_bx {
    grid-template-columns: 1fr 1fr;
  }
  .main_hero .hero_bxWrap .hero_bx .hero_bx_list {
    width: auto;
    min-width: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .company_profile .profile_grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .company_profile .profile_grid .profile_grid_left {
    padding: 50px 0;
  }
  .company_profile .profile_grid .profile_grid_right img, .company_profile .profile_grid .profile_grid_right .wp-block-column:last-child img {
    position: inherit;
  }
  .companyIfo .companyIfo_grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .companyIfo .companyIfo_grid img {
    bottom: -70px;
    width: 28%;
  }
  .companyIfo .companyIfo_grid .gridBx {
    padding: 30px;
  }
  .companyIfo .companyIfo_grid .gridBx p {
    font-size: 18px;
  }
  .companyIfo .companyIfo_grid .gridBx ul li .news_date {
    font-size: 13px;
  }
  .companyIfo .companyIfo_grid .gridBx:last-child h2 {
    font-size: 33px;
    margin-bottom: 20px;
  }
  .faqlist_wrap {
    width: 100%;
    padding: 30px;
  }
  .faqlist_wrap .faq_list p {
    font-size: 17px;
    line-height: 130%;
  }
  .faqlist_wrap .faq_list .faq_question {
    font-size: 18px;
  }
  .quickContactSec .quickContact {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 30px;
    padding: 30px;
  }
  .quickContactSec form p {
    grid-template-columns: 1fr;
  }
  footer .grpincLogo img {
    width: 80%;
  }
  footer .footergridwrap {
    grid-template-columns: 1fr;
  }
  footer .footbx ul.policyMenu {
    flex-direction: column;
    gap: 0;
    margin-top: 25px;
  }
  footer .footbx ul.policyMenu li {
    list-style-type: disc;
  }
  footer .footbx ul.policyMenu li a {
    border: 0 !important;
    padding: 0 !important;
  }
  footer .footbx img {
    width: 100%;
  }
  footer .footbx:last-child {
    text-align: left;
  }
  footer .copyRights p {
    text-align: left;
  }
  footer .copyRights .footCopywrap {
    grid-template-columns: 1fr;
  }
  .subPage .subBanner .banner_image img {
    height: auto;
  }
  .subPage .subBanner .banner_content {
    position: inherit;
    width: 100%;
    left: inherit;
    bottom: inherit;
    padding: 30px;
  }
  .subPage .subBanner.woBannerImge .banner_content {
    position: inherit;
    width: 100%;
    margin: 50px auto;
  }
  .subpageCon.withObanner {
    padding-top: 0px;
  }
  .aboutSub .company_profile {
    padding-top: 0;
  }
  .aboutSub .company_profile .profile_grid {
    margin-top: 20px;
  }
  .aboutSub .company_profile .profile_grid .wp-block-column:first-child {
    padding: 20px 0;
  }
  .aboutSub .company_profile .profile_grid .wp-block-column:first-child p {
    font-size: 18px;
  }
  .aboutSub .company_profile .profile_grid .wp-block-column:last-child img {
    position: inherit;
  }
  .aboutSub .tab_container .tabcontent {
    margin: 0 20px;
  }
  .aboutSub .tab_container .tabcontent .boardMembrs {
    padding: 30px;
  }
  .aboutSub .tab_container .tabcontent .boardMembrs .boardMemCon h4 {
    font-size: 25px !important;
  }
  .aboutSub .tab_container .tabcontent.our-history .introPara {
    width: 100%;
  }
  .ag-timeline-carousel_list, .ag-timeline-block {
    width: 100%;
  }
  .has-inline-color, p.hightLightPara {
    font-size: 20px;
  }
  .wp-block-button a, .theme_color_btn {
    padding: 15px 20px;
    font-size: 15px;
  }
  .ag-timeline-carousel-nav_box {
    display: none;
  }
  .ag-timeline-carousel-arrow_box {
    background: none;
  }
  .tab_container .tabNav {
    display: none;
  }
  .ag-timeline-block {
    padding-bottom: 0;
  }
  .leadership_mem_wrap .leadership_list {
    width: 48%;
  }
  .taxonoCon {
    grid-template-columns: 1fr;
  }
  .taxonoCon .taxConList p strong {
    font-size: 22px;
  }
  .footerWaveimg {
    padding-bottom: 120px !important;
  }
  .careerPage h1 {
    padding: 80px 0;
  }
  .carrerPageCon {
    margin-top: 40px;
  }
  .careerIntro {
    padding-top: 50px;
  }
  .careerIntro img {
    margin-top: 0;
  }
  .overlappingSec .overlappingCon {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .grBg {
    padding: 20px;
    width: 90%;
  }
  .currentvac {
    width: 90%;
  }
  .careerListBxwrap {
    display: none;
  }
  .career_tabcontent {
    padding: 0;
    box-shadow: none;
  }
  .introBx {
    width: 100%;
    padding: 100px 0px 0 0px;
  }
  .quickContactSec {
    order: -1;
  }
  #non-motor-claims {
    margin-top: 50px;
  }
  .singleTwoGrid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .singleTwoGrid .singrbx .singrbxInner {
    display: none;
  }
  .motorQuota {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .tab_container .tabcontent {
    margin: 0 20px;
  }
  .tab_container #eng1 .engpageciowrap, .tab_container #eng3 .engpageciowrap, .tab_container #eng5 .engpageciowrap {
    grid-template-columns: 1fr;
  }
  .engpageciowrap {
    grid-template-columns: 1fr;
  }
  .tab_container #eng1 .engpagecioimg, .tab_container #eng3 .engpagecioimg, .tab_container #eng5 .engpagecioimg {
    grid-area: inherit;
  }
  .wp-block-group .accordion-header {
    font-size: 20px;
  }
  .valuesBx.wp-block-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  footer .grpincLogo {
    text-align: left;
  }
  .wp-block-accordion-heading__toggle {
    font-size: 20px;
  }
  .claimHead {
    color: var(--theme-red);
  }
  .newssec {
    padding: 40px;
    gap: 20px;
  }
  .newssec a {
    white-space: nowrap;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  #crumbs, .header_search {
    display: none;
  }
  .smallmenu {
    display: block;
  }
  header .headerWrap {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 0;
  }
  header .headerWrap .grp_web, header .headerWrap .quick_top_contact {
    display: none;
  }
  header .headerWrap .headerRightsec .headerBtm {
    display: block;
  }
  header .headerWrap .headerRightsec .headerBtm .mainmenu {
    display: none;
  }
  .main_hero {
    height: auto;
  }
  .main_hero .main_hero_banner::after {
    display: none;
  }
  .main_hero .heroBox_container {
    position: inherit;
    transform: inherit;
    margin-top: 50px;
    right: inherit;
    top: inherit;
    padding: 20px;
  }
  .main_hero .hero_bxWrap {
    display: block;
  }
  .main_hero .hero_bxWrap .hero_bx {
    grid-template-columns: 1fr;
  }
  .main_hero .hero_bxWrap .hero_bx .hero_bx_list {
    flex-direction: row;
    padding: 15px;
    font-size: 18px;
    align-items: center;
    width: auto;
    margin: 0 !important;
  }
  .main_hero .hero_bxWrap .hero_bx .hero_bx_list:last-child {
    font-size: 18px;
  }
  .main_hero .hero_bxWrap .hero_bx:last-child {
    margin-top: 0;
  }
  .company_profile .profile_grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .company_profile .profile_grid .profile_grid_left {
    padding: 50px 0;
  }
  .company_profile .profile_grid .profile_grid_right img, .company_profile .profile_grid .profile_grid_right .wp-block-column:last-child img {
    position: inherit;
  }
  .companyIfo .companyIfo_grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .companyIfo .companyIfo_grid .gridBx {
    padding: 30px;
  }
  .companyIfo .companyIfo_grid .gridBx p {
    font-size: 18px;
  }
  .companyIfo .companyIfo_grid .gridBx ul li .news_date {
    font-size: 13px;
  }
  .companyIfo .companyIfo_grid .gridBx:last-child h2 {
    font-size: 33px;
    margin-bottom: 20px;
  }
  .faqlist_wrap {
    width: 100%;
    padding: 30px;
  }
  .faqlist_wrap .faq_list p {
    font-size: 17px;
    line-height: 130%;
  }
  .faqlist_wrap .faq_list .faq_question {
    font-size: 18px;
  }
  .quickContactSec .quickContact {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 30px;
    padding: 30px;
  }
  .quickContactSec form p {
    grid-template-columns: 1fr;
  }
  footer .footergridwrap {
    grid-template-columns: 1fr;
  }
  footer .footbx img {
    width: 100%;
  }
  footer .copyRights p {
    text-align: left;
  }
  footer .copyRights .footCopywrap {
    grid-template-columns: 1fr;
  }
  .subPage .subBanner .banner_image img {
    height: auto;
  }
  .subPage .subBanner .banner_content {
    position: inherit;
    width: 100%;
    left: inherit;
    bottom: inherit;
    padding: 30px;
  }
  .subPage .subBanner.woBannerImge .banner_content {
    position: inherit;
    width: 100%;
    margin: 50px auto;
  }
  .subpageCon.withObanner {
    padding-top: 0px;
  }
  .aboutSub .company_profile {
    padding-top: 0;
  }
  .aboutSub .company_profile .profile_grid {
    margin-top: 20px;
  }
  .aboutSub .company_profile .profile_grid .wp-block-column:first-child {
    padding: 20px 0;
  }
  .aboutSub .company_profile .profile_grid .wp-block-column:first-child p {
    font-size: 18px;
  }
  .aboutSub .company_profile .profile_grid .wp-block-column:last-child img {
    position: inherit;
  }
  .aboutSub .tab_container .tabcontent {
    margin: 0 20px;
  }
  .aboutSub .tab_container .tabcontent .boardMembrs {
    padding: 30px;
  }
  .aboutSub .tab_container .tabcontent .boardMembrs .boardMemCon h4 {
    font-size: 25px !important;
  }
  .aboutSub .tab_container .tabcontent.our-history .introPara {
    width: 100%;
  }
  .ag-timeline-carousel_list, .ag-timeline-block {
    width: 100%;
  }
  .has-inline-color, p.hightLightPara {
    font-size: 20px;
  }
  .wp-block-button a, .theme_color_btn {
    padding: 15px 20px;
    font-size: 15px;
  }
  .ag-timeline-carousel-nav_box {
    display: none;
  }
  .ag-timeline-carousel-arrow_box {
    background: none;
  }
  .tab_container .tabNav {
    display: none;
  }
  .leadership_mem_wrap .leadership_list {
    width: 100%;
  }
  .taxonoCon {
    grid-template-columns: 1fr;
  }
  .taxonoCon .taxConList p strong {
    font-size: 22px;
  }
  .footerWaveimg {
    padding-bottom: 80px !important;
  }
  .careerPage h1 {
    padding: 80px 0;
  }
  .carrerPageCon {
    margin-top: 40px;
  }
  .careerIntro {
    padding-top: 50px;
  }
  .careerIntro img {
    margin-top: 0;
  }
  .overlappingSec .overlappingCon {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .grBg {
    padding: 20px;
    width: 90%;
  }
  .currentvac {
    width: 90%;
  }
  .careerListBxwrap {
    display: none;
  }
  .career_tabcontent {
    padding: 0px;
    width: 100%;
    display: block !important;
    box-shadow: none;
  }
  .introBx {
    width: 100%;
    padding: 100px 0px 0 0px;
  }
  .quickContactSec {
    order: -1;
  }
  .singleTwoGrid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .singleTwoGrid .singrbx .singrbxInner {
    display: none;
  }
  .motorQuota {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .tab_container .tabcontent {
    margin: 0 20px;
  }
  .tab_container #eng1 .engpageciowrap, .tab_container #eng3 .engpageciowrap, .tab_container #eng5 .engpageciowrap {
    grid-template-columns: 1fr;
  }
  .engpageciowrap {
    grid-template-columns: 1fr;
  }
  .tab_container #eng1 .engpagecioimg, .tab_container #eng3 .engpagecioimg, .tab_container #eng5 .engpagecioimg {
    grid-area: inherit;
  }
  .wp-block-group .accordion-header {
    font-size: 20px;
  }
  .companyIfo .companyIfo_grid img {
    bottom: -70px;
  }
  footer .grpincLogo {
    text-align: left;
  }
  .valuesBx.wp-block-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .wp-block-accordion-heading__toggle {
    font-size: 20px;
  }
  .claimHead {
    color: var(--theme-red);
  }
  .newssec {
    flex-direction: column;
  }
  .floatButtons {
    flex-direction: row;
    position: inherit;
    right: inherit;
    top: inherit;
    flex-direction: column;
    margin: 40px 0;
    transform: none;
  }
  .floatButtons a {
    background: var(--theme-red);
    border-radius: 5px;
    justify-content: flex-start;
    padding: 5px;
  }
  .floatButtons a span {
    transform: none !important;
    opacity: 1;
    order: 1;
  }
  .floatButtons a i {
    width: 40px;
  }
  .page-id-2 .addressList{ display: block;}
}/*# sourceMappingURL=style.css.map */