@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  position: relative;
  background-color: #ffffff;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #000000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  border: 1px solid #ccc;
  padding: 1rem 0.625rem;
  background-color: #fff;
  background-image: url("../images/arpw-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.625rem;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.sky-blue-btn {
  color: #FFF;
  font-family: "Roboto Slab";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.625rem 1.25rem;
  background: var(--Color-4, #48B2CF);
  display: table;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: none;
}
.sky-blue-btn:hover {
  background: var(--Color-9, #17192E);
  color: #FFF;
}

.dark-blue-btn {
  color: #FFF;
  font-family: "Roboto Slab";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.625rem 1.25rem;
  background: var(--Color-9, #17192E);
  display: table;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: none;
}
.dark-blue-btn:hover {
  color: #FFF;
}

h2 {
  color: var(--Color-9, #17192E);
  font-family: "Roboto Slab";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem;
  margin: 0;
}

p {
  color: var(--Body-Text, #4D6D82);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  margin: 0;
}

header {
  background: #FFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  height: auto;
  z-index: 99;
}
header button {
  display: none;
}
header .header-content-wraper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
header .header-content-wraper .logo-wraper {
  display: table;
}
header .header-content-wraper .logo-wraper a {
  display: table;
}
header .header-content-wraper .logo-wraper a img {
  width: 15.25rem;
  height: 3.9375rem;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-content-wraper .flex-wraper {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 992px) {
  header .header-content-wraper .flex-wraper .menu-wraper {
    display: table;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li {
    color: var(--Color-7, #000);
    font-family: "Roboto Slab";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li:last-child::before {
    display: none;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li.active::after {
    width: 100%;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li:hover::after {
    width: 100%;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li:hover ul.sub-menu {
    max-height: 31.25rem;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li::after {
    content: "";
    width: 0%;
    height: 0.25rem;
    background-color: #48B2CF;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    transition: all 0.5s ease-in-out;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li::before {
    content: "";
    width: 0.0625rem;
    height: 1.5rem;
    background: #DDD;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -0.5rem;
    margin: auto;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li:has(.sub-menu) > a {
    padding-right: 2.75rem;
    background-image: url(../images/arow-down.svg);
    background-repeat: no-repeat;
    background-position: right 0.62rem center;
    background-size: 1.5rem;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li a {
    color: var(--Color-7, #000);
    padding: 2.47rem 0.62rem;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li ul.sub-menu {
    position: absolute;
    top: 105%;
    left: 0;
    width: 12.5rem;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border-radius: 0.3125rem;
    transition: all 0.3s ease-in-out;
    z-index: 999999;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li ul.sub-menu li {
    color: var(--Color-6, #3D3D3D);
    font-family: "Open Sans";
    font-size: 0.875rem;
    padding: 0 1rem;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li ul.sub-menu li a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid #DADADA;
  }
  header .header-content-wraper .flex-wraper .menu-wraper ul.main-menu li ul.sub-menu li::after {
    display: none;
  }
}
header .header-content-wraper .flex-wraper .btn-wraper {
  display: table;
}

footer {
  padding-top: 3.75rem;
}
footer a.logo {
  display: table;
  margin-bottom: 0.97rem;
}
footer a.logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer h5 {
  color: var(--Color-9, #17192E);
  font-family: "Roboto Slab";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2rem;
  letter-spacing: 0.0375rem;
  margin-bottom: 1rem;
}
footer ul.location {
  margin-bottom: 0.97rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.25rem;
}
footer ul.location li {
  color: var(--Color-9, #17192E);
  text-align: center;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding: 0.62rem 0;
  padding-left: 1rem;
}
footer ul.location li::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #48B2CF;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
footer ul.social-icon li {
  display: table;
}
footer ul.social-icon li a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
footer ul.social-icon li a img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}
footer ul.social-icon li a span {
  color: var(--Color-9, #17192E);
  text-align: center;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.62rem 0;
}
footer ul.link li {
  color: var(--Color-9, #17192E);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer ul.link li:first-child {
  font-family: "Roboto Slab";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2rem;
  letter-spacing: 0.0375rem;
  margin-bottom: 0.8rem;
}
footer ul.link li:first-child a {
  padding: 0;
}
footer ul.link li a {
  color: var(--Color-9, #17192E);
  padding: 0.625rem 0;
  display: block;
}
footer a.sky-blue-btn {
  width: 100%;
  margin-top: 10.8rem;
}
footer .bottom-box {
  width: 100%;
  padding-top: 1.88rem;
  padding-bottom: 1rem;
  border-top: 1px solid #3D3D3D;
  position: relative;
  margin-top: 1.5rem;
}
footer .bottom-box h6 {
  color: var(--Color-6, #3D3D3D);
  text-align: center;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
footer .bottom-box a.scroll-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: 0.5rem;
  right: 0;
  max-width: -moz-max-content;
  max-width: max-content;
}
footer .bottom-box a.scroll-btn figure {
  border-radius: 0.25rem;
  background: var(--Color-4, #48B2CF);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
footer .bottom-box a.scroll-btn img {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .bottom-box a.scroll-btn span {
  color: var(--Color-9, #17192E);
  font-family: "Roboto Slab";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section.home-banner {
  position: relative;
  overflow: hidden;
}
section.home-banner .top_part {
  width: 100%;
  height: 100%;
  background-color: #000220;
  z-index: 9;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.home-banner .top_part img {
  max-width: 900px;
}
section.home-banner .video-wraper {
  width: 100%;
  height: 56.25rem;
}
section.home-banner .video-wraper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-banner .content-wraper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 7.56rem;
}
section.home-banner .content-wraper h6 {
  color: var(--Color-4, #48B2CF);
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5rem;
}
section.home-banner .content-wraper h1 {
  max-width: 50.875rem;
  color: #FFF;
  font-family: "Roboto Slab";
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.875rem;
  /* 124% */
  padding-bottom: 3rem;
  border-bottom: 1px solid #48B2CF;
  margin-bottom: 3rem;
}
section.home-banner .content-wraper a.scroll-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: -moz-max-content;
  max-width: max-content;
}
section.home-banner .content-wraper a.scroll-btn figure {
  border-radius: 0.25rem;
  background: var(--Color-4, #48B2CF);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
section.home-banner .content-wraper a.scroll-btn img {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
section.home-banner .content-wraper a.scroll-btn span {
  color: var(--Color-5, #F3F6F8);
  font-family: "Roboto Slab";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.home-banner .content-wraper a.playBtn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #48B2CF;
  color: #fff;
  font-size: 1.4rem;
  position: absolute;
  bottom: 4rem;
  right: 4rem;
}
section.home-banner .content-wraper .btn_btms {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

section.home-sec2 {
  position: relative;
  overflow: hidden;
  padding: 6.12rem 0 6.19rem;
  z-index: 0;
  scroll-margin-top: 6.2rem;
}
section.home-sec2::before {
  content: "";
  width: 50%;
  height: 100%;
  background-color: #17192E;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.home-sec2 .text-wraper {
  border-left: 2px solid #48B2CF;
  padding: 0 2.5rem;
  max-width: 35.1875rem;
}
section.home-sec2 .text-wraper h2 {
  margin-bottom: 1.5rem;
  color: var(--Color-8, #FFF);
}
section.home-sec2 .text-wraper p {
  color: var(--Color-8, #FFF);
}
section.home-sec2 .counter-box {
  padding-left: 3.5rem;
}
section.home-sec2 .counter-box h2 {
  margin-bottom: 3.5rem;
  text-align: center;
}
section.home-sec2 .counter-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 0;
  position: relative;
}
section.home-sec2 .counter-box ul::after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  background-color: #9F9F9F;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
section.home-sec2 .counter-box ul li {
  padding: 0.59rem 0.94rem 0.59rem 0;
}
section.home-sec2 .counter-box ul li:nth-child(odd) {
  border-right: 1px solid #9F9F9F;
  padding: 0.59rem 0.94rem 0.59rem 0;
}
section.home-sec2 .counter-box ul li:nth-child(even) {
  border: none;
  padding: 0.59rem 0 0.59rem 0.94rem;
}
section.home-sec2 .counter-box ul li h5 {
  color: var(--Color-4, #48B2CF);
  text-align: center;
  font-family: "Roboto Slab";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
section.home-sec2 .counter-box ul li h6 {
  color: var(--Heading-Text, #0B2D36);
  text-align: center;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

section.home-sec3 .container,
section.home-sec3 .row {
  height: 100%;
}
section.home-sec3 .content-row {
  position: relative;
  overflow: hidden;
}
section.home-sec3 .content-row:nth-child(even) img.side-img {
  margin-left: unset;
  margin-right: auto;
}
section.home-sec3 .content-row:nth-child(even) .row {
  justify-content: flex-end;
}
section.home-sec3 .content-row:nth-child(even) .row .text-wraper {
  border-left: unset;
  border-right: 2px solid var(--Color-4, #48B2CF);
}
section.home-sec3 .content-row img.side-img {
  width: 50%;
  height: 37rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
  display: block;
}
section.home-sec3 .content-row .content-wraper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 1.88rem 0;
}
section.home-sec3 .content-row .content-wraper .text-wraper {
  width: 100%;
  height: 100%;
  padding: 0 1.25rem;
  border-left: 2px solid var(--Color-4, #48B2CF);
  background: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.home-sec3 .content-row .content-wraper .text-wraper h2 {
  margin-bottom: 1.5rem;
}
section.home-sec3 .content-row .content-wraper .text-wraper p {
  margin-bottom: 3rem;
}
section.home-sec3 .content-row .content-wraper .text-wraper p.mb-24 {
  margin-bottom: 1.5rem;
}
section.home-sec3 .content-row .content-wraper .text-wraper .btn-wraper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

section.home-sec4 {
  padding: 5.75rem 0;
  background: linear-gradient(0deg, var(--Color-9, #17192E) 0%, var(--Color-9, #17192E) 100%);
}
section.home-sec4 .text-eraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.88rem;
  padding-bottom: 1.88rem;
  border-bottom: 1px solid #464B84;
  margin-bottom: 1.88rem;
}
section.home-sec4 .text-eraper h2 {
  color: var(--Color-8, #FFF);
  text-align: center;
  max-width: 26.125rem;
  width: 100%;
}
section.home-sec4 .text-eraper p {
  color: var(--Color-8, #FFF);
}
section.home-sec4 .text-eraper p span {
  font-weight: 700;
}
section.home-sec4 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.7rem;
}
section.home-sec4 ul li img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

section.about-inner {
  padding-top: 6.25rem;
}
section.about-inner img.inner-img {
  width: 100%;
  height: 23.3125rem;
  -o-object-fit: cover;
     object-fit: cover;
}

section.about-sec1 {
  padding: 8.2188rem 0 10.2813rem;
  background: var(--Color-9, #17192E);
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-top: 2.7rem;
}
section.about-sec1 img.img-bg {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
section.about-sec1 .text-wraper {
  padding: 0 2.5rem 0 2.2rem;
  border-left: 2px solid var(--Color-4, #48B2CF);
}
section.about-sec1 .text-wraper2 {
  padding-left: 2.2rem;
}
section.about-sec1 h2 {
  color: var(--Color-8, #FFF);
  margin-bottom: 0.7rem;
}
section.about-sec1 p {
  color: var(--Color-8, #FFF);
  margin-bottom: 1rem;
}
section.about-sec1 p + p {
  margin: 0;
}
section.about-sec1 h4 {
  max-width: 12.5395rem;
  color: #FFF;
  font-family: "Roboto Slab";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1.18rem;
}
section.about-sec1 span {
  color: var(--Color-5, #F3F6F8);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
  display: block;
  margin-bottom: 1.52rem;
}
section.about-sec1 h6 {
  max-width: 12.6408rem;
  color: var(--Color-8, #FFF);
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

section.about-sec2 {
  padding: 6.25rem 0;
}
section.about-sec2 h2 {
  text-align: center;
  margin-bottom: 3rem;
}
section.about-sec2 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.88rem;
}
section.about-sec2 ul li {
  color: var(--Color-6, #3D3D3D);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 2.5rem;
  background-image: url(../images/li-arow.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.5rem 1.5rem;
}

section.about-sec3 {
  padding: 2.7rem 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #17192E;
}
section.about-sec3::after {
  content: "";
  background: linear-gradient(0deg, rgba(23, 25, 46, 0.86) 0%, rgba(23, 25, 46, 0.86) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.about-sec3 h2 {
  color: var(--Color-8, #FFF);
  text-align: center;
  margin-bottom: 2rem;
}
section.about-sec3 ul {
  padding: 2.06rem 3.37rem 0 3.37rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
section.about-sec3 ul::after {
  content: "";
  width: 0.0625rem;
  height: 100%;
  background: #9A9A9A;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
section.about-sec3 ul::before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  background: #9A9A9A;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
section.about-sec3 ul li span {
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  background: rgba(243, 246, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
section.about-sec3 ul li span img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.about-sec3 ul li h4 {
  color: var(--Color-8, #FFF);
  text-align: center;
  font-family: "Roboto Slab";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 1rem auto;
  max-width: 18rem;
}
section.about-sec3 ul li p {
  color: var(--Color-5, #F3F6F8);
  text-align: center;
  line-height: normal;
}
section.about-sec3 ul li:nth-child(1) {
  padding: 0 5.06rem 3.44rem 0;
}
section.about-sec3 ul li:nth-child(2) {
  padding: 0 0 3.44rem 4.06rem;
}
section.about-sec3 ul li:nth-child(3) {
  padding: 4.81rem 4.56rem 0 0;
}
section.about-sec3 ul li:nth-child(4) {
  padding: 4.81rem 0 0 4.56rem;
}

section.inr-bnr {
  position: relative;
  overflow: hidden;
}
section.inr-bnr img.bg-img {
  width: 100%;
  height: 37.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.inr-bnr .content-wraper {
  padding-top: 6.25rem;
  padding-bottom: 3.69rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
section.inr-bnr .content-wraper h1 {
  color: #FFF;
  font-family: "Roboto Slab";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.875rem;
  /* 172.222% */
  margin-bottom: 0.6rem;
}
section.inr-bnr .content-wraper p {
  color: var(--Color-5, #F3F6F8);
  line-height: normal;
  margin-bottom: 3rem;
}
section.inr-bnr .content-wraper h6 {
  color: var(--Color-4, #48B2CF);
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 3.6rem;
  position: relative;
}
section.inr-bnr .content-wraper h6::before {
  content: "";
  width: 1000%;
  height: 0.125rem;
  background: var(--Color-4, #48B2CF);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1002%;
  margin: auto;
}
section.inr-bnr .content-wraper a.scroll-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: -moz-max-content;
  max-width: max-content;
}
section.inr-bnr .content-wraper a.scroll-btn figure {
  margin: 0;
  border-radius: 0.25rem;
  background: var(--Color-4, #48B2CF);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.inr-bnr .content-wraper a.scroll-btn figure img {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
section.inr-bnr .content-wraper a.scroll-btn span {
  color: var(--Color-5, #F3F6F8);
  font-family: "Roboto Slab";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section.capital-solutions-sec1 {
  padding-top: 3.75rem;
}
section.capital-solutions-sec1 h2 {
  margin-bottom: 2.2rem;
  text-align: center;
}
section.capital-solutions-sec1 .capital-solutions-ber {
  padding: 3rem 2.5rem;
  background: var(--Color-9, #17192E);
  display: grid;
  grid-template-columns: 53% auto;
  gap: 1.88rem;
  min-height: 25rem;
}
section.capital-solutions-sec1 .capital-solutions-ber:nth-child(even) {
  background-color: #fff;
}
section.capital-solutions-sec1 .capital-solutions-ber:nth-child(even) .left-content-wraper h3 {
  color: var(--Color-9, #17192E);
  border-top: 0.125rem solid #48B2CF;
}
section.capital-solutions-sec1 .capital-solutions-ber:nth-child(even) .right-content-wraper p {
  color: #4D6D82;
}
section.capital-solutions-sec1 .capital-solutions-ber:nth-child(even) .right-content-wraper ul li {
  color: #3D3D3D;
  background-image: url(../images/li-arow.png);
}
section.capital-solutions-sec1 .capital-solutions-ber .left-content-wraper h3 {
  color: var(--Color-8, #FFF);
  font-family: "Roboto Slab";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem;
  /* 185.714% */
  text-transform: capitalize;
  margin: 0;
  padding-top: 0.88rem;
  border-top: 0.125rem solid #FFF;
}
section.capital-solutions-sec1 .capital-solutions-ber .right-content-wraper p {
  color: var(--Color-8, #FFF);
  margin-bottom: 1.5rem;
}
section.capital-solutions-sec1 .capital-solutions-ber .right-content-wraper ul {
  display: grid;
  grid-template-columns: 13.3rem auto;
  gap: 1.5rem;
}
section.capital-solutions-sec1 .capital-solutions-ber .right-content-wraper ul li {
  color: var(--Color-8, #FFF);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 2.5rem;
  background-image: url(../images/li-arow2.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.5rem 1.5rem;
}

section.buy-side-advisory-services-sec1 {
  padding: 3.75rem 0;
}
section.buy-side-advisory-services-sec1 .sky-blue-box {
  width: 100%;
  padding: 1.25rem 2.5rem;
  background: var(--Color-4, #48B2CF);
  margin-bottom: 1.88rem;
}
section.buy-side-advisory-services-sec1 .sky-blue-box img.quote {
  width: 3rem;
  height: 3rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-bottom: 0.75rem;
}
section.buy-side-advisory-services-sec1 .sky-blue-box p {
  color: var(--Color-8, #FFF);
}
section.buy-side-advisory-services-sec1 .sky-blue-box h6 {
  color: var(--Color-8, #FFF);
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.625rem;
  /* 130% */
  margin: 0.55rem 0 0.25rem;
}
section.buy-side-advisory-services-sec1 .img-box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
section.buy-side-advisory-services-sec1 .img-box img.bg-img {
  width: 100%;
  height: 16.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.buy-side-advisory-services-sec1 .img-box ul {
  padding: 1.25rem 2.5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.buy-side-advisory-services-sec1 .img-box ul li {
  margin-bottom: 0.6rem;
}
section.buy-side-advisory-services-sec1 .img-box ul li:last-child {
  margin: 0;
}
section.buy-side-advisory-services-sec1 .img-box ul li strong {
  color: var(--Color-8, #FFF);
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem;
  /* 144.444% */
  display: block;
  margin-bottom: 0.05rem;
}
section.buy-side-advisory-services-sec1 .img-box ul li span {
  color: var(--Color-8, #FFF);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  display: block;
  position: relative;
  padding-left: 0.75rem;
}
section.buy-side-advisory-services-sec1 .img-box ul li span::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
section.buy-side-advisory-services-sec1 .right-box-wraper {
  padding-left: 2.7rem;
}
section.buy-side-advisory-services-sec1 .right-box-wraper .box h3 {
  color: var(--Color-7, #000);
  text-align: center;
  font-family: "Roboto Slab";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem;
  /* 185.714% */
  text-transform: capitalize;
  margin-bottom: 0.4rem;
}
section.buy-side-advisory-services-sec1 .right-box-wraper .box p {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #48B2CF;
}
section.buy-side-advisory-services-sec1 .right-box-wraper .box:last-child p {
  padding: 0;
  margin: 0;
  border: none;
}
section.buy-side-advisory-services-sec1 .bottom-content-wraper {
  margin-top: 3.31rem;
  padding: 0 1.25rem;
  border-left: 2px solid var(--Color-4, #48B2CF);
}
section.buy-side-advisory-services-sec1 .bottom-content-wraper h2 {
  margin-bottom: 0.5rem;
}
section.buy-side-advisory-services-sec1 .bottom-content-wraper p {
  margin-bottom: 2.25rem;
}

section.buy-side-advisory-services-sec2 {
  padding-top: 4rem;
  background: var(--Color-9, #17192E);
  min-height: 45rem;
}
section.buy-side-advisory-services-sec2 h2 {
  color: var(--Color-8, #FFF);
  text-align: center;
  margin-bottom: 0.8rem;
}
section.buy-side-advisory-services-sec2 .timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 1.875rem;
  position: relative;
  padding-top: 2.1875rem;
}
section.buy-side-advisory-services-sec2 .timeline.another-timeline {
  grid-template-columns: repeat(5, 1fr);
}
section.buy-side-advisory-services-sec2 .timeline::before {
  content: "";
  position: absolute;
  top: 53.7%;
  left: 0;
  right: 0;
  height: 0.25rem;
  background: url(../images/main-line.png) no-repeat center/cover;
  z-index: 0;
  transform: translateY(-50%);
}
section.buy-side-advisory-services-sec2 .timeline li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 2.6875rem;
  position: relative;
  padding: 0 0.5625rem;
  /* alternate positioning */
}
section.buy-side-advisory-services-sec2 .timeline li:after {
  content: "";
  width: 0.25rem;
  background-image: url(../images/line2.png);
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
  bottom: 0;
  top: 0;
}
section.buy-side-advisory-services-sec2 .timeline li:nth-child(odd) {
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  position: relative;
  bottom: -25px;
}
section.buy-side-advisory-services-sec2 .timeline li:nth-child(even) {
  grid-row: 2;
  position: relative;
  top: -25px;
}
section.buy-side-advisory-services-sec2 .timeline li:nth-child(1) {
  grid-area: 1/1/2/2;
}
section.buy-side-advisory-services-sec2 .timeline li:nth-child(2) {
  grid-area: 2/2/3/3;
}
section.buy-side-advisory-services-sec2 .timeline li:nth-child(3) {
  grid-area: 1/3/2/4;
}
section.buy-side-advisory-services-sec2 .timeline li:nth-child(4) {
  grid-area: 2/4/3/5;
}
section.buy-side-advisory-services-sec2 .timeline li:nth-child(5) {
  grid-area: 1/5/2/6;
}
section.buy-side-advisory-services-sec2 .timeline li:nth-child(6) {
  grid-area: 2/6/3/7;
}
section.buy-side-advisory-services-sec2 .timeline li span {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #48b2cf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  z-index: 2;
}
section.buy-side-advisory-services-sec2 .timeline li span img {
  width: 1.5rem;
  height: 1.5rem;
}
section.buy-side-advisory-services-sec2 .timeline li p {
  font-size: 1rem;
  color: #fff;
  background: var(--Color-9, #17192e);
  position: relative;
  z-index: 2;
}
section.buy-side-advisory-services-sec2 .timeline li p strong {
  display: block;
  margin-bottom: 0.5rem;
}

section.sell-side-advisory-services-sec1 {
  margin: 3.75rem 0 0;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
section.sell-side-advisory-services-sec1::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--Color-9, #17192E);
  z-index: -1;
}
section.sell-side-advisory-services-sec1 h2.right-heading {
  text-align: center;
  margin-bottom: 2.6rem;
}
section.sell-side-advisory-services-sec1 .left-box-wrapre {
  padding: 9.94rem 5.88rem 9.81rem 0;
}
section.sell-side-advisory-services-sec1 .left-box-wrapre .text-wraper {
  padding: 0 0.9rem 0 2.5rem;
  border-left: 2px solid var(--Color-4, #48B2CF);
}
section.sell-side-advisory-services-sec1 .left-box-wrapre .text-wraper h2 {
  margin-bottom: 1.5rem;
  color: var(--Color-8, #FFF);
}
section.sell-side-advisory-services-sec1 .left-box-wrapre .text-wraper p {
  color: var(--Color-8, #FFF);
  margin-bottom: 1.2rem;
}
section.sell-side-advisory-services-sec1 .left-box-wrapre .text-wraper p + p {
  margin: 0;
}

section.sell-side-advisory-services-sec2 {
  padding: 3.25rem 0;
}
section.sell-side-advisory-services-sec2 h3 {
  color: var(--Heading-Text, #0B2D36);
  text-align: center;
  font-family: "Roboto Slab";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem;
  /* 185.714% */
  text-transform: capitalize;
  margin-bottom: 0.9rem;
}
section.sell-side-advisory-services-sec2 p {
  margin-bottom: 2.38rem;
}
section.sell-side-advisory-services-sec2 ul.accordian {
  min-height: 20rem;
}

ul.accordian li {
  border-radius: 0.25rem;
  border-top: 1px solid #D2D2D2;
  border-bottom: 1px solid #D2D2D2;
  background: #FFF;
  padding: 1.25rem;
  overflow: hidden;
  position: relative;
}
ul.accordian li::after {
  content: "";
  width: 0.25rem;
  height: 3.9375rem;
  background-color: #48B2CF;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
ul.accordian li.active {
  background-color: #17192e;
}
ul.accordian li.active::after {
  opacity: 1;
}
ul.accordian li.active h5 {
  color: #fff;
}
ul.accordian li.active h5::after {
  transform: rotate(45deg);
  filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(0%) hue-rotate(168deg) brightness(106%) contrast(100%);
}
ul.accordian li.active .content p {
  color: #fff;
}
ul.accordian li h5 {
  color: #000;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  position: relative;
  padding-right: 2rem;
  cursor: pointer;
}
ul.accordian li h5::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}
ul.accordian li .content {
  display: none;
  border-top: 1px solid #E9E9E9;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}
ul.accordian li .content ul li {
  border: none;
  border-radius: unset;
  padding: 0;
  color: #fff;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  padding-left: 1.6rem;
  margin-bottom: 0.2rem;
  position: relative;
  background-color: transparent;
}
ul.accordian li .content ul li::before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0.7rem;
  left: 0.6rem;
  margin: auto;
}
ul.accordian li .content ul li:last-child {
  margin: 0;
}

section.valuation-strategic-option-services-sec1 {
  padding: 3.75rem 0 3.37rem;
}
section.valuation-strategic-option-services-sec1 h2 {
  margin-bottom: 2.2rem;
  text-align: center;
}
section.valuation-strategic-option-services-sec1 .full-wraper {
  position: relative;
  overflow: hidden;
}
section.valuation-strategic-option-services-sec1 img.side-img {
  width: 50%;
  height: 39.3125rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-left: auto;
}
section.valuation-strategic-option-services-sec1 .content-wraper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
section.valuation-strategic-option-services-sec1 .content-wraper .texr-wraper {
  padding: 1.25rem;
  border-left: 2px solid var(--Color-4, #48B2CF);
  background: #FFF;
  min-height: 23.375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.valuation-strategic-option-services-sec1 .content-wraper .texr-wraper h3 {
  color: var(--Color-9, #17192E);
  font-family: "Roboto Slab";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem;
  /* 144.444% */
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}
section.valuation-strategic-option-services-sec1 .content-wraper .texr-wraper p.mb-48 {
  margin-bottom: 3rem;
}

section.valuation-strategic-option-services-sec2 {
  padding-bottom: 3rem;
}
section.valuation-strategic-option-services-sec2 h4 {
  color: var(--Color-9, #17192E);
  text-align: center;
  font-family: "Open Sans";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2.6rem;
}
section.valuation-strategic-option-services-sec2 .blue-box {
  background: var(--Color-9, #17192E);
  padding: 1.6rem 3.75rem 2rem;
  height: 100%;
}
section.valuation-strategic-option-services-sec2 .blue-box h4 {
  color: var(--Color-8, #FFF);
  text-align: center;
  font-family: "Roboto Slab";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem;
  /* 216.667% */
  text-transform: capitalize;
  margin-bottom: 0.9rem;
}
section.valuation-strategic-option-services-sec2 .blue-box ul li {
  color: var(--Color-8, #FFF);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  position: relative;
  padding-left: 1rem;
}
section.valuation-strategic-option-services-sec2 .blue-box ul li::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

section.valuation-strategic-option-services-sec3 {
  padding: 3.75rem 0;
  background: var(--Color-9, #17192E);
}
section.valuation-strategic-option-services-sec3 h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 1.02rem;
}
section.valuation-strategic-option-services-sec3 .wraper {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #3D4058;
}
section.valuation-strategic-option-services-sec3 .wraper:last-child {
  padding: 0;
  margin: 0;
  border: none;
}
section.valuation-strategic-option-services-sec3 .wraper:last-child h4 + p {
  margin-bottom: 1.2rem;
}
section.valuation-strategic-option-services-sec3 .wraper h4 {
  color: var(--Color-8, #FFF);
  font-family: "Roboto Slab";
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem;
  /* 185.714% */
  text-transform: capitalize;
  margin-bottom: 0.8rem;
}
section.valuation-strategic-option-services-sec3 .wraper p {
  color: var(--Color-8, #FFF);
}

section.adom-capital-sec2 {
  padding: 4rem 0;
  background: var(--Color-9, #17192E);
}
section.adom-capital-sec2 h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 1.9rem;
}
section.adom-capital-sec2 .grid-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
section.adom-capital-sec2 .sky-bllue-box {
  background: var(--Color-4, #48B2CF);
  padding: 0.7rem 1.25rem;
  height: 100%;
}
section.adom-capital-sec2 .sky-bllue-box h5 {
  color: var(--Color-8, #FFF);
  text-align: center;
  font-family: "Open Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem;
  /* 130% */
  margin-bottom: 0.7rem;
}
section.adom-capital-sec2 .sky-bllue-box ul li {
  color: var(--Color-8, #FFF);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.525rem;
  margin-bottom: 0.1rem;
  padding-left: 1.5rem;
  position: relative;
}
section.adom-capital-sec2 .sky-bllue-box ul li::after {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  background-color: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 0.7rem;
  left: 0.5rem;
}

section.corporate-strategy-sec1 {
  padding-top: 3.75rem;
}
section.corporate-strategy-sec1 .full-wraper {
  position: relative;
  overflow: hidden;
}
section.corporate-strategy-sec1 img.side-img {
  width: 50%;
  height: 39.3125rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-right: auto;
}
section.corporate-strategy-sec1 .content-wraper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
section.corporate-strategy-sec1 .content-wraper .texr-wraper {
  padding: 1.25rem;
  border-right: 2px solid var(--Color-4, #48B2CF);
  background: #FFF;
  min-height: 23.375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 32.5rem;
}
section.corporate-strategy-sec1 .content-wraper .texr-wraper h3 {
  color: var(--Color-9, #17192E);
  font-family: "Roboto Slab";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem;
  /* 144.444% */
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  text-align: center;
}
section.corporate-strategy-sec1 .content-wraper .texr-wraper p.mb-48 {
  margin-bottom: 3rem;
}
section.corporate-strategy-sec1 .content-wraper .texr-wraper p.mb-24 {
  margin-bottom: 1.5rem;
}

section.corporate-strategy-sec2 {
  padding: 5.34rem 0;
}
section.corporate-strategy-sec2 .text-wraper {
  padding: 0 1.25rem;
  border-left: 2px solid var(--Color-4, #48B2CF);
}
section.corporate-strategy-sec2 .text-wraper h2 {
  margin-bottom: 1.25rem;
  text-align: center;
}
section.corporate-strategy-sec2 .text-wraper p {
  margin-bottom: 1.5rem;
}
section.corporate-strategy-sec2 .text-wraper ol {
  margin-bottom: 1.5rem;
  counter-reset: decimal-counter;
}
section.corporate-strategy-sec2 .text-wraper ol li {
  color: var(--Body-Text, #4D6D82);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  position: relative;
  margin-bottom: 0.5rem;
  counter-increment: decimal-counter;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
section.corporate-strategy-sec2 .text-wraper ol li::before {
  content: counter(decimal-counter) ". ";
  color: var(--Body-Text, #4D6D82);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
}
section.corporate-strategy-sec2 .text-wraper ol li:last-child {
  margin: 0;
}

section.corporate-strategy-sec3 {
  background: var(--Color-9, #17192E);
  padding: 3.75rem 0;
}
section.corporate-strategy-sec3 h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
}
section.corporate-strategy-sec3 ul li {
  margin-bottom: 1.5rem;
}
section.corporate-strategy-sec3 ul li:last-child {
  margin: 0;
}

section.leadership-assessment-nextgen-sec1 {
  padding: 3.75rem 0;
}
section.leadership-assessment-nextgen-sec1 h2 {
  margin-bottom: 2.4rem;
  text-align: center;
}
section.leadership-assessment-nextgen-sec1 ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
section.leadership-assessment-nextgen-sec1 ul li {
  padding: 2.25rem 2.5rem;
  min-height: 28.125rem;
}
section.leadership-assessment-nextgen-sec1 ul li.bg-blue {
  background: var(--Color-9, #17192E);
}
section.leadership-assessment-nextgen-sec1 ul li.bg-blue h6,
section.leadership-assessment-nextgen-sec1 ul li.bg-blue p {
  color: #fff;
}
section.leadership-assessment-nextgen-sec1 ul li span {
  color: var(--Color-4, #48B2CF);
  font-family: "Open Sans";
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem;
  /* 54.167% */
}
section.leadership-assessment-nextgen-sec1 ul li h6 {
  color: var(--Color-9, #17192E);
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem;
  /* 144.444% */
  margin: 1.08rem 0 0.6rem;
}
section.leadership-assessment-nextgen-sec1 ul li p {
  font-size: 0.98rem;
}

section.leadership-assessment-nextgen-sec2 {
  padding-bottom: 3.75rem;
}
section.leadership-assessment-nextgen-sec2 .wraper-box {
  overflow: hidden;
  position: relative;
  margin-bottom: 3rem;
}
section.leadership-assessment-nextgen-sec2 .wraper-box img.bg-img {
  width: 100%;
  height: 35.5625rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.leadership-assessment-nextgen-sec2 .wraper-box .text-wraper {
  max-width: 35.5625rem;
  width: 100%;
  position: absolute;
  left: 6.25rem;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 9;
  max-height: -moz-max-content;
  max-height: max-content;
}
section.leadership-assessment-nextgen-sec2 .wraper-box .text-wraper h2 {
  margin-bottom: 1.5rem;
  color: #fff;
}
section.leadership-assessment-nextgen-sec2 .wraper-box .text-wraper p {
  color: #fff;
  margin: 0;
}
section.leadership-assessment-nextgen-sec2 h6 {
  color: var(--Color-9, #17192E);
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.625rem;
  /* 144.444% */
  margin-bottom: 1rem;
}
section.leadership-assessment-nextgen-sec2 p {
  margin-bottom: 0.7rem;
}
section.leadership-assessment-nextgen-sec2 ul li {
  color: var(--Body-Text, #4D6D82);
  font-family: "Open Sans";
  font-size: 0.99rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  counter-increment: decimal-counter;
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.5rem;
}
section.leadership-assessment-nextgen-sec2 ul li:last-child {
  margin: 0;
}
section.leadership-assessment-nextgen-sec2 ul li::before {
  content: counter(decimal-counter) ". ";
  color: var(--Body-Text, #4D6D82);
  font-family: "Open Sans";
  font-size: 0.99rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  position: absolute;
  top: 0;
  left: 0;
}
section.leadership-assessment-nextgen-sec2 ul li strong {
  font-weight: 700;
}

section.leadership-assessment-nextgen-sec3 {
  padding: 6.25rem 0 5.75rem;
  background: var(--Color-9, #17192E);
}
section.leadership-assessment-nextgen-sec3 .grid-box {
  display: grid;
  grid-template-columns: 35rem auto;
}
section.leadership-assessment-nextgen-sec3 .grid-box .left-content {
  padding: 0 1.88rem;
  background-image: url(../images/huge-arow.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 1.5rem 100%;
}
section.leadership-assessment-nextgen-sec3 .grid-box .left-content .text-wraper {
  padding: 0 1.25rem;
  margin-bottom: 1.5rem;
}
section.leadership-assessment-nextgen-sec3 .grid-box .left-content .text-wraper:last-child {
  margin: 0;
}
section.leadership-assessment-nextgen-sec3 .grid-box .left-content .text-wraper h6 {
  color: var(--Color-8, #FFF);
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.8rem;
}
section.leadership-assessment-nextgen-sec3 .grid-box .left-content .text-wraper ul li {
  color: var(--Color-8, #FFF);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  position: relative;
  margin-bottom: 0.2rem;
  padding-left: 1rem;
}
section.leadership-assessment-nextgen-sec3 .grid-box .left-content .text-wraper ul li:last-child {
  margin: 0;
}
section.leadership-assessment-nextgen-sec3 .grid-box .left-content .text-wraper ul li::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
}
section.leadership-assessment-nextgen-sec3 .grid-box .right-content {
  padding: 0 1.25rem;
  border-left: 2px solid var(--Color-8, #FFF);
}
section.leadership-assessment-nextgen-sec3 .grid-box .right-content h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}
section.leadership-assessment-nextgen-sec3 .grid-box .right-content h2 span {
  color: var(--Color-4, #48B2CF);
}
section.leadership-assessment-nextgen-sec3 .grid-box .right-content ul li {
  color: var(--Color-8, #FFF);
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem;
  /* 162.5% */
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
section.leadership-assessment-nextgen-sec3 .grid-box .right-content ul li::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-color: #FFF;
  position: absolute;
  top: 0.37rem;
  left: 0;
  border-radius: 50%;
}
section.leadership-assessment-nextgen-sec3 .grid-box .right-content ul li:last-child {
  margin: 0;
}

.contact-popup .modal-dialog {
  max-width: 54.125rem;
}
.contact-popup .modal-dialog .modal-content .modal-body {
  padding: 2.5rem;
  background: #17192E;
}
.contact-popup .modal-dialog .modal-content .modal-body .heading-wraper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.contact-popup .modal-dialog .modal-content .modal-body .heading-wraper h2 {
  color: #fff;
  line-height: 1.975rem;
}
.contact-popup .modal-dialog .modal-content .modal-body .heading-wraper button.btn-close {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
  padding: 0;
}
.contact-popup .modal-dialog .modal-content .modal-body .flex-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.contact-popup .modal-dialog .modal-content .modal-body form.sent .wpcf7-response-output {
  background-color: #0a5e0a;
}
.contact-popup .modal-dialog .modal-content .modal-body .fild-wraper {
  margin-bottom: 1rem;
  width: 100%;
}
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  color: #fd3636;
}
.contact-popup .modal-dialog .modal-content .modal-body label {
  color: #fff;
  font-family: "Roboto Slab";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.5rem;
  display: block;
}
.contact-popup .modal-dialog .modal-content .modal-body input:not([type=submit]),
.contact-popup .modal-dialog .modal-content .modal-body textarea {
  width: 100%;
  background: var(--Color-8, #FFF);
  padding: 0.625rem 1.25rem;
  border: none;
  outline: none;
}
.contact-popup .modal-dialog .modal-content .modal-body input:not([type=submit])::-moz-placeholder, .contact-popup .modal-dialog .modal-content .modal-body textarea::-moz-placeholder {
  color: #BEBEBE;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-popup .modal-dialog .modal-content .modal-body input:not([type=submit])::placeholder,
.contact-popup .modal-dialog .modal-content .modal-body textarea::placeholder {
  color: #BEBEBE;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-popup .modal-dialog .modal-content .modal-body textarea {
  resize: none;
  min-height: 14rem;
}
.contact-popup .modal-dialog .modal-content .modal-body select {
  width: 100%;
  color: #3D3D3D;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: #fff;
  padding: 0.625rem 1.25rem;
  border: none;
  outline: none;
  background-image: url(../images/arow-down.svg);
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.5rem 1.5rem;
  padding-right: 3rem;
}
.contact-popup .modal-dialog .modal-content .modal-body h6 {
  color: #fff;
  font-family: "Roboto Slab";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1.5008px solid #CECECE;
  margin-top: 2.5rem;
}
.contact-popup .modal-dialog .modal-content .modal-body .cf7-hide {
  margin-bottom: 2rem;
}
.contact-popup .modal-dialog .modal-content .modal-body input[type=submit] {
  background-color: #48B2CF;
  margin-top: 1.3rem;
}
.contact-popup .modal-dialog .modal-content .modal-body ul.check-list,
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-checkbox {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.contact-popup .modal-dialog .modal-content .modal-body ul.check-list li,
.contact-popup .modal-dialog .modal-content .modal-body ul.check-list .wpcf7-list-item,
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-checkbox li,
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.contact-popup .modal-dialog .modal-content .modal-body ul.check-list li label,
.contact-popup .modal-dialog .modal-content .modal-body ul.check-list .wpcf7-list-item label,
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-checkbox li label,
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-checkbox .wpcf7-list-item label {
  color: #fff;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-popup .modal-dialog .modal-content .modal-body ul.check-list li label input[type=text],
.contact-popup .modal-dialog .modal-content .modal-body ul.check-list .wpcf7-list-item label input[type=text],
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-checkbox li label input[type=text],
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-checkbox .wpcf7-list-item label input[type=text] {
  width: 27rem;
}
.contact-popup .modal-dialog .modal-content .modal-body ul.check-list li label input[type=checkbox],
.contact-popup .modal-dialog .modal-content .modal-body ul.check-list .wpcf7-list-item label input[type=checkbox],
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-checkbox li label input[type=checkbox],
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
  width: 1.1rem;
  height: 1.2rem;
  border: 1px solid #fff;
  border-radius: 0.3125rem;
  cursor: pointer;
  accent-color: #17192E;
  padding: 0;
}
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-response-output {
  margin: 1rem 0 0 !important;
  background-color: #fd3636;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.8rem;
  line-height: 1.2rem;
  padding: 0.3rem 0.8rem !important;
  color: #fff !important;
  border: none;
}
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-form-control-wrap[data-name=hear-about-other] {
  margin-top: 0.5rem;
}
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-form-control-wrap[data-name=hear-about-other] .wpcf7-not-valid-tip {
  display: none;
}
.contact-popup .modal-dialog .modal-content .modal-body .wpcf7-spinner {
  display: none !important;
}
.contact-popup .btn-close {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(282deg) brightness(101%) contrast(102%);
}

.commn_pg_bnnr {
  padding: 5rem 0;
  background-color: #001f3c;
}
.commn_pg_bnnr h1 {
  color: #fff;
  font-family: "Roboto Slab";
  text-align: center;
}

.commn_pg {
  padding: 5rem 0 0;
}
.commn_pg h2 {
  font-size: 1.7rem;
  color: #000;
  margin: 0 0 0.9rem;
  line-height: normal;
}
.commn_pg h3 {
  font-family: "Roboto Slab";
  font-weight: 400;
  font-size: 1.7rem;
  margin: 0 0 0.9rem;
  color: #000;
}
.commn_pg p {
  margin-bottom: 1.25rem;
}
.commn_pg p a {
  color: #001f3c;
}
.commn_pg ul,
.commn_pg ol {
  margin-bottom: 1.25rem;
}
.commn_pg ul li,
.commn_pg ol li {
  color: #4D6D82;
  font-weight: 400;
  line-height: normal;
  font-family: "Open Sans";
  font-size: 1rem;
  margin-bottom: 0.5625rem;
  position: relative;
  padding-left: 17px;
}
.commn_pg ul li::before,
.commn_pg ol li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: #4D6D82;
}
.commn_pg ol {
  counter-reset: my-counter;
}
.commn_pg ol li {
  counter-increment: my-counter;
}
.commn_pg ol li::before {
  content: counter(my-counter) ".";
  font-size: 1rem;
  font-family: "Open Sans";
  color: #4D6D82;
  font-weight: 500;
  background-color: transparent;
  top: 0;
}

body:has(.commn_pg_bnnr) header {
  position: sticky;
}

.page-404 {
  margin: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  font-family: "Roboto Slab";
  justify-content: center;
  background-color: #f9f9f9;
}
.page-404 a.sky-blue-btn {
  color: #fff;
  font-family: "Roboto Slab";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.625rem 1.25rem;
  background: var(--Color-4, #48B2CF);
  display: table;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: none;
  text-decoration: none;
  margin: 20px auto 0;
}
.page-404 h1 {
  color: #001f3c;
  font-size: 8rem;
  margin: 0;
  text-align: center;
  line-height: normal;
}
.page-404 p {
  margin: 0 auto 1.7rem;
  text-align: center;
  max-width: 800px;
}
.page-404 h2 {
  color: #001f3c;
  text-align: center;
  line-height: 2rem;
  margin-bottom: 1.4rem;
  font-size: 2rem;
}

section.about-inner img.inner-img {
  height: auto !important;
}

.about_innr2 {
  background-color: #000220;
  padding-top: 6.25rem;
  position: relative;
  overflow: hidden;
}
.about_innr2 .bg {
  width: 100%;
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.about_innr2 .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 6.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_innr2 .top .logo {
  width: 600px;
}
.about_innr2 .top .txt {
  border-top: 2px solid #48B2CF;
  margin-top: 1.1rem;
  padding-top: 1rem;
  max-width: 31.6rem;
}
.about_innr2 .top .txt h1 {
  color: var(--Color-8, #FFF);
  font-family: "Roboto Slab";
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.25rem;
  text-transform: capitalize;
  margin-bottom: 1.375rem;
}
.about_innr2 .top .txt p {
  color: #fff;
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 2rem;
}
.about_innr2 .top .txt .nme {
  margin-bottom: 0;
}
.about_innr2 .top .txt .nme span {
  display: block;
  font-family: "Roboto Slab";
  color: #fff;
  font-size: 1.1rem;
}

.about_innr3 {
  position: relative;
  padding: 4rem 0;
}
.about_innr3::before {
  content: "";
  width: 50%;
  height: 100%;
  background-color: #17192E;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.about_innr3 .txt_dv {
  border-left: 2px solid #48B2CF;
  padding-left: 2rem;
  padding-right: 1rem;
}
.about_innr3 .txt_dv h2 {
  color: #FFf;
  margin-bottom: 2rem;
}
.about_innr3 .txt_dv p {
  color: #fff;
  margin-bottom: 1.5rem;
}
.about_innr3 .txt_dv p:last-child {
  margin-bottom: 0;
}
.about_innr3 .side_img {
  margin-left: auto;
  display: flex;
  height: 100%;
  width: 50%;
  justify-content: end;
  align-items: end;
  position: absolute;
  right: 0;
  bottom: 0;
}
.about_innr3 .side_img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.lity-wrap .lity-container {
  max-width: 75% !important;
}

body:has(.about_new) header {
  position: static;
}
@media (min-width: 768px) {
  body section.inr-bnr.about_new img.bg-img {
    -o-object-position: top;
       object-position: top;
  }
}
body section.inr-bnr.about_new .content-wraper {
  align-items: center;
}/*# sourceMappingURL=style.css.map */