/**
 * ======================
 * START OF MAIN SCSS FILE FOR ASTRO WEBSITE
 * =========================
 * 
 * TABLE OF INDEX:
 * 
 * # RESET CSS
 * # COLORS CSS
 * # VARIABLES CSS
 * # TYPOGRAPHY CSS
 * # MIXINS CSS
 * # BUTTONS CSS
 * ======================
 *
 * @format
 */
/** @format */
html,
body,
div,
span,
applet,
object,
iframe,
p,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-family: "League Spartan", sans-serif;
}

section {
  overflow: hidden;
  max-width: 2200px;
  margin: 0 auto;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
body,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
  vertical-align: middle;
  max-width: 100%;
}

::-moz-selection {
  background: #20065f;
  text-shadow: none;
  color: #ffffff;
}

::selection {
  background: #20065f;
  color: #ffffff;
  text-shadow: none;
}

/** @format */
/** @format */
/********* utility headings ************/
/************* Gradient Mixin *****************/
/***************** font-weight ***********************/
/************ common property mixins ***************/
*:focus-visible, *:focus-within {
  outline: none;
}

#hero-banner.innerpageBanner.bannerButtonwrap .btn-white {
  align-self: flex-end;
  margin-bottom: 30px;
  background-color: #ffffff;
  color: #e3000f;
  padding-left: 30px;
  padding-right: 30px;
}
#hero-banner.innerpageBanner.bannerButtonwrap .btn-white:hover {
  color: #ffffff;
  border-color: #e3000f;
}
#hero-banner.innerpageBanner.bannerButtonwrap .btn-white:hover::after {
  background-color: #e3000f;
}

@media screen and (min-width: 1300px) {
  .container-custom {
    max-width: 1272px;
  }
}

.figureHover figure img {
  transition: all 0.75s ease-in-out;
}
.figureHover:hover figure img {
  transform: scale(1.1);
}

.post-type {
  background-color: rgb(255, 255, 255);
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  padding: 3px 15px;
}

.post-metadata {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 20px;
}
.post-metadata span {
  font-size: 16px;
  color: rgb(92, 92, 92);
}
.post-metadata span.dot {
  background: rgb(0, 161, 213);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/** @format */
.btn-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  position: absolute;
  bottom: 36px;
  z-index: 3;
  gap: 20px;
}

.tuaman-btn {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0px;
  min-width: 150px;
  padding: 0;
}
.tuaman-btn span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 10px;
  transition: 0.3s;
  text-align: center;
}

.btn-1::before {
  position: absolute;
  content: "";
  background-color: #fff;
  transition: 0.3s ease-out;
}
.btn-1 span {
  color: #e3000f;
  border: 2px solid #fff;
  transition: 0.2s 0.1s;
}
.btn-1 span:hover {
  color: #fff;
  transition: 0.2s 0.1s;
}

.btn-1.hover-filled-slide-right::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.btn-1.hover-filled-slide-right:hover::before {
  position: absolute;
  content: "";
  width: 0%;
}

.btn-2::before {
  background-color: #fff;
  transition: 0.3s ease-out;
  position: absolute;
  content: "";
}
.btn-2 span {
  color: #fff;
  border: 1px solid #fff;
  transition: 0.2s;
}
.btn-2 span:hover {
  color: #e3000f;
  transition: 0.2s 0.1s;
}

.btn-2.hover-slide-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0%;
  position: absolute;
  content: "";
}
.btn-2.hover-slide-right:hover::before {
  width: 100%;
  position: absolute;
  content: "";
}

.btn, .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn {
  font-size: 18px;
  font-weight: 600;
  min-width: 150px;
  cursor: pointer;
  transition: 0.3s;
  line-height: 22px;
  padding: 12px 12px 11px 12px;
  border: 1px solid #000;
  border-radius: 0;
  transition: 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn:after, .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: 0.3s ease-out;
  background-color: #ffffff;
}
.btn:hover:after, .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn:hover:after {
  width: 100%;
}
.btn.btn-white, .ajax-load-more-wrap .alm-btn-wrap .btn-white.alm-load-more-btn {
  border-color: #ffffff;
  color: #ffffff;
}
.btn.btn-white:hover, .ajax-load-more-wrap .alm-btn-wrap .btn-white.alm-load-more-btn:hover {
  color: #e3000f;
}
.btn.btn-black, .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn {
  border-color: #000000;
  color: #000000;
}
.btn.btn-black:after, .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn:after {
  background-color: #000000;
}
.btn.btn-black:hover, .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn:hover {
  color: #ffffff;
}

/** @format */
/*--------------------------------------------------------------
# Header top text logo keyframes animation start
--------------------------------------------------------------*/
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-fill-29 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
/*--------------------------------------------------------------
# Header top text logo keyframes animation end
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header main logo keyframes animation start
--------------------------------------------------------------*/
@keyframes animate-svg-logo-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(227, 0, 15);
  }
}
@keyframes animate-svg-logo-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 161, 213);
  }
}
@keyframes animate-svg-logo-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(0, 161, 213);
  }
}
@keyframes animate-svg-logo-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-logo-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-logo-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-logo-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-logo-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-logo-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-logo-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-logo-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
/*--------------------------------------------------------------
# Header main logo keyframes animation end
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero banner keyframes animation Start
--------------------------------------------------------------*/
@keyframes animate-video-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Hero banner keyframes animation Start
--------------------------------------------------------------*/
@keyframes slide-in {
  from {
    opacity: 0;
    right: -100%;
  }
}
/**
 * ======================
 *
 * @format
 */
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 99;
  padding: 5px 45px;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  #header {
    padding-left: 8px;
    padding-right: 5px;
    z-index: 999999;
  }
}
#header .logo {
  margin: 8px 0;
  padding: 0;
  transition: all 0.8s;
}
@media screen and (max-width: 991px) {
  #header .logo {
    margin: 5px 0;
  }
}
#header .logo a {
  cursor: pointer;
}
#header .logo svg {
  max-height: 65px;
  width: 100%;
  transition: all 0.8s;
}
#header.header-scrolled:not(.noscroll) {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.031372549);
}
#header.header-scrolled .logo {
  margin: 5px 0;
}
@media screen and (max-width: 991px) {
  #header.header-scrolled .logo {
    margin: 0px 0;
  }
}
#header.header-scrolled .logo svg {
  max-height: 55px;
}

.header-top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991.98px) {
  .header-top {
    justify-content: center;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991.98px) {
  .header-top.m-hide .top-nav {
    display: none !important;
  }
}
.header-top .top-nav {
  display: flex;
  list-style-type: none;
}
.header-top .top-nav li a {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  padding-left: 24px;
}

/*--------------------------------------------------------------
# Header top text logo animation start
--------------------------------------------------------------*/
.text-logo-ani-1 {
  animation: animate-svg-fill-1 0.7s linear 0.8s both;
}

.text-logo-ani-2 {
  animation: animate-svg-fill-2 0.7s linear 0.9s both;
}

.text-logo-ani-3 {
  animation: animate-svg-fill-3 0.7s linear 1s both;
}

.text-logo-ani-4 {
  animation: animate-svg-fill-4 0.7s linear 1.1s both;
}

.text-logo-ani-5 {
  animation: animate-svg-fill-5 0.7s linear 1.2s both;
}

.text-logo-ani-6 {
  animation: animate-svg-fill-6 0.7s linear 1.3s both;
}

.text-logo-ani-7 {
  animation: animate-svg-fill-7 0.7s linear 1.4s both;
}

.text-logo-ani-8 {
  animation: animate-svg-fill-8 0.7s linear 1.5s both;
}

.text-logo-ani-9 {
  animation: animate-svg-fill-9 0.7s linear 1.6s both;
}

.text-logo-ani-10 {
  animation: animate-svg-fill-10 0.7s linear 1.7s both;
}

.text-logo-ani-11 {
  animation: animate-svg-fill-11 0.7s linear 1.8s both;
}

.text-logo-ani-12 {
  animation: animate-svg-fill-12 0.7s linear 1.9s both;
}

.text-logo-ani-13 {
  animation: animate-svg-fill-13 0.7s linear 2s both;
}

.text-logo-ani-14 {
  animation: animate-svg-fill-14 0.7s linear 2.1s both;
}

.text-logo-ani-15 {
  animation: animate-svg-fill-15 0.7s linear 2.2s both;
}

.text-logo-ani-16 {
  animation: animate-svg-fill-16 0.7s linear 2.3s both;
}

.text-logo-ani-17 {
  animation: animate-svg-fill-17 0.7s linear 2.4s both;
}

.text-logo-ani-18 {
  animation: animate-svg-fill-18 0.7s linear 2.5s both;
}

.text-logo-ani-19 {
  animation: animate-svg-fill-19 0.7s linear 2.6s both;
}

.text-logo-ani-20 {
  animation: animate-svg-fill-20 0.7s linear 2.7s both;
}

.text-logo-ani-21 {
  animation: animate-svg-fill-21 0.7s linear 2.8s both;
}

.text-logo-ani-22 {
  animation: animate-svg-fill-22 0.7s linear 2.9s both;
}

.text-logo-ani-23 {
  animation: animate-svg-fill-23 0.7s linear 3s both;
}

.text-logo-ani-24 {
  animation: animate-svg-fill-24 0.7s linear 3.1s both;
}

.text-logo-ani-25 {
  animation: animate-svg-fill-25 0.7s linear 3.2s both;
}

.text-logo-ani-26 {
  animation: animate-svg-fill-26 0.7s linear 3.3s both;
}

.text-logo-ani-27 {
  animation: animate-svg-fill-27 0.7s linear 3.4s both;
}

.text-logo-ani-28 {
  animation: animate-svg-fill-28 0.7s linear 3.5s both;
}

.text-logo-ani-29 {
  animation: animate-svg-fill-29 0.7s linear 3.6s both;
}

/*--------------------------------------------------------------
# Header top text logo animation end
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header main logo animation start
--------------------------------------------------------------*/
.header-main-logo-1 {
  animation: animate-svg-logo-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

.header-main-logo-2 {
  animation: animate-svg-logo-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

.header-main-logo-3 {
  animation: animate-svg-logo-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

.header-main-logo-4 {
  animation: animate-svg-logo-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

.header-main-logo-5 {
  animation: animate-svg-logo-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}

.header-main-logo-6 {
  animation: animate-svg-logo-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

.header-main-logo-7 {
  animation: animate-svg-logo-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}

.header-main-logo-8 {
  animation: animate-svg-logo-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

.header-main-logo-9 {
  animation: animate-svg-logo-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

.header-main-logo-10 {
  animation: animate-svg-logo-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
}

.header-main-logo-11 {
  animation: animate-svg-logo-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

/*--------------------------------------------------------------
# Header main logo keyframes animation end
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
@media screen and (max-width: 991.98px) {
  .navbar {
    order: 2;
    margin-left: 0px !important;
  }
}
.navbar > ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar > ul > li {
  position: relative;
  margin-right: 17px;
  padding-right: 17px;
}
@media screen and (max-width: 1200px) {
  .navbar > ul > li {
    padding-right: 14px;
    margin-right: 14px;
  }
}
@media screen and (max-width: 1100px) {
  .navbar > ul > li {
    padding-right: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 991.98pxpx) {
  .navbar > ul > li {
    padding-right: 0;
    padding-left: 0;
    margin-right: 0px;
  }
}
.navbar > ul > li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 13px;
  width: 1px;
  height: 10px;
  background-color: #989898;
}
@media screen and (max-width: 991px) {
  .navbar > ul > li::after {
    display: none;
  }
}
.navbar > ul > li:last-child::after {
  content: normal;
}
.navbar > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 5px 0;
  height: 36px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 991px) {
  .navbar > ul > li > a {
    padding: 10px 15px;
  }
}
.navbar > ul > li > a:focus {
  color: #000;
}
.navbar > ul > li > a:after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #e3000f;
  margin: auto;
  bottom: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  .navbar > ul > li > a:after {
    content: normal;
  }
}
.navbar > ul > li > a:hover {
  color: #e3000f;
}
.navbar > ul > li > a:hover:after {
  width: 25px;
}
.navbar > ul > li.active > a, .navbar > ul > li.current-menu-ancestor > a, .navbar > ul > li.current-menu-item > a {
  color: #e3000f;
}
.navbar > ul > li.active > a:after, .navbar > ul > li.current-menu-ancestor > a:after, .navbar > ul > li.current-menu-item > a:after {
  width: 25px;
}
.navbar a i {
  font-size: 18px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:focus i {
  font-size: 18px;
  line-height: 0;
  margin-left: 5px;
}
@media screen and (min-width: 992px) {
  .navbar #menu-header-menu > li:hover > .sub-menu {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }
}
.navbar #menu-header-menu > li:hover.active .mobile-nav-arrow::after {
  transform: rotate(45deg);
}
.navbar #menu-header-menu > li .mobile-nav-arrow {
  display: none;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .navbar #menu-header-menu > li .mobile-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    float: right;
    cursor: pointer;
  }
}
.navbar #menu-header-menu > li .mobile-nav-arrow::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-left: 1px solid #5C5C5C;
  border-top: 1px solid #5C5C5C;
  transform: rotate(225deg);
}
.navbar #menu-header-menu > li ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.navbar #menu-header-menu > li > .sub-menu {
  padding: 0;
  margin: 0;
  display: flex;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 100%;
  width: 400px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 992px) {
  .navbar #menu-header-menu > li > .sub-menu {
    padding: 40px 40px 30px 40px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 991.98px) {
  .navbar #menu-header-menu > li > .sub-menu {
    position: static;
    width: 100%;
    flex-direction: column;
    display: none;
  }
}
.navbar #menu-header-menu > li > .sub-menu li {
  margin: 0;
  padding: 0;
}
.navbar #menu-header-menu > li > .sub-menu li a {
  display: inline-block;
  text-transform: capitalize;
}
@media screen and (max-width: 991.98px) {
  .navbar #menu-header-menu > li > .sub-menu li a {
    display: block;
  }
}
.navbar #menu-header-menu > li > .sub-menu > li {
  flex: 1 0 40%;
  max-width: 50%;
}
@media screen and (max-width: 991.98px) {
  .navbar #menu-header-menu > li > .sub-menu > li {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.navbar #menu-header-menu > li > .sub-menu > li > a {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 991.98px) {
  .navbar #menu-header-menu > li > .sub-menu > li > a {
    margin-bottom: 0px;
    display: none;
  }
}
.navbar #menu-header-menu > li > .sub-menu > li > ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.navbar #menu-header-menu > li > .sub-menu > li > ul > li {
  margin-bottom: 12px;
}
.navbar #menu-header-menu > li > .sub-menu > li > ul > li:last-child {
  margin-bottom: 0px;
}
.navbar #menu-header-menu > li > .sub-menu > li > ul > li > a {
  color: #5C5C5C;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding: 1px 0px;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .navbar #menu-header-menu > li > .sub-menu > li > ul > li > a {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.navbar #menu-header-menu > li > .sub-menu > li > ul > li > a::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #e3000f;
  bottom: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  .navbar #menu-header-menu > li > .sub-menu > li > ul > li > a::after {
    content: normal;
  }
}
.navbar #menu-header-menu > li > .sub-menu > li > ul > li > a:hover {
  color: #e3000f;
}
.navbar #menu-header-menu > li > .sub-menu > li > ul > li > a:hover:after {
  width: 40px;
}
.navbar #menu-header-menu > li.has-children1 > .sub-menu {
  max-width: 265px;
  flex-direction: column;
}
.navbar #menu-header-menu > li.has-children1 > .sub-menu li {
  flex: 1 0 100%;
  max-width: 100%;
}
.navbar #menu-header-menu > li.has-children1 > .sub-menu li > a {
  color: #5C5C5C;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  padding: 1px 0px;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .navbar #menu-header-menu > li.has-children1 > .sub-menu li > a {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.navbar #menu-header-menu > li.has-children1 > .sub-menu li > a::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #e3000f;
  bottom: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  .navbar #menu-header-menu > li.has-children1 > .sub-menu li > a::after {
    content: normal;
  }
}
.navbar #menu-header-menu > li.has-children1 > .sub-menu li > a:hover {
  color: #e3000f;
}
.navbar #menu-header-menu > li.has-children1 > .sub-menu li > a:hover:after {
  width: 40px;
}

.searchOpen {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 5px 0;
  height: 36px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
  position: relative;
}
.searchOpen::after {
  content: normal !important;
}
.searchOpen i {
  display: inline-block;
  margin-bottom: -5px;
}
.searchOpenWrap {
  order: 1;
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
}
.searchOpenWrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 13px;
  width: 1px;
  height: 10px;
  background-color: #989898;
}
@media screen and (max-width: 991.98px) {
  .searchOpenWrap {
    margin-left: auto;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #ffffff;
  transition: 0.3s;
  z-index: 999;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding: 60px 12px 12px;
  overflow-y: auto;
}
.navbar-mobile .mobile-nav-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
}

.navbar ul.onlyMobile {
  display: none;
}
.navbar.navbar-mobile ul.onlyMobile {
  display: block;
}

.navbar-mobile > ul {
  display: block;
  padding: 0px 0px;
  width: 100%;
  border-radius: 0px;
  border-radius: 10px;
  background-color: #fff;
  transition: 0.3s;
}

/*
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #47b2e4;
}
*/
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

/**
 * ======================
 *
 * @format
 */
#footer {
  padding: 0px 0;
  position: relative;
  margin-top: 130px;
}
@media screen and (max-width: 991px) {
  #footer {
    margin-top: 0;
  }
}
#footer .footer-content {
  max-width: 80%;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #1a2456;
  padding: 70px 54px 30px 60px;
}
@media screen and (max-width: 1200px) {
  #footer .footer-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 991px) {
  #footer .footer-content {
    padding-top: 30px;
    max-width: 100%;
  }
}
#footer .footer-content > * {
  position: relative;
  z-index: 1;
}
#footer .footer-content #particles-footer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#footer .footer-content .footer-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgb(56, 73, 156);
  padding-bottom: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 991px) {
  #footer .footer-content .footer-top {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  #footer .footer-content .footer-top {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
@media screen and (max-width: 991px) {
  #footer .footer-content .footer-top .title-h3, #footer .footer-content .footer-top .main-wrapper-sec .wp-block-heading, .main-wrapper-sec #footer .footer-content .footer-top .wp-block-heading {
    font-size: 30px;
  }
}
#footer .footer-content .quick-links {
  margin-bottom: 35px;
}
#footer .footer-content .quick-links h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
#footer .footer-content .quick-links ul {
  list-style-type: none;
}
#footer .footer-content .quick-links ul li {
  padding: 0;
}
#footer .footer-content .quick-links ul li a {
  color: rgb(199, 199, 199);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}
#footer .footer-content .quick-links ul li a:hover {
  color: #fff;
}
#footer .footer-content .contact-info {
  margin-bottom: 35px;
}
@media screen and (min-width: 992px) {
  #footer .footer-content .contact-info {
    margin-left: -36px;
  }
}
#footer .footer-content .contact-info-find-us p {
  margin-bottom: 0px;
}
@media screen and (max-width: 1199.98px) {
  #footer .footer-content .contact-info-find-us p {
    font-size: 16px !important;
  }
}
#footer .footer-content .contact-info-ref-off {
  width: 320px;
  max-width: 100%;
}
#footer .footer-content .contact-info-cor-off {
  width: 260px;
  max-width: 100%;
}
#footer .footer-content .contact-info-call-us p {
  margin-bottom: 0px;
}
#footer .footer-content .contact-info-email-us a {
  display: block;
}
#footer .footer-content .contact-info h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
#footer .footer-content .contact-info p {
  color: rgb(199, 199, 199);
  font-size: 18px;
}
#footer .footer-content .contact-info a {
  color: rgb(199, 199, 199);
  font-size: 18px;
  text-decoration: none;
}
#footer .footer-content .contact-info a:hover {
  color: #fff;
}
#footer .footer-content .copyright-info {
  display: flex;
  margin-top: 30px;
}
@media screen and (max-width: 575px) {
  #footer .footer-content .copyright-info {
    margin-top: 20px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
#footer .footer-content .copyright-info p {
  color: rgb(199, 199, 199);
  font-size: 16px;
  font-weight: 400;
}
#footer .footer-content .copyright-info p a {
  color: rgb(199, 199, 199);
  font-weight: 600;
  text-decoration: none;
}
#footer .footer-content .copyright-info-credit {
  display: inline-block;
}
@media screen and (min-width: 992px) {
  #footer .footer-content .copyright-info-credit {
    margin-left: -36px;
  }
}
#footer .footer-content .footer-glass {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 100%;
  z-index: -1;
}
#footer .footer-bg {
  position: absolute;
  z-index: 0;
  right: 0;
  top: -130px;
}
@media screen and (max-width: 991px) {
  #footer .footer-bg {
    display: none;
  }
}
#footer .social-link-wrap {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  width: 20%;
  padding-bottom: 100px;
  height: 50%;
  padding-top: 120px;
  padding-left: 40px;
}
@media screen and (max-width: 991px) {
  #footer .social-link-wrap {
    display: none;
  }
}
#footer .social-link-wrap .social-links h5 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
#footer .social-link-wrap .social-links ul {
  list-style-type: none;
}
#footer .social-link-wrap .social-links ul li {
  padding: 5px 0;
}
#footer .social-link-wrap .social-links ul li a {
  color: #000;
  text-decoration: none;
  font-size: 17px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
#footer .social-link-wrap .social-links ul li a .icon {
  display: inline-flex;
  margin-bottom: 4px;
  min-width: 30px;
}
#footer .social-link-wrap .social-links ul li a .icon img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .social-link-wrap .social-links ul li a:hover {
  color: #00a1d5;
}
#footer .social-link-wrap.social-link-wrap-in-content {
  position: static;
  background-color: transparent;
  width: 100%;
  height: auto;
  padding: 0px;
}
@media screen and (min-width: 992px) {
  #footer .social-link-wrap.social-link-wrap-in-content {
    display: none;
  }
}
@media screen and (max-width: 991.98px) {
  #footer .social-link-wrap.social-link-wrap-in-content {
    display: block;
  }
}
#footer .social-link-wrap.social-link-wrap-in-content .social-links h5 {
  color: #ffffff;
}
#footer .social-link-wrap.social-link-wrap-in-content .social-links ul li a {
  color: #c7c7c7;
  font-size: 18px;
}
#footer .social-link-wrap.social-link-wrap-in-content .social-links ul li a:hover {
  color: #ffffff;
}

/** @format */
:root {
  --nav-height: 80px;
}

::-moz-selection {
  background: #EF7F1A;
  color: #fff;
}

::selection {
  background: #EF7F1A;
  color: #fff;
}

* {
  outline: none !important;
}

html {
  overflow-x: hidden;
}

p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 22px;
}
p:empty {
  display: none !important;
}
p:last-child {
  margin-bottom: 0 !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.textcolor {
  color: #5C5C5C;
}

.whitetext {
  color: #ffffff;
}

a {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgb(227, 0, 15);
  width: 50px;
  height: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: rgb(255, 6, 22);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.is-reveal-check {
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  opacity: 0;
  transition: opacity 1.5s ease 167ms, -webkit-clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.5s ease 167ms;
  transition: clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.5s ease 167ms, -webkit-clip-path 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.is-reveal-check.reveal-active {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.comm-sec {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 991px) {
  .comm-sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.comm-heading {
  text-align: center;
}
.comm-heading h4, .comm-heading .comm-title {
  z-index: 1;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  padding: 5px 24px;
  background-color: #fff;
  text-transform: uppercase;
}
.comm-heading h4::after, .comm-heading .comm-title::after {
  content: "";
  position: absolute;
  left: -50%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 1px;
  background-color: #656565;
  z-index: 1;
}
.comm-heading h4::before, .comm-heading .comm-title::before {
  content: "";
  position: absolute;
  right: -50%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 1px;
  background-color: #656565;
  z-index: 1;
}

.featured-title,
.title-h3,
.main-wrapper-sec .wp-block-heading {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 41px;
}
@media screen and (max-width: 767px) {
  .featured-title,
  .title-h3,
  .main-wrapper-sec .wp-block-heading {
    text-align: center;
    font-size: 36px;
  }
}

.comm-slider-navigation.swiper-button-prev, .comm-slider-navigation.swiper-button-next {
  position: absolute;
  bottom: 0;
  right: auto;
  top: auto;
  left: 0;
  height: 60px;
  width: 60px;
  color: #fff;
  background: #e3000f;
}
@media screen and (max-width: 767px) {
  .comm-slider-navigation.swiper-button-prev, .comm-slider-navigation.swiper-button-next {
    right: auto;
    left: auto;
  }
}
.comm-slider-navigation.swiper-button-prev::after, .comm-slider-navigation.swiper-button-next::after {
  font-size: 14px;
  font-weight: 800;
}
.comm-slider-navigation.swiper-button-prev {
  left: 0px;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .comm-slider-navigation.swiper-button-prev {
    left: auto;
    right: 60px;
  }
}
.comm-slider-navigation.swiper-button-next {
  left: 60px;
}
@media screen and (max-width: 767px) {
  .comm-slider-navigation.swiper-button-next {
    left: auto;
    right: 0;
  }
}
.comm-slider-navigation.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.w-12 {
  padding: 0 45px;
}
@media screen and (max-width: 1199.5px) {
  .w-12 {
    padding: 0 20px;
  }
}

.search-overlay,
.page-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
  transition: opacity 250ms linear;
  opacity: 0;
  visibility: hidden;
  z-index: 19;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.search-overlay.show,
.page-overlay.show {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.page-overlay.show {
  z-index: 89;
}

.search-overlay.show {
  z-index: 100;
}

.header-search-wrap {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 30px 50px;
  z-index: 1000010;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header-search-wrap {
    padding: 30px 20px;
  }
}
.header-search-wrap.open {
  transform: translateY(0);
}
.header-search-wrap .header-search-box {
  width: 700px;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header-search-wrap .header-search-box {
    width: 100%;
  }
}
.header-search-wrap .header-search-box .input-group {
  border: solid 1px #C3C3C3;
  border-radius: 5px;
}
.header-search-wrap .header-search-box .input-group .input-group-text {
  background-color: #fff;
  border: none;
  font-size: 16px;
  color: #5F5F5F;
}
.header-search-wrap .header-search-box .input-group .form-control {
  border-radius: 5px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #5F5F5F;
  padding-left: 0;
  height: 50px;
  padding-left: 5px;
  outline: none;
  box-shadow: none;
}
.header-search-wrap .header-search-box .cross-btn {
  background-color: transparent;
  width: 21px;
  height: 26px;
  font-size: 26px;
  line-height: 36px;
  border: none;
  margin-left: 5px;
  cursor: pointer;
  transition: 0.3s;
  color: #e3000f;
}
/** @format */
/*--------------------------------------------------------------
# Hero banner Section
--------------------------------------------------------------*/
#hero-banner {
  width: 100%;
  min-height: 480px;
  background-color: #1a2456;
  background: radial-gradient(circle, #00a1d5, #1a2456);
  background-attachment: fixed;
  position: relative;
  will-change: transform;
  backface-visibility: hidden;
  height: calc(100vh - 99px);
  width: 100%;
  transition: all 1.2s cubic-bezier(0.22, 0.44, 0, 1);
}
@media screen and (max-width: 991px) {
  #hero-banner {
    height: calc(100vh - 85px);
  }
}
#hero-banner > * {
  z-index: 1;
}
#hero-banner #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#hero-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  width: 100%;
  height: calc(100% - 380px);
  z-index: 0;
  transition: height 0.9s;
}
#hero-banner .video-banner {
  width: 100%;
  max-width: 1150px;
  height: 580px;
  margin-top: 230px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  position: relative;
  transition: all 0.9s ease;
}
@media screen and (max-width: 767px) {
  #hero-banner .video-banner {
    margin-top: 10%;
  }
}
#hero-banner .video-banner .show-video {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.8s;
}
#hero-banner .video-banner .poster-hide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.8s;
  visibility: visible;
  opacity: 1;
}
#hero-banner .video-banner .poster-hide.noscroll {
  -webkit-clip-path: inherit;
  clip-path: inherit;
  opacity: 1;
}
@media screen and (max-width: 1280px) {
  #hero-banner .video-banner .poster-hide {
    padding: 0 20px;
  }
}
@media screen and (max-width: 991px) {
  #hero-banner .video-banner .poster-hide {
    top: 25%;
  }
}
#hero-banner .video-banner .poster-hide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  #hero-banner .video-banner .poster-hide img {
    height: 55vh;
  }
}
#hero-banner .hero-title {
  position: absolute;
  z-index: 2;
  top: 55px;
  left: 0;
  right: 0;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  transition: all 0.9s;
}
@media screen and (max-width: 1280px) {
  #hero-banner .hero-title {
    padding: 0 20px;
  }
}
#hero-banner .hero-title h1 {
  font-size: 50px;
  line-height: 46px;
  font-weight: 700;
  color: #fff;
  max-width: 900px;
}
@media screen and (min-width: 576px) {
  #hero-banner .hero-title h1 {
    font-size: 60px;
    line-height: 54px;
  }
}
@media screen and (min-width: 768px) {
  #hero-banner .hero-title h1 {
    font-size: 70px;
    line-height: 64px;
  }
}
@media screen and (min-width: 992px) {
  #hero-banner .hero-title h1 {
    font-size: 80px;
    line-height: 74px;
  }
}
@media screen and (min-width: 1200px) {
  #hero-banner .hero-title h1 {
    font-size: 90px;
    line-height: 82px;
  }
}
@media screen and (min-width: 1400px) {
  #hero-banner .hero-title h1 {
    font-size: 90px;
    line-height: 82px;
  }
}
@media screen and (max-width: 767px) {
  #hero-banner .hero-title h1 {
    text-align: center;
  }
}
#hero-banner .hero-action {
  position: absolute;
  z-index: 2;
  right: -45px;
  top: 290px;
  transition: all 0.9s;
}
@media screen and (max-width: 575px) {
  #hero-banner .hero-action {
    top: 390px;
  }
}
#hero-banner .hero-action a {
  background: rgb(227, 0, 15);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  height: 50px;
  min-width: 250px;
  position: relative;
  border-radius: 0;
  padding: 0 28px;
  padding-right: 60px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  vertical-align: top;
  transition: all 0.5s;
  transform: rotate(7deg);
  transform: rotate(90deg);
}
#hero-banner .hero-action a:hover {
  background: #ff0000;
}
#hero-banner .hero-action .btn-arrow {
  position: absolute;
  left: 100%;
  transform: translate(-112%, -17%) rotate(-90deg);
  top: 0px;
  width: 16px;
  height: 70px;
}
#hero-banner .hero-action .btn-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 6px;
  width: 2px;
  height: 45px;
  background-color: #fff;
}
#hero-banner .hero-action .btn-arrow img {
  width: 16px;
  height: 70px;
}
@media screen and (max-width: 991px) {
  #hero-banner .hero-action .btn-arrow svg path {
    fill: #fff;
  }
}
#hero-banner .btn-holder {
  opacity: 0;
  transition: all 0.5s;
}
#hero-banner.hero-active:not(.noscroll) {
  position: fixed !important;
  top: 0;
  z-index: 11;
  height: calc(100vh - 99px);
  align-items: flex-start !important;
  transform: translateY(99px);
}
@media screen and (max-width: 991px) {
  #hero-banner.hero-active:not(.noscroll) {
    height: calc(100vh - 65px);
    transform: translateY(65px);
  }
}
#hero-banner.hero-active:not(.noscroll)::after {
  height: calc(100% - 0px);
}
#hero-banner.hero-active.hide-video {
  position: relative !important;
  transform: translateY(0px);
}
#hero-banner.hero-active .hero-title {
  visibility: hidden;
  opacity: 0;
}
#hero-banner.hero-active .video-banner {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}
#hero-banner.hero-active .video-banner:not(.noscroll) {
  height: calc(100vh - 99px);
}
@media screen and (max-width: 991px) {
  #hero-banner.hero-active .video-banner:not(.noscroll) {
    height: calc(100vh - 65px);
  }
}
#hero-banner.hero-active .video-banner .poster-hide.nohide {
  visibility: visible !important;
  opacity: 1 !important;
}
#hero-banner.hero-active .video-banner .poster-hide:not(.noscroll) {
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1280px) {
  #hero-banner.hero-active .video-banner .poster-hide:not(.noscroll) {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #hero-banner.hero-active .video-banner .poster-hide:not(.noscroll) {
    height: calc(100vh - 75px);
  }
}
#hero-banner.hero-active .video-banner .show-video {
  visibility: visible;
  opacity: 1;
}
#hero-banner.hero-active .video-banner .show-video.show-video {
  opacity: 0 !important;
}
#hero-banner.hero-active .video-banner video.show-video.show-video {
  opacity: 1 !important;
}
#hero-banner.hero-active .hero-action {
  visibility: hidden;
  opacity: 0;
}
#hero-banner.hero-active .btn-holder {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #hero-banner .btn-holder {
    bottom: 50%;
    transform: translateY(-50%);
    gap: 20px;
    padding: 0 20px;
  }
}

.card-movement {
  perspective: 1000px;
  transform-style: preserve-3d;
}
.card-movement .movement-item {
  transition: transform 0.9s;
}

.client-sec {
  padding-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .client-sec {
    padding-bottom: 30px;
  }
}

.client-logo-slide {
  margin-top: 60px;
}
.client-logo-slide .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.client-logo-slide .swiper-wrapper {
  position: relative;
  align-items: center;
}
.client-logo-slide .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  cursor: pointer;
}
.client-logo-slide .swiper-slide img {
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.6s;
}
.client-logo-slide .swiper-slide:hover img {
  transform: scale(1.25);
}

.featured-sec {
  padding-top: 50px;
}
@media screen and (max-width: 991px) {
  .featured-sec {
    padding-bottom: 30px;
  }
}

.featured-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .featured-container {
    flex-direction: column;
  }
}

.featured-main {
  width: 60%;
  height: 580px;
  overflow: hidden;
  padding-right: 88px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .featured-main {
    display: none;
  }
}
.featured-main .swiper-wrapper .swiper-slide {
  position: relative;
}
.featured-main .swiper-wrapper .swiper-slide .featured-img {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.featured-main .swiper-wrapper .swiper-slide .featured-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.75s ease-in-out;
}
.featured-main .swiper-wrapper .swiper-slide .action-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.featured-main .swiper-wrapper .swiper-slide.swiper-slide-active .action-btn {
  animation: slide-in 0.9s ease-in both;
}
.featured-main .swiper-wrapper .swiper-slide:hover .featured-img img {
  transform: scale(1.1);
}

.featured-count {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 30px;
  font-size: 100px;
  font-weight: 300;
  line-height: 92px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}
.swiper-slide-active .featured-count {
  animation: slide-in 0.9s ease-in both;
}

.featured-thumbs-wrap {
  width: 40%;
  padding-right: 60px;
  padding-left: 60px;
}
@media screen and (min-width: 768px) {
  .featured-thumbs-wrap {
    max-height: 580px;
    overflow: hidden;
    overflow-y: auto;
  }
  .featured-thumbs-wrap::-webkit-scrollbar {
    width: 5px;
  }
  .featured-thumbs-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .featured-thumbs-wrap::-webkit-scrollbar-thumb {
    background: #5C5C5C;
  }
  .featured-thumbs-wrap::-webkit-scrollbar-thumb:hover {
    background: #5C5C5C;
  }
}
@media screen and (max-width: 1200px) {
  .featured-thumbs-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .featured-thumbs-wrap {
    width: 100%;
    max-height: 100%;
  }
}
.featured-thumbs .swiper-wrapper {
  transform: none !important;
  display: block;
}
.featured-thumbs .swiper-wrapper .swiper-slide {
  width: 100% !important;
  height: auto !important;
}
.featured-thumbs .swiper-wrapper .swiper-slide:last-child .thumb-content {
  border-bottom-color: transparent;
}
.featured-thumbs .swiper-wrapper .swiper-slide .thumb-content {
  border-bottom: 1px solid #c7c7c7;
  margin-left: 30px;
  padding: 30px 0;
  position: relative;
}
.featured-thumbs .swiper-wrapper .swiper-slide .thumb-content::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  width: 1px;
  height: 24px;
  background-color: #c7c7c7;
  transform: translateY(-50%);
  transition: height 0.5s ease 0.15s;
}
.featured-thumbs .swiper-wrapper .swiper-slide .thumb-content h5 {
  font-size: 26px;
  font-weight: 400;
  line-height: 22px;
  color: #000;
  cursor: pointer;
}
.featured-thumbs .swiper-wrapper .swiper-slide .thumb-content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  color: #5c5c5c;
  visibility: hidden;
  opacity: 0;
  height: 0;
  cursor: pointer;
  transition: all 0.5s ease;
}
.featured-thumbs .swiper-wrapper .swiper-slide .thumb-content .web-hide {
  display: none;
  position: relative;
}
.featured-thumbs .swiper-wrapper .swiper-slide .thumb-content .web-hide .action-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.featured-thumbs .swiper-wrapper .swiper-slide-thumb-active .thumb-content::after {
  content: "";
  background-color: #e3000f;
  height: 70%;
}
.featured-thumbs .swiper-wrapper .swiper-slide-thumb-active .thumb-content p {
  visibility: visible;
  opacity: 1;
  height: auto;
  margin-top: 10px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .featured-thumbs .swiper-wrapper .swiper-slide-thumb-active .thumb-content .web-hide {
    display: block;
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .featured-thumbs .swiper-wrapper .swiper-slide-thumb-active .thumb-content .web-hide {
    display: block;
    height: 250px;
    margin-top: 15px;
  }
  .featured-thumbs .swiper-wrapper .swiper-slide-thumb-active .thumb-content .web-hide .featured-img {
    height: 100%;
  }
  .featured-thumbs .swiper-wrapper .swiper-slide-thumb-active .thumb-content .web-hide .featured-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.business-row {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 575px) {
  .business-row {
    max-width: 100%;
    flex-direction: column-reverse;
  }
}
.business-row .business-col-left {
  flex: 0 0 80%;
  max-width: 80%;
  background-image: url("../images/featured-img/featured-img-3.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 630px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .business-row .business-col-left {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 991px) {
  .business-row .business-col-left {
    height: auto;
    min-height: 500px;
  }
}
@media screen and (max-width: 575px) {
  .business-row .business-col-left {
    flex: 0 0 100%;
    max-width: 100%;
    background-attachment: scroll;
  }
}
.business-row .business-col-left .business-title {
  position: absolute;
  top: 40px;
  left: 60px;
  max-width: 550px;
}
@media screen and (max-width: 991px) {
  .business-row .business-col-left .business-title {
    left: 20px;
  }
}
@media screen and (max-width: 575px) {
  .business-row .business-col-left .business-title {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }
}
.business-row .business-col-left .business-title h2 {
  color: rgba(255, 255, 255, 0.2);
  font-size: 64px;
  font-weight: 900;
  line-height: 65px;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.2);
  -moz-text-fill-color: rgba(255, 255, 255, 0.2);
  -webkit-text-stroke: 2px #fff;
  -moz-text-stroke: 2px #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .business-row .business-col-left .business-title h2 {
    font-size: 44px;
    line-height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .business-row .business-col-left .business-title h2 {
    font-size: 40px;
    line-height: 44px;
  }
}
.business-row .business-col-left img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}
.business-row .business-col-right {
  flex: 0 0 20%;
  max-width: 20%;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .business-row .business-col-right {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .business-row .business-col-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.business-row .business-col-right .count-box {
  text-align: center;
  padding: 30px 30px;
}
@media screen and (max-width: 991px) {
  .business-row .business-col-right .count-box {
    padding: 24px 15px;
  }
}
@media screen and (max-width: 991px) {
  .business-row .business-col-right .count-box:first-child {
    padding-top: 0;
  }
}
.business-row .business-col-right .count-box > div span {
  font-size: 60px;
  font-weight: 600;
  line-height: 56px;
}
@media screen and (max-width: 991px) {
  .business-row .business-col-right .count-box > div span {
    font-size: 40px;
    line-height: 40px;
  }
}

.services-sec {
  padding-bottom: 100px;
  overflow: visible;
}
@media screen and (max-width: 991px) {
  .services-sec {
    padding-bottom: 60px;
  }
}
.services-sec .services-row {
  display: flex;
  flex-wrap: wrap;
}
.services-sec .services-row .services-col-left {
  flex: 0 0 30%;
  max-width: 30%;
}
@media screen and (max-width: 767px) {
  .services-sec .services-row .services-col-left {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.services-sec .services-row .services-col-left .services-content {
  padding-left: 60px;
  padding-right: 40px;
}
@media screen and (max-width: 1200px) {
  .services-sec .services-row .services-col-left .services-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.services-sec .services-row .services-col-left .services-content h3 {
  max-width: 215px;
}
@media screen and (max-width: 991px) {
  .services-sec .services-row .services-col-left .services-content h3 {
    max-width: 100%;
  }
}
.services-sec .services-row .services-col-left .services-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(92, 92, 92);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .services-sec .services-row .services-col-left .services-content p {
    text-align: center;
  }
}
.services-sec .services-row .services-col-right {
  flex: 0 0 70%;
  max-width: 70%;
}
@media screen and (max-width: 767px) {
  .services-sec .services-row .services-col-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.services-slide-wrap {
  margin-top: -175px;
}
@media screen and (max-width: 991px) {
  .services-slide-wrap {
    margin-top: -120px;
  }
}
@media screen and (max-width: 767px) {
  .services-slide-wrap {
    margin-top: 0;
  }
}
.services-slide-wrap .services-slide {
  position: relative;
  overflow: hidden;
}
.services-slide-wrap .services-slide .swiper-slide {
  position: relative;
}
.services-slide-wrap .services-slide .swiper-slide .service-img {
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.services-slide-wrap .services-slide .swiper-slide .service-img img {
  width: 100%;
  height: 580px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.75s ease-in-out;
}
@media screen and (max-width: 767px) {
  .services-slide-wrap .services-slide .swiper-slide .service-img img {
    height: 480px;
  }
}
.services-slide-wrap .services-slide .swiper-slide .service-img:hover img {
  transform: scale(1.1);
}
.services-slide-wrap .services-slide .swiper-slide .service-bg {
  background: rgb(0, 161, 213);
}
@media screen and (max-width: 767px) {
  .services-slide-wrap .services-slide .swiper-slide .service-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
  }
}
.services-slide-wrap .services-slide .swiper-slide .service-bg .service-content {
  height: 100%;
  padding: 50px 20px 140px;
  color: #ffffff;
  max-width: 424px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all 3s linear;
}
@media screen and (max-width: 767px) {
  .services-slide-wrap .services-slide .swiper-slide .service-bg .service-content {
    max-width: 650px;
    padding: 40px 20px 40px;
  }
}
.services-slide-wrap .services-slide .swiper-slide .service-bg .service-content .service-content-inner {
  height: 280px;
  overflow: hidden;
  overflow-y: auto;
}
.services-slide-wrap .services-slide .swiper-slide .service-bg .service-content .service-content-inner::-webkit-scrollbar {
  width: 5px;
}
.services-slide-wrap .services-slide .swiper-slide .service-bg .service-content .service-content-inner::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.services-slide-wrap .services-slide .swiper-slide .service-bg .service-content .service-content-inner::-webkit-scrollbar-thumb {
  background: #5C5C5C;
}
.services-slide-wrap .services-slide .swiper-slide .service-bg .service-content .service-content-inner::-webkit-scrollbar-thumb:hover {
  background: #5C5C5C;
}
@media screen and (min-width: 768px) {
  .services-slide-wrap .services-slide .swiper-slide .service-bg .service-content .service-content-inner {
    height: 380px;
  }
}
.services-slide-wrap .services-slide .swiper-slide .service-bg .service-content h3 {
  font-size: 38px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 20px;
  max-width: 220px;
}
.services-slide-wrap .services-slide .swiper-slide .service-bg .service-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}
.services-slide-wrap .services-slide .swiper-slide .service-bg .service-content .service-count {
  font-size: 100px;
  font-weight: 300;
  line-height: 92px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}
.services-slide-wrap .services-slide .swiper-slide .service-bg .service-content .service-action {
  position: absolute;
  bottom: 40px;
  width: 100%;
  left: 0;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .services-slide-wrap .services-slide .swiper-slide .service-bg .service-content .service-action {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 30px 0;
  }
}
.services-slide-wrap .services-slide .swiper-slide.swiper-slide-active .service-content {
  opacity: 1;
  visibility: visible;
}

.experts-four-col-slider .experts-slider {
  margin-left: 1rem;
  margin-right: 1rem;
}
.experts-four-col-slider .experts-slider .experts-slide {
  display: block;
  border-top: 0.0625rem solid #b7b7b7;
  padding-top: 1.875rem;
  margin-top: 1.875rem;
}
.experts-four-col-slider .experts-slider .experts-slide .pre-header {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .experts-four-col-slider .experts-slider .experts-slide .pre-header {
    display: none;
  }
}
.experts-four-col-slider .experts-slider .experts-slide .slide-link {
  display: block;
  text-decoration: none;
  color: #000;
}
.experts-four-col-slider .experts-slider .experts-slide .img-wrapper {
  margin-bottom: 1.875rem;
  position: relative;
}
.experts-four-col-slider .experts-slider .experts-slide .img-wrapper:before {
  display: block;
  content: "";
  width: 100%;
}
.experts-four-col-slider .experts-slider .experts-slide .btn-2 {
  margin-top: 20px;
}
@media screen and (max-width: 991px) {
  .experts-four-col-slider .experts-slider .experts-slide .btn-2 span {
    color: #000;
    border: 2px solid #000;
    transition: 0.2s;
  }
}
.experts-four-col-slider .experts-heading {
  padding: 0 20px;
}
.experts-four-col-slider .experts-heading .title-h3.text-white, .experts-four-col-slider .experts-heading .main-wrapper-sec .text-white.wp-block-heading, .main-wrapper-sec .experts-four-col-slider .experts-heading .text-white.wp-block-heading {
  text-transform: lowercase;
}
.experts-four-col-slider .experts-heading .title-h3.text-white::first-letter, .experts-four-col-slider .experts-heading .main-wrapper-sec .text-white.wp-block-heading::first-letter, .main-wrapper-sec .experts-four-col-slider .experts-heading .text-white.wp-block-heading::first-letter {
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .experts-four-col-slider .experts-heading .title-h3.text-white, .experts-four-col-slider .experts-heading .main-wrapper-sec .text-white.wp-block-heading, .main-wrapper-sec .experts-four-col-slider .experts-heading .text-white.wp-block-heading {
    color: #000 !important;
    text-align: center;
  }
}

@media (min-width: 576px) {
  .experts-four-col-slider .experts-slider {
    margin-left: 20px;
    margin-right: 20px;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .img-wrapper {
    position: relative;
    flex: 0 0 35%;
    margin-right: 16px;
    height: 160px;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .img-wrapper:before {
    display: block;
    content: "";
    width: 100%;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .img-wrapper img {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .experts-four-col-slider {
    position: relative;
  }
  .experts-four-col-slider .experts-heading {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    top: 65px;
    display: flex;
    justify-content: center;
  }
  .experts-four-col-slider .experts-slider {
    padding: 0;
    margin: 0;
    position: relative;
    height: 38.125rem;
    display: flex;
    overflow: hidden;
  }
  .experts-four-col-slider .experts-slider:hover .experts-slide {
    width: 0;
  }
  .experts-four-col-slider .experts-slider .experts-slide {
    width: 25%;
    height: 38.125rem;
    display: block;
    background-size: cover;
    background-position: 50%;
    overflow: hidden;
    transition: width 0.7s ease;
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
    color: #fff;
  }
  .experts-four-col-slider .experts-slider .experts-slide a.slide-link {
    color: #fff;
  }
  .experts-four-col-slider .experts-slider .experts-slide:first-child .slide-link {
    left: 0;
    border-right: 1px solid hsla(0, 0%, 100%, 0.3);
  }
  .experts-four-col-slider .experts-slider .experts-slide:nth-child(2) .slide-link {
    left: 25%;
    border-right: 1px solid hsla(0, 0%, 100%, 0.3);
  }
  .experts-four-col-slider .experts-slider .experts-slide:nth-child(3) .slide-link {
    left: 50%;
    border-right: 1px solid hsla(0, 0%, 100%, 0.3);
  }
  .experts-four-col-slider .experts-slider .experts-slide:nth-child(4) .slide-link {
    left: 75%;
  }
  .experts-four-col-slider .experts-slider .experts-slide:hover {
    width: 100%;
  }
  .experts-four-col-slider .experts-slider .experts-slide:hover .slide-link {
    opacity: 1;
  }
  .experts-four-col-slider .experts-slider .experts-slide:hover .slide-link .experts-content::after {
    opacity: 1;
  }
  .experts-four-col-slider .experts-slider .experts-slide:hover .slide-link .experts-content .hover-view {
    bottom: 0%;
    height: calc(100% - 120px);
    overflow: hidden;
    overflow-y: auto;
  }
  .experts-four-col-slider .experts-slider .experts-slide:hover .slide-link .experts-content .hover-view::-webkit-scrollbar {
    width: 5px;
  }
  .experts-four-col-slider .experts-slider .experts-slide:hover .slide-link .experts-content .hover-view::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .experts-four-col-slider .experts-slider .experts-slide:hover .slide-link .experts-content .hover-view::-webkit-scrollbar-thumb {
    background: #5C5C5C;
  }
  .experts-four-col-slider .experts-slider .experts-slide:hover .slide-link .experts-content .hover-view::-webkit-scrollbar-thumb:hover {
    background: #5C5C5C;
  }
  .experts-four-col-slider .experts-slider .experts-slide:hover .slide-link .experts-content .hover-view p {
    opacity: 1;
    display: block;
  }
  .experts-four-col-slider .experts-slider .experts-slide:hover .slide-link .experts-content .hover-view .tuaman-btn {
    opacity: 1;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link {
    background-color: rgba(26, 36, 86, 0.5);
    color: #fff;
    position: absolute;
    padding: 0;
    height: 100%;
    width: 25%;
    left: 0;
    z-index: 2;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .img-wrapper {
    display: none;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .experts-content {
    height: 100%;
    width: 100%;
    position: relative;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .experts-content::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 161, 213, 0.4);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    transition: opacity 0.7s ease;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .experts-content .hover-view {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    padding: 30px;
    bottom: -12%;
    transition: 0.6s ease-in-out;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .experts-content .hover-view {
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .experts-content .hover-view h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 24px;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .experts-content .hover-view p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 80px;
    opacity: 0;
    display: none;
    transition: opacity 0.7s ease;
  }
  .experts-four-col-slider .experts-slider .experts-slide .slide-link .experts-content .hover-view .tuaman-btn {
    opacity: 0;
    transition: opacity 0.7s ease;
  }
}
@media (max-width: 991px) {
  .experts-four-col-slider .experts-slider .experts-slide {
    background-image: none !important;
  }
}
.engineering-sec {
  padding-top: 100px;
  padding-bottom: 30px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  .engineering-sec {
    padding-top: 60px;
  }
}
.engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(1) .engineering-img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(4) .engineering-img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(5) .engineering-img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(8) .engineering-img {
  position: relative;
  padding: 65.8407079646% 0 0 0;
  overflow: hidden;
}
.engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(1) .engineering-img img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(4) .engineering-img img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(5) .engineering-img img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(8) .engineering-img img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(2) .engineering-img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(3) .engineering-img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(6) .engineering-img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(7) .engineering-img {
  position: relative;
  padding: 83.3628318584% 0 0 0;
  overflow: hidden;
}
.engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(2) .engineering-img img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(3) .engineering-img img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(6) .engineering-img img, .engineering-sec.homeEngineeringSec .engineering-wrap .engineering-columns .engineering-card:nth-child(7) .engineering-img img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.engineering-sec #particles-eng {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.engineering-sec > * {
  position: relative;
  z-index: 1;
}
.engineering-sec .engineering-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}
.engineering-sec .engineering-wrap .engineering-columns {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 90px;
  column-gap: 90px;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  .engineering-sec .engineering-wrap .engineering-columns {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media screen and (max-width: 991px) {
  .engineering-sec .engineering-wrap .engineering-columns {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .engineering-sec .engineering-wrap .engineering-columns {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.engineering-sec .engineering-wrap .engineering-columns .engineering-card {
  margin-bottom: 70px;
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .engineering-sec .engineering-wrap .engineering-columns .engineering-card {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .engineering-sec .engineering-wrap .engineering-columns .engineering-card {
    margin-bottom: 30px;
  }
}
.engineering-img {
  background: url("../images/default-img.png") no-repeat center center;
  background-size: cover;
}
.engineering-img > a {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url("../images/default-img.png") no-repeat center center;
  background-size: cover;
}
.engineering-img iframe, .engineering-img video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.engineering-sec .engineering-wrap .engineering-columns .engineering-card .engineering-img {
  position: relative;
}
.engineering-sec .engineering-wrap .engineering-columns .engineering-card .engineering-img .engineering-type {
  position: absolute;
  left: 20px;
  bottom: 50px;
  background-color: rgb(255, 255, 255);
  color: #000;
  font-size: 16px;
  padding: 3px 15px;
}
.engineering-sec .engineering-wrap .engineering-columns .engineering-card .engineering-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.75s ease-in-out;
}
.engineering-sec .engineering-wrap .engineering-columns .engineering-card .engineering-content {
  margin-top: 30px;
}
.engineering-sec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.engineering-sec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.engineering-sec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post span {
  font-size: 16px;
  color: rgb(92, 92, 92);
}
.engineering-sec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post span.dot {
  background: rgb(0, 161, 213);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.engineering-sec .engineering-wrap .engineering-columns .engineering-card:hover .engineering-img img {
  transform: scale(1.1);
}
.engineering-sec .engineering-wrap .engineering-columns .engineering-card:hover .engineering-content .engineering-title {
  color: rgb(227, 0, 15);
  text-decoration: underline;
}

/** @format */
#hero-banner.innerpageBanner.contactBanner {
  background: radial-gradient(circle, #00a1d5, #1a2456);
  height: auto;
}
#hero-banner.innerpageBanner.contactBanner .card-movement {
  width: 664px;
  max-width: 100%;
}
#hero-banner.innerpageBanner.contactBanner .video-banner {
  margin-top: 186px;
}
@media screen and (max-width: 767.98px) {
  #hero-banner.innerpageBanner.contactBanner .video-banner {
    margin-top: 50px;
  }
}

.contactTopSec {
  position: relative;
  z-index: 12;
  margin-top: -100px;
}
@media screen and (max-width: 767.98px) {
  .contactTopSec {
    margin-top: 60px;
  }
}
.contactTopSec .secInner .col-address .address-wrap {
  padding: 100px 40px 100px 60px;
  background: #00A1D5;
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media screen and (min-width: 992px) {
  .contactTopSec .secInner .col-address .address-wrap {
    margin-right: -16px;
  }
}
@media screen and (max-width: 991.98px) {
  .contactTopSec .secInner .col-address .address-wrap {
    padding: 60px 30px 60px 40px;
  }
}
@media screen and (max-width: 767.98px) {
  .contactTopSec .secInner .col-address .address-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contactTopSec .secInner .col-address .address-wrap a {
  color: inherit;
  text-decoration: none;
}
.contactTopSec .secInner .col-address .address-wrap .title {
  color: inherit;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 15px;
}
.contactTopSec .secInner .col-address .address-wrap .cin-number {
  color: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.contactTopSec .secInner .col-address .address-wrap .row {
  margin-bottom: -80px;
}
@media screen and (max-width: 767.98px) {
  .contactTopSec .secInner .col-address .address-wrap .row {
    margin-bottom: -30px;
  }
}
.contactTopSec .secInner .col-address .address-wrap .row [class*=col-] {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.98px) {
  .contactTopSec .secInner .col-address .address-wrap .row [class*=col-] {
    margin-bottom: 30px;
  }
}
.contactTopSec .secInner .col-address .address-wrap .row [class*=col-] h5 {
  margin-bottom: 15px;
}
.contactTopSec .secInner .col-address .address-wrap .row [class*=col-] p {
  color: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0px;
}
.contactTopSec .secInner .col-form {
  margin-top: 100px;
}
@media screen and (max-width: 767.98px) {
  .contactTopSec .secInner .col-form {
    margin-top: 0px;
  }
}
.contactTopSec .secInner .col-form .from-wrap {
  padding: 60px;
}
@media screen and (min-width: 992px) {
  .contactTopSec .secInner .col-form .from-wrap {
    padding-left: 105px;
  }
}
@media screen and (max-width: 767.98px) {
  .contactTopSec .secInner .col-form .from-wrap {
    padding: 40px 20px;
  }
}
.contactTopSec .secInner .col-form .from-wrap .title-h3, .contactTopSec .secInner .col-form .from-wrap .main-wrapper-sec .wp-block-heading, .main-wrapper-sec .contactTopSec .secInner .col-form .from-wrap .wp-block-heading {
  margin-bottom: -10px;
  width: 441px;
  max-width: 100%;
}
.contactTopSec .secInner .col-form .from-wrap form .row [class*=col-] {
  --bs-gutter-y: 50px;
}
.contactTopSec .secInner .col-form .from-wrap form .form-label {
  color: #5C5C5C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.contactTopSec .secInner .col-form .from-wrap form .form-control {
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-color: #C7C7C7;
  padding-left: 0;
  padding-right: 0;
}
.contactTopSec .secInner .col-form .from-wrap form .form-controltextarea {
  height: 40px;
  resize: none;
}

body .wpcf7 form .wpcf7-not-valid-tip {
  color: #e3000f;
}
body .wpcf7 form.invalid .wpcf7-response-output {
  border-color: #e3000f;
  padding: 20px;
  border-radius: 0px;
  margin: 20px 0px;
  font-size: 18px;
  color: #e3000f;
}
body .wpcf7 form.sent .wpcf7-response-output {
  border-color: #00A1D5;
  padding: 20px;
  border-radius: 0px;
  margin: 20px 0px;
  font-size: 18px;
  color: #00A1D5;
}

.main-wrapper-sec {
  color: #5C5C5C;
}
.main-wrapper-sec .wp-block-heading {
  color: #000000;
}
.main-wrapper-sec ul {
  list-style-type: disc;
  padding: 0;
  padding-left: 20px;
  margin: 0;
  margin-bottom: 30px;
}
.main-wrapper-sec ul li {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-left: 10px;
  position: relative;
}
.main-wrapper-sec ul li:not(:last-child) {
  margin-bottom: 5px;
}
.main-wrapper-sec .vendor_files {
  margin-bottom: -24px;
}
.main-wrapper-sec .vendor_files [class*=col-] {
  margin-bottom: 24px;
}
.main-wrapper-sec .vendor_files [class*=col-] .card {
  height: 100%;
}
.main-wrapper-sec .vendor_files [class*=col-] .card .card-body h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 36px;
  color: #000;
}

.post-password-form {
  width: 600px;
  max-width: 100%;
  margin: auto;
}
.post-password-form p:has(label) {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .post-password-form p:has(label) {
    flex-direction: column;
    align-items: stretch;
  }
}
.post-password-form p:has(label) label {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .post-password-form p:has(label) label {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}
.post-password-form p:has(label) label input {
  flex-grow: 1;
  margin-left: 10px;
  display: block;
  padding: 10px 12px 11px 12px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: 1px solid #000;
  border-radius: 0px;
  border-right: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-left: 10px;
  margin-right: -1px;
}
@media screen and (max-width: 767.98px) {
  .post-password-form p:has(label) label input {
    width: 100%;
    margin: 0px;
    border-right: 1px solid #000;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.post-password-form p:has(label) input[type=submit] {
  font-size: 18px;
  font-weight: 600;
  min-width: 150px;
  cursor: pointer;
  transition: 0.3s;
  line-height: 22px;
  padding: 12px 12px 11px 12px;
  border: 1px solid #000;
  background-color: #ffffff;
  border-radius: 0;
  transition: 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.post-password-form p:has(label) input[type=submit]:hover {
  color: #ffffff;
  background-color: #000000;
}

.filterForm .form-group label {
  color: #5C5C5C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.alm-filters .alm-filter--inner {
  padding: 0px !important;
  border-bottom: 1px solid #C7C7C7;
}
.alm-filters .alm-filter--select {
  margin: auto -10px;
  /* .s-hidden {
       visibility:hidden;
       padding-right:10px;
   }
   .select {
       cursor:pointer;
       display:inline-block;
       position:relative;
       font:normal 11px/22px Arial, Sans-Serif;
       color:black;
       border:1px solid #ccc;
   }
   .styledSelect {
       position:absolute;
       top:0;
       right:0;
       bottom:0;
       left:0;
       background-color:white;
       padding:0 10px;
       font-weight:bold;
   }
   .styledSelect:after {
       content:"";
       width:0;
       height:0;
       border:5px solid transparent;
       border-color:black transparent transparent transparent;
       position:absolute;
       top:9px;
       right:6px;
   }
   .styledSelect:active, .styledSelect.active {
       background-color:#eee;
   }
   .options {
       display:none;
       position:absolute;
       top:100%;
       right:0;
       left:0;
       z-index:999;
       margin:0 0;
       padding:0 0;
       list-style:none;
       border:1px solid #ccc;
       background-color:white;
       -webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
       -moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
       box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
   }
   .options li {
       padding:0 6px;
       margin:0 0;
       padding:10px 10px;
   }
   .options li:hover {
       background-color:#39f;
       color:white;
   }*/
}
.alm-filters .alm-filter--select select.alm-filter--item {
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
  border: none;
  border-radius: 0px;
  padding: 10px 10px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
.alm-filters .alm-filter--select select.alm-filter--item:hover option {
  background: transparent;
  color: #000000;
}
.alm-filters .alm-filter--select select.alm-filter--item option {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  padding: 10px;
  margin: 10px;
  line-height: 2;
  cursor: pointer;
}

.ajax-load-more-wrap .alm-btn-wrap {
  margin-bottom: 0px;
}
.ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn {
  background: #ffffff;
  margin-top: 80px;
}
@media screen and (max-width: 1199.98px) {
  .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 991.98px) {
  .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn {
    margin-top: 30px;
  }
}
.ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn:hover {
  background: #ffffff;
}
.ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn.more {
  background: #ffffff;
}
.ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn.more.loading {
  color: #000000;
}
.ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn.done {
  background: #ffffff;
  display: none;
}

/** @format */
@media screen and (max-width: 1199.98px) {
  #hero-banner.innerpageBanner {
    height: auto;
  }
}
#hero-banner.innerpageBanner .hero-title {
  display: flex;
  flex-wrap: wrap;
}
#hero-banner.innerpageBanner .hero-title h1 {
  max-width: 100%;
}
#hero-banner.innerpageBanner .scrollMenu {
  margin-left: auto;
  position: absolute;
  right: 60px;
  top: 30px;
  z-index: 2;
  transition: all 0.9s;
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1199.5px) {
  #hero-banner.innerpageBanner .scrollMenu {
    right: 20px;
  }
}
@media screen and (max-width: 767.5px) {
  #hero-banner.innerpageBanner .scrollMenu {
    padding: 15px 15px;
    background-color: rgba(0, 0, 0, 0.4);
    margin-top: 6%;
    top: 25%;
  }
}
#hero-banner.innerpageBanner .scrollMenu ul {
  padding: 0 0 0 16px;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 0;
}
#hero-banner.innerpageBanner .scrollMenu ul:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: #00A1D5;
}
#hero-banner.innerpageBanner .scrollMenu ul li {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  margin-bottom: 13px;
}
#hero-banner.innerpageBanner .scrollMenu ul li:last-child {
  margin-bottom: 0;
}
#hero-banner.innerpageBanner .scrollMenu ul li a {
  text-decoration: none;
  color: #fff;
}
#hero-banner.innerpageBanner .scrollMenu ul li a:hover {
  text-decoration: underline;
}
#hero-banner.innerpageBanner .video-banner {
  width: calc(100vw - 120px);
  max-width: 100%;
}
@media screen and (max-width: 1199.5px) {
  #hero-banner.innerpageBanner .video-banner {
    width: 100%;
  }
}
#hero-banner.innerpageBanner .video-banner .poster-hide img {
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#hero-banner.innerpageBanner.hero-active:not(.noscroll) .video-banner {
  width: 100%;
  max-width: 100%;
}
#hero-banner.innerpageBanner.hero-active:not(.noscroll) .scrollMenu {
  opacity: 0;
  visibility: hidden;
}
#hero-banner.innerpageBanner.hero-active .scrollMenu {
  visibility: hidden;
  opacity: 0;
}
#hero-banner.aboutBanner .card-movement {
  max-width: 420px;
}
@media screen and (max-width: 767.5px) {
  #hero-banner.aboutBanner .card-movement {
    max-width: 100%;
  }
}
#hero-banner.leadershipBanner .card-movement {
  max-width: 70%;
}
@media screen and (max-width: 767.5px) {
  #hero-banner.leadershipBanner .card-movement {
    max-width: 100%;
  }
}
#hero-banner.videoButtonWrap.hero-active .videoControl {
  opacity: 1;
}
#hero-banner.videoButtonWrap .videoControl {
  position: absolute;
  top: 60px;
  right: 15px;
  z-index: 9;
  opacity: 0;
  transition: all 0.9s;
}
#hero-banner.videoButtonWrap .videoControl .videoControlInner {
  display: flex;
  flex-direction: column;
  width: 50px;
  height: auto;
}
#hero-banner.videoButtonWrap .videoControl .videoControlInner > div {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#hero-banner.videoButtonWrap .videoControl .videoControlInner > div:not(:last-child) {
  margin-bottom: 20px;
}
#hero-banner.videoButtonWrap .videoControl .videoControlInner > div .bi {
  font-size: 25px;
  line-height: 18px;
  color: #ffffff;
}
#hero-banner.videoButtonWrap .videoControl .videoControlInner .btnPlayPause {
  background-color: #e3000f;
}
#hero-banner.videoButtonWrap .videoControl .videoControlInner .btnPlayPause.play .bi::before {
  content: "\f4f4";
}
#hero-banner.videoButtonWrap .videoControl .videoControlInner .btnMuteUnmute {
  background-color: #00A1D5;
}
#hero-banner.videoButtonWrap .videoControl .videoControlInner .btnMuteUnmute.mute .bi::before {
  content: "\f610";
}
@media screen and (max-width: 767px) {
  #hero-banner.videoMobilecontain::after {
    background: transparent;
  }
  #hero-banner.videoMobilecontain .video-banner .show-video {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
#hero-banner.investorBanner .card-movement {
  max-width: 75%;
}
@media screen and (max-width: 767.5px) {
  #hero-banner.investorBanner .card-movement {
    max-width: 100%;
  }
}
#hero-banner.oilGasBanner .card-movement {
  max-width: 75%;
}
@media screen and (max-width: 767.5px) {
  #hero-banner.oilGasBanner .card-movement {
    max-width: 100%;
  }
}
#hero-banner.civilBanner .card-movement {
  max-width: 685px;
}
@media screen and (max-width: 767.5px) {
  #hero-banner.civilBanner .card-movement {
    max-width: 100%;
  }
}
#hero-banner.onboardingBanner .card-movement {
  max-width: 650px;
}
@media screen and (max-width: 767.5px) {
  #hero-banner.onboardingBanner .card-movement {
    max-width: 100%;
  }
}

.leadershipSec .comm-heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.5px) {
  .leadershipSec .comm-heading {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1199.5px) {
  .leadershipSec .w-12 {
    padding: 0 0;
  }
}
.leadershipSec .sectionInner {
  position: relative;
  z-index: 0;
  padding: 0 101px 45px 101px;
  justify-content: space-between;
}
@media screen and (max-width: 1299.5px) {
  .leadershipSec .sectionInner {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 1199.5px) {
  .leadershipSec .sectionInner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.leadershipSec .sectionInner .backgroundBox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
  height: 350px;
  background-color: #FFF8ED;
}
.leadershipSec .sectionInner .leftPan {
  width: 49.15%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991.5px) {
  .leadershipSec .sectionInner .leftPan {
    width: calc(100% - 300px - 35px);
  }
}
@media screen and (max-width: 767.5px) {
  .leadershipSec .sectionInner .leftPan {
    width: 100%;
    order: 1;
  }
}
.leadershipSec .sectionInner .leftPan p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #5C5C5C;
  margin-bottom: 22px;
}
.leadershipSec .sectionInner .leftPan .btn, .leadershipSec .sectionInner .leftPan .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn, .ajax-load-more-wrap .alm-btn-wrap .leadershipSec .sectionInner .leftPan .alm-load-more-btn {
  margin-top: 8px;
}
.leadershipSec .sectionInner .rightPan {
  width: 443px;
  width: 42.27%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991.5px) {
  .leadershipSec .sectionInner .rightPan {
    width: 300px;
  }
}
@media screen and (max-width: 767.5px) {
  .leadershipSec .sectionInner .rightPan {
    width: 100%;
    order: 0;
    text-align: center;
    margin-bottom: 35px;
  }
}
.leadershipSec .sectionInner .rightPan figure {
  width: 100%;
  height: 0;
  position: relative;
  z-index: 0;
  padding-top: 97.3933649289%;
  margin-bottom: 30px;
}
.leadershipSec .sectionInner .rightPan figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.leadershipSec .sectionInner .rightPan .textTitle {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
.leadershipSec .sectionInner .rightPan .textDesc {
  color: #5C5C5C;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
}

@media screen and (max-width: 1199.5px) {
  .lagacySec .is-reveal-check {
    -webkit-clip-path: inherit;
    clip-path: inherit;
    opacity: 1;
  }
}
.lagacySec .sectionInner .leftPan {
  width: 50%;
}
@media screen and (max-width: 1199.5px) {
  .lagacySec .sectionInner .leftPan {
    width: 100%;
    margin-bottom: 60px;
  }
}
.lagacySec .sectionInner .leftPan .featured-title {
  padding-left: 60px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1199.5px) {
  .lagacySec .sectionInner .leftPan .featured-title {
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
}
.lagacySec .sectionInner .leftPan figure {
  width: 100%;
  position: relative;
  z-index: 0;
  height: 0;
  padding-top: 100%;
}
.lagacySec .sectionInner .leftPan figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.lagacySec .sectionInner .rightPan {
  width: 50%;
  padding-left: 78px;
}
@media screen and (max-width: 1299.5px) {
  .lagacySec .sectionInner .rightPan {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1199.5px) {
  .lagacySec .sectionInner .rightPan {
    width: 100%;
    padding-left: 20px;
  }
}
.lagacySec .sectionInner .rightPan .topSec {
  padding-right: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1299.5px) {
  .lagacySec .sectionInner .rightPan .topSec {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199.5px) {
  .lagacySec .sectionInner .rightPan .topSec {
    padding-right: 20px;
  }
}
.lagacySec .sectionInner .rightPan .topSec p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #5C5C5C;
  margin-bottom: 22px;
}
.lagacySec .sectionInner .rightPan .topSec p:last-child {
  margin-bottom: 0;
}
.lagacySec .sectionInner .rightPan .bottomSec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lagacySec .sectionInner .rightPan .bottomSec {
    flex-direction: column;
  }
}
.lagacySec .sectionInner .rightPan .bottomSec .leftBox {
  width: 230px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .lagacySec .sectionInner .rightPan .bottomSec .leftBox {
    width: auto;
  }
}
.lagacySec .sectionInner .rightPan .bottomSec .leftBox .count-box {
  text-align: left;
  margin-bottom: 30px;
  padding-right: 30px;
}
.lagacySec .sectionInner .rightPan .bottomSec .leftBox .count-box:last-child {
  margin-bottom: 0;
}
.lagacySec .sectionInner .rightPan .bottomSec .leftBox .count-box p {
  width: 170px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}
.lagacySec .sectionInner .rightPan .bottomSec .leftBox .count-box > div span {
  font-size: 60px;
  font-weight: 600;
  line-height: 56px;
}
@media screen and (max-width: 991px) {
  .lagacySec .sectionInner .rightPan .bottomSec .leftBox .count-box > div span {
    font-size: 40px;
    line-height: 40px;
  }
}
.lagacySec .sectionInner .rightPan .bottomSec .rightBox {
  width: calc(100% - 230px);
}
@media screen and (max-width: 767px) {
  .lagacySec .sectionInner .rightPan .bottomSec .rightBox {
    width: 100%;
    margin-top: 30px;
  }
}
.lagacySec .sectionInner .rightPan .bottomSec .rightBox figure {
  width: 100%;
  position: relative;
  z-index: 0;
  height: 0;
  padding-top: 83.7320574163%;
}
.lagacySec .sectionInner .rightPan .bottomSec .rightBox figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.lagacySec .sectionInner .rightPan .bottomSec .rightBox.wtcontent {
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .lagacySec .sectionInner .rightPan .bottomSec .rightBox.wtcontent {
    padding-right: 20px;
  }
}

.coreVal .sectionInner {
  display: flex;
  flex-wrap: wrap;
}
.coreVal .sectionInner .leftPan {
  width: 50%;
  padding-left: 60px;
  padding-top: 100px;
  padding-right: 73px;
}
@media screen and (max-width: 1199.5px) {
  .coreVal .sectionInner .leftPan {
    width: 100%;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
  }
}
.coreVal .sectionInner .leftPan p {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.coreVal .sectionInner .leftPan .listBox {
  padding-top: 33px;
}
.coreVal .sectionInner .leftPan .listBox .listItem {
  position: relative;
  z-index: 0;
  padding-left: 28px;
  padding-bottom: 40px;
}
.coreVal .sectionInner .leftPan .listBox .listItem:before {
  position: absolute;
  z-index: 0;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00A1D5;
  left: 0;
  top: 8px;
  z-index: 0;
}
.coreVal .sectionInner .leftPan .listBox .listItem:after {
  position: absolute;
  z-index: 0;
  content: "";
  left: 3px;
  width: 1px;
  border-right: 1px dashed #00A1D5;
  top: 9px;
  bottom: -8px;
}
.coreVal .sectionInner .leftPan .listBox .listItem:last-child {
  padding-bottom: 0;
}
.coreVal .sectionInner .leftPan .listBox .listItem:last-child:after {
  content: normal;
}
.coreVal .sectionInner .leftPan .listBox .listItem h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
}
.coreVal .sectionInner .rightPan {
  width: 50%;
}
@media screen and (max-width: 1199.5px) {
  .coreVal .sectionInner .rightPan {
    width: 100%;
  }
}
.coreVal .sectionInner .rightPan figure {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  padding-top: 88%;
}
.coreVal .sectionInner .rightPan figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.awardSec {
  padding: 50px 0 100px 0;
  position: relative;
  z-index: 0;
  overflow: inherit;
}
@media screen and (max-width: 767.5px) {
  .awardSec {
    padding-bottom: 60px;
  }
}
.awardSec > * {
  position: relative;
  z-index: 1;
}
.awardSec .bgbox {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  height: 100px;
  width: calc(50% + 99px);
  background: #FFF8ED;
}
.awardSec .headBox {
  width: 100%;
  overflow: hidden;
}
.awardSec .bgbox2 {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 100%;
  height: 163px;
  width: 50%;
  background: #FFF8ED;
}
.awardSec .bgbox {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  height: 100px;
  width: calc(50% + 99px);
  background: #FFF8ED;
}
@media screen and (max-width: 1199.5px) {
  .awardSec .bgbox {
    width: calc(50% + 74px);
  }
}
@media screen and (max-width: 991.5px) {
  .awardSec .bgbox {
    width: 460px;
  }
}
@media screen and (max-width: 767.5px) {
  .awardSec .bgbox {
    width: calc(50% - 60px);
    height: 60px;
  }
}
.awardSec .animateTitle {
  text-shadow: 0px 0px #e7e7e7;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -moz-text-fill-color: #fff;
  -webkit-text-stroke: 2px #e7e7e7;
  -moz-text-stroke: 2px #e7e7e7;
  font-size: 90px;
  line-height: 83px;
  transform: translateX(0);
  position: relative;
  left: 0;
  white-space: nowrap;
}
@media screen and (max-width: 1199.5px) {
  .awardSec .animateTitle {
    font-size: 70px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 991.5px) {
  .awardSec .animateTitle {
    white-space: normal;
    transform: translateX(0) !important;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 40px;
    line-height: 1.1;
    text-align: center;
  }
}
.awardSec .comm-heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.5px) {
  .awardSec .comm-heading {
    margin-bottom: 35px;
  }
}
.awardSec .awardSliderWrap {
  max-width: 1067px;
  margin: 0 auto;
}
@media screen and (max-width: 1199.5px) {
  .awardSec .awardSliderWrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.awardSec .awardSliderWrap .awardMain {
  position: relative;
  z-index: 0;
  padding-left: 110px;
}
@media screen and (max-width: 1199.5px) {
  .awardSec .awardSliderWrap .awardMain {
    padding-left: 60px;
  }
}
@media screen and (max-width: 767.5px) {
  .awardSec .awardSliderWrap .awardMain {
    padding-left: 0px;
  }
}
.awardSec .awardSliderWrap .awardMain .award-pagination {
  position: absolute;
  z-index: 0;
  top: 50%;
  bottom: auto;
  left: 0;
  transform: translateY(-50%);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 767.5px) {
  .awardSec .awardSliderWrap .awardMain .award-pagination {
    position: static;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    transform: translate(0);
  }
}
.awardSec .awardSliderWrap .slideArrow {
  position: static;
  display: flex;
  margin-top: 60px;
  margin-left: 110px;
}
@media screen and (max-width: 1199.5px) {
  .awardSec .awardSliderWrap .slideArrow {
    margin-left: 60px;
  }
}
@media screen and (max-width: 767.5px) {
  .awardSec .awardSliderWrap .slideArrow {
    margin-top: 40px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767.5px) {
  .awardSec .awardSliderWrap .slideArrow {
    margin-top: 40px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767.5px) {
  .awardSec .awardSliderWrap .slideArrow {
    margin-top: 40px;
    margin-left: 0;
  }
}
.awardSec .awardSliderWrap .slideArrow .arrowBox {
  display: flex;
  padding-left: calc(47.25% + 70px);
  width: 100%;
}
@media screen and (max-width: 991.5px) {
  .awardSec .awardSliderWrap .slideArrow .arrowBox {
    padding-left: 380px;
  }
}
@media screen and (max-width: 767.5px) {
  .awardSec .awardSliderWrap .slideArrow .arrowBox {
    padding-left: 0;
    justify-content: center;
  }
}
.awardSec .awardSliderWrap .slideArrow .comm-slider-navigation {
  position: static !important;
  -webkit-backdrop-filter: blur(0px) !important;
          backdrop-filter: blur(0px) !important;
  margin: 0 !important;
  border: 1px solid #e3000f;
}
.awardSec .awardSliderWrap .slideArrow .comm-slider-navigation.swiper-button-disabled {
  opacity: 0.4 !important;
}
.awardSec .awardSliderWrap .slideArrow .comm-slider-navigation.swiper-button-next {
  background: #e3000f;
  color: #fff !important;
}
.awardSec .awardSliderWrap .slideArrow .comm-slider-navigation.swiper-button-prev {
  background: #fff;
  color: #e3000f !important;
}
.awardSec .awardSliderWrap .awardSlider {
  overflow: hidden;
}
.awardSec .awardSliderWrap .awardSlider .listInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767.5px) {
  .awardSec .awardSliderWrap .awardSlider .listInner {
    flex-wrap: wrap;
  }
}
.awardSec .awardSliderWrap .awardSlider .listInner .leftPan {
  width: 47.25%;
}
@media screen and (max-width: 991.5px) {
  .awardSec .awardSliderWrap .awardSlider .listInner .leftPan {
    width: 330px;
  }
}
@media screen and (max-width: 767.5px) {
  .awardSec .awardSliderWrap .awardSlider .listInner .leftPan {
    width: 300px;
    margin: 0 auto 35px;
  }
}
.awardSec .awardSliderWrap .awardSlider .listInner .leftPan figure {
  width: 100%;
  position: relative;
  z-index: 0;
  height: 0;
  padding-top: 70.5752212389%;
}
.awardSec .awardSliderWrap .awardSlider .listInner .leftPan figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.awardSec .awardSliderWrap .awardSlider .listInner .rightPan {
  width: 52.75%;
  padding-left: 70px;
}
@media screen and (max-width: 991.5px) {
  .awardSec .awardSliderWrap .awardSlider .listInner .rightPan {
    width: calc(100% - 330px);
    padding-left: 50px;
  }
}
@media screen and (max-width: 767.5px) {
  .awardSec .awardSliderWrap .awardSlider .listInner .rightPan {
    width: 100%;
    padding-left: 0;
  }
}
.awardSec .awardSliderWrap .awardSlider .listInner .rightPan h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}
.awardSec .awardSliderWrap .awardSlider .listInner .rightPan p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #5C5C5C;
}

.modal-open {
  padding: 0px !important;
}

.modal-backdrop {
  display: none;
}

.modal.videoModal {
  background: rgba(0, 0, 0, 0.75);
  padding: 0px !important;
  z-index: 99999999;
}
.modal.videoModal .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: transparent;
  border: none;
  background-clip: padding-box;
  border-radius: 0.3rem;
  outline: 0;
}
.modal.videoModal .modal-content .ratio video {
  -o-object-fit: cover;
     object-fit: cover;
}
.modal.videoModal .modal-header {
  padding: 0;
  position: relative;
  border-bottom: 0px;
  background-color: transparent;
}
.modal.videoModal .modal-header .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  z-index: 1;
  transform: translate(50%, -50%);
  padding: 0px;
  opacity: 1;
  border-radius: 50%;
  background: #e3000f url(../images/close-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}
@media screen and (max-width: 575px) {
  .modal.videoModal .modal-header .btn-close {
    width: 24px;
    height: 24px;
    background-size: 12px;
    top: 14px;
    right: 14px;
  }
}
.modal.videoModal .modal-body {
  padding: 0px;
}

.whoWeAre {
  overflow: visible;
  position: relative;
  z-index: 1;
}
.whoWeAre .videoBtnWrap.videoBtnWrapMobile {
  display: none;
}
@media screen and (max-width: 1199.98px) {
  .whoWeAre .videoBtnWrap.videoBtnWrapMobile {
    display: block;
    margin-bottom: 20px;
  }
}
.whoWeAre .videoBtnWrap.videoBtnWrapDesktop {
  margin-top: 20px;
}
@media screen and (max-width: 1199.98px) {
  .whoWeAre .videoBtnWrap.videoBtnWrapDesktop {
    display: none;
    pointer-events: none;
  }
}
.whoWeAre .videoBtnWrap a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: lowercase;
}
.whoWeAre .videoBtnWrap a::first-letter {
  text-transform: uppercase;
}
.whoWeAre .videoBtnWrap a img {
  margin-right: 8px;
}
.whoWeAre .right-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 184px;
  background-color: #00A1D5;
  z-index: 0;
}
@media (max-width: 1200px) {
  .whoWeAre .right-bg {
    opacity: 0.3;
  }
}
.whoWeAre .sectionMain {
  position: relative;
  z-index: 1;
}
.whoWeAre .topSec {
  margin-bottom: 43px;
  display: flex;
  flex-wrap: wrap;
}
.whoWeAre .topSec .topLeft {
  width: 700px;
}
@media (max-width: 991px) {
  .whoWeAre .topSec .topLeft {
    width: 100%;
    margin-bottom: 15px;
  }
}
.whoWeAre .topSec .topRight {
  min-width: 236px;
  margin-left: auto;
}
@media screen and (max-width: 991.98px) {
  .whoWeAre .topSec .topRight {
    width: 100%;
  }
}
.whoWeAre .topSec .topRight .filterTitle {
  display: block;
  color: #5C5C5C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 4px;
}
.whoWeAre .topSec .topRight .selectBox {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  border-bottom: 1px solid #C7C7C7;
}
.whoWeAre .topSec .topRight .selectBox select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px;
  margin: auto -10px;
  height: auto;
  border: none;
  background: url("../images/select-arrow.svg") no-repeat right top 4px;
  background-size: auto 9px;
  font-size: 18px;
  line-height: 24px;
}
.whoWeAre .topSec .topRight .selectBox select::-ms-expand {
  display: none;
}
.whoWeAre .bottomSec:after {
  content: "";
  display: table;
  clear: both;
}
.whoWeAre .bottomSec .bottomLeft {
  position: sticky;
  top: 120px;
  width: 712px;
  float: right;
}
@media (max-width: 1350px) {
  .whoWeAre .bottomSec .bottomLeft {
    width: 557px;
  }
}
@media (max-width: 1200px) {
  .whoWeAre .bottomSec .bottomLeft {
    width: 100%;
    position: static;
    padding-left: 0;
    overflow: scroll;
    width: 100%;
    margin-bottom: 30px;
  }
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup {
  margin-right: -10px;
}
@media (max-width: 1200px) {
  .whoWeAre .bottomSec .bottomLeft .teamsGroup {
    padding-top: 0;
    margin-right: 0;
    white-space: nowrap;
  }
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup:after {
  content: "";
  display: table;
  clear: both;
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam {
  float: left;
  margin-bottom: 10px;
  margin-right: 10px;
  width: 130px;
  cursor: pointer;
}
@media (max-width: 1350px) {
  .whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam {
    width: 100px;
  }
}
@media (max-width: 1200px) {
  .whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam {
    width: 100px !important;
    margin-bottom: 0;
    margin-right: 3px;
    display: inline-block;
    float: none;
    filter: grayscale(1);
  }
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam:not(.teamBig) .videoBtnWrap {
  display: none !important;
}
@media (max-width: 1200px) {
  .whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam.current {
    pointer-events: none;
    filter: grayscale(0);
  }
}
@media (max-width: 1200px) {
  .whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam.current figure:after {
    opacity: 1;
  }
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam.teamBig .singleTeamInner {
  pointer-events: none;
}
@media (max-width: 1200px) {
  .whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam.teamBig .singleTeamInner {
    pointer-events: all;
    cursor: pointer !important;
  }
}
@media (min-width: 1200px) {
  .whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam:nth-child(11) {
    margin-left: 236px;
  }
}
@media (min-width: 1350px) {
  .whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam:nth-child(11) {
    margin-left: 302px;
  }
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam:last-child {
  margin-right: 0;
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam figure {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  padding: 100% 0 0 0;
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam figure:after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  border: 2px solid #e3000f;
  opacity: 0;
  transition: 0.3s;
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam:not(:first-child) {
  filter: grayscale(1);
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam:first-child {
  width: 292px;
  cursor: auto;
}
@media (max-width: 1350px) {
  .whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam:first-child {
    width: 227px;
  }
}
.whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam:first-child figure {
  padding-top: 92.8082191781%;
}
@media (max-width: 1200px) {
  .whoWeAre .bottomSec .bottomLeft .teamsGroup .singleTeam:first-child figure {
    padding-top: 100%;
  }
}
.whoWeAre .bottomSec .bottomRight {
  width: calc(100% - 712px);
  padding-right: 37px;
  padding-left: 33px;
  border-left: 1px solid #e3000f;
  float: left;
}
@media (max-width: 1350px) {
  .whoWeAre .bottomSec .bottomRight {
    width: calc(100% - 557px);
  }
}
@media (max-width: 1200px) {
  .whoWeAre .bottomSec .bottomRight {
    width: 100%;
    padding: 0 0 0 30px;
  }
}
.whoWeAre .bottomSec .bottomRight .profileImage {
  width: 300px;
  margin-bottom: 30px;
  max-width: 100%;
  display: none;
}
@media (max-width: 1200px) {
  .whoWeAre .bottomSec .bottomRight .profileImage {
    display: block;
  }
}
.whoWeAre .bottomSec .bottomRight .profileImage figure {
  width: 100%;
  height: 0;
  padding: 100% 0 0 0;
  position: relative;
  z-index: 0;
}
.whoWeAre .bottomSec .bottomRight .profileImage figure img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.whoWeAre .bottomSec .bottomRight .featured-title {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
  text-align: left;
}
.whoWeAre .bottomSec .bottomRight p {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0;
}
.whoWeAre .bottomSec .bottomRight .memberDetails {
  display: none;
}
.whoWeAre .bottomSec .bottomRight .memberDetails:first-child {
  display: block;
}
.whoWeAre .bottomSec .bottomRight .detailsCont {
  padding-top: 40px;
}
@media (max-width: 1200px) {
  .whoWeAre .bottomSec .bottomRight .detailsCont {
    padding-top: 20px;
  }
}
.whoWeAre .bottomSec .bottomRight .detailsCont p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #5C5C5C;
  margin-bottom: 22px;
}
.whoWeAre .bottomSec .bottomRight .detailsCont p:last-child {
  margin-bottom: 0;
}

/** @format */
.comm-heading {
  width: 100%;
  overflow: hidden;
}

@media (max-width: 1199.5px) {
  .overviewSec .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
.overviewSec p:last-child {
  margin-bottom: 0;
}
.overviewSec .sectionInner .leftPan {
  width: 372px;
}
@media (max-width: 1199.5px) {
  .overviewSec .sectionInner .leftPan {
    width: 100%;
    margin-bottom: 60px;
  }
}
.overviewSec .sectionInner .leftPan .contentBox {
  color: #5C5C5C;
}
.overviewSec .sectionInner .rightPan {
  width: calc(100% - 372px);
  padding-left: 60px;
}
@media (max-width: 1199.5px) {
  .overviewSec .sectionInner .rightPan {
    width: 100%;
    padding-left: 0;
  }
}
.overviewSec .sectionInner .rightPan .rightInner {
  position: relative;
  z-index: 1;
  padding: 30px 0 30px 56px;
  color: #ffffff;
}
@media (max-width: 1199.5px) {
  .overviewSec .sectionInner .rightPan .rightInner {
    padding: 60px 0;
  }
}
.overviewSec .sectionInner .rightPan .rightInner .backBg {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -60px;
  left: 0;
  height: 100%;
  background-color: #00A1D5;
}
@media (max-width: 1199.5px) {
  .overviewSec .sectionInner .rightPan .rightInner .backBg {
    right: -20px;
    left: -20px;
  }
}
.overviewSec .sectionInner .rightPan .rightInner .contentBox {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  width: 100%;
}
.overviewSec .sectionInner .rightPan .rightInner .innerBox {
  width: calc(50% - 30px);
}
@media (max-width: 1199.5px) {
  .overviewSec .sectionInner .rightPan .rightInner .innerBox {
    width: 100%;
    margin-bottom: 40px;
  }
  .overviewSec .sectionInner .rightPan .rightInner .innerBox:last-child {
    margin-bottom: 0;
  }
}
.overviewSec .sectionInner .rightPan .rightInner .innerBox h3 {
  font-size: 26px;
  line-height: 24px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 20px;
}
.overviewSec .sectionInner .rightPan .rightInner .innerBox ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.overviewSec .sectionInner .rightPan .rightInner .innerBox ul li {
  position: relative;
  z-index: 0;
  padding-left: 26px;
}
.overviewSec .sectionInner .rightPan .rightInner .innerBox ul li:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 9.5px;
  left: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ffffff;
}

.reportsSec .financialPerfomanceWrap {
  width: 100%;
  height: auto;
}
.reportsSec .leftPan {
  width: 490px;
}
@media (max-width: 1199.5px) {
  .reportsSec .leftPan {
    width: 350px;
  }
}
@media (max-width: 991.5px) {
  .reportsSec .leftPan {
    width: 100%;
    margin-bottom: 50px;
  }
}
.reportsSec .leftPan figure {
  width: 100%;
  height: 0;
  padding: 77.9591836735% 0 0 0;
  position: relative;
  z-index: 0;
}
.reportsSec .leftPan figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reportsSec .rightPan {
  width: calc(100% - 490px);
  padding-left: 56px;
  padding-right: 60px;
}
@media (max-width: 1199.5px) {
  .reportsSec .rightPan {
    width: calc(100% - 350px);
    padding-right: 20px;
    padding-left: 40px;
  }
}
@media (max-width: 991.5px) {
  .reportsSec .rightPan {
    padding-left: 20px;
    width: 100%;
  }
}
.reportsSec .rightPan .titleBox {
  margin-bottom: 19px;
  width: 100%;
  overflow: hidden;
}
.reportsSec .rightPan .titleBox h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.reportsSec .rightPan .titleBox h3:after {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  height: 1px;
  left: 100%;
  width: 90vw;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-left: 40px;
  background-color: #C7C7C7;
}
@media (max-width: 767.5px) {
  .reportsSec .rightPan .titleBox h3:after {
    content: normal;
  }
}
.reportsSec .rightPan .reportMap > img {
  height: 342px;
  width: 100%;
}
@media (max-width: 1199.5px) {
  .reportsSec .rightPan .reportMap > img {
    height: 225px;
  }
}
@media (max-width: 991.5px) {
  .reportsSec .rightPan .reportMap > img {
    height: auto;
    width: 700px;
  }
}

.corporateSec {
  background-color: #FFF8ED;
}
@media (max-width: 767.5px) {
  .corporateSec .w-12 {
    padding-left: 0;
    padding-right: 0;
  }
}
.corporateSec .sectionInner .bgBox {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  padding: 40.9224011713% 0 0 0;
  overflow: hidden;
}
.corporateSec .sectionInner .bgBox img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.corporateSec .sectionInner .bgBox .bgcover {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.corporateSec .contentBox {
  position: relative;
  z-index: auto;
  margin-top: -172px;
}
@media (max-width: 991.5px) {
  .corporateSec .contentBox {
    margin-top: 0;
  }
}
.corporateSec .contentBox .inner {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  min-height: 344px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 30px;
}
@media (max-width: 767.5px) {
  .corporateSec .contentBox .inner {
    min-height: inherit;
    padding: 60px 20px;
  }
}
.corporateSec .contentBox .boxCont {
  max-width: 890px;
  margin: 0 auto;
}
@media (max-width: 991.5px) {
  .corporateSec .contentBox .boxCont {
    max-width: 690px;
  }
}
@media (max-width: 767.5px) {
  .corporateSec .contentBox .boxCont {
    max-width: 100%;
  }
}
.corporateSec .contentBox .boxCont p {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 0;
  color: #5C5C5C;
}
@media (max-width: 991.5px) {
  .corporateSec .contentBox .boxCont p {
    font-size: 22px;
    line-height: 1.4;
  }
}

.aboutTua .leftPan {
  width: calc(100% - 550px);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 1199.5px) {
  .aboutTua .leftPan {
    width: 100%;
  }
}
.aboutTua .leftPan .coverbg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  background-color: #ffffff;
}
.aboutTua .leftPan figure {
  width: 100%;
  height: 0;
  padding: 70.5738705739% 0 0 0;
  position: relative;
  z-index: 0;
}
.aboutTua .leftPan figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutTua .rightPan {
  width: 550px;
  padding: 30px 74px 30px 80px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199.5px) {
  .aboutTua .rightPan {
    width: 100%;
    padding: 60px 20px;
  }
}
.aboutTua .rightPan .boxInner {
  width: 100%;
}
.aboutTua .rightPan .contentBox {
  color: #5C5C5C;
  margin-bottom: 30px;
}
.aboutTua .rightPan .contentBox:last-child {
  margin-bottom: 0;
}

.fReports p:last-child {
  margin-bottom: 0;
}
.fReports .leftPan {
  width: calc(100% - 550px);
  padding: 30px 74px 30px 80px;
}
@media (max-width: 1199.5px) {
  .fReports .leftPan {
    width: 100%;
    padding: 60px 20px 0 20px;
  }
}
.fReports .leftPan .contentBox {
  color: #5C5C5C;
  margin-bottom: 40px;
}
.fReports .leftPan .contentBox:last-child {
  margin-bottom: 0;
}
.fReports .leftPan .downloadSec .downloadTitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  color: #00A1D5;
  margin-bottom: 30px;
}
.fReports .leftPan .downloadSec .downloadTitle img {
  display: inline;
  vertical-align: top;
  width: 18px;
  height: 18px;
  margin-left: 5px;
}
.fReports .leftPan .downloadSec ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fReports .leftPan .downloadSec ul:after {
  content: "";
  display: table;
  clear: both;
}
.fReports .leftPan .downloadSec ul li {
  float: left;
  width: 285px;
  padding-left: 20px;
  position: relative;
  z-index: 0;
  border-left: 1px solid #C7C7C7;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 3px;
}
@media (max-width: 767.5px) {
  .fReports .leftPan .downloadSec ul li {
    width: 260px;
  }
}
@media (max-width: 575.5px) {
  .fReports .leftPan .downloadSec ul li {
    width: 100%;
  }
}
.fReports .leftPan .downloadSec ul li a {
  color: #e3000f;
  text-decoration: none;
}
.fReports .leftPan .downloadSec ul li a:hover {
  color: #00A1D5;
}
.fReports .rightPan {
  position: relative;
  z-index: 0;
  width: 550px;
  overflow: hidden;
}
@media (max-width: 1199.5px) {
  .fReports .rightPan {
    width: 100%;
  }
}
.fReports .rightPan .coverbg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  background-color: #ffffff;
}
.fReports .rightPan figure {
  width: 100%;
  height: 0;
  padding: 91.407678245% 0 0 0;
  position: relative;
  z-index: 0;
}
.fReports .rightPan figure img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.faqSec {
  position: relative;
  z-index: 0;
}
.faqSec .comm-heading {
  margin-bottom: 80px;
}
@media (max-width: 1199.5px) {
  .faqSec .comm-heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.5px) {
  .faqSec .comm-heading {
    margin-bottom: 30px;
  }
}
.faqSec .comm-heading h4 {
  background: transparent;
}
.faqSec .comm-heading h4:before {
  left: 100%;
  right: inherit;
  width: 290px;
}
@media (max-width: 1199.5px) {
  .faqSec .comm-heading h4:before {
    width: 100px;
  }
}
@media (max-width: 575.5px) {
  .faqSec .comm-heading h4:before {
    content: normal;
  }
}
.faqSec .comm-heading h4:after {
  right: 100%;
  left: inherit;
  width: 290px;
}
@media (max-width: 1199.5px) {
  .faqSec .comm-heading h4:after {
    width: 100px;
  }
}
@media (max-width: 575.5px) {
  .faqSec .comm-heading h4:after {
    content: normal;
  }
}
.faqSec .sectionInner {
  position: relative;
  z-index: 0;
}
.faqSec .sectionInner .faqbg {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  top: 20px;
}
.faqSec .sectionInner .faqbg img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.faqSec .sectionInner .sectionMain {
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.accordianSec {
  padding: 40px 40px 40px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  background: rgba(255, 248, 237, 0.9);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
}
.accordianSec.noBackground {
  background-color: transparent;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  padding: 0;
  margin: 0;
}
.accordianSec.noBackground .accList {
  position: relative;
  z-index: 0;
  padding-left: 30px;
}
.accordianSec.noBackground .accList:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 30px;
  transition: 0.3s;
  width: 1px;
  background-color: #C7C7C7;
}
.accordianSec.noBackground .accList.open:after {
  background-color: #e3000f;
}
.accordianSec.noBackground .accList:last-child:after {
  bottom: 0;
}
.accordianSec.noBackground .accList .accTitle {
  padding-right: 0;
}
.accordianSec.noBackground .accList .accTitle:after {
  content: normal;
}
.accordianSec.noBackground .accList .accTitle p.accTitleText {
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
}
.accordianSec.noBackground .accList .accDesc {
  padding-left: 0;
  margin-top: 15px;
}
.accordianSec.noBackground .accList .accDesc:after {
  content: normal;
}
.accordianSec p:last-child {
  margin-bottom: 0;
}
.accordianSec .accList {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #C7C7C7;
}
.accordianSec .accList:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.accordianSec .accList .accTitle {
  position: relative;
  z-index: 0;
  padding-right: 20px;
  cursor: pointer;
}
.accordianSec .accList .accTitle.active:after {
  transform: rotate(-180deg);
}
.accordianSec .accList .accTitle p.accTitleText {
  color: #5C5C5C;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
}
.accordianSec .accList .accTitle:after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  background: url("../images/down-arrow.svg") no-repeat center center;
  background-size: 14px auto;
  transform: rotate(0deg);
  transition: 0.3s;
}
.accordianSec .accList .accDesc {
  margin-top: 20px;
  padding-left: 20px;
  display: none;
  position: relative;
  z-index: 0;
  color: #5C5C5C;
}
.accordianSec .accList .accDesc:after {
  content: "";
  position: absolute;
  z-index: 0;
  transition: 0.3s;
  top: 8px;
  bottom: 8px;
  width: 1px;
  left: 0;
  background-color: #e3000f;
}

/** @format */
.oilGasSec.colorbg {
  background-color: #FFF8ED;
}
.oilGasSec .sectionInner .leftPan {
  width: calc(100% - 412px);
  padding-right: 162px;
}
@media screen and (max-width: 1299.5px) {
  .oilGasSec .sectionInner .leftPan {
    padding-right: 100px;
  }
}
@media screen and (max-width: 1199.5px) {
  .oilGasSec .sectionInner .leftPan {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991.5px) {
  .oilGasSec .sectionInner .leftPan {
    width: 100%;
    padding-right: 0;
  }
}
.oilGasSec .sectionInner .leftPan .featured-title {
  width: 420px;
  max-width: 100%;
}
@media screen and (max-width: 991.5px) {
  .oilGasSec .sectionInner .leftPan .featured-title {
    width: 100%;
  }
}
.oilGasSec .sectionInner .leftPan .contentBox {
  margin-bottom: 30px;
}
.oilGasSec .sectionInner .leftPan .contentBox:last-child {
  margin-bottom: 0;
}
.oilGasSec .sectionInner .rightPan {
  width: 412px;
}
@media screen and (max-width: 1199.5px) {
  .oilGasSec .sectionInner .rightPan {
    width: 100%;
  }
}

@media screen and (max-width: 991.5px) {
  .solvingSec .featured-container {
    flex-wrap: wrap;
  }
}
.solvingSec .leftPan {
  width: 550px;
  padding: 100px 60px 60px 60px;
  background-color: #00A1D5;
}
@media screen and (min-width: 992px) {
  .solvingSec .leftPan {
    overflow: hidden;
    overflow-y: auto;
    max-height: 700px;
  }
  .solvingSec .leftPan::-webkit-scrollbar {
    width: 5px;
  }
  .solvingSec .leftPan::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .solvingSec .leftPan::-webkit-scrollbar-thumb {
    background: #5C5C5C;
  }
  .solvingSec .leftPan::-webkit-scrollbar-thumb:hover {
    background: #5C5C5C;
  }
}
@media screen and (max-width: 1299.5px) {
  .solvingSec .leftPan {
    padding: 60px 50px 40px 60px;
  }
}
@media screen and (max-width: 1199.5px) {
  .solvingSec .leftPan {
    padding: 40px 50px 40px 20px;
    width: 45%;
  }
}
@media screen and (max-width: 991.5px) {
  .solvingSec .leftPan {
    width: 100%;
    padding: 60px 20px;
  }
}
.solvingSec .leftPan .contentBox {
  margin-bottom: 30px;
}
.solvingSec .leftPan .contentBox:last-child {
  margin-bottom: 0;
}
.solvingSec .oilSlider {
  width: calc(100% - 550px);
  overflow: hidden;
  padding-right: 80px;
  position: relative;
}
@media screen and (max-width: 1199.5px) {
  .solvingSec .oilSlider {
    padding-right: 0px;
    width: 55%;
  }
}
@media screen and (max-width: 991.5px) {
  .solvingSec .oilSlider {
    width: 100%;
  }
}
.solvingSec .oilSlider .featured-count {
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 40px;
  right: auto;
  font-size: 100px;
  font-weight: 300;
  line-height: 92px;
  color: #ffffff;
}
@media screen and (max-width: 991.5px) {
  .solvingSec .oilSlider .featured-count {
    top: 25px;
    left: 20px;
    font-size: 50px;
    line-height: 1.2;
  }
}
.solvingSec .oilSlider .comm-slider-navigation.swiper-button-prev {
  right: 140px;
  border: none;
  left: auto;
}
@media screen and (max-width: 1199.5px) {
  .solvingSec .oilSlider .comm-slider-navigation.swiper-button-prev {
    right: 60px;
  }
}
.solvingSec .oilSlider .comm-slider-navigation.swiper-button-prev:not(.swiper-button-disabled) + .comm-slider-navigation.swiper-button-next {
  border-left: 1px solid #ffffff;
}
.solvingSec .oilSlider .comm-slider-navigation.swiper-button-next {
  right: 80px;
  left: auto;
}
@media screen and (max-width: 1199.5px) {
  .solvingSec .oilSlider .comm-slider-navigation.swiper-button-next {
    right: 0px;
  }
}
.solvingSec .oilSlider .comm-slider-navigation.swiper-button-next.swiper-button-disabled {
  border-left: none !important;
}
.solvingSec .oilSlider .swiper-wrapper .swiper-slide {
  position: relative;
  max-height: 700px;
}
.solvingSec .oilSlider .swiper-wrapper .swiper-slide .featured-img {
  overflow: hidden;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  padding: 88.9042995839% 0 0 0;
  min-height: 100%;
}
.solvingSec .oilSlider .swiper-wrapper .swiper-slide .featured-img:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.solvingSec .oilSlider .swiper-wrapper .swiper-slide .featured-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.75s ease-in-out;
}
.solvingSec .oilSlider .swiper-wrapper .swiper-slide .action-btn {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 100%;
  padding-left: 40px;
  color: #ffffff;
  z-index: 1;
}
@media screen and (max-width: 1199.5px) {
  .solvingSec .oilSlider .swiper-wrapper .swiper-slide .action-btn {
    padding-left: 40px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 991.5px) {
  .solvingSec .oilSlider .swiper-wrapper .swiper-slide .action-btn {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.solvingSec .oilSlider .swiper-wrapper .swiper-slide .action-btn p {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  max-width: 465px;
}
.solvingSec .oilSlider .swiper-wrapper .swiper-slide.swiper-slide-active .action-btn {
  animation: slide-in 0.9s ease-in both;
}
.solvingSec .oilSlider .swiper-wrapper .swiper-slide:hover .featured-img img {
  transform: scale(1.1);
}

.workingSec {
  position: relative;
  padding: 60px 0;
}
.workingSec .sectionBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.workingSec .sectionBg img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.workingSec .sectionInner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 300px;
}
.workingSec .sectionInner .boxInner {
  width: 1037px;
  max-width: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  padding: 55px 30px;
}
.workingSec .sectionInner .boxInner .contentBox {
  width: 832px;
  max-width: 100%;
  margin: 0 auto;
}
.workingSec .sectionInner .boxInner .contentBox .textBox {
  margin-bottom: 30px;
  color: #5C5C5C;
}
.workingSec .sectionInner .boxInner .contentBox .textBox:last-child {
  margin-bottom: 0;
}

.blogSection .comm-heading {
  margin-bottom: 80px;
}
@media (max-width: 1199.5px) {
  .blogSection .comm-heading {
    margin-bottom: 30px;
  }
}
.blogSection .sectionInner {
  padding: 0 20px;
}
.blogSection .sectionInner .blogMain {
  margin: 0 auto;
  width: 1163px;
  max-width: 100%;
}

.blogListWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767.5px) {
  .blogListWrap {
    margin-bottom: -40px;
  }
}
.blogListWrap .blogList {
  width: calc(50% - 58px);
}
@media (max-width: 1199.5px) {
  .blogListWrap .blogList {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767.5px) {
  .blogListWrap .blogList {
    width: 100%;
    margin-bottom: 40px;
  }
}
.blogListWrap .blogList:hover .blogImage figure img {
  transform: scale(1.2);
}
.blogListWrap .blogList .blogImage {
  margin-bottom: 34px;
}
@media (max-width: 767.5px) {
  .blogListWrap .blogList .blogImage {
    margin-bottom: 15px;
  }
}
.blogListWrap .blogList .blogImage figure {
  position: relative;
  z-index: 0;
  height: 0;
  width: 100%;
  padding: 70.0564971751% 0 0 0;
  overflow: hidden;
}
.blogListWrap .blogList .blogImage figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease-in-out 0.7s;
  transform: scale(1);
}
.blogListWrap .blogList .blogInfo p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 767.5px) {
  .blogListWrap .blogList .blogInfo p {
    margin-bottom: 10px;
  }
}
.blogListWrap .blogList .blogInfo p a {
  color: #000000;
  text-decoration: none;
}
.blogListWrap .blogList .blogInfo p a:hover {
  color: #e3000f;
}
.blogListWrap .blogList .blogInfo .listInfo {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #5C5C5C;
}
.blogListWrap .blogList .blogInfo .listInfo span:after {
  content: "";
  width: 6px;
  height: 6px;
  margin: 0 15px;
  border-radius: 50%;
  top: 11px;
  position: relative;
  z-index: 0;
  background-color: #00A1D5;
  display: inline-block;
  vertical-align: top;
}
.blogListWrap .blogList .blogInfo .listInfo span:last-child:after {
  content: normal;
}

.civilService .leftPan {
  width: 46.2%;
}
@media (max-width: 991.5px) {
  .civilService .leftPan {
    width: 100%;
    margin-bottom: 40px;
  }
}
.civilService .rightPan {
  width: 53.8%;
  padding-left: 88px;
  padding-top: 60px;
}
@media (max-width: 991.5px) {
  .civilService .rightPan {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
}
.civilService .rightPan h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.civilService .rightPan ul {
  padding: 0;
  margin: 0;
  list-style: none;
  color: #5C5C5C;
}
.civilService .rightPan ul li {
  position: relative;
  z-index: 0;
  padding-left: 26px;
}
.civilService .rightPan ul li:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 9.5px;
  left: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #5C5C5C;
}

.valueProposition {
  padding-top: 40px;
  padding-bottom: 100px;
}
@media (max-width: 991.5px) {
  .valueProposition {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.valueProposition .sectionInner {
  padding-left: 60px;
  padding-right: 0;
}
@media (max-width: 1199.5px) {
  .valueProposition .sectionInner {
    padding-left: 20px;
  }
}
@media (max-width: 991.5px) {
  .valueProposition .sectionInner {
    padding-right: 20px;
  }
}
.valueProposition .leftPan {
  width: 44%;
  padding-right: 15px;
  padding-top: 20px;
}
@media (max-width: 991.5px) {
  .valueProposition .leftPan {
    width: 100%;
    padding: 0 0 0;
    margin-bottom: 60px;
  }
}
.valueProposition .leftPan h3 {
  width: 507px;
  max-width: 100%;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1299.5px) {
  .valueProposition .leftPan h3 {
    margin-bottom: 40px;
  }
}
@media (max-width: 991.5px) {
  .valueProposition .leftPan h3 {
    margin-bottom: 20px;
    width: 100%;
  }
}
.valueProposition .leftPan .yearExp {
  margin-bottom: 68px;
}
@media (max-width: 1299.5px) {
  .valueProposition .leftPan .yearExp {
    margin-bottom: 35px;
  }
}
@media (max-width: 1199.5px) {
  .valueProposition .leftPan .yearExp {
    margin-bottom: 25px;
  }
}
@media (max-width: 991.5px) {
  .valueProposition .leftPan .yearExp {
    margin-bottom: 35px;
  }
}
.valueProposition .leftPan .yearExp .numberBox {
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 120px;
  color: rgba(0, 161, 213, 0.2);
  -webkit-text-fill-color: rgba(0, 161, 213, 0.2);
  -moz-text-fill-color: rgba(0, 161, 213, 0.2);
  -webkit-text-stroke: 2px #80d0ea;
  -moz-text-stroke: 2px #80d0ea;
  opacity: 0.8;
}
@media (max-width: 1199.5px) {
  .valueProposition .leftPan .yearExp .numberBox {
    font-size: 90px;
    line-height: 90px;
  }
}
@media (max-width: 479.5px) {
  .valueProposition .leftPan .yearExp .numberBox {
    width: 100%;
    text-align: center;
  }
}
.valueProposition .leftPan .yearExp .numberBox .purecounter {
  margin-right: -30px;
}
@media (max-width: 1199.5px) {
  .valueProposition .leftPan .yearExp .numberBox .purecounter {
    margin-right: -23px;
  }
}
.valueProposition .leftPan .yearExp .numberBox span {
  display: inline;
}
.valueProposition .leftPan .yearExp .numberText {
  padding-left: 30px;
}
@media (max-width: 479.5px) {
  .valueProposition .leftPan .yearExp .numberText {
    padding-left: 0;
    text-align: center;
    width: 100%;
  }
}
.valueProposition .leftPan .yearExp .numberText p {
  width: 192px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
  top: -7px;
}
@media (max-width: 479.5px) {
  .valueProposition .leftPan .yearExp .numberText p {
    top: 0;
    width: 100%;
    text-align: center;
  }
}
.valueProposition .leftPan .counterWrap {
  display: flex;
  flex-wrap: wrap;
}
.valueProposition .leftPan .counterWrap .count-box {
  margin-right: 70px;
  margin-bottom: 30px;
}
@media (max-width: 1299.5px) {
  .valueProposition .leftPan .counterWrap .count-box {
    margin-right: 60px;
  }
}
@media (max-width: 1199.5px) {
  .valueProposition .leftPan .counterWrap .count-box {
    margin-right: 30px;
  }
}
@media (max-width: 479.5px) {
  .valueProposition .leftPan .counterWrap .count-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
    text-align: center;
  }
}
.valueProposition .leftPan .counterWrap .count-box:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.valueProposition .leftPan .counterWrap .count-box .countWrap {
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  margin-bottom: 10px;
}
@media (max-width: 1199.5px) {
  .valueProposition .leftPan .counterWrap .count-box .countWrap {
    font-size: 35px;
    line-height: 37px;
  }
}
@media (max-width: 479.5px) {
  .valueProposition .leftPan .counterWrap .count-box .countWrap {
    margin-bottom: 3px;
  }
}
.valueProposition .leftPan .counterWrap .count-box .purecounter {
  margin-right: -14px;
}
@media (max-width: 1199.5px) {
  .valueProposition .leftPan .counterWrap .count-box .purecounter {
    margin-right: -7px;
  }
}
.valueProposition .leftPan .counterWrap .count-box p {
  color: #5C5C5C;
}
@media (max-width: 479.5px) {
  .valueProposition .leftPan .counterWrap .count-box p {
    max-width: 100%;
  }
}
.valueProposition .rightPan {
  width: 56%;
  padding-left: 63px;
}
@media (max-width: 991.5px) {
  .valueProposition .rightPan {
    width: 100%;
    padding: 0;
  }
}
.valueProposition .rightPan figure {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  padding: 71.7423133236% 0 0 0;
  overflow: hidden;
}
.valueProposition .rightPan figure img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

#hero-banner.innerpageBanner.engineerBanner {
  background: radial-gradient(circle, #00a1d5, #1a2456);
  height: auto;
}
#hero-banner.innerpageBanner.engineerBanner .card-movement {
  width: 664px;
  max-width: 100%;
}
#hero-banner.innerpageBanner.engineerBanner::after {
  height: calc(100% - 487px);
}
#hero-banner.innerpageBanner.engineerBanner .video-banner {
  margin-top: 180px;
}
#hero-banner.innerpageBanner.engineerBanner.hero-active .video-banner {
  margin-top: 0px;
}

.whoWeAreSec p {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (min-width: 1300px) {
  .whoWeAreSec .container {
    max-width: 1294px;
  }
}
@media screen and (min-width: 1200px) {
  .whoWeAreSec .container .row [class*=col-] {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 991.98px) {
  .whoWeAreSec .container .row [class*=col-]:first-child {
    margin-bottom: 22px;
  }
}
.whoWeAreSec .content-wrap {
  padding: 46px;
}
@media screen and (max-width: 767px) {
  .whoWeAreSec .content-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.whoWeAreSec .figure-wrap figure {
  position: relative;
  padding: 80.6734992679% 0 0 0;
  overflow: hidden;
}
.whoWeAreSec .figure-wrap figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 992px) {
  .ourValueSec {
    margin-top: -20px;
  }
}
.ourValueSec .title {
  color: #5C5C5C;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.ourValueSec ul {
  list-style-type: disc;
  padding: 0;
  padding-left: 20px;
  margin: 0;
  margin-bottom: 30px;
}
.ourValueSec ul li {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-left: 10px;
  position: relative;
}
.ourValueSec ul li:not(:last-child) {
  margin-bottom: 5px;
}
.ourValueSec .content-wrap {
  padding: 46px;
}
@media screen and (max-width: 767px) {
  .ourValueSec .content-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.ourValueSec .figure-wrap figure {
  position: relative;
  padding: 80.6734992679% 0 0 0;
  overflow: hidden;
}
.ourValueSec .figure-wrap figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.weBuildSec {
  margin-top: -40px;
}
@media screen and (max-width: 991.98px) {
  .weBuildSec {
    margin-top: 0px;
  }
}
@media screen and (max-width: 991.98px) {
  .weBuildSec .row {
    flex-direction: column-reverse;
  }
}
.weBuildSec .content-wrap {
  padding: 40px 48px 40px 7px;
  margin-top: 40px;
}
.weBuildSec .content-wrap .title {
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 60px;
}
.weBuildSec .content-wrap .title-big {
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 120px;
  color: rgba(0, 161, 213, 0.2);
  -webkit-text-fill-color: rgba(0, 161, 213, 0.2);
  -moz-text-fill-color: rgba(0, 161, 213, 0.2);
  -webkit-text-stroke: 2px #80d0ea;
  -moz-text-stroke: 2px #80d0ea;
  opacity: 0.8;
  margin-bottom: 5px;
}
.weBuildSec .content-wrap .text {
  color: #5C5C5C;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.weBuildSec .figure-wrap {
  margin-right: 62px;
}
@media screen and (max-width: 767.98px) {
  .weBuildSec .figure-wrap {
    margin-right: 0px;
  }
}
.weBuildSec .figure-wrap figure {
  position: relative;
  padding: 63.321385902% 0 0 0;
  overflow: hidden;
}
.weBuildSec .figure-wrap figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .whatWeDoSec .secInner .col-content {
    padding-left: 60px;
    padding-right: 48px;
  }
}
.whatWeDoSec .secInner .col-content p {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.whatWeDoSec .secInner .col-content p:not(:last-child) {
  margin-bottom: 40px;
}
.whatWeDoSec .secInner .col-content .title-sub {
  color: #5C5C5C;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 40px;
  margin-bottom: 20px;
}
.whatWeDoSec .secInner .col-content ul {
  list-style-type: disc;
  padding: 0;
  padding-left: 20px;
  margin: 0;
  margin-bottom: 30px;
}
.whatWeDoSec .secInner .col-content ul li {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding-left: 10px;
  position: relative;
}
.whatWeDoSec .secInner .col-content ul li:not(:last-child) {
  margin-bottom: 5px;
}
.whatWeDoSec .secInner .col-content .logos-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 50px;
  width: 410px;
  max-width: 100%;
  padding-top: 12px;
  margin-bottom: 50px;
}
.whatWeDoSec .secInner .col-content .logos-wrap .logo-item figure img {
  width: auto;
  height: auto;
}
.whatWeDoSec .secInner .col-services {
  background-color: #FFF8ED;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .whatWeDoSec .secInner .col-services {
    padding: 80px 92px;
  }
}
@media screen and (max-width: 991.98px) {
  .whatWeDoSec .secInner .col-services {
    margin-top: 30px;
  }
}
.whatWeDoSec .secInner .col-services .title {
  color: #000000;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 40px;
}
.whatWeDoSec .secInner .col-services .list-service {
  justify-content: space-between;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}
@media screen and (max-width: 757.98px) {
  .whatWeDoSec .secInner .col-services .list-service {
    gap: 20px;
  }
}
@media screen and (max-width: 575.98px) {
  .whatWeDoSec .secInner .col-services .list-service {
    gap: 12px;
  }
}
.whatWeDoSec .secInner .col-services .list-service-item {
  flex: 0 1 45%;
}
@media screen and (max-width: 1199px) {
  .whatWeDoSec .secInner .col-services .list-service-item {
    flex-basis: 44%;
  }
}
.whatWeDoSec .secInner .col-services .list-service-item-inner {
  background-color: #ffffff;
  padding: 30px 20px 20px;
  height: 100%;
}
.whatWeDoSec .secInner .col-services .list-service-item-inner figure {
  display: block;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}
.whatWeDoSec .secInner .col-services .list-service-item-inner figure img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.whatWeDoSec .secInner .col-services .list-service-item-inner h5 {
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (min-width: 1150px), (max-width: 991.98px) {
  .clientSaySec .secInner .col-thumb {
    width: 551px;
    max-width: 100%;
    margin-right: auto;
  }
}
.clientSaySec .secInner .col-thumb figure {
  width: 551px;
  max-width: 100%;
  position: relative;
  padding: 111.0707803993% 0 0 0;
  overflow: hidden;
}
.clientSaySec .secInner .col-thumb figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .clientSaySec .secInner .col-content {
    padding-left: 0px;
  }
}
.clientSaySec .secInner .col-content .content-inner {
  padding: 50px 85px 50px 0px;
}
@media screen and (max-width: 1199.98px) {
  .clientSaySec .secInner .col-content .content-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .clientSaySec .secInner .col-content .content-inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.clientSaySec .secInner .col-content .content-inner .clientSaySlider {
  margin-top: 60px;
}
.clientSaySec.civilClientSaySec .col-thumb figure {
  position: relative;
  padding: 111.0707803993% 0 0 0;
  overflow: hidden;
}
.clientSaySec.civilClientSaySec .col-thumb figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.clientSaySlider .swiper-slide .item-inner .text {
  color: #5C5C5C;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #C7C7C7;
}
.clientSaySlider .swiper-slide .item-inner .media {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.clientSaySlider .swiper-slide .item-inner .media-img {
  width: 106px;
  border-right: 1px solid #C7C7C7;
  padding-right: 41px;
}
.clientSaySlider .swiper-slide .item-inner .media-img figure {
  position: relative;
  padding: 83.3333333333% 0 0 0;
  overflow: hidden;
}
.clientSaySlider .swiper-slide .item-inner .media-img figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.clientSaySlider .swiper-slide .item-inner .media-img figure img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.clientSaySlider .swiper-slide .item-inner .media-content {
  width: calc(100% - 106px);
  padding-left: 41px;
}
@media screen and (min-width: 1200px) {
  .clientSaySlider .swiper-slide .item-inner .media-content {
    max-width: 340px;
  }
}
.clientSaySlider .swiper-slide .item-inner .media-content-name {
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.clientSaySlider .swiper-slide .item-inner .media-content-role {
  color: #5C5C5C;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
.clientSaySlider .swiper-control-wrap {
  display: flex;
  align-items: center;
  gap: 0 24px;
}
.clientSaySlider .swiper-control-wrap .swiper-pagination {
  position: static !important;
  width: auto;
}
.clientSaySlider .swiper-control-wrap .swiper-button-prev,
.clientSaySlider .swiper-control-wrap .swiper-button-next {
  color: #C7C7C7;
  font-weight: 600;
  position: static !important;
  width: 10px;
  height: 15px;
  margin-top: 0px;
}
.clientSaySlider .swiper-control-wrap .swiper-button-prev::after,
.clientSaySlider .swiper-control-wrap .swiper-button-next::after {
  font-size: 10px;
}
.clientSaySlider .swiper-control-wrap .swiper-button-prev:hover,
.clientSaySlider .swiper-control-wrap .swiper-button-next:hover {
  color: #E3000F;
}
.clientSaySlider .swiper-control-wrap .swiper-count {
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.makeUsDiffSec {
  color: #ffffff;
  background-color: #1A2456;
}
@media screen and (min-width: 768px) {
  .makeUsDiffSec {
    padding-left: 60px;
    padding-right: 90px;
  }
}
.makeUsDiffSec .secInner .col-left .content-inner {
  margin-right: 34px;
}
@media screen and (max-width: 767.98px) {
  .makeUsDiffSec .secInner .col-left .content-inner {
    margin-right: 0px;
  }
}
.makeUsDiffSec .secInner .col-left p {
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.makeUsDiffSec .secInner .col-left p:not(:last-child) {
  margin-bottom: 30px;
}
.makeUsDiffSec .secInner .col-left .btn, .makeUsDiffSec .secInner .col-left .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn, .ajax-load-more-wrap .alm-btn-wrap .makeUsDiffSec .secInner .col-left .alm-load-more-btn {
  margin-top: 30px;
}
.makeUsDiffSec .secInner .col-right .content-inner {
  margin-left: 60px;
}
@media screen and (max-width: 991.98px) {
  .makeUsDiffSec .secInner .col-right .content-inner {
    margin-left: 0px;
  }
}
.makeUsDiffSec .secInner .col-right .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-padding-x: 0px;
  --bs-accordion-btn-padding-y: 30px;
  --bs-accordion-body-padding-x: 0px;
  --bs-accordion-body-padding-y: 30px;
}
.makeUsDiffSec .secInner .col-right .accordion-item {
  position: relative;
  margin-left: 32px;
}
.makeUsDiffSec .secInner .col-right .accordion-item.active::before {
  transform: translateY(-50%) scaleY(1);
}
.makeUsDiffSec .secInner .col-right .accordion-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 1px;
  height: calc(100% - 60px);
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.makeUsDiffSec .secInner .col-right .accordion-button {
  color: #ffffff;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.makeUsDiffSec .secInner .col-right .accordion-button::after {
  display: none;
}
.makeUsDiffSec .secInner .col-right .accordion-body {
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.makeUsDiffSec .secInner .col-right .accordion-body p {
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .helpYouSec .container {
    max-width: 794px;
  }
}
.helpYouSec .container .comm-heading {
  margin-bottom: 40px;
}
.helpYouSec .container .text {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.helpYouSec .container .text:not(:last-child) {
  margin-bottom: 40px;
}
.helpYouSec .container .btn, .helpYouSec .container .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn, .ajax-load-more-wrap .alm-btn-wrap .helpYouSec .container .alm-load-more-btn {
  margin-top: 40px;
}

.caseStudiesSec .leftPan {
  width: 550px;
  padding: 100px 60px 60px 60px;
  background-color: #FFF8ED;
}
@media screen and (min-width: 992px) {
  .caseStudiesSec .leftPan {
    overflow: hidden;
    overflow-y: auto;
    max-height: 700px;
  }
  .caseStudiesSec .leftPan::-webkit-scrollbar {
    width: 5px;
  }
  .caseStudiesSec .leftPan::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .caseStudiesSec .leftPan::-webkit-scrollbar-thumb {
    background: #5C5C5C;
  }
  .caseStudiesSec .leftPan::-webkit-scrollbar-thumb:hover {
    background: #5C5C5C;
  }
}
@media screen and (max-width: 1299.5px) {
  .caseStudiesSec .leftPan {
    padding: 60px 50px 40px 60px;
  }
}
@media screen and (max-width: 1199.5px) {
  .caseStudiesSec .leftPan {
    padding: 40px 50px 40px 20px;
    width: 45%;
  }
}
@media screen and (max-width: 991.5px) {
  .caseStudiesSec .leftPan {
    width: 100%;
    padding: 60px 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .caseStudiesSec .leftPan {
    width: 100%;
  }
}
.caseStudiesSec .leftPan .contentBox {
  margin-bottom: 30px;
}
.caseStudiesSec .leftPan .contentBox:last-child {
  margin-bottom: 0;
}
.caseStudiesSec .oilSlider {
  width: calc(100% - 550px);
  overflow: hidden;
  padding-right: 80px;
  position: relative;
}
@media screen and (max-width: 1199.5px) {
  .caseStudiesSec .oilSlider {
    padding-right: 0px;
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .caseStudiesSec .oilSlider {
    width: 100%;
  }
}
.caseStudiesSec .oilSlider .featured-count {
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 40px;
  right: auto;
  font-size: 100px;
  font-weight: 300;
  line-height: 92px;
  color: #ffffff;
}
.caseStudiesSec .oilSlider .comm-slider-navigation.swiper-button-prev {
  right: 140px;
  border: none;
  left: auto;
}
@media screen and (max-width: 1199.5px) {
  .caseStudiesSec .oilSlider .comm-slider-navigation.swiper-button-prev {
    right: 60px;
  }
}
.caseStudiesSec .oilSlider .comm-slider-navigation.swiper-button-prev:not(.swiper-button-disabled) + .comm-slider-navigation.swiper-button-next {
  border-left: 1px solid #ffffff;
}
.caseStudiesSec .oilSlider .comm-slider-navigation.swiper-button-next {
  right: 80px;
  left: auto;
}
@media screen and (max-width: 1199.5px) {
  .caseStudiesSec .oilSlider .comm-slider-navigation.swiper-button-next {
    right: 0px;
  }
}
.caseStudiesSec .oilSlider .comm-slider-navigation.swiper-button-next.swiper-button-disabled {
  border-left: none !important;
}
.caseStudiesSec .oilSlider .swiper-wrapper .swiper-slide {
  position: relative;
  max-height: 700px;
}
.caseStudiesSec .oilSlider .swiper-wrapper .swiper-slide .featured-img {
  overflow: hidden;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  padding: 88.9042995839% 0 0 0;
  min-height: 100%;
}
.caseStudiesSec .oilSlider .swiper-wrapper .swiper-slide .featured-img:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.caseStudiesSec .oilSlider .swiper-wrapper .swiper-slide .featured-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.75s ease-in-out;
}
.caseStudiesSec .oilSlider .swiper-wrapper .swiper-slide .action-btn {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 100%;
  padding-left: 40px;
  color: #ffffff;
  z-index: 1;
}
@media screen and (max-width: 1199.5px) {
  .caseStudiesSec .oilSlider .swiper-wrapper .swiper-slide .action-btn {
    padding-left: 40px;
    padding-right: 20px;
  }
}
.caseStudiesSec .oilSlider .swiper-wrapper .swiper-slide .action-btn p {
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  max-width: 465px;
}
.caseStudiesSec .oilSlider .swiper-wrapper .swiper-slide.swiper-slide-active .action-btn {
  animation: slide-in 0.9s ease-in both;
}
.caseStudiesSec .oilSlider .swiper-wrapper .swiper-slide:hover .featured-img img {
  transform: scale(1.1);
}

#hero-banner.innerpageBanner.mediaBanner.mediaBanner {
  background: radial-gradient(circle, #00a1d5, #1a2456);
  height: auto;
  min-height: 360px;
  transform: none;
}
#hero-banner.innerpageBanner.mediaBanner.mediaBanner .card-movement {
  width: 664px;
  max-width: 100%;
}
@media screen and (min-width: 1200px) {
  #hero-banner.innerpageBanner.mediaBanner.mediaBanner .card-movement {
    padding-left: 57px;
  }
}
#hero-banner.innerpageBanner.mediaBanner.mediaBanner::after {
  height: calc(100% - 487px);
}
#hero-banner.innerpageBanner.mediaBanner.mediaBanner .video-banner {
  margin-top: 340px;
}
#hero-banner.innerpageBanner.mediaBanner.mediaBanner.hero-active {
  transform: none;
}
#hero-banner.innerpageBanner.mediaBanner.mediaBanner.hero-active .video-banner {
  margin-top: 0px;
}

.mediaFeatureSec {
  color: #000000;
  margin-top: 175px;
  position: relative;
  z-index: 12;
}
@media screen and (max-width: 991.98px) {
  .mediaFeatureSec {
    margin-top: 350px;
  }
}
@media screen and (min-width: 1300px) {
  .mediaFeatureSec .secInner .container {
    max-width: 1246px;
  }
}
@media screen and (max-width: 767.98px) {
  .mediaFeatureSec .secInner .container .row [class*=col-] {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
.mediaFeatureSec .secInner .col-figure figure {
  position: relative;
  padding: 88.6503067485% 0 0 0;
  overflow: hidden;
}
.mediaFeatureSec .secInner .col-figure figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .mediaFeatureSec .secInner .col-figure figure {
    margin-right: -28px;
  }
}
.mediaFeatureSec .secInner .col-card .card {
  background: #FFF8ED;
}
@media screen and (min-width: 992px) {
  .mediaFeatureSec .secInner .col-card .card {
    margin-left: -29px;
  }
}
.mediaFeatureSec .secInner .col-card .card-body {
  padding: 66px 103px 60px 74px;
}
@media screen and (max-width: 1199.98px) {
  .mediaFeatureSec .secInner .col-card .card-body {
    padding: 40px 60px 35px 50px;
  }
}
@media screen and (max-width: 767.98px) {
  .mediaFeatureSec .secInner .col-card .card-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.mediaFeatureSec .secInner .col-card .card-title {
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.mediaFeatureSec .secInner .col-card .card-title-sm {
  color: #000000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.mediaFeatureSec .secInner .col-card .card-text {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 30px;
}
.mediaFeatureSec .secInner .col-card .card .card-metadata {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 20px;
}
.mediaFeatureSec .secInner .col-card .card .card-metadata span {
  font-size: 16px;
  color: rgb(92, 92, 92);
}
.mediaFeatureSec .secInner .col-card .card .card-metadata span.dot {
  background: rgb(0, 161, 213);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mediaCenterSec {
  position: relative;
  z-index: 0;
}
.mediaCenterSec > * {
  position: relative;
  z-index: 1;
}
.mediaCenterSec .heading-wrap .title-h3, .mediaCenterSec .heading-wrap .main-wrapper-sec .wp-block-heading, .main-wrapper-sec .mediaCenterSec .heading-wrap .wp-block-heading {
  color: #000000;
}
.mediaCenterSec .heading-wrap p {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.mediaCenterSec .filterForm .form-group label {
  color: #5C5C5C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.mediaCenterSec .filterForm .form-group .form-select {
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background-position: right center;
}
.mediaCenterSec .filterForm .form-group .form-select option {
  padding: 10px;
}
.mediaCenterSec .engineering-wrap {
  max-width: 1204px;
  margin: 0 auto;
  padding: 56px 20px 0px;
}
.mediaCenterSec .engineering-wrap .engineering-columns {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 90px;
  column-gap: 90px;
}
@media screen and (max-width: 1200px) {
  .mediaCenterSec .engineering-wrap .engineering-columns {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
@media screen and (max-width: 991px) {
  .mediaCenterSec .engineering-wrap .engineering-columns {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .mediaCenterSec .engineering-wrap .engineering-columns {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card {
  margin-bottom: 70px;
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .mediaCenterSec .engineering-wrap .engineering-columns .engineering-card {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .mediaCenterSec .engineering-wrap .engineering-columns .engineering-card {
    margin-bottom: 30px;
  }
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img {
  position: relative;
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img .engineering-type {
  position: absolute;
  left: 20px;
  bottom: 50px;
  background-color: rgb(255, 255, 255);
  color: #000;
  font-size: 16px;
  padding: 3px 16px;
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.75s ease-in-out;
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content {
  margin-top: 30px;
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post span {
  font-size: 16px;
  color: rgb(92, 92, 92);
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post span.dot {
  background: rgb(0, 161, 213);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card:hover .engineering-img img {
  transform: scale(1.1);
}
.mediaCenterSec .engineering-wrap .engineering-columns .engineering-card:hover .engineering-content .engineering-title {
  color: rgb(227, 0, 15);
  text-decoration: underline;
}

@media screen and (min-width: 992px) {
  .latestUpdateSec {
    padding-bottom: 70px;
  }
}
.latestUpdateSec .comm-heading {
  margin-bottom: 90px;
}
.latestUpdateSec .comm-heading h4::before {
  right: -90%;
  width: 90%;
}
.latestUpdateSec .comm-heading h4::after {
  left: -90%;
  width: 90%;
}
.latestUpdateSec .latestUpdateSlider {
  padding-bottom: 50px;
}
.latestUpdateSec .latestUpdateSlider .swiper-slide .item-inner {
  text-decoration: none;
}
.latestUpdateSec .latestUpdateSlider .swiper-slide .item-inner:hover .item-content-title {
  color: #e3000f;
  text-decoration: underline;
}
.latestUpdateSec .latestUpdateSlider .swiper-slide .item-inner figure {
  background: url("../images/default-img.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 70.2247191011% 0 0 0;
  overflow: hidden;
}
.latestUpdateSec .latestUpdateSlider .swiper-slide .item-inner figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.latestUpdateSec .latestUpdateSlider .swiper-slide .item-inner .item-content {
  padding-top: 23px;
}
.latestUpdateSec .latestUpdateSlider .swiper-slide .item-inner .item-content-title {
  color: #000000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.latestUpdateSec .latestUpdateSlider .swiper-slide .item-inner .item-content-date {
  color: #5C5C5C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0px;
}
.latestUpdateSec .latestUpdateSlider .swiper-pagination {
  bottom: 0px;
}
.latestUpdateSec .latestUpdateSlider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0px;
  opacity: 0.25;
  background: #E3000F;
}
.latestUpdateSec .latestUpdateSlider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

@media screen and (max-width: 991.98px) {
  #hero-banner.innerpageBanner.mediaDetailsBanner {
    height: auto;
  }
}
#hero-banner.innerpageBanner.mediaDetailsBanner .hero-title {
  flex-direction: column;
  align-items: flex-start;
}
#hero-banner.innerpageBanner.mediaDetailsBanner .hero-title .post-type {
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  #hero-banner.innerpageBanner.mediaDetailsBanner .hero-title .post-type {
    margin-left: auto;
    margin-right: auto;
  }
}
#hero-banner.innerpageBanner.mediaDetailsBanner .hero-title h1 {
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
}
@media screen and (max-width: 767.98px) {
  #hero-banner.innerpageBanner.mediaDetailsBanner .hero-title h1 {
    font-size: 36px;
    line-height: 42px;
  }
}
#hero-banner.innerpageBanner.mediaDetailsBanner::after {
  height: calc(100% - 487px);
}
#hero-banner.innerpageBanner.mediaDetailsBanner .video-banner {
  margin-top: 550px;
}
@media screen and (min-width: 1400px) {
  #hero-banner.innerpageBanner.mediaDetailsBanner .video-banner {
    margin-top: 450px;
  }
}
@media screen and (min-width: 1900px) {
  #hero-banner.innerpageBanner.mediaDetailsBanner .video-banner {
    margin-top: 200px;
  }
}
@media screen and (max-width: 767.98px) {
  #hero-banner.innerpageBanner.mediaDetailsBanner .video-banner {
    margin-top: 50%;
  }
}
#hero-banner.innerpageBanner.mediaDetailsBanner.hero-active .video-banner {
  margin-top: 0px;
}

@media screen and (min-width: 992px) {
  .mediaDetailsSec .container {
    max-width: 886px;
  }
}
.mediaDetailsSec .container .content-wrap .post-metadata {
  margin-bottom: 42px;
}
.mediaDetailsSec .container .content-wrap p {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}
.mediaDetailsSec .container .content-wrap figure {
  margin-top: 40px;
  margin-bottom: 40px;
}
.mediaDetailsSec .container .content-wrap .wp-block-heading {
  color: #5C5C5C;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}

.mediaDetailsMoreSec .comm-heading h4::before {
  right: -90%;
  width: 90%;
}
.mediaDetailsMoreSec .comm-heading h4::after {
  left: -90%;
  width: 90%;
}
.mediaDetailsMoreSec .engineering-wrap {
  max-width: 1204px;
  margin: 0 auto;
  padding: 85px 20px 0px;
}
@media screen and (max-width: 1199.98px) {
  .mediaDetailsMoreSec .engineering-wrap {
    padding-top: 55px;
  }
}
@media screen and (max-width: 575.98px) {
  .mediaDetailsMoreSec .engineering-wrap {
    padding-top: 35px;
  }
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 102px;
       column-gap: 102px;
  margin-bottom: -70px;
}
@media screen and (max-width: 1200px) {
  .mediaDetailsMoreSec .engineering-wrap .engineering-columns {
    -moz-column-gap: 50px;
    column-gap: 50px;
    margin-bottom: -50px;
  }
}
@media screen and (max-width: 991px) {
  .mediaDetailsMoreSec .engineering-wrap .engineering-columns {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .mediaDetailsMoreSec .engineering-wrap .engineering-columns {
    -moz-column-count: 1;
    column-count: 1;
    margin-bottom: -30px;
  }
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card {
  margin-bottom: 70px;
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card {
    margin-bottom: 30px;
  }
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card .engineering-img {
  position: relative;
  padding: 70.0564971751% 0 0 0;
  overflow: hidden;
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card .engineering-img img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card .engineering-img .engineering-type {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: rgb(255, 255, 255);
  color: #000;
  font-size: 16px;
  padding: 3px 16px;
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card .engineering-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.75s ease-in-out;
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card .engineering-content {
  margin-top: 30px;
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post span {
  font-size: 16px;
  color: rgb(92, 92, 92);
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post span.dot {
  background: rgb(0, 161, 213);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card:hover .engineering-img img {
  transform: scale(1.1);
}
.mediaDetailsMoreSec .engineering-wrap .engineering-columns .engineering-card:hover .engineering-content .engineering-title {
  color: rgb(227, 0, 15);
  text-decoration: underline;
}

.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns.medianews .alm-listing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1200px) {
  .caseStudiesMediaCenterSec .engineering-wrap .engineering-columns.medianews .alm-listing {
    gap: 50px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .caseStudiesMediaCenterSec .engineering-wrap .engineering-columns.medianews .alm-listing {
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .caseStudiesMediaCenterSec .engineering-wrap .engineering-columns.medianews .alm-listing {
    grid-template-columns: 1fr;
  }
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns.medianews .alm-listing .engineering-card {
  display: block;
  text-decoration: none;
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns.medianews .alm-listing .engineering-card.alm-filters {
  display: block;
  margin: 0 !important;
  text-decoration: none;
}

#hero-banner.innerpageBanner.sustainabilityBanner {
  background: radial-gradient(circle, #00a1d5, #1a2456);
  height: auto;
}
#hero-banner.innerpageBanner.sustainabilityBanner .card-movement {
  width: 664px;
  max-width: 100%;
}
#hero-banner.innerpageBanner.sustainabilityBanner::after {
  height: calc(100% - 487px);
}
#hero-banner.innerpageBanner.sustainabilityBanner .video-banner {
  margin-top: 180px;
}
#hero-banner.innerpageBanner.sustainabilityBanner.hero-active .video-banner {
  margin-top: 0px;
}

@media screen and (min-width: 992px) {
  .sustainEnvSec.comm-sec {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .sustainEnvSec .row {
    margin-left: -73px;
    margin-right: -73px;
  }
}
@media screen and (min-width: 1200px) {
  .sustainEnvSec .row > * {
    padding-left: 73px;
    padding-right: 73px;
  }
}
@media screen and (max-width: 991.98px) {
  .sustainEnvSec .row [class^=col-]:first-child {
    margin-bottom: 22px;
  }
}

.sustainEnvSec2 .figure-wrap {
  overflow: hidden;
}
.sustainEnvSec2 .figure-wrap figure {
  position: relative;
  padding: 63.8360175695% 0 0 0;
  overflow: hidden;
}
.sustainEnvSec2 .figure-wrap figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .sustainEnvSec2 .figure-wrap figure {
    margin-right: -8px;
  }
}
@media screen and (min-width: 992px) {
  .sustainEnvSec2 .content-wrap {
    padding-left: 57px;
    padding-right: 48px;
  }
}
.sustainEnvSec2 .content-wrap .title {
  color: #5C5C5C;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}
.sustainEnvSec2 .content-wrap p {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 40px;
}

.sustainEnvSec3 .figure-wrap {
  overflow: hidden;
}
.sustainEnvSec3 .figure-wrap figure {
  position: relative;
  padding: 63.8360175695% 0 0 0;
  overflow: hidden;
}
.sustainEnvSec3 .figure-wrap figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .sustainEnvSec3 .figure-wrap figure {
    margin-left: -8px;
  }
}
.sustainEnvSec3 .content-wrap {
  margin-top: 100px;
}
@media screen and (min-width: 992px) {
  .sustainEnvSec3 .content-wrap {
    padding-left: 48px;
    padding-right: 57px;
  }
}
@media screen and (max-width: 991px) {
  .sustainEnvSec3 .content-wrap {
    margin-top: 60px;
  }
}
.sustainEnvSec3 .content-wrap .title {
  color: #5C5C5C;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}
.sustainEnvSec3 .content-wrap p {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 30px;
}

.plantationSliderWrap {
  position: relative;
  padding-left: 160px;
  margin-top: -150px;
}
@media screen and (max-width: 767.98px) {
  .plantationSliderWrap {
    padding-left: 0;
    padding-bottom: 70px;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .plantationSliderWrap .plantationSlider {
    padding-right: 170px;
  }
}
.plantationSliderWrap .plantationSlider .swiper-slide .slide-inner {
  background: #FFF8ED;
  padding: 40px;
}
.plantationSliderWrap .plantationSlider .swiper-slide .slide-inner .icon-wrap {
  width: 60px;
  height: 60px;
  margin-bottom: 33px;
}
.plantationSliderWrap .plantationSlider .swiper-slide .slide-inner .icon-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.plantationSliderWrap .plantationSlider .swiper-slide .slide-inner .slider-title {
  color: #000000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 21px;
}
.plantationSliderWrap .plantationSlider .swiper-slide .slide-inner p {
  color: #5C5C5C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.plantationSliderWrap .arrowButtonWrap {
  position: absolute;
  left: 0;
  top: 210px;
}
@media screen and (max-width: 767.98px) {
  .plantationSliderWrap .arrowButtonWrap {
    position: static;
  }
}
.plantationSliderWrap .arrowButtonWrap .comm-slider-navigation {
  border: 1px solid #e3000f;
}
@media screen and (max-width: 767.98px) {
  .plantationSliderWrap .arrowButtonWrap .comm-slider-navigation.swiper-button-prev {
    right: 72px;
  }
}
@media screen and (max-width: 767.98px) {
  .plantationSliderWrap .arrowButtonWrap .comm-slider-navigation.swiper-button-next {
    right: 12px;
  }
}
.plantationSliderWrap .arrowButtonWrap .comm-slider-navigation.swiper-button-disabled {
  color: #e3000f;
}

.swiperHeightEqual .swiper-wrapper .swiper-slide {
  height: auto;
}
.swiperHeightEqual .swiper-wrapper .swiper-slide > * {
  height: 100%;
}

.sustaincompliancesSec {
  background: linear-gradient(to bottom, #00A1D5 55%, #ffffff 55%);
}
.sustaincompliancesSec .heading-wrap {
  margin-bottom: 56px;
}
.sustaincompliancesSec .heading-wrap.text-center {
  /* @media screen and (max-width: 767.98px) {
       text-align: left!important;
       .title-h3{
           font-size: 34px;
           text-align: left;
       }
   }*/
}
.sustaincompliancesSec .heading-wrap .title-h3, .sustaincompliancesSec .heading-wrap .main-wrapper-sec .wp-block-heading, .main-wrapper-sec .sustaincompliancesSec .heading-wrap .wp-block-heading {
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.sustaincompliancesSec .heading-wrap p {
  color: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (min-width: 992px) {
  .sustaincompliancesSec .container {
    max-width: 830px;
  }
}
@media screen and (min-width: 992px) {
  .sustaincompliancesSec .container-fluid {
    padding-left: 48px;
  }
}
@media screen and (min-width: 992px) {
  .sustaincompliancesSec .container-fluid .figure-wrap {
    margin-right: -76px;
  }
}
.sustaincompliancesSec .container-fluid .figure-wrap figure {
  position: relative;
  padding: 80% 0 0 0;
  overflow: hidden;
}
.sustaincompliancesSec .container-fluid .figure-wrap figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .sustaincompliancesSec .container-fluid .sustaincompliancesSliderWrap {
    margin-left: -60px;
  }
}
@media screen and (max-width: 991.98px) {
  .sustaincompliancesSec .container-fluid .sustaincompliancesSliderWrap {
    padding-bottom: 70px;
  }
}
.sustaincompliancesSec .container-fluid .sustaincompliancesSliderWrap .swiper-wrapper {
  height: auto;
}
.sustaincompliancesSec .container-fluid .sustaincompliancesSliderWrap .arrowButtonWrap {
  position: absolute;
  left: 112px;
  bottom: 0px;
}
@media screen and (max-width: 991.98px) {
  .sustaincompliancesSec .container-fluid .sustaincompliancesSliderWrap .arrowButtonWrap {
    position: static;
  }
}
.sustaincompliancesSliderWrap {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .sustaincompliancesSliderWrap .sustaincompliancesSlider {
    padding-right: 350px;
  }
}
.sustaincompliancesSliderWrap .sustaincompliancesSlider .swiper-slide .slide-inner {
  background: #FFF8ED;
  padding: 60px;
}
@media screen and (max-width: 1199.98px) {
  .sustaincompliancesSliderWrap .sustaincompliancesSlider .swiper-slide .slide-inner {
    padding: 40px;
  }
}
@media screen and (max-width: 767.98px) {
  .sustaincompliancesSliderWrap .sustaincompliancesSlider .swiper-slide .slide-inner {
    padding: 20px;
  }
}
.sustaincompliancesSliderWrap .sustaincompliancesSlider .swiper-slide .slide-inner .slider-title {
  color: #5C5C5C;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}
.sustaincompliancesSliderWrap .sustaincompliancesSlider .swiper-slide .slide-inner p {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.sustaincompliancesSliderWrap .arrowButtonWrap .comm-slider-navigation {
  border: 1px solid #e3000f;
}
@media screen and (max-width: 767.98px) {
  .sustaincompliancesSliderWrap .arrowButtonWrap .comm-slider-navigation.swiper-button-prev {
    right: 72px;
  }
}
@media screen and (max-width: 767.98px) {
  .sustaincompliancesSliderWrap .arrowButtonWrap .comm-slider-navigation.swiper-button-next {
    right: 12px;
  }
}
.sustaincompliancesSliderWrap .arrowButtonWrap .comm-slider-navigation.swiper-button-disabled {
  color: #e3000f;
}

#hero-banner.innerpageBanner.caseStudiesBanner {
  background: radial-gradient(circle, #00a1d5, #1a2456);
  height: auto;
  min-height: 360px;
  transform: none;
}
#hero-banner.innerpageBanner.caseStudiesBanner .card-movement {
  width: 800px;
  max-width: 100%;
}
@media screen and (min-width: 1200px) {
  #hero-banner.innerpageBanner.caseStudiesBanner .card-movement {
    padding-left: 57px;
  }
}
#hero-banner.innerpageBanner.caseStudiesBanner::after {
  height: calc(100% - 487px);
}
#hero-banner.innerpageBanner.caseStudiesBanner .video-banner {
  margin-top: 340px;
}
#hero-banner.innerpageBanner.caseStudiesBanner.hero-active {
  transform: none;
}
#hero-banner.innerpageBanner.caseStudiesBanner.hero-active .video-banner {
  margin-top: 0px;
}

.caseStudiesFeatureSec {
  color: #000000;
  margin-top: 175px;
  position: relative;
  z-index: 12;
}
@media screen and (max-width: 991.98px) {
  .caseStudiesFeatureSec {
    margin-top: 350px;
  }
}
@media screen and (min-width: 1300px) {
  .caseStudiesFeatureSec .secInner .container {
    max-width: 1246px;
  }
}
@media screen and (max-width: 767.98px) {
  .caseStudiesFeatureSec .secInner .container .row [class*=col-] {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
.caseStudiesFeatureSec .secInner .col-figure figure {
  position: relative;
  padding: 88.6503067485% 0 0 0;
  overflow: hidden;
}
.caseStudiesFeatureSec .secInner .col-figure figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .caseStudiesFeatureSec .secInner .col-figure figure {
    margin-right: -28px;
  }
}
.caseStudiesFeatureSec .secInner .col-card .card {
  background: #FFF8ED;
}
@media screen and (min-width: 992px) {
  .caseStudiesFeatureSec .secInner .col-card .card {
    margin-left: -29px;
  }
}
.caseStudiesFeatureSec .secInner .col-card .card-body {
  padding: 66px 103px 60px 74px;
}
@media screen and (max-width: 1199.98px) {
  .caseStudiesFeatureSec .secInner .col-card .card-body {
    padding: 40px 60px 35px 50px;
  }
}
@media screen and (max-width: 767.98px) {
  .caseStudiesFeatureSec .secInner .col-card .card-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.caseStudiesFeatureSec .secInner .col-card .card-title {
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.caseStudiesFeatureSec .secInner .col-card .card-title-sm {
  color: #000000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.caseStudiesFeatureSec .secInner .col-card .card-text {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 30px;
}
.caseStudiesFeatureSec .secInner .col-card .card .card-metadata {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 20px;
}
.caseStudiesFeatureSec .secInner .col-card .card .card-metadata span {
  font-size: 16px;
  color: rgb(92, 92, 92);
}
.caseStudiesFeatureSec .secInner .col-card .card .card-metadata span.dot {
  background: rgb(0, 161, 213);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.caseStudiesMediaCenterSec {
  position: relative;
  z-index: 0;
}
.caseStudiesMediaCenterSec > * {
  position: relative;
  z-index: 1;
}
.caseStudiesMediaCenterSec .heading-wrap .title-h3, .caseStudiesMediaCenterSec .heading-wrap .main-wrapper-sec .wp-block-heading, .main-wrapper-sec .caseStudiesMediaCenterSec .heading-wrap .wp-block-heading {
  color: #000000;
}
.caseStudiesMediaCenterSec .heading-wrap p {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.caseStudiesMediaCenterSec .filterForm .form-group label {
  color: #5C5C5C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.caseStudiesMediaCenterSec .filterForm .form-group .form-select {
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background-position: right center;
}
.caseStudiesMediaCenterSec .engineering-wrap {
  max-width: 1192px;
  margin: 0 auto;
  padding: 56px 20px 0px;
}
@media screen and (max-width: 991.98px) {
  .caseStudiesMediaCenterSec .engineering-wrap {
    padding-top: 0px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .ajax-load-more-wrap .alm-listing .alm-filters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-bottom: -80px;
}
@media screen and (max-width: 1200px) {
  .caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .ajax-load-more-wrap .alm-listing .alm-filters {
    gap: 50px;
    margin-bottom: -50px;
  }
}
@media screen and (max-width: 991px) {
  .caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .ajax-load-more-wrap .alm-listing .alm-filters {
    gap: 30px;
    margin-bottom: -30px;
  }
}
@media screen and (max-width: 575px) {
  .caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .ajax-load-more-wrap .alm-listing .alm-filters {
    grid-template-columns: 1fr;
  }
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .ajax-load-more-wrap .alm-listing .alm-filters ~ .alm-filters {
  margin-top: 80px;
}
@media screen and (max-width: 1200px) {
  .caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .ajax-load-more-wrap .alm-listing .alm-filters ~ .alm-filters {
    margin-top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .ajax-load-more-wrap .alm-listing .alm-filters ~ .alm-filters {
    margin-top: 30px;
  }
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card {
  display: block;
  text-decoration: none;
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img {
  position: relative;
  padding: 70.0564971751% 0 0 0;
  overflow: hidden;
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img img {
  transition: all 0.75s ease-in-out;
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img .engineering-type {
  position: absolute;
  left: 20px;
  bottom: 50px;
  background-color: rgb(255, 255, 255);
  color: #000;
  font-size: 16px;
  padding: 3px 16px;
  z-index: 3;
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content {
  margin-top: 30px;
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post span {
  font-size: 16px;
  color: rgb(92, 92, 92);
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post span.dot {
  background: rgb(0, 161, 213);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card:hover .engineering-img img {
  transform: scale(1.1);
}
.caseStudiesMediaCenterSec .engineering-wrap .engineering-columns .engineering-card:hover .engineering-content .engineering-title {
  color: rgb(227, 0, 15);
  text-decoration: underline;
}

#hero-banner.innerpageBanner.whitePaperBanner {
  background: radial-gradient(circle, #00a1d5, #1a2456);
  height: auto;
  min-height: 360px;
  transform: none;
}
#hero-banner.innerpageBanner.whitePaperBanner .card-movement {
  width: 750px;
  max-width: 100%;
}
@media screen and (min-width: 1200px) {
  #hero-banner.innerpageBanner.whitePaperBanner .card-movement {
    padding-left: 57px;
  }
}
#hero-banner.innerpageBanner.whitePaperBanner::after {
  height: calc(100% - 487px);
}
#hero-banner.innerpageBanner.whitePaperBanner .video-banner {
  margin-top: 340px;
}
#hero-banner.innerpageBanner.whitePaperBanner.hero-active {
  transform: none;
}
#hero-banner.innerpageBanner.whitePaperBanner.hero-active .video-banner {
  margin-top: 0px;
}

.caseStudiesFeatureSec {
  color: #000000;
  margin-top: 175px;
  position: relative;
  z-index: 12;
}
@media screen and (max-width: 991.98px) {
  .caseStudiesFeatureSec {
    margin-top: 350px;
  }
}
@media screen and (min-width: 1300px) {
  .caseStudiesFeatureSec .secInner .container {
    max-width: 1246px;
  }
}
@media screen and (max-width: 767.98px) {
  .caseStudiesFeatureSec .secInner .container .row [class*=col-] {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
.caseStudiesFeatureSec .secInner .col-figure figure {
  position: relative;
  padding: 88.6503067485% 0 0 0;
  overflow: hidden;
}
.caseStudiesFeatureSec .secInner .col-figure figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .caseStudiesFeatureSec .secInner .col-figure figure {
    margin-right: -28px;
  }
}
.caseStudiesFeatureSec .secInner .col-card .card {
  background: #FFF8ED;
}
@media screen and (min-width: 992px) {
  .caseStudiesFeatureSec .secInner .col-card .card {
    margin-left: -29px;
  }
}
.caseStudiesFeatureSec .secInner .col-card .card-body {
  padding: 66px 103px 60px 74px;
}
@media screen and (max-width: 1199.98px) {
  .caseStudiesFeatureSec .secInner .col-card .card-body {
    padding: 40px 60px 35px 50px;
  }
}
@media screen and (max-width: 767.98px) {
  .caseStudiesFeatureSec .secInner .col-card .card-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.caseStudiesFeatureSec .secInner .col-card .card-title {
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.caseStudiesFeatureSec .secInner .col-card .card-title-sm {
  color: #000000;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.caseStudiesFeatureSec .secInner .col-card .card-text {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 30px;
}
.caseStudiesFeatureSec .secInner .col-card .card .card-metadata {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 20px;
}
.caseStudiesFeatureSec .secInner .col-card .card .card-metadata span {
  font-size: 16px;
  color: rgb(92, 92, 92);
}
.caseStudiesFeatureSec .secInner .col-card .card .card-metadata span.dot {
  background: rgb(0, 161, 213);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.whitePaperMediaCenterSec .heading-wrap .title-h3, .whitePaperMediaCenterSec .heading-wrap .main-wrapper-sec .wp-block-heading, .main-wrapper-sec .whitePaperMediaCenterSec .heading-wrap .wp-block-heading {
  color: #000000;
}
.whitePaperMediaCenterSec .heading-wrap p {
  color: #5C5C5C;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.whitePaperMediaCenterSec .filterForm .form-group label {
  color: #5C5C5C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.whitePaperMediaCenterSec .filterForm .form-group .form-select {
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background-position: right center;
}
.whitePaperMediaCenterSec .engineering-wrap {
  max-width: 1192px;
  margin: 0 auto;
  padding: 56px 20px 0px;
}
@media screen and (max-width: 991.98px) {
  .whitePaperMediaCenterSec .engineering-wrap {
    padding-top: 0px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
  text-decoration: none;
  margin-bottom: 80px;
}
@media screen and (max-width: 1200px) {
  .whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card {
    gap: 50px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card {
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card {
    grid-template-columns: 1fr;
  }
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card:nth-child(even) {
  direction: rtl;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card:nth-child(even) > * {
  direction: ltr;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card:last-child {
  margin-bottom: 0px;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img {
  position: relative;
  padding: 70.0564971751% 0 0 0;
  overflow: hidden;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img img {
  transition: all 0.75s ease-in-out;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img:hover img {
  transform: scale(1.1);
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-img .engineering-type {
  position: absolute;
  left: 20px;
  bottom: 50px;
  background-color: rgb(255, 255, 255);
  color: #000;
  font-size: 16px;
  padding: 3px 16px;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-title {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-title:hover {
  color: rgb(227, 0, 15);
  text-decoration: underline;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-text {
  color: #5C5C5C;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post span {
  font-size: 16px;
  color: rgb(92, 92, 92);
}
.whitePaperMediaCenterSec .engineering-wrap .engineering-columns .engineering-card .engineering-content .engineering-post span.dot {
  background: rgb(0, 161, 213);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

#hero-banner.innerpageBanner.careerDetailsBanner {
  background: radial-gradient(circle, #00a1d5, #1a2456);
  height: auto;
  min-height: 360px;
  transform: none;
}
#hero-banner.innerpageBanner.careerDetailsBanner .hero-title {
  top: 50%;
  transform: translateY(-50%);
}
#hero-banner.innerpageBanner.careerDetailsBanner .hero-title h1 {
  font-size: 60px;
  line-height: 52px;
}
@media screen and (max-width: 991.98px) {
  #hero-banner.innerpageBanner.careerDetailsBanner .hero-title h1 {
    font-size: 50px;
    line-height: 46px;
  }
}
#hero-banner.innerpageBanner.careerDetailsBanner .post-type {
  margin-top: 40px;
}
#hero-banner.innerpageBanner.careerDetailsBanner::after {
  height: calc(100% - 487px);
}
#hero-banner.innerpageBanner.careerDetailsBanner .video-banner {
  margin-top: 340px;
}
#hero-banner.innerpageBanner.careerDetailsBanner.hero-active {
  transform: none;
}
#hero-banner.innerpageBanner.careerDetailsBanner.hero-active .video-banner {
  margin-top: 0px;
}

@media screen and (min-width: 992px) {
  .careerDetailsSec .form-wrap {
    margin-right: 78px;
  }
}
.careerDetailsSec .form-wrap .title {
  color: #ffffff;
  background-color: #00a1d5;
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  padding: 25px 30px;
  margin-bottom: 35px;
}
.careerDetailsSec .form-wrap form {
  width: 338px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.careerDetailsSec .form-wrap form .form-group {
  margin-bottom: 35px;
}
.careerDetailsSec .form-wrap form .form-group .form-control {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-radius: 0px;
  outline: none;
  padding-left: 0px;
  padding-right: 0px;
}
.careerDetailsSec .form-wrap form .form-group .form-control::-moz-placeholder {
  color: #000000;
}
.careerDetailsSec .form-wrap form .form-group .form-control::placeholder {
  color: #000000;
}
.careerDetailsSec .form-wrap form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}
.careerDetailsSec .form-wrap form .form-group textarea.form-control {
  height: 37px;
}
.careerDetailsSec .form-wrap form .form-group .form-help-text {
  color: #5C5C5C;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 10px;
}
.careerDetailsSec .form-wrap form .form-group .form-control-file {
  position: relative;
  color: transparent;
  width: 100%;
}
.careerDetailsSec .form-wrap form .form-group .form-control-file::-webkit-file-upload-button {
  visibility: hidden;
}
.careerDetailsSec .form-wrap form .form-group .form-control-file::before {
  content: attr(data-file-name);
  color: #000000;
  display: inline-block;
  padding: 0.375rem 0rem;
  padding-right: 20px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  width: 100%;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background: url("../images/file-upload.svg") no-repeat center right;
  background-size: 18px;
  text-wrap: wrap;
  min-height: 28px;
}
.careerDetailsSec .form-wrap form .form-group .form-control-file:hover::before {
  border-color: #000000;
}
.careerDetailsSec .form-wrap form .form-group .form-control-file:active {
  outline: 0;
}
.careerDetailsSec .form-wrap form .form-group label {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 0px;
}
.careerDetailsSec .form-wrap form .form-file-wrap {
  position: relative;
}
.careerDetailsSec .form-wrap form .form-file-wrap br {
  display: none;
}
.careerDetailsSec .form-wrap form .form-file-wrap .upload-file-close {
  position: absolute;
  z-index: 3;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e3000f;
  color: #ffffff;
  display: none;
}
.careerDetailsSec .form-wrap form .form-file-wrap .upload-file-close i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formSubmitBtn {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.formSubmitBtn input.btn, .formSubmitBtn .ajax-load-more-wrap .alm-btn-wrap input.alm-load-more-btn, .ajax-load-more-wrap .alm-btn-wrap .formSubmitBtn input.alm-load-more-btn {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  opacity: 0;
}
.formSubmitBtn label.btn, .formSubmitBtn .ajax-load-more-wrap .alm-btn-wrap label.alm-load-more-btn, .ajax-load-more-wrap .alm-btn-wrap .formSubmitBtn label.alm-load-more-btn {
  z-index: 3;
}
.formSubmitBtn .wpcf7-spinner {
  top: 0;
  position: absolute;
  left: 100%;
  bottom: 0;
  margin: auto 15px;
  z-index: 0;
}

@media screen and (min-width: 992px) {
  .careerDetailsSec .content-wrap {
    margin-left: -2px;
  }
}
.careerDetailsSec .content-wrap .content-top {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #C7C7C7;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.careerDetailsSec .content-wrap .content-top-left {
  flex: 0 0 40%;
}
@media screen and (max-width: 575.98px) {
  .careerDetailsSec .content-wrap .content-top-left {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 25px;
  }
}
.careerDetailsSec .content-wrap .content-top-right {
  flex: 1 1 auto;
}
@media screen and (max-width: 575.98px) {
  .careerDetailsSec .content-wrap .content-top-right {
    flex-basis: 100%;
    width: 100%;
  }
}
.careerDetailsSec .content-wrap .content-top .title {
  color: #5C5C5C;
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
}
.careerDetailsSec .content-wrap .content-bottom .title {
  color: #5C5C5C;
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
}
.careerDetailsSec .content-wrap .content-bottom p {
  color: #5C5C5C;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

/** @format */
@media screen and (max-width: 767px) {
  #hero-banner .innerpageBanner:has(.newSlider)::after {
    content: normal;
  }
  #hero-banner .innerpageBanner:has(.newSlider) .video-banner {
    margin-top: 0px;
  }
}

.newSlider figure {
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 45.3125% 0 0 0;
}

.newSlider figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.humanSection {
  position: relative;
  z-index: 0;
}
.humanSection:after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 75px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #00A1D5;
}
.humanSection .sectionInner {
  position: relative;
  z-index: 1;
}
.humanSection .sectionInner > * {
  position: relative;
  z-index: 1;
}
.humanSection .leftPan {
  width: 45.45%;
  padding-bottom: 90px;
}
@media (max-width: 1199.5px) {
  .humanSection .leftPan {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 60px;
  }
}
.humanSection .rightPan {
  width: 54.55%;
  padding-left: 43px;
  margin-top: 62px;
}
@media (max-width: 1199.5px) {
  .humanSection .rightPan {
    width: 800px;
    max-width: 100%;
    margin-top: 0;
    margin: 0 auto;
    padding: 0;
  }
}
.humanSection .rightPan .videoBox {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0 0;
}
.humanSection .rightPan .videoBox iframe, .humanSection .rightPan .videoBox video {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.whyTua {
  background-color: #00A1D5;
}
.whyTua .leftPan {
  width: calc(100% - 735px);
  padding-right: 84px;
  color: #ffffff;
}
@media screen and (max-width: 1299.5px) {
  .whyTua .leftPan {
    padding-right: 60px;
  }
}
@media screen and (max-width: 1199.5px) {
  .whyTua .leftPan {
    width: 100%;
    padding-right: 0;
    padding-bottom: 60px;
  }
}
.whyTua .leftPan .contentBox {
  margin-bottom: 30px;
}
.whyTua .leftPan .contentBox:last-child {
  margin-bottom: 0;
}
.whyTua .rightPan {
  width: 735px;
}
@media screen and (max-width: 1199.5px) {
  .whyTua .rightPan {
    width: 100%;
  }
}
.whyTua .rightPan .listBox {
  margin-bottom: -30px;
}
.whyTua .rightPan .listBox .listItem {
  width: calc(33.3333333% - 20px);
  background-color: #ffffff;
  color: #000000;
  margin-bottom: 30px;
  padding: 30px 30px;
  margin-right: 30px;
}
@media (max-width: 767.5px) {
  .whyTua .rightPan .listBox .listItem {
    width: calc(50% - 15px);
  }
}
@media (max-width: 479.5px) {
  .whyTua .rightPan .listBox .listItem {
    width: 100%;
    margin-right: 0 !important;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .whyTua .rightPan .listBox .listItem:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 767.5px) {
  .whyTua .rightPan .listBox .listItem:nth-child(even) {
    margin-right: 0;
  }
}
.whyTua .rightPan .listBox .listItem figure {
  margin-bottom: 12px;
}
.whyTua .rightPan .listBox .listItem figure img {
  display: block;
  margin: 0;
  width: auto;
  height: auto;
  max-height: 45px;
}
@media (max-width: 479.5px) {
  .whyTua .rightPan .listBox .listItem figure img {
    margin: 0 auto;
  }
}
.whyTua .rightPan .listBox .listItem p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}

@media (max-width: 991.5px) {
  .employeeSec {
    padding-top: 60px;
  }
}
.employeeSec .swiper-container {
  overflow: hidden;
}
.employeeSec .leftPan {
  width: 511px;
}
@media (max-width: 1199.5px) {
  .employeeSec .leftPan {
    width: 450px;
  }
}
@media (max-width: 991.5px) {
  .employeeSec .leftPan {
    width: 300px;
    margin: 0 auto 30px;
    margin-top: 60px;
  }
}
.employeeSec .leftPan figure {
  width: 100%;
  height: 0;
  position: relative;
  z-index: 0;
  padding: 97.4559686888% 0 0 0;
  overflow: hidden;
}
@media (max-width: 991.5px) {
  .employeeSec .leftPan figure {
    padding-top: 100%;
    border-radius: 50%;
    border: 2px solid #5C5C5C;
  }
}
.employeeSec .leftPan figure img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.employeeSec .rightPan {
  width: calc(100% - 511px);
  padding-left: 60px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
}
@media (max-width: 1199.5px) {
  .employeeSec .rightPan {
    width: calc(100% - 450px);
  }
}
@media (max-width: 991.5px) {
  .employeeSec .rightPan {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
.employeeSec .rightPan .rightinner {
  position: relative;
  z-index: 0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 991.5px) {
  .employeeSec .rightPan .rightinner {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .employeeSec .rightPan .featured-title {
    margin-bottom: 40px;
  }
}
.employeeSec .rightPan h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 18px;
}
.employeeSec .rightPan p {
  color: #5C5C5C;
}
.employeeSec .rightPan .swiper-control-wrap {
  position: absolute;
  z-index: 1;
  left: 60px;
  width: 100%;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0 24px;
}
@media (max-width: 991.5px) {
  .employeeSec .rightPan .swiper-control-wrap {
    position: static;
    justify-content: center;
    margin-top: 30px;
  }
}
.employeeSec .rightPan .swiper-control-wrap .swiper-pagination {
  position: static !important;
  width: auto;
}
.employeeSec .rightPan .swiper-control-wrap .swiper-button-prev,
.employeeSec .rightPan .swiper-control-wrap .swiper-button-next {
  color: #C7C7C7;
  font-weight: 600;
  position: static !important;
  width: 10px;
  height: 15px;
  margin-top: 0px;
}
.employeeSec .rightPan .swiper-control-wrap .swiper-button-prev::after,
.employeeSec .rightPan .swiper-control-wrap .swiper-button-next::after {
  font-size: 10px;
}
.employeeSec .rightPan .swiper-control-wrap .swiper-button-prev:hover,
.employeeSec .rightPan .swiper-control-wrap .swiper-button-next:hover {
  color: #e3000f;
}
.employeeSec .rightPan .swiper-control-wrap .swiper-count {
  color: #000000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.oilGasSec.onboardpage {
  background-color: #FFF8ED;
}
.oilGasSec.onboardpage .sectionInner .leftPan {
  width: 416px;
  padding-right: 0;
}
@media (max-width: 1199.5px) {
  .oilGasSec.onboardpage .sectionInner .leftPan {
    width: 100%;
  }
}
.oilGasSec.onboardpage .sectionInner .rightPan {
  width: calc(100% - 416px);
  padding-left: 94px;
}
@media (max-width: 1199.5px) {
  .oilGasSec.onboardpage .sectionInner .rightPan {
    width: 100%;
    padding-left: 0;
    padding-top: 50px;
  }
}

.applySec .featured-title {
  margin-bottom: 80px;
}
@media (max-width: 1199.5px) {
  .applySec .featured-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 991.5px) {
  .applySec .featured-title {
    margin-bottom: 50px;
  }
}
.applySec .sectionMain {
  width: 1121px;
  max-width: 100%;
  margin: 0 auto;
}
.applySec .listItem {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #C7C7C7;
  font-size: 26px;
  font-style: normal;
  line-height: 30px;
  color: #5C5C5C;
  position: relative;
  z-index: 0;
  padding-right: 20px;
}
@media (max-width: 1199.5px) {
  .applySec .listItem {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.applySec .listItem p {
  font-weight: 500;
  font-size: 26px;
  font-style: normal;
  line-height: 30px;
}
.applySec .listItem:after {
  content: url("../images/right-arrow.svg");
  width: 9px;
  height: 14px;
  line-height: 14px;
  top: 5px;
  position: absolute;
  right: 0;
  z-index: 0;
}
.applySec .listItem em {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
}
.applySec .listItem a {
  color: #5C5C5C;
}
.applySec .listItem a:hover {
  color: #e3000f;
}
.applySec .listItem:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ======================
END OF MAIN SCSS FILE FOR ASTRO WEBSITE
====================== *//*# sourceMappingURL=style.css.map */