/*! Normalise CSS !*/
@import url(normalize.css);
/*! Google Fonts !*/
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
  scroll-behavior: smooth;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: var(--Dark-grey, #2e2e2e);
  /* Paragraph/Regular */
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: #fff;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

p {
  padding: 0rem;
  margin: 0rem 0 0.5rem;
  color: var(--Dark-grey, #2e2e2e);
  /* Paragraph/Regular */
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
p:last-child {
  margin: 0;
}

h1 {
  margin: 0rem 0rem 2.625rem;
  padding: 0rem;
  color: var(--Dark-Blue, #282e56);
  /* H1 */
  font-family: "Poppins", sans-serif;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 78px */
}
h1 span {
  color: var(--Primary-Main, #ff0049);
}

h2 {
  margin: 0rem 0rem 2.5rem;
  padding: 0rem;
  color: var(--Dark-Blue, #282e56);
  /* H2 */
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
h2 span {
  color: var(--Primary-Main, #ff0049);
}

h3 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Dark-Blue, #282e56);
  /* H4 */
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h4 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Dark-grey, #2e2e2e);
  /* H5/Medium */
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h5 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Dark-grey, #2e2e2e);
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  line-height: normal;
}

h6 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Dark-grey, #2e2e2e);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: normal;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

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

a {
  color: var(--Grey, #333);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #000;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 0.75rem 0.75rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #ff0049;
  background: var(--Primary-Main, #ff0049);
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
  gap: 0.75rem;
}
.btn span {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
  background-color: var(--Primary-Main, #ff0049);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.btn span i {
  transition: all 0.3s ease-in-out;
  line-height: normal;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  border: 0.0625rem solid #ff0049;
  background: #fff;
  color: #ff0049;
}
.btn:focus span, .btn:active:focus span {
  color: #fff;
}
.btn:hover {
  border: 0.0625rem solid #ff0049;
  background: #fff;
  color: #ff0049;
}
.btn:hover span {
  color: #fff;
}
.btn.whiteBtn {
  background: #fff;
  color: #ff0049;
}
.btn.whiteBtn span {
  color: #fff;
}
.btn.whiteBtn:focus, .btn.whiteBtn:active:focus {
  outline: 0;
  box-shadow: none;
  border: 0.0625rem solid #ff0049;
  background: #ff0049;
  color: #fff;
}
.btn.whiteBtn:focus span, .btn.whiteBtn:active:focus span {
  color: #fff;
}
.btn.whiteBtn:hover {
  border: 0.0625rem solid #ff0049;
  background: #ff0049;
  color: #fff;
}
.btn.whiteBtn:hover span {
  color: #fff;
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #9b9b9b;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  color: #9b9b9b;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit], [type=radio], [type=checkbox]),
select {
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  display: block;
  width: 100%;
  color: rgb(51, 51, 51);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 0;
  border-radius: 4px;
  border: 1px solid #c5c5c6;
  background: #f9f9f9;
  box-shadow: none;
  margin-bottom: 1.5rem;
  outline: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
input:not([type=submit], [type=radio], [type=checkbox])::-moz-placeholder, select::-moz-placeholder {
  color: rgba(51, 51, 51, 0.35);
  opacity: 1;
}
input:not([type=submit], [type=radio], [type=checkbox])::placeholder,
select::placeholder {
  color: rgba(51, 51, 51, 0.35);
  opacity: 1;
}

textarea {
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: rgb(51, 51, 51);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #c5c5c6;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  background: #f9f9f9;
  box-shadow: none;
  height: 12.5rem;
  margin-bottom: 1.5rem;
  outline: none;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
textarea::-moz-placeholder {
  color: #afafaf;
}
textarea::placeholder {
  color: #afafaf;
}

textarea:focus {
  outline: none;
}

select {
  -webkit-appearance: none;
  /* Removes default appearance in Safari */
  -moz-appearance: none;
  /* Removes default appearance in Firefox */
  appearance: none;
  /* Standard */
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes the box shadow */
  padding: 0.75rem 3.125rem 0.75rem 1.5rem;
  /* Add padding for better UI */
  background-color: #f9f9f9;
  /* Background color */
  background-image: url("../images/select-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.75rem;
  width: 100%;
  border-radius: 4px;
  color: var(--Dark-grey, #2e2e2e);
  color: rgb(51, 51, 51);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: auto;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

select:focus {
  border: 0.0625rem solid #cccccc;
  outline: none;
  background-color: transparent;
}

select option {
  color: #a8a8a8;
  font-size: 0.875rem;
  font-weight: normal;
}

label {
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0rem 0rem 0.5rem;
  padding: 0;
}

input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background: url(../images/tick_circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: #249d8f;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  position: relative;
  top: 3px;
}

input[type=checkbox]::before {
  content: "";
  width: 0.75rem;
  height: 0.5625rem;
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  background: url(../images/tick-clear.svg) no-repeat;
  background-size: contain;
  /* Windows High Contrast Mode */
  background-color: transparent;
  left: 0.25rem;
  position: relative;
  top: -0.0875rem;
}

input[type=checkbox]:checked {
  background: url(../images/tick_gap.svg);
  background-size: contain;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=checkbox]:focus {
  outline: none;
  outline-offset: none;
}

input[type=checkbox]:disabled {
  --form-control-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #000;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type=radio]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #000;
  /* Windows High Contrast Mode */
  background-color: #fff;
}

input[type=radio]:checked::before {
  transform: scale(1);
}

input[type=radio]:focus {
  outline: none;
  outline-offset: none;
}

input[type=radio]:disabled {
  --form-control-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

section h1,
section h2 {
  margin: 0 0 1.125rem;
}
section.defaultPadding {
  padding: 5rem 0;
}

header.header_main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 0 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
header.header_main .box-mid {
  position: relative;
  padding: 0.75rem 0;
}
header.header_main .top_header {
  margin: 0 0 0.25rem;
}
header.header_main .top_header ul.info-ft {
  display: flex;
  justify-content: flex-end;
}
header.header_main .top_header ul.info-ft li {
  margin: 0 24px;
  position: relative;
  color: var(--Medium-grey, #313136);
}
header.header_main .top_header ul.info-ft li > i {
  margin-right: 0.375rem;
}
header.header_main .top_header ul.info-ft li:first-child {
  margin-left: 0;
}
header.header_main .top_header ul.info-ft li:last-child {
  margin-right: 0;
}
header.header_main .top_header ul.info-ft li + li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0;
  margin: 0;
  width: 1px;
  height: 1.5625rem;
  background: var(--Medium-grey, #313136);
  display: inline-block;
}
header.header_main .top_header ul.info-ft li .social-links ul {
  display: flex;
  gap: 1.5rem;
}
header.header_main .top_header ul.info-ft li .social-links ul li {
  margin: 0;
  padding: 0;
}
header.header_main .top_header ul.info-ft li .social-links ul li::before {
  display: none;
}
header.header_main .top_header ul.info-ft li .social-links ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6875rem;
  height: 1.6875rem;
  background: rgba(255, 255, 255, 0.87);
  border-radius: 50%;
}
header.header_main .top_header ul.info-ft li .social-links ul li a i {
  color: #313136;
  line-height: normal;
}
header.header_main .d_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header_main .logo {
  position: relative;
  width: 12.125rem;
  margin-right: 0;
  transition: all 0.3s ease-in-out;
  margin-top: -1.75rem;
}
header.header_main .logo a {
  display: block;
}
header.header_main .stellarnav > ul > li > a {
  padding: 0.75rem 0;
  text-align: left;
}
header.header_main .stellarnav > ul > li:hover a::before, header.header_main .stellarnav > ul > li.current-menu-item a::before {
  width: 100%;
}
header.header_main .stellarnav > ul > li + li {
  margin-left: 1.75rem;
}
header.header_main .stellarnav > ul ul li + li {
  border-top: 0.0625rem solid #c0c1d1;
}
header.header_main .stellarnav > ul ul li:last-child {
  border-bottom: none;
}
header.header_main .stellarnav > ul ul li a:hover {
  background: #ff0049;
  color: var(--White, #fff);
}
header.header_main .gp-rig {
  padding-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11.625rem;
  border-top: 0.5px solid var(--Medium-grey, #313136);
}

.hm_banner {
  position: relative;
  height: 45.0625rem;
  overflow: hidden;
}
.hm_banner .heroSwiper {
  height: 100%;
}
.hm_banner .swiper-slide {
  position: relative;
}
.hm_banner .full_banner {
  height: 100%;
}
.hm_banner .full_banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
.hm_banner .middle_caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  align-items: center;
  top: calc(50% + 30px);
  transform: translateY(-50%);
}
.hm_banner .middle_caption .innerTxt {
  max-width: 36.6875rem;
}
.hm_banner .middle_caption .innerTxt h1 {
  margin: 0 0 1.125rem;
}
.hm_banner .middle_caption .innerTxt p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  max-width: 34rem;
}
.hm_banner .middle_caption .innerTxt .gp_btn {
  margin-top: 24px;
}
.hm_banner .absolute-middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 100%;
  pointer-events: none;
  /* Vertical arrows */
  /* Vertical dots */
}
.hm_banner .absolute-middle .grp-dots-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9375rem;
  flex-direction: column;
  width: 3.125rem;
  margin-left: auto;
  pointer-events: all;
}
.hm_banner .absolute-middle .vertical-arrow {
  position: relative;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  inset: 0;
  margin: 0;
  padding: 0;
  border: 1px solid #fff;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.hm_banner .absolute-middle .vertical-arrow::after {
  font-size: 1.25rem;
  font-weight: bold;
  transform: rotate(90deg);
}
.hm_banner .absolute-middle .swiper-pagination {
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  inset: 0;
  align-items: center;
}
.hm_banner .absolute-middle .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: #bbb;
  opacity: 1;
  transition: 0.3s;
}
.hm_banner .absolute-middle .swiper-pagination .swiper-pagination-bullet-active {
  height: 1.375rem;
  border-radius: 0.5rem;
  background: #fff;
}

section.sarena_sec1 {
  background: #fff;
  padding: 5rem 0;
}
section.sarena_sec1 .sarena_box {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(142, 142, 142, 0.2);
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.04);
  padding: 2.5rem 1.25rem 3.875rem;
}
section.sarena_sec1 .sarena_box h3 {
  margin: 0 0 0.75rem;
  color: var(--Dark-Blue, #282e56);
}
section.sarena_sec1 .sarena_box p {
  color: var(--Grey, #808080);
  margin: 0;
  padding: 0;
}

.explore-port {
  padding: 80px 0;
}
.explore-port .exp-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  gap: 1.875rem;
}
.explore-port .exp-row .img {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 766px;
}
.explore-port .exp-row .img .imgsec {
  position: relative;
  width: 365px;
  height: 338px;
  padding: 36px 18px;
  border-radius: 4px;
  background: #f5f5f6;
  overflow: hidden;
}
.explore-port .exp-row .img .imgsec h5 {
  color: var(--Dark-Blue, #282e56);
  text-align: center;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 33.8px */
  margin-bottom: 0;
}
.explore-port .exp-row .img .imgsec img {
  position: absolute;
  left: 0;
  bottom: 16px;
  right: 0;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
}
.explore-port .exp-row .img .imgsec .hover_effects_txt {
  padding: 2.25rem 1.5rem;
  position: absolute;
  inset: 0;
  z-index: 99999;
  border-radius: 8px;
  background: url(../images/curve_pattern.png) no-repeat left bottom, var(--Dark-Blue, #282e56);
  text-align: center;
  transition: all 0.8s cubic-bezier(0.67, 0.41, 0.67, 1.3);
  top: 120%;
}
.explore-port .exp-row .img .imgsec .hover_effects_txt h3 {
  color: #fff;
  text-align: center;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 33.8px */
  padding: 0 0 3rem;
  margin: 0;
  position: relative;
}
.explore-port .exp-row .img .imgsec .hover_effects_txt h3::after {
  content: "";
  width: calc(100% - 9.375rem);
  height: 0.0625rem;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  margin: 0 auto;
}
.explore-port .exp-row .img .imgsec .hover_effects_txt p {
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 0.75rem;
}
.explore-port .exp-row .img .imgsec .hover_effects_txt a.arrow-link {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.explore-port .exp-row .img .imgsec .hover_effects_txt a.arrow-link span {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
}
.explore-port .exp-row .img .imgsec .hover_effects_txt a.arrow-link:hover span {
  background: #fff;
}
.explore-port .exp-row .img .imgsec .hover_effects_txt a.arrow-link:hover span i {
  color: var(--Dark-Blue, #282e56);
}
.explore-port .exp-row .img .imgsec:hover .hover_effects_txt {
  top: 0;
}
.explore-port .exp-row .text {
  max-width: 489px;
}
.explore-port .exp-row .text h2 {
  margin-bottom: 16px;
}

section.our-impacts {
  padding: 6.25rem 0;
  background: #282e56;
  overflow: hidden;
  position: relative;
}
section.our-impacts img.adsolute-img {
  max-width: 35.0625rem;
  max-height: 19.75rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: -3.63rem;
  left: 0;
}
section.our-impacts .content-wraper {
  display: grid;
  grid-template-columns: 36.89% 59.57%;
  justify-content: space-between;
  align-items: self-start;
  gap: 4rem;
}
section.our-impacts .content-wraper .text-wraper {
  padding-top: 2.25rem;
  width: 100%;
}
section.our-impacts .content-wraper .text-wraper h2 {
  color: var(--White, #fff);
  margin-bottom: 1rem;
}
section.our-impacts .content-wraper .text-wraper p {
  color: #cacaca;
  margin-bottom: 2.25rem;
}
section.our-impacts .content-wraper .grid-wraper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.12rem;
}
section.our-impacts .content-wraper .grid-wraper .grid-item {
  width: 100%;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  margin-top: 2.18rem;
}
section.our-impacts .content-wraper .grid-wraper .grid-item .item-heading {
  background: #282e56;
  padding: 0 0.75rem;
  display: grid;
  align-items: center;
  gap: 1rem;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: -3.6rem;
  grid-template-columns: 4.5rem auto;
}
section.our-impacts .content-wraper .grid-wraper .grid-item .item-heading span {
  width: 100%;
  height: 4.5rem;
  border-radius: 0.4375rem;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
section.our-impacts .content-wraper .grid-wraper .grid-item .item-heading span img {
  max-width: 3rem;
  max-height: 3rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.our-impacts .content-wraper .grid-wraper .grid-item .item-heading strong {
  white-space: nowrap;
  color: var(--White, #fff);
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
section.our-impacts .content-wraper .grid-wraper .grid-item p {
  color: #fff;
  margin: 1rem 0 0;
}

section.quality-excellence {
  padding: 5rem 0;
}
section.quality-excellence .img-wraper {
  width: 100%;
  display: grid;
  align-items: end;
  gap: 0.85rem;
  justify-content: space-between;
  position: relative;
  grid-template-columns: 1fr 1fr;
}
section.quality-excellence .img-wraper img.long-img {
  width: 100%;
  height: 38.675rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.125rem;
}
section.quality-excellence .img-wraper img.small-img {
  width: 100%;
  height: 28.5125rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.125rem;
}
section.quality-excellence .img-wraper img.tag-img {
  max-width: 12.2rem;
  max-height: 13.2135rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 9.04rem;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  z-index: 9;
}
section.quality-excellence h2 {
  margin-bottom: 1rem;
}
section.quality-excellence p {
  margin-bottom: 1.88rem;
}
section.quality-excellence ul {
  margin-bottom: 2.5rem;
}
section.quality-excellence ul li {
  color: var(--Dark-grey, #2e2e2e);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.12rem;
  position: relative;
  display: grid;
  grid-template-columns: 1.5rem auto;
  align-items: center;
  gap: 1rem;
}
section.quality-excellence ul li::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/li-arow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: block;
}
section.quality-excellence ul li:last-child {
  margin: 0;
}
section.quality-excellence a.btn img {
  max-width: 1.5rem;
  max-height: 1.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.why-choose-us {
  padding: 5rem 0;
  background: #f8f8fd;
}
section.why-choose-us h2 {
  margin-bottom: 1rem;
}
section.why-choose-us p {
  margin-bottom: 0.5rem;
}
section.why-choose-us ul.number {
  width: 100%;
  margin: 1.88rem 0;
  border-radius: 0.25rem;
  border-top: 1px solid rgba(101, 101, 101, 0.25);
  border-bottom: 1px solid rgba(101, 101, 101, 0.25);
  padding: 1.28rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 0.81rem;
}
section.why-choose-us ul.number li {
  padding: 0.97rem 2.64rem;
  border-right: 1px solid #d8d8d8;
}
section.why-choose-us ul.number li:first-child {
  padding-left: 0.25rem;
}
section.why-choose-us ul.number li:last-child {
  padding-right: 0.25rem;
  border: none;
}
section.why-choose-us ul.number li span {
  color: #505050;
  font-family: Poppins;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
section.why-choose-us ul.number li h6 {
  color: var(--Dark-grey, #2e2e2e);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  margin: 0;
}
section.why-choose-us ul.brand-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.77rem;
}
section.why-choose-us ul.brand-logo img {
  width: 100%;
  height: 4.6875rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.why-choose-us .video-wraper {
  border-radius: 0.25rem;
  background: #d4d4d4;
  overflow: hidden;
  width: 96%;
  height: 40.9375rem;
  margin-left: auto;
}
section.why-choose-us .video-wraper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.25rem;
}

section.our-resources {
  padding: 5rem 0;
}
section.our-resources .heading-wraper {
  padding: 0.75rem 0;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
section.our-resources .heading-wraper h2 {
  max-width: 33.9375rem;
  width: 100%;
  margin: 0;
}
section.our-resources .heading-wraper p {
  max-width: 32.9375rem;
  width: 100%;
  margin: 0;
}
section.our-resources .resource-card {
  border-radius: 0.8rem;
  border: 1px solid #c3c3c3;
  background: #fff;
  overflow: hidden;
  position: relative;
  height: 100%;
}
section.our-resources .resource-card:hover .img-wraper img {
  transform: scale(1.1);
}
section.our-resources .resource-card a.absolute {
  position: absolute;
  inset: 0;
  z-index: 1;
}
section.our-resources .resource-card .img-wraper {
  width: 100%;
  height: 20.9375rem;
  overflow: hidden;
  border-radius: 0.75rem;
}
section.our-resources .resource-card .img-wraper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
  transition: all 0.3s ease-in-out;
}
section.our-resources .resource-card .text-wraper {
  padding: 1.88rem 1.88rem 2.25rem;
}
section.our-resources .resource-card .text-wraper h4 {
  color: var(--Dark-grey, #2e2e2e);
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0.75rem;
}
section.our-resources .resource-card .text-wraper p {
  margin-bottom: 2.25rem;
}
section.our-resources .resource-card .text-wraper a.gq {
  color: var(--Dark-Blue, #282e56);
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 0.75rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 2;
}
section.our-resources .resource-card .text-wraper a.gq:hover img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(22%) saturate(2386%) hue-rotate(200deg) brightness(92%) contrast(87%);
}
section.our-resources .resource-card .text-wraper a.gq img {
  max-width: 1.5rem;
  max-height: 1.5rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.trusted-outer {
  padding: 80px 0;
}
.trusted-outer .trusted {
  padding: 59px 20px 53px;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
}
.trusted-outer .trusted h2 {
  color: white;
  margin-bottom: 16px;
}
.trusted-outer .trusted p {
  max-width: 997px;
  margin: 0 auto;
  color: #cacaca;
  text-align: center;
  /* Paragraph/Regular */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 36px;
}

footer {
  padding: 80px 0 0;
  background: #010316;
  overflow: hidden;
}
footer .ft-top-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid white;
}
footer .ft-top-row .ftlogo {
  max-width: 256px;
  width: 100%;
  border-right: 1px solid white;
  padding-left: 24px;
  padding-bottom: 17px;
}
footer .ft-top-row .ftlogo img {
  max-width: 149px;
  width: 100%;
}
footer .ft-top-row .ft-top-content {
  padding-bottom: 17px;
  padding-right: 6px;
}
footer .ft-top-row .ft-top-content p {
  padding-left: 39px;
  color: white;
  font-size: 20px;
}
footer .ft-bot {
  padding: 30px 0;
}
footer .ft-bot h5 {
  color: white;
  /* H5/Regular */
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}
footer .ft-bot ul li {
  margin-bottom: 16px;
}
footer .ft-bot ul li:last-child {
  margin-bottom: 0;
}
footer .ft-bot ul li a {
  color: #fff;
  position: relative;
  /* Paragraph/Regular */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 18px;
}
footer .ft-bot ul li a:hover {
  color: #ff0049;
}
footer .ft-bot ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  background: url(../images/ft-icon.png) no-repeat 0 0;
  height: 10px;
  width: 10px;
}
footer .ft-bot .locate ul li a {
  padding-left: 54px;
  position: relative;
  line-height: 42px;
  display: inline-block;
}
footer .ft-bot .locate ul li a:hover {
  color: #ff0049;
}
footer .ft-bot .locate ul li a:before {
  display: none;
}
footer .ft-bot .locate ul li span {
  position: relative;
  padding-left: 54px;
  position: relative;
  color: white;
  display: inline-block;
}
footer .ft-bot .locate ul li .icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 42px;
  height: 42px;
  padding: 9px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.13);
}
footer .ft-bot .shift-right {
  display: flex;
  justify-content: flex-end;
}
footer .ft-bot .follow ul {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  margin-bottom: 24px;
}
footer .ft-bot .follow ul li {
  margin-bottom: 0;
}
footer .ft-bot .follow ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 9px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.13);
}
footer .ft-bot .follow ul li a:before {
  display: none;
}
footer .ft-copy p {
  color: #8a8b94;
  text-align: center;
  /* Paragraph/Regular */
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .ft-bot-text {
  margin: 0;
  position: relative;
  bottom: -40px;
}
footer .ft-bot-text img {
  width: 100%;
}

.inner_banner {
  position: relative;
  padding: 0 0;
  background: #faf7f0;
  z-index: 1;
}
.inner_banner .contact-cloud {
  position: absolute;
  max-width: 231px;
  width: 100%;
  top: 42px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.inner_banner .contact-cloud img {
  width: 100%;
}
.inner_banner .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.inner_banner .top {
  position: absolute;
  top: calc(50% + 1.4375rem);
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.inner_banner .top h1 {
  margin: 0 0 0.875rem;
}
.inner_banner .top .brdcump {
  display: flex;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.inner_banner .top .brdcump li {
  color: var(--Primary-Main, #ff0049);
  position: relative;
  display: flex;
  align-items: center;
}
.inner_banner .top .brdcump li:last-child::after {
  display: none;
}
.inner_banner .top .brdcump li::after {
  content: "";
  position: relative;
  display: inline-block;
  right: 0;
  top: 0;
  width: 1.1875rem;
  height: 1.1875rem;
  aspect-ratio: 6/11;
  background: url(../images/arrow-pink.png) no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 0.75rem;
}
.inner_banner .top .brdcump li a {
  color: var(--Dark-Blue, #282e56);
}

section.abt-sec1 .abt-fm {
  border-radius: 0.25rem;
  overflow: hidden;
  width: 100%;
}
section.abt-sec1 .abt-fm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.abt-sec1 .abt-content {
  max-width: 31.375rem;
  margin-left: auto;
}

section.abt-sec2 ul.abt-list {
  display: flex;
  flex-direction: column;
  gap: 1.1875rem;
  position: relative;
}
section.abt-sec2 ul.abt-list::before {
  content: "";
  position: absolute;
  left: 1.3125rem;
  top: 0;
  width: 0.0625rem;
  height: calc(100% - 120px);
  background: #000;
  z-index: -4;
  bottom: 0;
  margin: auto;
}
section.abt-sec2 ul.abt-list li {
  display: grid;
  grid-template-columns: 11.5625rem auto 14.8125rem;
  gap: 3.0625rem;
  align-items: center;
}
section.abt-sec2 ul.abt-list li .years-no {
  display: flex;
  gap: 1.9375rem;
  align-items: center;
}
section.abt-sec2 ul.abt-list li .years-no h3 {
  margin: 0;
}
section.abt-sec2 ul.abt-list li .years-no span.dots-circle {
  display: flex;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 42px;
  background: rgba(255, 0, 72, 0.06);
  justify-content: center;
  align-items: center;
}
section.abt-sec2 ul.abt-list li .years-no span.dots-circle .circle-dots {
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background: var(--Primary-Main, #ff0049);
  outline: 7px solid rgba(255, 0, 72, 0.2);
}
section.abt-sec2 ul.abt-list li .history-img {
  border-radius: 0.25rem;
  overflow: hidden;
}
section.abt-sec2 ul.abt-list li .history-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.abt-sec3 {
  background: #282e56;
}
section.abt-sec3 .heading-txt-line {
  margin: 0 0 3.75rem;
  position: relative;
}
section.abt-sec3 .heading-txt-line::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  margin: auto;
  inset: 0;
}
section.abt-sec3 .heading-txt-line h4 {
  display: inline-block;
  position: relative;
  color: var(--White, #fff);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
  z-index: 1;
  background: #282e56;
  padding-right: 50px;
}

.mb-80 {
  margin-bottom: 5rem;
}

.bg-box {
  border-radius: 6px;
  background: url(../images/bg-patter-curve.png) no-repeat bottom left, rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
}
.bg-box h3 {
  color: var(--White, #fff);
  /* H2 */
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.bg-box p {
  color: #fff;
}

.pillar-box {
  height: 100%;
  border-radius: 0.4375rem;
  background: rgba(255, 255, 255, 0.1);
}
.pillar-box .pillars-heading {
  display: grid;
  grid-template-columns: 5.75rem auto;
  gap: 0.6875rem;
  align-items: center;
}
.pillar-box .pillars-heading .icon-bx {
  display: flex;
  width: 100%;
  height: 5.75rem;
  padding: 1rem 1.0625rem;
  justify-content: center;
  align-items: center;
  border-radius: 7px;
  background: #282e56;
}
.pillar-box .pillars-heading .icon-bx img {
  width: 3.6875rem;
  height: 3.6875rem;
  flex-shrink: 0;
}
.pillar-box .pillars-heading h5 {
  color: var(--White, #fff);
  /* H5/Medium */
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding: 0;
}
.pillar-box .pillar-contents {
  padding: 1.125rem 1.25rem 3.75rem;
}
.pillar-box .pillar-contents p {
  color: #fff;
}

section.abt-sec4 .leadership-fm {
  display: flex;
  width: 100%;
  padding: 1.8125rem 1.5625rem 1.375rem 1.5625rem;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--Dark-Blue, #282e56);
}
section.abt-sec4 .leadership-fm .leader-img {
  background: var(--White, #fff);
  margin: 0 0 2.25rem;
}
section.abt-sec4 .leadership-fm .leader-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -2.775rem;
}
section.abt-sec4 .leadership-fm h4 {
  color: var(--White, #fff);
  text-align: center;
  /* H4 */
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 0.6875rem;
}
section.abt-sec4 .leadership-fm h6 {
  color: var(--White, #fff);
  text-align: center;
  /* Paragraph/Medium */
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  padding: 0;
}

section.abt-sec5 .why-choose-dts {
  display: grid;
  grid-template-columns: auto 31rem;
  gap: 0;
  align-items: center;
}
section.abt-sec5 .why-choose-dts .why-contents {
  padding: 1.875rem;
  border-radius: 4px 0 0 4px;
  background: var(--Dark-Blue, #282e56);
}
section.abt-sec5 .why-choose-dts .why-contents h2 {
  color: #fff;
}
section.abt-sec5 .why-choose-dts .why-contents p {
  color: #fff;
}
section.abt-sec5 .why-images {
  position: relative;
}
section.abt-sec5 .why-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.abt-sec5 .why-images .why-img-para {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.4375rem;
  padding: 0.625rem;
  border-radius: 4px;
  background: #fff;
  width: calc(100% - 2.75rem);
  margin: auto;
}
section.abt-sec5 .why-images .why-img-para p {
  color: var(--Dark-grey, #2e2e2e);
  text-align: center;
  /* H5/Regular */
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

section.pds_sec1 .pd-img {
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  background: #f5f5f5;
  overflow: hidden;
}
section.pds_sec1 .pd-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.pds_sec1 .pd-content {
  width: 100%;
  max-width: 43.75rem;
  margin-left: auto;
}
section.pds_sec1 .pd-content .logo-txt {
  display: grid;
  grid-template-columns: 9.875rem auto;
  gap: 0.5rem;
}

section.pds_sec2 h2 {
  margin: 0 0 1.5rem;
}
section.pds_sec2 h3 {
  color: var(--Dark-grey, #2e2e2e);
  margin: 0;
}
section.pds_sec2 h3 + p {
  font-weight: 500;
}
section.pds_sec2 .mb-50 {
  margin-bottom: 3.125rem;
}
section.pds_sec2 .ads-img {
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  background: #e0e0e0;
  overflow: hidden;
}
section.pds_sec2 .ads-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.pds_sec2 .main-items h3 {
  margin: 0 0 0.5rem;
}

ul.arrow-icob-circle {
  padding-top: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
ul.arrow-icob-circle li {
  display: block;
  padding-left: 2.875rem;
  position: relative;
}
ul.arrow-icob-circle li::before {
  content: " ";
  position: absolute;
  width: 1.875rem;
  height: 1.875rem;
  aspect-ratio: 1/1;
  left: 0;
  top: 0;
  background: url(../images/circle-arrow-pink.png) no-repeat center;
  background-size: contain;
}
ul.arrow-icob-circle li h4 {
  margin: 0 0 0.5rem;
}

section.pds_sec3 .ads-rect-bx {
  display: flex;
  flex-direction: row-reverse;
  border-radius: 0.75rem;
  background: #040404;
  padding: 0;
  overflow: hidden;
}
section.pds_sec3 .ads-rect-bx .ads-rect-content {
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(217, 217, 217, 0.38) 0%, rgba(217, 217, 217, 0) 100%);
  padding: 1.25rem;
  width: 50%;
  margin: 1.25rem;
}
section.pds_sec3 .ads-rect-bx .ads-rect-content h2 {
  color: var(--White, #fff);
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 0.5625rem;
}
section.pds_sec3 .ads-rect-bx .ads-rect-content p {
  color: #fff;
}
section.pds_sec3 .ads-rect-bx .ads-rect-img {
  width: 50%;
}
section.pds_sec3 .ads-rect-bx .ads-rect-img img {
  width: 100%;
  height: 100%;
}

section.pds_sec4 .icon-dots {
  display: flex;
  width: 2.875rem;
  height: 2.875rem;
  aspect-ratio: 1/1;
}
section.pds_sec4 .icon-dots img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.pds_sec4 h4 {
  margin: 0 0 0.5rem;
}
section.pds_sec4 .group-line-each {
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
}
section.pds_sec4 .eah-bx {
  margin: 0 0 1.25rem;
}

.iron-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 1.25rem;
}
.iron-table-wrapper .iron-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: #fff;
}
.iron-table-wrapper .iron-table th,
.iron-table-wrapper .iron-table td {
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  vertical-align: middle;
  color: var(--Dark-Blue, #282e56);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.iron-table-wrapper .iron-table td.bg-pink {
  background: #ffe8ef;
}
.iron-table-wrapper .iron-table td.w300 {
  width: 18.75rem;
  max-width: 18.75rem;
}
.iron-table-wrapper .iron-table td.hide-desk {
  display: none;
}
.iron-table-wrapper .iron-table th {
  background: #ffe8ef;
  color: var(--Primary-Main, #ff0049);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.iron-table-wrapper .iron-table th.whiteBg_txt {
  background: #fff;
  color: #313136;
}
.iron-table-wrapper .iron-table tbody tr:nth-child(even) {
  background: #fafafa;
}
.iron-table-wrapper .iron-table .highlight-pink {
  color: var(--Primary-Main, #ff0049);
  font-weight: 400;
  white-space: nowrap;
}

section.eip-sec1 {
  text-align: left;
}

.spec-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 1.875rem;
}
.spec-table-wrapper .spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}
.spec-table-wrapper .spec-table th,
.spec-table-wrapper .spec-table td {
  padding: 12px 16px;
  border: 1px solid #ededed;
  vertical-align: top;
  color: var(--Medium-grey, #313136);
  /* H5/Regular */
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.spec-table-wrapper .spec-table th {
  width: 32%;
  text-align: left;
  white-space: nowrap;
}
.spec-table-wrapper .spec-table th.verticall-mid {
  vertical-align: middle;
}
.spec-table-wrapper .spec-table td {
  width: 68%;
  color: #555;
}
.spec-table-wrapper .spec-table tr:nth-child(even) td {
  background: #fcfcfc;
}
.spec-table-wrapper .spec-table tr:first-child th,
.spec-table-wrapper .spec-table tr:first-child td {
  background: #eef1f5;
  font-weight: 600;
}

section.app-sec1 .heading-txt {
  text-align: center;
  max-width: 61.375rem;
  margin: 0 auto 2.5rem;
}
section.app-sec1 .row {
  gap: 3.125rem 0;
}

.app-box {
  border-radius: 0.5rem;
  background: #fff;
  overflow: hidden;
}
.app-box .app-img {
  height: 308px;
  margin: 0 0 1.5rem;
  overflow: hidden;
}
.app-box .app-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.app-box .app-dets h3 {
  color: var(--Dark-Blue, #282e56);
  margin: 0 0 0.5rem;
}
.app-box .app-dets > a {
  color: var(--Primary-Main, #ff0049);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: inline-flex;
  gap: 0.5rem;
}
.app-box .app-dets > a span.arrow-right-pink {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
  background: var(--Primary-Main, #ff0049);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: rotate(330deg);
}
.app-box .app-dets > a span.arrow-right-pink i {
  color: #fff;
}
.app-box:hover .app-img img {
  transform: scale(1.1);
}

section.ff-sec1 .ff-img {
  width: 100%;
  position: relative;
  padding-left: 7.0625rem;
}
section.ff-sec1 .ff-img img {
  border-radius: 8px;
}
section.ff-sec1 .ff-img .img1 {
  width: 100%;
  max-width: 17.1875rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  box-shadow: 3px 3px 12.1px 0 rgba(0, 0, 0, 0.28);
}
section.ff-sec1 .ff-img .img2 {
  width: 100%;
  height: 42.875rem;
}

section.ff-sec2 .ff-frame {
  border-radius: 0.75rem;
  background: #f0f0f0;
  margin-top: 3.375rem;
}
section.ff-sec2 .ff-frame img {
  width: 100%;
  height: 100%;
}
section.ff-sec2 .ff-list {
  gap: 1.875rem 0;
}

.ff-box-icon {
  width: 100%;
  height: 19rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  border: 1px solid #f9f9f9;
  background: #f9f9f9;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3.75rem 1.875rem 3.75rem 3rem;
  text-align: center;
}
.ff-box-icon:hover {
  border: 1px solid #282e56;
}
.ff-box-icon .ff-icon {
  display: flex;
  width: 6.25rem;
  height: 6.25rem;
  padding: 0;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 6.846rem;
  border: 0.1563rem solid #f4f4f4;
  background: #fff;
  margin-bottom: 1rem;
}
.ff-box-icon .ff-icon img {
  width: 3.75rem;
  height: 3.75rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.ff-box-icon p {
  color: #2e2e2e;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

section.dietary-sec1 .group-grids {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
}
section.dietary-sec1 .group-grids .ds-img {
  border-radius: 4px;
  background: #e8e8e8;
  overflow: hidden;
}
section.dietary-sec1 .group-grids .ds-img:nth-child(1) {
  grid-area: 1/1/2/3;
}
section.dietary-sec1 .group-grids .ds-img:nth-child(2) {
  grid-area: 2/1/3/2;
}
section.dietary-sec1 .group-grids .ds-img:nth-child(3) {
  grid-area: 2/2/3/3;
}

section.phs-sec1 .nut-fm {
  border-radius: 0.625rem;
  overflow: hidden;
}
section.phs-sec1 .nut-fm img {
  width: 100%;
  height: 100%;
}

section.cap-sec1 {
  text-align: center;
}
section.cap-sec1 .heading-txt {
  width: 100%;
  max-width: 67.75rem;
  margin: 0 auto;
}

section.cap-sec2 ul.arrow-icob-circle {
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 0.9375rem;
}
section.cap-sec2 .other-mod-img {
  width: 100%;
  position: relative;
  padding-left: 7.0625rem;
}
section.cap-sec2 .other-mod-img img {
  border-radius: 8px;
}
section.cap-sec2 .other-mod-img .other-img1 {
  width: 100%;
  max-width: 16.25rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
section.cap-sec2 .other-mod-img .other-img2 {
  width: 100%;
  height: 21.25rem;
}
section.cap-sec2 .grp-relative {
  position: relative;
  /* Vertical arrows */
  /* Vertical dots */
}
section.cap-sec2 .grp-relative .grp-dots-arrows {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9375rem;
  /* flex-direction: column; */
  /* width: 3.125rem; */
  margin-left: auto;
  pointer-events: all;
}
section.cap-sec2 .grp-relative .vertical-arrow {
  position: relative;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: transparent;
  color: #313136;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  inset: 0;
  margin: 0;
  padding: 0;
  border: 1px solid #bfc1cd;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
section.cap-sec2 .grp-relative .vertical-arrow::after {
  font-size: 1.25rem;
  font-weight: bold;
}
section.cap-sec2 .grp-relative .swiper-pagination {
  transform: none;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  position: relative;
  inset: 0;
  align-items: center;
  width: auto;
}
section.cap-sec2 .grp-relative .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 3.125rem;
  background: #e2e2e3;
  opacity: 1;
  transition: 0.3s;
  margin: 0;
  padding: 0;
}
section.cap-sec2 .grp-relative .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--Dark-Blue, #282e56);
}

section.cap-sec3 {
  background: #f8f8fd;
}
section.cap-sec3.p-m20 p {
  margin: 0 0 1.25rem;
}
section.cap-sec3.p-mb16 p {
  margin: 0 0 1rem;
}
section.cap-sec3 h3 {
  color: var(--Dark-grey, #2e2e2e);
}
section.cap-sec3 .gp-two-img {
  width: 100%;
  position: relative;
}
section.cap-sec3 .gp-two-img .bx-fm {
  padding-right: 7rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
section.cap-sec3 .gp-two-img .bx-fm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.cap-sec3 .gp-two-img .bx-fm:nth-child(1) {
  width: 100%;
}
section.cap-sec3 .gp-two-img .bx-fm:nth-child(2) {
  width: calc(50% - 1.25rem);
  padding-right: 0;
  margin-left: auto;
  margin-top: -8.4375rem;
}
section.cap-sec3 .one-cp-img {
  width: 100%;
}
section.cap-sec3 .one-cp-img img {
  width: 100%;
}

section.quality_sec1 .headingTxt {
  width: 100%;
  max-width: 54.125rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
section.quality_sec1 .gpList {
  counter-reset: section;
}
section.quality_sec1 .gpList .row [class*=col-]:nth-child(1) {
  order: 1;
}
section.quality_sec1 .gpList .row [class*=col-]:nth-child(3) {
  order: 2;
}
section.quality_sec1 .gpList .row [class*=col-]:nth-child(2) {
  order: 3;
}
section.quality_sec1 .gpList .qty-fm {
  border-radius: 1rem;
  background: #ededed;
  overflow: hidden;
}
section.quality_sec1 .gpList .qty-fm img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.quality_sec1 .below-button {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.list-count {
  display: grid;
  grid-template-columns: 2.25rem auto;
  gap: 1rem;
}
.list-count .circl_number {
  display: flex;
  width: 2.25rem;
  padding: 0.375rem 0;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 1.5625rem;
  border: 1px solid #ff5d8b;
  background: #ffe8ef;
  position: relative;
}
.list-count .circl_number::before {
  counter-increment: section;
  content: counter(section);
  color: var(--Primary-Main, #ff0049);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
}
.list-count + .list-count {
  margin-top: 2.25rem;
}

section.quality_sec2 p {
  margin: 0 0 1rem;
}

ul.list-pd-offers {
  display: flex;
  gap: 2.375rem;
}
ul.list-pd-offers .pd-offers-bx {
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 30.25rem;
}
ul.list-pd-offers .pd-offers-bx .pd-img-bg {
  height: 100%;
  position: relative;
}
ul.list-pd-offers .pd-offers-bx .pd-img-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
ul.list-pd-offers .pd-offers-bx .pd-img-bg::before {
  content: " ";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40, 46, 86, 0) 0%, #282e56 100%);
}
ul.list-pd-offers .pd-offers-bx .pd-content-bx {
  position: absolute;
  height: 24.375rem;
  top: 63%;
  left: 0;
  right: 0;
  padding: 20px;
  text-align: center;
  transition: all 0.9s cubic-bezier(0.42, 0, 0, 1.23);
}
ul.list-pd-offers .pd-offers-bx .pd-content-bx .pd-icon-bx {
  display: flex;
  width: 97px;
  height: 97px;
  padding: 19px 18.5px 18px 18.5px;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.47);
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 1rem;
}
ul.list-pd-offers .pd-offers-bx .pd-content-bx h4 {
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 1rem;
}
ul.list-pd-offers .pd-offers-bx .pd-content-bx p {
  color: #fff;
}
ul.list-pd-offers .pd-offers-bx:hover .pd-content-bx {
  top: 20%;
}

section.quality_sec3 {
  border-radius: 20px;
  background: var(--Dark-Blue, #282e56);
  padding: 1.875rem 0.9375rem;
}
section.quality_sec3 .qty-img {
  width: 100%;
  height: 100%;
  border-radius: 0.875rem;
  overflow: hidden;
}
section.quality_sec3 .qty-img img {
  width: 100%;
  height: 100%;
}
section.quality_sec3 .oty-dt-bx {
  position: relative;
  border-radius: 20px;
  background: #393e63;
  padding: 1.875rem;
  height: 100%;
}
section.quality_sec3 .oty-dt-bx h2,
section.quality_sec3 .oty-dt-bx p {
  color: #fff;
}

section.media-sec h2 {
  text-align: center;
  margin: 0 0 2.5rem;
}
section.media-sec .link-item {
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #dfdfdf;
  background: #fbfbfb;
  transition: all 0.3s ease-in-out;
}
section.media-sec .link-item .fm-img-link {
  width: 100%;
  border-radius: 0.5rem;
  background: #c9c9c9;
}
section.media-sec .link-item .link-below a {
  display: inline-flex;
  color: var(--Medium-grey, #313136);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  gap: 0.9375rem;
}
section.media-sec .link-item .link-below a img {
  transition: all 0.3s ease-in-out;
}
section.media-sec .link-item:hover {
  border: 1px solid #dfdfdf;
  background: var(--Dark-Blue, #282e56);
}
section.media-sec .link-item:hover .link-below a {
  color: #fff;
}
section.media-sec .link-item:hover .link-below a img {
  filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(293deg) brightness(107%) contrast(107%);
}
section.media-sec .row {
  gap: 1.25rem 0;
}

section.cntSec1 .help-here-bx {
  border-radius: 8px;
  background: url(../images/bg-patter-curve.png) no-repeat left bottom, var(--Dark-Blue, #282e56);
  display: flex;
  padding: 34px 30px 80px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
  margin-top: 2.5rem;
}
section.cntSec1 .help-here-bx ul.cnt_social {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
section.cntSec1 .help-here-bx ul.cnt_social li {
  display: grid;
  grid-template-columns: 3.75rem auto;
  gap: 1rem;
  align-items: center;
}
section.cntSec1 .help-here-bx ul.cnt_social li span {
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0.5625rem;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 0.625rem;
  background: #4d5273;
}
section.cntSec1 .help-here-bx ul.cnt_social li span img {
  height: 2.625rem;
}
section.cntSec1 .help-here-bx ul.cnt_social li p {
  color: var(--White, #fff);
}
section.cntSec1 .help-here-bx ul.cnt_social li p a {
  color: inherit;
}
section.cntSec1 .help-here-bx ul.cnt_social li p a:hover {
  color: #ff0049;
}
section.cntSec1 .help-here-bx ul.cnt_social li a {
  color: #fff;
}
section.cntSec1 .help-here-bx ul.cnt_social li a:hover {
  color: #ff0049;
}
section.cntSec1 .help-here-bx .follow_bx {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding-top: 1rem;
}
section.cntSec1 .help-here-bx .follow_bx h4 {
  color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.cntSec1 .help-here-bx .follow_bx ul {
  display: flex;
  gap: 0.75rem;
}
section.cntSec1 .help-here-bx .follow_bx ul li a {
  width: 2.625rem;
  height: 2.625rem;
  aspect-ratio: 1/1;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #44496c;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
}
section.cntSec1 .form-info {
  max-width: 44.625rem;
  width: 100%;
  margin-left: auto;
}
section.cntSec1 .form-group label {
  color: var(--Medium-grey, #313136);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.cntSec1 .button-submit {
  position: relative;
}
section.cntSec1 .button-submit [type=submit] {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.custom-check {
  display: flex;
  align-items: center;
  margin: 0 0 2.25rem;
}
.custom-check .wpcf7-list-item {
  margin: 0;
}
.custom-check label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.custom-check .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}
.custom-check .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
  transition: all 0.2s ease;
}
.custom-check .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}
.custom-check input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #ff0049;
  border-color: #ff0049;
}
.custom-check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  transform: rotate(45deg) scale(1);
}
.custom-check input[type=checkbox]:focus + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 3px rgba(255, 0, 79, 0.2);
}

section.cntSec2 iframe {
  width: 100%;
  height: 24rem;
  border-radius: 12px;
  border: 1px solid #b1b1b1;
  background: #f2f2f2;
}

section.phs-sec1 .phs-content p {
  margin: 0 0 1rem;
}
section.phs-sec1 .phs-fm-img {
  width: 100%;
  padding-left: 14.0625rem;
  position: relative;
  padding-bottom: 6.1875rem;
}
section.phs-sec1 .phs-fm-img .phs-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.phs-sec1 .phs-fm-img .phs-img:nth-child(1) {
  width: 100%;
  margin-left: auto;
}
section.phs-sec1 .phs-fm-img .phs-img:nth-child(2) {
  border-radius: 0.25rem;
  border: 0.5rem solid #fff;
  background: #e8e8e8;
  max-width: 100%;
  width: calc(50% - 12px);
  margin-top: 0;
  position: relative;
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  height: auto;
}

.error404 header,
.error404 footer {
  display: none;
}
.error404 .page-404 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #f5f7e5;
}
.error404 .page-404 .col-lg-12 {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 1rem;
}
.error404 .page-404 h1 {
  font-size: 13rem;
  margin-bottom: 3rem;
  line-height: 100%;
  color: #000;
}
.error404 .page-404 h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
}
.error404 .page-404 p {
  margin-bottom: 2rem;
}

/* Responsive */
@media screen and (max-width: 1399px) {
  html {
    font-size: 86.8%;
  }
  ul.list-pd-offers .pd-offers-bx .pd-content-bx {
    top: 60%;
  }
}
@media screen and (max-width: 1199px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  header.header_main .stellarnav > ul > li + li {
    margin-left: 1rem;
  }
  header.header_main .gp-rig {
    gap: 2rem;
  }
  .hm_banner .middle_caption .innerTxt {
    max-width: 27.6875rem;
  }
  .explore-port .exp-row .img {
    max-width: 600px;
  }
  section.our-impacts .content-wraper .grid-wraper {
    gap: 1rem;
  }
  section.our-impacts .content-wraper {
    gap: 1.5rem;
  }
  section.our-impacts .content-wraper {
    display: grid;
    grid-template-columns: 30% auto;
  }
  section.why-choose-us ul.number li span {
    font-size: 2.375rem;
  }
  section.why-choose-us ul.number {
    padding: 1.28rem 1rem;
  }
  section.why-choose-us ul.number li {
    padding: 0.97rem 1.44rem;
  }
  section.why-choose-us ul.brand-logo {
    gap: 0;
  }
  section.our-resources {
    padding-bottom: 0;
  }
  section.phs-sec1 .phs-fm-img {
    padding-left: 6.3625rem;
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    margin: 0rem 0rem 1rem;
    font-size: 1.375rem;
  }
  h4 {
    margin: 0rem 0rem 1rem;
    font-size: 1.25rem;
  }
  h5 {
    margin: 0rem 0rem 1rem;
    font-size: 1.125rem;
  }
  h6 {
    margin: 0rem 0rem 1rem;
    font-size: 1rem;
  }
  p {
    padding: 0rem;
    margin: 0rem 0 1.25rem;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  header.header_main .gp-rig {
    gap: 1rem;
    flex-direction: row-reverse;
    border: none;
  }
  .hm_banner {
    height: 32.5rem;
  }
  .hm_banner .absolute-middle {
    top: calc(50% + 30px);
    transform: translateY(-50%);
  }
  header.header_main .stellarnav ul ul > li a {
    padding: 0.6188rem 1rem;
  }
  header.header_main .stellarnav > ul > li + li {
    margin-left: 0;
  }
  header.header_main .stellarnav > ul > li > a {
    padding: 0.75rem 0.9375rem;
  }
  section.sarena_sec1 .row {
    gap: 1.25rem 0;
  }
  .explore-port .exp-row {
    flex-direction: column;
  }
  .explore-port .exp-row .img,
  .explore-port .exp-row .text {
    max-width: 100%;
    width: 100%;
  }
  section.sarena_sec1,
  section.our-impacts,
  .explore-port,
  section.quality-excellence,
  section.why-choose-us,
  .trusted-outer {
    padding: 3.75rem 0;
  }
  section.our-resources {
    padding: 3.75rem 0 0;
  }
  section.our-impacts .content-wraper {
    grid-template-columns: 1fr;
  }
  .quality-excellence .row,
  .why-choose-us .row {
    gap: 1.25rem 0;
  }
  section.why-choose-us .video-wraper {
    width: 100%;
  }
  footer {
    padding: 3.75rem 0 0;
  }
  section.defaultPadding {
    padding: 3.75rem 0;
  }
  section.pds_sec1 .pd-img {
    height: auto;
    margin: 0 0 1.25rem;
  }
  section.pds_sec1 .pd-content {
    max-width: 100%;
    width: 100%;
  }
  section.pds_sec2 ul.arrow-icob-circle {
    margin-bottom: 1.25rem;
  }
  section.pds_sec2 .row {
    gap: 1.25rem 0;
  }
  section.pds_sec2 .row.mb-50 {
    margin-bottom: 1.25rem;
  }
  section.pds_sec2 .ads-img {
    height: auto;
  }
  section.pds_sec3 .ads-rect-bx {
    flex-direction: column;
  }
  section.pds_sec3 .ads-rect-bx .ads-rect-img,
  section.pds_sec3 .ads-rect-bx .ads-rect-content {
    width: 100%;
    margin: 0;
  }
  .spec-table-wrapper .spec-table th,
  .spec-table-wrapper .spec-table td {
    padding: 10px 12px;
    font-size: 1rem;
  }
  .spec-table-wrapper .spec-table th {
    width: 40%;
    white-space: normal;
  }
  .spec-table-wrapper .spec-table td {
    width: 60%;
  }
  .ff-box-icon {
    padding: 0.9375rem;
  }
  section.quality_sec3 .qty-img {
    height: auto;
  }
  ul.list-pd-offers {
    margin-top: 1.25rem;
  }
  section.abt-sec1 .abt-fm {
    margin: 0 0 1.875rem;
  }
  section.abt-sec1 .abt-content {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.625rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.875rem;
  }
  header.header_main {
    position: relative;
    background: #fff;
  }
  header.header_main .logo {
    margin: 0;
  }
  header.header_main .top_header ul.info-ft li {
    margin: 0 12px;
  }
  header.header_main .top_header ul.info-ft li + li::before {
    left: -0.95rem;
  }
  header.header_main .stellarnav > ul > li.rig-btn-item .rig_btn {
    margin-top: 0;
    padding: 15px;
  }
  header.header_main .stellarnav > ul > li.rig-btn-item .rig_btn .btn {
    display: inline-flex;
    border: 1px solid #ff0049;
  }
  header.header_main .top_header ul.info-ft {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #818181;
    padding-bottom: 8px;
  }
  header.header_main .top_header ul.info-ft li .social-links ul {
    display: flex;
    gap: 1rem;
  }
  header.header_main .gp-rig {
    padding: 0;
  }
  .hm_banner {
    height: auto;
    background: #f3f3f3;
    padding-bottom: 1.875rem;
  }
  .hm_banner .innerTxt h1 {
    font-size: 1.875rem;
  }
  .hm_banner .vertical-arrow {
    right: 0.9375rem;
    width: 2.25rem;
    height: 2.25rem;
  }
  .hm_banner .swiper-pagination {
    right: 1.125rem;
  }
  .hm_banner .middle_caption {
    padding: 1.875rem 0;
    top: 0;
    bottom: 0;
    transform: none;
    position: relative;
  }
  .hm_banner .full_banner {
    height: 20rem;
  }
  .hm_banner .full_banner img {
    -o-object-position: right center;
       object-position: right center;
  }
  .explore-port .exp-row .img {
    gap: 20px;
    flex-direction: column;
  }
  .explore-port .exp-row .img .imgsec img {
    width: 75%;
  }
  .explore-port .exp-row .img .imgsec {
    width: 100%;
  }
  .explore-port .exp-row .text {
    text-align: center;
  }
  section.our-impacts .content-wraper .grid-wraper {
    width: 100%;
    display: flex;
    grid-template-columns: 1fr;
    gap: 1rem;
    flex-direction: column;
  }
  section.our-impacts .content-wraper .text-wraper {
    padding-top: 0;
  }
  section.our-impacts .content-wraper {
    display: flex;
    flex-direction: column;
  }
  .hm_banner .absolute-middle {
    top: inherit;
    transform: none;
    position: relative;
  }
  .hm_banner .absolute-middle .grp-dots-arrows {
    display: flex;
    width: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .hm_banner .absolute-middle .swiper-pagination {
    transform: none;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    position: relative;
    inset: 0;
    align-items: center;
    justify-content: center;
    width: auto;
  }
  .hm_banner .absolute-middle .swiper-pagination .swiper-pagination-bullet-active {
    height: 0.5rem;
    border-radius: 0.5rem;
    background: #ff0049;
    width: 15px;
  }
  .hm_banner .absolute-middle .swiper-pagination .swiper-pagination-bullet {
    margin: 0;
  }
  .hm_banner .absolute-middle .vertical-arrow {
    color: #ff0049;
    border: 1px solid #ff0049;
  }
  .hm_banner .middle_caption .innerTxt {
    max-width: 27.6875rem;
    width: 100%;
    text-align: center;
    margin: auto;
  }
  .hm_banner .absolute-middle .vertical-arrow::after {
    transform: none;
  }
  section.sarena_sec1,
  section.our-impacts,
  .explore-port,
  section.quality-excellence,
  section.why-choose-us,
  .trusted-outer {
    padding: 1.875rem 0;
    text-align: center;
  }
  section.sarena_sec1 .sarena_box {
    padding: 1.25rem;
    text-align: center;
  }
  section.our-impacts {
    text-align: center;
  }
  section.our-impacts .content-wraper .grid-wraper .grid-item .item-heading {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  section.our-impacts .content-wraper .grid-wraper .grid-item .item-heading span {
    width: 4.5rem;
    height: 4.5rem;
  }
  section.quality-excellence ul li {
    align-items: start;
    text-align: left;
  }
  section.why-choose-us ul.number {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
  }
  section.why-choose-us ul.number li {
    border-right: none;
    width: 100%;
  }
  section.why-choose-us ul.number li:first-child {
    padding-left: 1.45rem;
  }
  section.our-resources {
    padding: 0;
  }
  section.our-resources .heading-wraper {
    padding: 0 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }
  section.our-resources .resource-card .text-wraper {
    padding: 1rem;
    text-align: center;
  }
  section.our-resources .resource-card .text-wraper a.gq {
    margin: auto;
  }
  section.our-resources .row {
    gap: 1.25rem 0;
  }
  .trusted-outer .trusted {
    padding: 20px 15px;
  }
  footer .ft-top-row {
    flex-direction: column;
    align-content: center;
    text-align: center;
    gap: 10px;
    border-right: none;
  }
  footer .ft-top-row .ftlogo {
    border-right: none;
    border-bottom: 1px solid white;
    padding-left: 0;
  }
  footer .ft-top-row .ft-top-content {
    padding: 15px 0;
  }
  footer .ft-top-row .ft-top-content p {
    padding-left: 0;
    font-size: 1rem;
  }
  footer {
    padding: 1.875rem 0 0;
  }
  footer .ft-bot {
    text-align: center;
  }
  footer .ft-bot h5 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }
  footer .ft-bot ul li {
    margin-bottom: 0.625rem;
  }
  footer .ft-bot ul li a {
    font-size: 0.9375rem;
  }
  footer .ft-bot .locate ul li a {
    padding-left: 0;
  }
  footer .ft-bot .locate ul li .icon {
    position: relative;
    margin: auto;
  }
  footer .ft-bot .row {
    gap: 1.875rem 0;
  }
  footer .ft-bot .locate ul li span {
    position: relative;
    padding-left: 0;
  }
  footer .ft-bot .shift-right {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  footer .ft-bot .follow ul {
    justify-content: center;
  }
  footer .ft-copy p {
    font-size: 0.75rem;
  }
  .iron-table-wrapper .iron-table {
    min-width: 100%;
  }
  .iron-table-wrapper .iron-table thead {
    display: none;
  }
  .iron-table-wrapper .iron-table tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
  }
  .iron-table-wrapper .iron-table td {
    display: block;
    border: none;
    border-bottom: 1px solid #eee;
    padding-left: 1.25rem;
    position: relative;
  }
  .iron-table-wrapper .iron-table td.w300 {
    width: 100%;
    max-width: 100%;
  }
  .iron-table-wrapper .iron-table td:last-child {
    border-bottom: none;
  }
  .iron-table-wrapper .iron-table td.hide-desk {
    display: block;
  }
  .iron-table-wrapper .iron-table td::before {
    content: attr(data-label);
    position: relative;
    left: 0;
    top: 0;
    width: 40%;
    font-weight: 600;
    color: #555;
    display: block;
    width: 100%;
  }
  section.defaultPadding {
    padding: 1.875rem 0;
  }
  .inner_banner {
    height: 240px;
  }
  .inner_banner .top {
    top: 50%;
  }
  section.pds_sec1 {
    text-align: center;
  }
  section.pds_sec1 .pd-content .logo-txt {
    display: flex;
    flex-direction: column;
  }
  section.pds_sec1 .pd-content .logo-txt .logo-img {
    width: 9.375rem;
    margin: 0 auto 0.9375rem;
  }
  section.pds_sec2 {
    text-align: center;
  }
  section.pds_sec2 ul.arrow-icob-circle {
    text-align: left;
    margin: 0;
  }
  section.pds_sec3 .ads-rect-bx .ads-rect-content {
    text-align: center;
  }
  section.pds_sec3 .ads-rect-bx .ads-rect-content h2 {
    font-size: 1.25rem;
  }
  section.pds_sec4 {
    text-align: center;
  }
  section.pds_sec4 .icon-dots {
    margin: auto;
  }
  section.eip-sec1 {
    text-align: center;
  }
  section.eip-sec1 .spec-table-wrapper .spec-table {
    text-align: left;
  }
  section.app-sec1 {
    text-align: center;
  }
  section.app-sec1 .row {
    gap: 1.125rem 0;
  }
  section.app-sec1 .app-box .app-img {
    margin: 0 0 0.9375rem;
  }
  section.ff-sec1,
  section.ff-sec2 {
    text-align: center;
  }
  section.ff-sec1 .ff-img {
    margin: 0 0 1.25rem;
  }
  section.ff-sec2 .ff-frame {
    margin: 1.25rem 0;
  }
  section.ff-sec1 .ff-img .img2 {
    width: 100%;
    height: 400px;
  }
  section.dietary-sec1 .group-grids {
    margin: 0 0 1.25rem;
  }
  section.dietary-sec1 {
    text-align: center;
  }
  section.phs-sec1 {
    text-align: center;
  }
  section.phs-sec1 .nut-fm {
    margin: 0 0 1.25rem;
  }
  section.cap-sec2,
  section.cap-sec3 {
    text-align: center;
  }
  section.cap-sec2 .grp-relative,
  section.cap-sec2 .other-mod-img,
  section.cap-sec3 .one-cp-img {
    margin: 0 0 1.25rem;
  }
  section.cap-sec2 ul.arrow-icob-circle {
    justify-content: center;
  }
  section.cap-sec3 .gp-two-img {
    margin: 0 0 1.25rem;
  }
  section.quality_sec1 .gpList .row [class*=col-]:nth-child(1) {
    order: 1;
  }
  section.quality_sec1 .gpList .row [class*=col-]:nth-child(2) {
    order: 2;
  }
  section.quality_sec1 .gpList .row [class*=col-]:nth-child(3) {
    order: 3;
  }
  section.quality_sec1 .gpList .qty-fm {
    margin-top: 1.25rem;
  }
  .list-count + .list-count {
    margin-top: 1.25rem;
  }
  section.quality_sec1 .below-button {
    margin-top: 1.2rem;
  }
  ul.list-pd-offers .pd-offers-bx:hover .pd-content-bx {
    padding: 0.625rem;
  }
  section.quality_sec3 .qty-img {
    margin: 0 0 1.25rem;
  }
  section.quality_sec2,
  section.quality_sec3 {
    text-align: center;
  }
  ul.list-pd-offers {
    flex-direction: column;
  }
  section.quality_sec3 .oty-dt-bx {
    padding: 0.625rem;
  }
  section.why-choose-us ul.brand-logo {
    justify-content: center;
    gap: 0.9375rem;
  }
  section.quality_sec1 .headingTxt {
    margin: 0 auto 1.25rem;
  }
  section.media-sec h2 {
    margin: 0 0 1.4rem;
  }
  section.cntSec1 {
    text-align: center;
  }
  section.cntSec1 .help-here-bx ul.cnt_social li {
    text-align: center;
  }
  section.cntSec1 .help-here-bx {
    margin-top: 1.25rem;
  }
  section.cntSec1 .help-here-bx .follow_bx h4 {
    text-align: center;
  }
  section.cntSec1 .help-here-bx {
    padding: 1.5rem;
    gap: 1.875rem;
    margin: 0 0 1.875rem;
    height: auto;
  }
  section.cntSec1 .form-group label {
    display: block;
    text-align: left;
  }
  section.cntSec2 {
    padding-top: 0;
  }
  section.cntSec2 iframe {
    height: 17rem;
  }
  .custom-check {
    margin: 0 0 0.9375rem;
  }
  section.cntSec1 .help-here-bx ul.cnt_social li {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-direction: column;
    align-content: center;
    text-align: center;
  }
  section.cntSec1 .help-here-bx .follow_bx {
    text-align: center;
  }
  section.cntSec1 .help-here-bx .follow_bx ul {
    justify-content: center;
  }
  section.abt-sec1 {
    text-align: center;
  }
  section.abt-sec1 .abt-fm {
    margin: 0 0 1.25rem;
  }
  section.abt-sec2 {
    padding-top: 0;
  }
  section.abt-sec2 h2 {
    text-align: center;
  }
  section.abt-sec2 ul.abt-list li {
    display: flex;
    grid-template-columns: 11.5625rem auto 14.8125rem;
    gap: 1.25rem;
    align-items: flex-start;
    flex-direction: column;
  }
  section.abt-sec2 ul.abt-list li .history-img {
    width: 100%;
  }
  section.abt-sec2 ul.abt-list li .history-content,
  section.abt-sec2 ul.abt-list li .history-img {
    padding-left: 2.8125rem;
  }
  section.abt-sec2 ul.abt-list::before {
    height: 100%;
  }
  section.abt-sec2 ul.abt-list li .years-no {
    gap: 1rem;
  }
  .bg-box {
    padding: 0.9375rem;
    text-align: center;
  }
  section.abt-sec3 {
    text-align: center;
  }
  section.abt-sec3 .row {
    gap: 1.25rem 0;
  }
  .bg-box h3 {
    color: var(--White, #fff);
    font-size: 1.35rem;
  }
  .mb-80 {
    margin-bottom: 1.25rem;
  }
  section.abt-sec3 .heading-txt-line h4 {
    padding-right: 0;
    padding: 0 1.25rem;
  }
  section.abt-sec3 .heading-txt-line {
    margin: 0 0 1.25rem;
  }
  .pillar-box .pillars-heading {
    display: flex;
    gap: 0.6875rem;
    align-items: center;
    flex-direction: column;
    align-content: center;
    justify-content: center;
  }
  .pillar-box .pillars-heading .icon-bx {
    display: flex;
    width: 5.75rem;
  }
  .pillar-box .pillar-contents {
    padding: 1.125rem;
  }
  section.abt-sec4 .leadership-fm .leader-img {
    margin: 0 0 1.25rem;
  }
  section.abt-sec4 .leadership-fm {
    margin: 0 0 1.25rem;
  }
  section.abt-sec4 {
    text-align: center;
  }
  section.abt-sec5 {
    text-align: center;
  }
  section.abt-sec5 .why-choose-dts {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.25rem;
  }
  section.abt-sec5 .why-images .why-img-para p {
    font-size: 1rem;
  }
  section.phs-sec1 .phs-fm-img {
    margin: 0 0 1.25rem;
  }
  .error404 .page-404 h1 {
    font-size: 7rem;
    margin-bottom: 0rem;
  }
  .error404 .page-404 h2 {
    margin-bottom: 1rem;
    font-size: 1.7rem;
  }
  .error404 .page-404 p {
    margin-bottom: 1.1rem;
  }
  .page-id-25050 .form-container .form-row .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item label {
    font-size: 13px;
  }
  section.cntSec1 .help-here-bx ul.cnt_social {
    width: 100%;
  }
}
.btn span.wpcf7-spinner {
  display: none;
}/*# sourceMappingURL=style.css.map */