.innerContainer {
  overflow-x: hidden;
}
.innerMainTitle {
  color: var(--teal);
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.5rem;
}

/* Portfolio Page */
.fillterListing li {
  position: relative;
}
.fillterListing li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 2px;
  background: var(--grey);
}
.fillterListing li button,
.fillterListing li a {
  color: var(--grey);
  display: block;
}
.fillterListing li button:hover,
.portfolioListing li button.active,
.fillterListing li a:hover,
.fillterListing li a.active {
  color: #099789;
  font-weight: 600;
  text-decoration: underline;
}

.portfolioBox {
  overflow: hidden;
  display: block;
  position: relative;
  padding: 25px 25px 0 25px;
}
.portfolioBox::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M14 2.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0 0 1h4.793L2.146 13.146a.5.5 0 0 0 .708.708L13 3.707V8.5a.5.5 0 0 0 1 0v-6z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  z-index: 1;
  border-radius: 100%;
  transition: all 0.4s ease-in-out;
}

.portfolioPic {
  height: 0;
  padding-top: 80%;
  overflow: hidden;
  position: relative;
}
.portfolioPic img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
  object-position: top;
}
.portfolioBox:hover .portfolioPic img {
  transform: scale(1.1);
}

.portTxt {
  color: var(--black);
  text-transform: uppercase;
  position: relative;
  padding-top: 20px;
}
.portTxt span {
  color: rgba(0, 0, 0, 0.22);
  font-weight: 700;
}
.portTxt h5 {
  font-weight: 700;
}

.portHoverTxt {
  font-size: 0.85rem;
  padding: 0;
}
.portHoverTxt span {
  color: var(--orange);
}
.portfolioBox:hover .portHoverTxt {
  left: 0;
  opacity: 1;
}
@media (min-width: 991.99px) {
  .portfolioBox {
    padding: 35px 35px 0 0;
  }
  .portHoverTxt {
    position: absolute;
    bottom: 100%;
    left: -100%;
    width: 80%;
    opacity: 1;
    text-align: center;
    font-size: 0.85rem;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 2px 2px 55px 0px rgba(0, 0, 0, 0.4) inset;
    z-index: 1;
    transition: all 0.7s ease-in-out;
  }
  .portfolioBox::before {
    width: 70px;
    height: 70px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
  }
  .portfolioBox:hover::before {
    transform: scale(1);
  }
}

/* Service */
.serviceRow .row {
  position: relative;
}
.serviceImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serviceRow:nth-child(even) .row {
  justify-content: flex-end;
}

.serviceRow:nth-child(odd) .serviceImg {
  right: 0;
}
.serviceRow:nth-child(even) .serviceImg {
  left: 0;
}

.serviceRow .serviceText {
  color: var(--white);
}
.serviceRow .serviceText {
  padding: 50px;
  position: relative;
}
.serviceRow .serviceText h4 {
  font-weight: 800;
  text-transform: uppercase;
}
.serviceRow .serviceText p {
  font-size: 0.9rem;
}
.serviceRow .serviceText p:last-child {
  margin: 0;
}

.serviceRow:nth-child(odd) .serviceText::before {
  right: 100%;
}
.serviceRow:nth-child(even) .serviceText::before {
  left: 100%;
}

.serviceRow:nth-child(5n + 1) .container,
.serviceRow:nth-child(5n + 1) .serviceText,
.serviceRow:nth-child(5n + 1) .serviceText:before {
  background: #3c3c3c;
}
.serviceRow:nth-child(5n + 2) .container,
.serviceRow:nth-child(5n + 2) .serviceText,
.serviceRow:nth-child(5n + 2) .serviceText:before {
  background: #ef9f56;
}
.serviceRow:nth-child(5n + 3) .container,
.serviceRow:nth-child(5n + 3) .serviceText,
.serviceRow:nth-child(5n + 3) .serviceText:before {
  background: #099789;
}
.serviceRow:nth-child(5n + 4) .container,
.serviceRow:nth-child(5n + 4) .serviceText,
.serviceRow:nth-child(5n + 4) .serviceText:before {
  background: #e96852;
}
.serviceRow:nth-child(5n + 5) .container,
.serviceRow:nth-child(5n + 5) .serviceText,
.serviceRow:nth-child(5n + 5) .serviceText:before {
  background: #355059;
}

@media (min-width: 991.99px) {
  .serviceImg {
    position: absolute;
    top: -30px;
    bottom: -30px;
    padding: 0;
  }
  .serviceRow .serviceText::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100vh;
  }
}
@media (max-width: 991.99px) {
  .serviceImg {
    padding: 0;
  }
  .serviceRow .serviceText {
    padding: 30px;
  }
}

/* Insights */
.insightListingWrp li {
  transition: 0.3s ease-in-out;
}
.insightListingWrp li:hover {
  background: var(--yellow);
}

.insightListingWrp li a {
  display: block;
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid rgba(60, 60, 60, 0.4);
}
.insightListingWrp li a .insightImgBox {
  height: 0;
  position: relative;
  padding-top: 50%;
}
.insightListingWrp li a .insightImgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insightListingWrp li a span {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.75rem;
}
.insightListingWrp li a h6 {
  color: var(--mainBlack);
  text-transform: uppercase;
  font-weight: 700;
}
.insightListingWrp li a p {
  overflow: hidden; /*font-size: 0.85rem;*/
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.insightListingWrp li a p:last-child {
  margin: 0;
}
.insightArw {
  width: 60px;
  height: 60px;
  border: 1px solid var(--orange);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insightArw svg {
  fill: var(--orange);
  width: 30px;
  height: 30px;
}
.insightListingWrp li:hover .insightArw {
  background: var(--orange);
}
.insightListingWrp li:hover .insightArw svg {
  fill: var(--white);
}

@media (max-width: 575.99px) {
  .insightArw {
    width: 40px;
    height: 40px;
  }
  .insightArw svg {
    fill: var(--orange);
    width: 20px;
    height: 20px;
  }
}

/* Clientele */
.clienteleBox {
  background: rgba(248, 248, 248, 0.63);
  height: 0;
  padding-bottom: 40%;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.clienteleBox:hover {
  background: var(--white);
}
.clienteleBox img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 3/2;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.clienteleBox:hover img {
  filter: grayscale(0);
  transition: all 0.3s ease-in-out;
}

.introText p {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
}
.introText p span {
  /*color: var(--orange);*/
  font-weight: 600;
}

.testimonialBg {
  background: var(--teal);
  overflow: hidden;
}
.testimonialBg .innerMainTitle {
  color: var(--white);
}
.testimonialBg .innerMainTitle span {
  color: var(--orange);
}

.testimonialSwiper {
  overflow: visible;
}
.testimonialSwiper .swiper-slide {
  height: auto;
}

.testimonialBox {
  color: var(--white);
}
.testimonialBox h4 {
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding-left: 80px;
  min-height: 60px;
  margin-bottom: 20px;
  padding-top: 30px;
}
.testimonialBox h4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: url(../images/quote.svg) no-repeat center;
  background-size: 100%;
}
.testimonialBox p {
  font-size: 0.75rem;
  color: #e0e0e0;
}
.testimonialBox .testimonialName {
  border-top: 1px solid var(--white);
  padding-top: 50px;
  position: relative;
}

.testimonialBox .testimonialName::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 15%;
  width: 40px;
  height: 40px;
  border: 0.5px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  background: #355059;
}
.testimonialBox .testimonialName h6 {
  font-weight: 600;
}
.testimonialBox .testimonialName span {
  color: var(--orange);
  font-size: 0.9rem;
}

.testimonialPic {
  width: 80px;
  height: 0;
  padding-bottom: 100%;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}
.testimonialPic img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* News detail */
.newsTitle {
  font-weight: 600;
  color: #355059;
  font-size: 1.1rem;
}
.newsBriefContent p {
  color: #606060;
  font-size: 0.9rem;
  line-height: 30px;
}
.newsInfo li {
  font-weight: 500;
}
.newsInfo li:not(:last-child) {
  border-right: 1px solid var(--black);
}
.newsInfo svg {
  width: 18px;
  height: 18px;
  fill: var(--mainBlack);
  transition: all 0.3s ease;
}

.newsdetailPic {
  height: 0;
  padding-top: 30%;
  position: relative;
}
.newsdetailPic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.newsInfo a:hover svg {
  fill: var(--orange);
}

.exploreMoreBox {
  background: var(--yellow);
  text-align: center;
  color: #355059;
}
.exploreMoreBox h4 {
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.exploreMoreBox .orangeBtn {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

@media (max-width: 991.99px) {
  .newsBriefContent p {
    line-height: 25px;
  }
}
@media (max-width: 575.99px) {
  .newsdetailPic {
    padding-top: 50%;
  }
}

.innerTeamBox .teamPic {
  background: var(--teal);
}
.innerTeamBox p {
  line-clamp: inherit;
  -webkit-line-clamp: inherit;
}

/* Contact */
.contactWrp {
  position: relative;
  background: var(--teal);
  z-index: 1;
}
.contactDetails h4 {
  font-weight: 600;
  text-transform: capitalize;
}
.contactListing li {
  margin-bottom: 25px;
  font-size: 1.2rem;
}
.contactListing li span {
  color: var(--yellow);
  font-weight: 500;
}
@media (min-width: 991.99px) {
  .contactWrp::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: var(--white);
    z-index: -1;
  }
}

.vmpBox {
  background: url(../images/mvpBg.html) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.vmpBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(53, 80, 89, 0.93);
  z-index: -1;
}
.vmpBox .nav li {
  margin-bottom: 20px;
}
.vmpBox .nav li button {
  background: rgb(255 255 255 / 14%);
  color: #839398;
  display: block;
  font-weight: 700;
  padding: 20px;
  width: 100%;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  height: 100%;
}
.vmpBox .nav li button.active {
  color: var(--white);
}
.vmpBox .nav li button::before {
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: #ef9f56;
  transition: all 0.3s ease-in-out;
}
.vmpBox .nav li button.active::before {
  transform: scaleX(1);
}
.vmpImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vmpBox .tab-content h3 {
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff;
}

@media (min-width: 991.99px) {
  .vmpImg {
    position: absolute;
    top: -100px;
    bottom: -100px;
    right: -100px;
    width: 450px;
    border-radius: 100%;
    overflow: hidden; /*clip-path: circle(50% at 100% 50%);*/
  }
}

@media (max-width: 1520.99px) {
  .vmpImg {
    width: 380px;
  }
}
@media (max-width: 991.99px) {
  .vmpImg {
    width: 100%;
    height: 0;
    padding-bottom: 56.56%;
    position: relative;
    margin-bottom: 20px;
  }
  .vmpImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.newsItem {
  position: relative;
}
.newsItem * {
  transition: all 0.4s ease;
}
.newsImgBox {
  width: 100%;
  padding-bottom: 56.56%;
  position: relative;
  background: #1c1c1c;
}
.newsImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  filter: grayscale(0);
}
.newsHead {
  background: #fff;
  padding: 1rem;
  margin: 0 2rem; /*position:absolute;bottom:0;left:0;right:0;*/
  font-size: 0.85rem;
  line-height: 1.3;
  text-align: center;
  color: var(--darkColor);
}
.newsLink {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.newsLink .ctaLink {
  top: 50px;
  transform: scale(0);
}

/* .newsItem:hover .newsHead {background:#666;color:#fff}
.newsItem:hover .newsImg {opacity:.1;filter:grayscale(50%)}
.newsItem:hover .newsLink {opacity:1}
.newsLink:hover .ctaLink {top:0;transform:scale(1)} */

@media (max-width: 1199.98px) {
  .newsSwiper {
    overflow: visible;
  }
}
@media (max-width: 575.98px) {
  .newsHead {
    font-size: 1rem;
    margin: 0 1rem;
  }
}

.presenceBg {
  background: var(--white);
}
.presenceTxt ul {
  margin-top: 40px;
}
.presenceTxt ul li {
  color: var(--white);
  padding: 20px;
  font-size: 1.2rem;
}
.presenceTxt ul li span {
  font-weight: 600;
  font-size: 1.5rem;
}

.presenceTxt ul li:nth-child(1) {
  background: #08877ad0;
}
.presenceTxt ul li:nth-child(2) {
  background: #067c7096;
}
.presenceTxt ul li:nth-child(3) {
  background: #06726770;
}

.mapBox img {
  max-width: 600px;
  width: 100%;
  display: table;
  margin: 0 auto;
}

.jobsWrap {
  min-height: 430px;
  overflow-x: hidden !important;
  position: relative;
}
.jobCatagory li .jobCatLabel {
  padding: 0.3rem 1rem;
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #999;
  background: unset;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.jobCatagory li .btn-check:checked + .jobCatLabel {
  color: var(--darkColor);
  font-weight: 600;
}

.jobListing {
  width: 100%;
}
.jobListing > .jobItem {
  border: 1px solid #666;
  padding: 1rem;
  transition: all 0.3s ease;
}
.jobListing > .jobItem:hover {
  background: #f6f6f6;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.jobListing > .jobItem + .jobItem {
  margin-top: 1rem;
}
.jobInfo li {
  display: inline-block;
  padding-right: 1rem;
  border-right: 1px solid #333;
  margin-right: 1rem;
  line-height: 1.1;
  position: relative;
}
.jobInfo li:last-child {
  padding-right: 0;
  border: 0;
  margin: 0;
}
.jobHead {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.jobItem:hover .ctaLink:before {
  background: var(--darkColor);
  right: 0;
  width: 100%;
  clip-path: unset;
  border-radius: 0;
}

.jobItem .ctaLink {
  color: var(--orange);
}

@media (max-width: 991.98px) {
  .jobCatagory {
    padding-bottom: 5px;
    overflow: auto;
    width: 100%;
  }
  .jobCatagory li {
    display: inline-block;
    margin: 0 1rem 0 0;
  }
  .jobCatagory li .jobCatLabel {
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 50rem;
  }
  .jobCatagory li .btn-check:checked + .jobCatLabel {
    background: #eee;
  }
}

@media (min-width: 992px) {
  .jobCatagory {
    width: 300px;
    height: 100%;
    max-height: 430px;
    border-left: 1px solid #333;
  }
  .jobCatagory li {
    display: block;
  }
  .jobListing {
    max-height: 435px;
    overflow: auto;
    padding-right: 1rem;
  }
  .jobListing > .jobItem {
    padding: 1rem 2rem;
  }
}

.owcWrap {
  position: relative;
}
.owcItem {
  transition: all 1s ease;
  padding: 0;
  margin-bottom: 1.5rem;
  position: relative;
}
.owcItem:hover {
  flex: 3;
}

.owcBox {
  width: 100%;
  height: 400px;
  position: relative;
  background: #333;
  overflow: hidden;
}
.owcImg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.owcBox:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.owcDetails {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  z-index: 3;
  padding-bottom: 1rem;
}
.owcDetails > div {
  padding: 0.5rem 1rem;
}
.owcHead {
  font-size: 1.3rem;
  white-space: nowrap;
  font-weight: 600;
}
.owcText {
  line-height: 1.4;
}
.owcText span {
  transition: all 0.5s ease;
  display: block;
}

@media (min-width: 992px) {
  .owcItem {
    padding: 30px 0.75rem 0;
    margin-bottom: 0;
    border-top: 1px solid #fff;
  }
  .owcItem:after,
  .owcWrap:before {
    content: "";
    width: 9px;
    height: 9px;
    display: block;
    position: absolute;
    right: -5px;
    top: -5px;
    background-color: #fff;
    border-radius: 50%;
  }
  .owcWrap:before {
    right: unset;
    left: -5px;
  }
  .owcDetails {
    display: flex;
    flex-wrap: nowrap;
    align-items: end;
    padding-bottom: 0;
  }
  .owcText span {
    opacity: 0;
  }
  .owcBox:hover .owcText span {
    opacity: 1;
    transition-delay: 1s;
  }
  .owcDetails > div {
    padding: 1rem;
  }
}

.jobDetailsWrap {
  width: 100%;
  position: relative;
}
.jobDetailsWrap .btn-close {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  background-color: #ccc;
  color: #fff;
}

.jdTitle {
  font-size: 1.2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}
.jdSectHead {
  font-size: 1rem;
  color: var(--orange);
}
.jdSection ul li {
  list-style: decimal;
  margin: 0 0 0.7rem 1rem;
}
.jdSection ul li::marker {
  font-weight: 600;
  color: var(--darkColor);
}
.text-white ul li::marker {
  color: #fff;
}

.custom-file {
  width: 100%;
  position: relative;
}
.custom-file .custom-file-input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.custom-file .custom-file-label {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
  padding: 1rem 0.75rem;
  cursor: pointer;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23666' stroke='%23fff' stroke-width='.3px' viewBox='0 0 16 16'><path d='M8.5 11.5a.5.5 0 0 1-1 0V7.707L6.354 8.854a.5.5 0 1 1-.708-.708l2-2a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 7.707V11.5z'/><path d='M14 14V4.5L9.5 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2zM9.5 3A1.5 1.5 0 0 0 11 4.5h2V14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h5.5v2z'/></svg>")
    no-repeat 99% center;
  background-size: auto 50%;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #939598;
  box-shadow: none;
}

.jobmainBox {
  overflow: hidden;
}
