@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
  font-weight: 300;
}

body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  padding: 10px 0;
}

nav {
  width: 100%;
  /* box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2); */
  /* display: flex; */
  /* position: absolute; */
  z-index: 10;
  padding: 0 0 12px 0px;

}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

.fa {}

/*Styling logo*/
.logo {}

.logo img {}

img {
  max-width: 100%;
}

/*Styling Links*/
.nav-links {
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding: 0 0.7vw;
  justify-content: space-evenly;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  margin: 0 20px 0 0;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  padding: 12px 12px;
}

.nav-links li a.active {
  border-radius: 10px;
  background: #223C77;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
  color: #fff;
  font-weight: 500;
}

.nav-links li a:hover {
  border-radius: 10px;
  background: #223C77;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
  color: #fff;
  font-weight: 500;
}

.nav-links li {
  position: relative;
}


/*Styling Buttons*/
.login-button {
  color: #646464;
  font-size: 15px;

  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  margin-left: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-button svg {
  margin-right: 10px;
}

/* .login-button:hover {
    color: #131418;
    background-color: #f2f5f7;
    border:1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
} */
.join-button {

  cursor: pointer;
}

.join-button:hover {
  color: #f2f5f7;
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: #646464;
  ;
  margin: 5px;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 991px) {
  nav {
    /* position: fixed; */
    z-index: 3;
  }

  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }

  .nav-links {
    z-index: 9999;
    position: fixed;
    background: #fcfcfc;
    height: 100vh;
    width: 100%;
    right: 0;
    top: 0;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
  }

  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  .nav-links li {
    opacity: 0 !important;
  }

  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }

  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }

  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }

  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }

  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }

  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
  }

  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
   
  }

  li.fade {
    opacity: 1 !important;
  }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.header_border {
  border-radius: 8px;
  border: 0.5px solid #7e8da473;
  padding: 5px 5px;
  background: white;
}


/* banner slider  */

/* @media (min-width: 992px) { */
.banner__slider .slider,
.banner__slider .slide {
  height: 99vh;
  border-radius: 10px;
  overflow: hidden;
}

/* } */

.banner__slider .slide {
  position: relative;
}

.banner__slider .slide .slide__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 992px) {
  .banner__slider .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.banner__slider .slide .slide__img img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
}

.banner__slider .slide .slide__content {
  position: absolute;
  top: 0%;
  left: 0%;
  /* transform: translate(-50%, -50%); */
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}

/* .banner__slider .slide .slide__content.slide__content__left {
    left: 15%;
    transform: translate(-15%, -50%);
  }
  .banner__slider .slide .slide__content.slide__content__right {
    right: 15%;
    left: auto;
    transform: translate(5%, -50%);
  } */
.banner__slider .slide .slide__content--headings {
  color: #fff;
}

.banner__slider .slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}

.banner__slider .slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}

.banner__slider .slide .slide__content--headings .top-title {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
}

.banner__slider .slide .slide__content--headings .title {
  color: #FFF;
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
}

.banner__slider .slide .slide__content--headings .button-custom {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 29px;
  border-radius: 10px;
  background: #223C77;
  border: 0;
  padding: 10px 15px;
}

.banner__slider .slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
}

.banner__slider .slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.banner__slider .slick-dots {
  position: absolute;
  bottom: 50px;
  list-style: none;
  display: flex;
  text-align: center;
  padding: 0;
  margin: 0;
  width: fit-content;
  right: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(7.5px);
  align-items: center;
  padding: 15px;
  z-index: 1;
}

.banner__slider .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.banner__slider .slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.banner__slider .slick-dots li button:hover,
.banner__slider .slick-dots li button:focus {
  outline: none;
}

.banner__slider .simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}

.banner__slider .simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}

.banner__slider .simple-dots .slick-dots li button:hover,
.banner__slider .simple-dots .slick-dots li button:focus {
  opacity: 1;
}

.banner__slider .simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}

.banner__slider .stick-dots .slick-dots li {
  height: 8px;
  width: 8px;
}

.banner__slider .stick-dots .slick-dots li.slick-active {
  height: 16px;
  width: 16px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner__slider .stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.8;
  width: 8px;
  height: 8px;
  padding: 0;
}

.banner__slider .stick-dots .slick-dots li button:hover,
.banner__slider .stick-dots .slick-dots li button:focus {
  opacity: 1;
}

.banner__slider .stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 1;
}

.banner__slider .stick-dots .slick-dots li.slick-active button:hover,
.banner__slider .stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

.zoomInImage {
  -webkit-animation-name: zoomInImage;
  animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
  animation-name: zoomOutImage;
}

.banner__slider .slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}

.banner__slider .slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}

.banner__slider .slick-nav.next-arrow {
  left: auto;
  right: 3%;
}

.banner__slider .slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}

.banner__slider .slick-nav i:before,
.banner__slider .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}

.banner__slider .slick-nav i:before {
  transform: rotate(-40deg);
}

.banner__slider .slick-nav i:after {
  transform: rotate(40deg);
}

.banner__slider .slick-nav:before,
.banner__slider .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.banner__slider .slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}

.banner__slider .slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
}

.banner__slider .slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
  animation: arrow 1.6s ease forwards;
}

.banner__slider .slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
  animation: arrowUp 1.6s ease forwards;
}

.banner__slider .slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
  animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@-webkit-keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@-webkit-keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@-webkit-keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

.cntr_box {
  position: absolute;
  width: 100%;
  bottom: 50px;
  margin: 0 0;
  left: 0;
}

#counter-section-container {
  width: 100%;
  text-align: center;
}
.grey_box{
   /* border: 1px solid #999999; */
   overflow: hidden;
   margin: 0;
   /* background: #1e1b16; */
   width: 100%;
   border-radius: 10px;
   background: rgba(255, 255, 255, 0.21);
   backdrop-filter: blur(4.5px);
   padding: 6px
}
.side_space {
  padding: 0 80px;
}

.section_padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section_title {
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
}

.section_description {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  /* 226.667% */
  margin-bottom: 0;
}

.border_button {
  border-radius: 10px;
  border: 1px solid #C3C3C3;
  padding: 10px 30px;
  color: #6F6F6F;
  text-align: center;
  font-size: 15px;

  font-weight: 500;
  line-height: 29px;
  /* 193.333% */
}
.border_button:hover{
  border: 1px solid #C3C3C3;
  color: #ffffff;
  background-color: #233C78;
  transition-duration: 1s;
}



.product_card {
  border-radius: 10px;
  border: 1px solid #AEAEAE;
  padding: 20px;
}

.product_slider .slick-slide {
  margin: 0 10px;
}

.product_slider .slick-slide img {
  width: 100%;
  /* height: 250px; */
  object-fit: cover;
  border-radius: 10px;
}

.product_card_body .prodct_desc {
  color: #000;
  font-size: 16px;

  font-weight: 500;
  line-height: 25px;
  min-height: 50px;
}

.product_card_body a {
  color: #929292;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  align-items: center;
}

.line_2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.slick-dots {
  display: flex;
  list-style: none;
  padding-left: 10px;
}

.slick-dots li {
  margin-right: 5px;
}

.slick-dots li button {
  font-size: 0;
  width: 16px;
  height: 8px;
  border: none;
  border-radius: 14px;
  background: #DEDEDE;
}

.slick-dots li.slick-active button {
  background: #233C78;
  width: 30px;
}

.product_slider .product_card:hover {
  background: #223C77;
  transition-duration: 1s;
}

.product_slider .product_card:hover .prodct_desc {
  color: white;
  transition-duration: 1s;
}

.product_slider .product_card:hover a {
  color: white;
  transition-duration: 1s;
}
.product_slider .product_card_body {
  margin-top: 10px;
}

.header_tab {
  background-color: #223C77;
  padding: 10px 5px;
  display: flex;
  justify-content: center;
  border-radius:  10px;
}

.header_tab_div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.header_tab_icons {
  display: flex;
  align-items: center;
}

.header_tab_icons span {
  color: #AAA;
  font-size: 14px;
  font-weight: 600;
  margin-left: 15px;
}

.v_h_centerd {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_tab_icons .svg_head {
  position: relative;
}

.header_tab_icons .svg_head:after {
  content: " ";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: white;
  transition-duration: .5s;
  transition-timing-function: ease-in;
}

.header_tab_icons:hover .svg_head:after {
  width: 100%;
  /* transition-duration: .5s; */
}

.header_tab_icons:hover path {
  fill: white;
  transition-duration: .5s;
  transition-timing-function: ease-in;
}

.header_tab_icons:hover span {
  color: white;
  transition-duration: .5s;
  transition-timing-function: ease-in;
}

.new_arrival {
  /* position: absolute; */
  right: 20px;
  padding: 10px;
  top: 40%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(4.5px);
  display: flex;
}

.new_logo {
  width: 100px;
  aspect-ratio: 1;
  background-color: #131418;
  border-radius: 5px;
  overflow: hidden;
}

.new_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new_content {
  margin-left: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
}

.new_content h5 {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.new_content p {
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.new_content a {
  color: #323232;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.new_content a i {
  font-size: 9px;
  margin-left: 5px;
}

.sticky_icon_right {
  position: fixed;
  top: 55%;
  z-index: 2;
  right: 20px;
}

.right_ic {
  width: 60px;
    height: 60px;
    border-radius: 9px;
    background: #233C78;
    backdrop-filter: blur(4.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid #ffffff47;
}

.right_ic.whtsp {
  background: #29A71A;
}

.right_ic.whtsp i {
  font-size: 30px;
  color: white;
}

.slick-slider.topheader .element {
  height: 65px;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  margin: 0px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
}

.slick-slider.topheader .slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.upcoming {
  padding: 70px 10px;
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(34, 60, 119, 0.90) 0%, rgba(34, 60, 119, 0.90) 100%), url(../images/others/bg.png), lightgray 50% / cover no-repeat;
  background-size: cover;
}

.heading_md {

  text-align: center;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
}

.add_box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.add_box span {
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}

.add_box.center {
  border-width: 1px;
  border-style: solid;
  border-image:
    linear-gradient(to bottom,
      rgba(217, 217, 217, 0.00),
      #D9D9D9,
      rgba(217, 217, 217, 0.00)) 0 100%;
}

.product_cate_card {
  padding: 20px;
  border-radius: 10px;
  background: white;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;


}

.p_cate_head h6 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}

.p_cate_head {
  position: relative;
}

.p_cate_head::after {
  position: absolute;
  content: '';
  height: 2px;
  z-index: 2;
  width: 50%;
  background-color: #E6E6E6;
}

.product_cate_card ul {
  padding-top: 30px;
  list-style: none;
  padding-left: 0;
  z-index: 2;
  position: relative;
}

.product_cate_card ul li {
  font-size: 16px;

  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.product_cate_card ul li a {
  color: #757575;
  position: relative;
}

.hover_img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}

.product_cate_card::after {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #223c7793;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.product_cate_card:hover .hover_img {
  opacity: 1;
  transition-duration: 2s;
}

.product_cate_card:hover::after {
  opacity: 1;
  transition-duration: 1s;
}

.product_cate_card:hover h6 {
  color: #fff;
  transition-duration: 1s;
}

.product_cate_card:hover li a {
  color: #FFF;
  transition-duration: 1s;
}

.product_cate_card ul li a::before {
  content: "";
  background-image: url('../images/icons/arrow_right.svg');
  background-size: cover;
  position: absolute;
  width: 25px;
  height: 25px;
  left: 0;
  top: 0;
  opacity: 0;
}

.product_cate_card ul li:hover a::before {
  opacity: 1;
}

.product_cate_card ul li:hover a {
  padding-left: 30px;
}

.imag_back {
  position: absolute;
  right: 0;
  bottom: 20%;
}

.imag_back_righ {
  position: absolute;
  left: 0;
  top: 0%;
  z-index: -1;
}

.child-compny-slider .element {
  border-radius: 10px;
  border: 0.5px solid #233C78;
  background: linear-gradient(271deg, #233C78 0.58%, rgba(0, 0, 0, 0.00) 43.72%);
  border-radius: 5px;
  margin: 0px;
  /* padding: 20px 80px 0 ; */
}

.child-compny-slider .slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.cmpny_logo {
  margin-bottom: 30px;
}

.tt_ds_compny {
  margin-bottom: 30px;
}

.tt_ds_compny h6 {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.tt_ds_compny p {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 34px;
}

.cmpny_dtl_list {
  margin-bottom: 50px;
}

.cmpny_dtl_list ul {
  list-style: none;
}

.cmpny_dtl_list ul li {
  position: relative;
  margin-bottom: 20px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 29px;
  /* 193.333% */
}

.cmpny_dtl_list ul li::before {
  content: url(../images/icons/box.svg);
  position: absolute;
  left: -35px;
}

.cmpny-right {
  height: 100%;

}

.cmpny-right img {
  width: 100%;

}

.cmpny_rightimg {
  padding: 20px 80px 0 0;
  margin-bottom: 120px;
}

.cmpny_left {
  padding: 20px 0 0 80px;
}

.compy_web {
  border-radius: 10px 0px;
  background: #233C78;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.compy_web p {
  color: #FFF;
  font-size: 16px;

  font-weight: 500;
  margin-bottom: 0;
  margin-right: 50px;
  line-height: 29px;
  /* 116% */
}

.compy_web a {
  background: #EC1C24;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
  padding: 15px 25px;
  color: #FFF;
  font-size: 14px;

  font-weight: 500;
  line-height: 29px;
  /* 161.111% */
}

.cmpny_bg {
  position: absolute;
  display: flex !important;
  width: fit-content;
  left: 34%;
  top: 24%;
}

.child-compny-slider .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 20px;
  align-items: flex-end;
}

.child-compny-slider .slick-dots li {
  margin: 0 3px;
  font-size: 0;
  width: 20px;
  height: 7px;
  border-radius: 17px;
  border: none;
  background-color: #dedede;
}

.child-compny-slider .slick-dots li button {
  border: none;
}

.child-compny-slider .slick-dots li.slick-active {
  width: 30px;
  height: 10px;
  background-color: rgba(35, 60, 120, 1);
}

.brand_ds {
  color: #223C77;
  font-size: 18px;

  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.brand_slider,
.after_brand_slider {
  border-bottom: 1px solid #DADADA;
  padding: 20px 0;
}

.after_brand_slider.slick-initialized .slick-slide,
.brand_slider.slick-initialized .slick-slide {
  display: flex;
  height: 170px;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
}

.brands {
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.service_card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
  padding: 20px;
}

.service_card .service_img img {
  width: 100%;
  border-radius: 10px;
  height: 330px;
    object-fit: cover;
}

.service_card .service-contn {
  padding-top: 15px;
}

.service_card .service-contn h6 {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines to show */
          line-clamp: 1; 
  -webkit-box-orient: vertical;
}

.service_card .service-contn p {
  color: #000;
  font-size: 14px;

  font-weight: 500;
  margin-bottom: 15px;
}

.service_card .service-contn a {
  color: #000;
  font-size: 14px;

  font-weight: 500;
}

.service_card:hover {
  background: #223C77;
  box-shadow: 0px 0px 30px 0px rgba(35, 60, 120, 0.10);
  transition-duration: .5s;
}

.service_card:hover h6,
.service_card:hover p,
.service_card:hover a,
.service_card:hover a path {
  color: white;
  transition-duration: .5s;
  stroke: white;
}

.service_slider .slick-slide {
  margin-left: 5px;
  /* Adjust as needed */
  margin-right: 5px;
  /* Adjust as needed */
}

.service_slider .slick-slide:first-child {
  margin-left: 0;
}

.service_slider .slick-slide:last-child {
  margin-right: 0;
}

.slick-track {
  display: flex !important;
}

.bg_process {
border-radius: 10px;
    background: linear-gradient(0deg, rgba(34, 60, 119, 0.95) 0%, rgba(34, 60, 119, 0.95) 100%), url(../images/bg/process.png), lightgray 50% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;  
}


.svg_area {
  width: 100%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
}

.svg_area svg {
  width: 75%;
  height: 100%;
}

.process_svg {
  margin-top: 50px;
}

.process_svg .pr_cvg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.process_svg .pr_cvg::after {
  position: absolute;
}

.process_svg .pr_cvg.ar::after {
  content: url(../images/svgs/arrow_rt.svg);
  right: -20%;
}

.process_svg .pr_cvg.big::after {
  content: url(../images/svgs/big.svg);
  right: 50%;
  top: 100%;
}

.margin_top_svg {
  margin-top: 200px;
}

.news_card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
  padding: 20px;
}

.news_card .news_img img {
  width: 100%;
  border-radius: 10px;
  height: 250px;
  object-fit: cover;
}

.news_card .news-contn {
  padding-top: 15px;
}

.news_card .news-contn h6 {
  color: #000;
  font-size: 16px;

  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.news_card .news-contn a {
  color: #000;
  font-size: 14px;

  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news_card:hover {
  background: #223C77;
  box-shadow: 0px 0px 30px 0px rgba(35, 60, 120, 0.10);
  transition-duration: 1s;
}

.news_card:hover h6,
.news_card:hover p,
.news_card:hover a,
.news_card:hover a path {
  color: white;
  transition-duration: .5s;
  fill: white;
}

.news_slider .slick-slide {
  margin-left: 5px;
  /* Adjust as needed */
  margin-right: 5px;
  /* Adjust as needed */
}

.news_slider .slick-slide:first-child {
  margin-left: 0;
}

.news_slider .slick-slide:last-child {
  margin-right: 0;
}

.slick-track {
  display: flex !important;
}

.cta_bg {
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(34, 60, 119, 0.60) 0%, rgba(34, 60, 119, 0.60) 100%), url(../images/bg/cta.png), lightgray 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta_sec {}

.cta_sec p {
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: normal;
}

.cta_sec h5 {
  color: #FFF;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
}

.cta_sec .cta_frm {
  margin-top: 20px;
}

.cta_sec .cta_frm input {
  height: 45px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.21);
  backdrop-filter: blur(4.5px);
  outline: none;
  border: none;
  width: 35%;
  padding: 5px 20px;
  color: white;
  font-weight: 300;
  font-size: 12px;
}

.cta_sec .cta_frm button {
  border-radius: 10px;
  border: 1px solid #455F8C;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
  background: transparent;
  padding: 0px 25px;
  color: #DFDFDF;
  font-size: 14px;
  font-weight: 500;
  line-height: 29px;
  height: 45px;
  margin-left: 10px;
}

.cta_frm ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(255, 255, 255);
  opacity: 1;
  /* Firefox */
}

.cta_frm :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgb(255, 255, 255);
}

.cta_frm ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgb(255, 255, 255);
}

.gamma_more_bg {
  padding: 100px 0;
  border-radius: 10px 10px 0 0;
  background-size: cover;
  background: linear-gradient(0deg, rgba(126, 141, 164, 0.40) 0%, rgba(126, 141, 164, 0.40) 100%), url(../images/bg/more.png), lightgray 0px -78.618px / 100% 122.664% no-repeat;
}

.about_gamma {
  border-radius: 10px;
  background: #223C77;
  box-shadow: 0px 20px 40px 0px rgba(35, 60, 120, 0.10);
  padding: 40px;
  text-align: center;
}

.about_gamma h5 {
  color: #FFF;
  font-size: 25px;

  font-weight: 600;
  margin-bottom: 20px;
  line-height: normal;
}

.about_gamma p {
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 36px;
}

.white_bg_btn {
  padding: 12px 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.white_bg_btn:hover{
  background: #000;
  color: #fff;
  transition-duration: 1s;
}
.call_sct {
  background: #223C77;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
}

.call_sct h3 {
  margin-right: 20px;
  color: #FFF;
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  line-height: normal;
}

.bg_blue {
  background: #223C77;
}

.social_link {
  margin-top: 30px;
}

.social_link p {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}
.social_link ul{
  display: flex;
  list-style: none;
  padding-left: 0;
}
.social_link ul li{
  margin-right: 10px;
}
.social_link ul li a{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;  
  color: black;
}
.footer_widget .foot_li{
   padding-left: 0; 
   list-style: none;
}
.footer_widget .foot_li li{
  margin-bottom: 15px;
}
.footer_widget .foot_li li a{
  color: #DADADA;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}
.contact_li{
  padding-left: 0;
}
.contact_li li {
  display: flex;
  margin-bottom: 20px;
}
.contact_li li a{
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
}
.contact_li li span{
  margin-right: 8px;
}
.footer_widget h6{
  margin-bottom: 20px;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px; /* 166.667% */
}
.copy_text{
  color: #D6D6D6;
text-align: center;
font-size: 12px;
font-weight: 500;
line-height: 29.25px; /* 243.75% */
letter-spacing: 0.24px;
}
.slick-track{
  align-items: center;
}
.footer_br{
  border-radius: 0 0 10px 10px;
}




.ba-we-love-subscribers {
	height: 50px;
	border-radius: 15px;
	box-shadow: 0px 12px 45px rgba(0, 0, 0, .15);
	font-family: 'Roboto', sans-serif;  
	margin: 0 0 10px 0;
	overflow: hidden;
	opacity: 0;
}
.ba-we-love-subscribers.open {
	height: 100%;
	opacity: 1;
}
.ba-we-love-subscribers.popup-ani {
	-webkit-transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ba-we-love-subscribers h1 {
	font-size: 20px;
	color: #757575;
	padding: 25px 0;
	margin: 0;
  font-weight:400;
  font-family: 'Roboto', sans-serif;

}
.ba-we-love-subscribers .love {
	width: 20px;
	height: 20px;
	background-position: 35px 84px;
	display: inline-block;
	margin: 0 6px;
	background-size: 62px;
}
.ba-we-love-subscribers .ba-logo {
	width: 65px;
	height: 25px;
	background-position: 0px;
	margin: 0 auto;
	opacity: .5;
	cursor: pointer;
}
.ba-we-love-subscribers .ba-logo:hover {
	opacity: 1;
}
.logo-ani {
	transition: 0.5s linear;
	-webkit-transition: 0.5s linear;
}
.ba-we-love-subscribers input {
	font-size: 14px;
	padding: 12px 15px;
	border-radius: 15px;
	border: 0;
	outline: none;
	margin: 8px 0;
	width: 100%;
	box-sizing: border-box;
	line-height: normal;
	/*Bootstrap Overide*/
	font-family: sans-serif;
	/*Bootstrap Overide*/
}
.ba-we-love-subscribers form {
	padding: 5px 30px 0;
	margin-bottom: 15px;
}
.ba-we-love-subscribers input[name="email"] {
	background-color: #eee;
}
.ba-we-love-subscribers input[name="submit"] {
	background-color: #00aeef;
	cursor: pointer;
	color: #fff;
}
.ba-we-love-subscribers input[name="submit"]:hover {
	background-color: #26baf1;
}
.ba-we-love-subscribers .img {
	background-image: url("https://4.bp.blogspot.com/-1J75Et4_5vc/WAYhWRVuMiI/AAAAAAAAArE/gwa-mdtq0NIqOrlVvpLAqdPTV4VAahMsQCPcB/s1600/barrel-we-love-subscribers-img.png");
}
.ba-we-love-subscribers-fab {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  float: right;
  box-shadow: 0px 12px 45px rgba(0, 0, 0, .3);
  z-index: 5;
  position: relative;
  border: 1px solid #ffffff52;
}
.ba-we-love-subscribers-fab .img-fab {
  height: 60px;
  width: 60px;
  /* margin: 7px auto; */
  background-image: url(../images/others/new.png);
  /* background-position: -1px -53px; */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 10px;
}
.ba-we-love-subscribers-fab .wrap {
	-webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
	transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
}
.ba-we-love-subscribers-fab .ani {
	-webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
	transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
}

.ba-we-love-subscribers-wrap {
	position: fixed;
	right: 20px;
  bottom: 46%;
	z-index: 999;
}
.ba-settings {
	position: absolute;
	top: -25px;
	right: 0px;
	padding: 10px 20px;
	background-color: #555;
	border-radius: 5px;
	color: #fff;
}

/* about  */

.breadcrumb_bg{
  padding: 190px 0px 120px;
  
}
.breadcrumb_bg h4{
  color: #FFF;
text-align: center;
font-size: 50px;
font-weight: 600;
line-height: normal;
}
.b_about_bg{
  border-radius: 10px;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../images/bg/bg_about.png), lightgray 50% ;
 background-size: cover;
 background-repeat: no-repeat;
}
.what_head{
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}
.what_sec p{
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 34px; /* 226.667% */
}

.story_bg{
  border-radius: 10px;
  background: url(../images/bg/story_bg.png), lightgray 0px -60.225px / 100% 117.659%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 80px;
}
.mission_vision{
  border-radius: 10px;
  border: 1px solid #C3C3C3;
  box-shadow: 0px 10px 40px -3px rgba(0, 0, 0, 0.08);
  /* backdrop-filter: blur(8.5px); */
  padding: 20px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission_vision h6{
  color: #FFF;
font-size: 25px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.mission_vision p{
  color: #FFF;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 34px; /* 226.667% */
}
.story_cal{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 34px;
  flex-direction: column;
}
.story_cal img{
 margin-bottom: 20px;
}
.story_cal p{
  color: #FFF;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-weight: 600;
text-align: center;
line-height: normal;
}
.count_story{
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.21);
  backdrop-filter: blur(4.5px);
  padding: 20px;
}
.scg_guiding {
  display: flex;
  justify-content: center;
  align-items: center;
}
.scg_guiding svg{
  width: 90%; 
  height: 100%;
}
.b_pro_list_bg{
  border-radius: 10px;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../images/bg/p_range.png), lightgray 50% ;
 background-size: cover;
 background-repeat: no-repeat;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown {

}

.name {
  text-align: center;
  color: green;
} 
.dropdown-menu  li a{
  margin: 0;
}
.dropdown-menu  li a:hover{
  border-radius: 0;
}
.produt_list_card{
  padding: 20px;
  border-radius: 10px;
  background: white;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p_list_head h6{
  color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}
.p_list_head {
  position: relative;
}
.p_list_head::after {
  position: absolute;
  content: '';
  height: 2px;
  z-index: 2;
  width: 50%;
  background-color: #E6E6E6;
}
.produt_list_card ul {
  padding-top: 30px;
  list-style: none;
  padding-left: 0;
  z-index: 2;
  position: relative;
}
.produt_list_card::after {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(143 137 137 / 80%) 0%, rgb(127 127 127 / 67%) 100%), #d3d3d391 50% / cover no-repeat;
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  transition-duration:1s;
}
.produt_list_card ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.produt_list_card ul li a {
  color: #ffffff;
  position: relative;
}.produt_list_card ul li a::before {
  content: "";
  background-image: url(../images/icons/arrow_right.svg);
  background-size: cover;
  position: absolute;
  width: 25px;
  height: 25px;
  left: 0;
  top: 0;
  opacity: 0;
}

.p_list_img {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}

.produt_list_card:hover .hover_img {
  opacity: 1;
  transition-duration: 1s;
}

.produt_list_card:hover::after {
  background: linear-gradient(0deg, rgba(34, 60, 119, 0.90) 0%, rgba(34, 60, 119, 0.90) 100%), #d3d3d300 50% / cover no-repeat;
  transition-duration: 2s;
}

.produt_list_card:hover h6 {
  color: #fff;
}

.produt_list_card:hover li a {
  color: #FFF;
}
.produt_list_card ul li:hover a::before {
  opacity: 1;
  transition-duration: 1s;
}

.produt_list_card ul li:hover a {
  padding-left: 30px;
  transition-duration: 1s;
}
.p_list_link{
  position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    padding-top: 30px;
}
.p_list_link a{
  color: #FFF;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.slick-slide .slick-current .slick-active{

}
.top_inner_header .header_tab_icons.active span {
  color: white;

}
.top_inner_header  .header_tab_icons.active .svg_head:after{
  width: 100%;
}
.top_inner_header .header_tab_icons.active path{
  fill: white;
}
.header_tab_inner{
  padding: 15px 5px;
  border-radius: 0px 0px 10px 10px;
}
.b_tools_bg{
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../images/bg/tools.png), lightgray 50% ;
   background-size: cover;
   background-repeat: no-repeat;
}
.inner_head_cont .inner_head{
  color: #000;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.inner_head_cont .inner_content {
  color: #000;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 30px; /* 226.667% */
}
.inner_img{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.inner_img img{
  width: 100%;
}
.inner_head_cont {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product_slid_list{

}
.product_slid_list img{
  border: 1px solid #07075f40;
  border-radius: 10px;
  height: 270px;
  width: 100%;
  object-fit: cover;
}
.product_list_slider .slick-slide{
  margin-right: 5px;
}
.product_stacking:nth-child(even) .stacked_prdct_img{
   order: 1;
}
.product_stacking:nth-child(even) .stacked_prdct_con{
  order: 2;
}
.b_service_bg {
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../images/bg/service.png), lightgray 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.product_stacking {
  margin-bottom: 60px;
}
.b_career_bg{
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../images/bg/career.png), lightgray 50% ;
   background-size: cover;
   background-repeat: no-repeat;
}
.hiring_bg{
  border-radius: 10px;
  border: 0.2px solid #AFAFAF;
  background: url(../images/bg/hiring.png), lightgray 50% / cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}
.text-grey{color: #9C9C9C !important;}
.career_card{
  border-radius: 10px;
  border: 0.2px solid #afafaf40;
  background: rgba(251, 251, 251, 0.15);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(21.5px);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.career_card h6{
  color: #FFF;
  font-family: 'Poppins', sans-serif;
font-size: 18px;
font-weight: 500;
line-height: 28px;
}
.career_card p{
  color: #9C9C9C;
font-size: 15px;
margin-bottom: 0;
font-weight: 300;
line-height: 26px; 
}
.career_card a{
  padding: 10px 15px; 
  border-radius: 10px;
background: #E0E0E0;
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
color: #828282;
font-size: 14px;
font-weight: 500;
white-space: nowrap;
line-height: 29px; /* 193.333% */
}
.career_card a:hover{
  background: #233C78;
  color: #FFF;
}
.career_card a:hover path{
  stroke:white;
}
.gamma_form input,.gamma_form textarea{
  padding: 15px;
  width: 100%;
  font-size: 14px;
  border-radius: 10px;
  border: 0.2px solid #afafaf38;
  background: rgba(226, 226, 226, 0.15);
}
.gamma_form .cs_select{
  padding: 15px;
  font-size: 14px;
  width: 100%;
  border-radius: 10px;
  border: 0.2px solid #afafaf38;
  background: rgba(226, 226, 226, 0.15);
  color: #888;
}
.phone_input{
  display: flex;

}

.phone_input input{
  border-left: none;
  border-radius:0 10px 10px 0;
}
.phone_input .phn_select{
  border: 0.2px solid #afafaf38;
  background: rgba(226, 226, 226, 0.15);
  border-radius:10px 0px 0px 10px;
  border-right: none;
}
.gamma_form input:focus,.gamma_form textarea,.gamma_form select:focus, .gamma_form input:focus-visible{
  outline: none !important;

}
.phone_input .phn_select option{
  border-radius: 5px;

}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-file{
  background-color: transparent;
  border: none;
  border-radius: 4px;
  padding: 0;
  width: 100%;
}
.input-file::file-selector-button{
  border: none;
  border-radius: 4px;
  color: white;
  background-color:  #E0E0E0;
  border: 1px solid  #E0E0E0;
  height: 50px;
  border-radius: 10px;
  padding: 5px 45px;
box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all .25s ease-in;
  cursor: pointer;
  position: relative;
}
.up_label{
  border: none;
  border-radius: 4px;
  color: #7c7c7c;
  background-color: #E0E0E0;
  border: 1px solid #E0E0E0;
  height: 50px;
  display: flex;
  font-size: 14px;
  border-radius: 10px;
  padding: 5px 16px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  /* transition: all .25s ease-in; */
  cursor: pointer;
  position: absolute;
  align-items: center;
  z-index: 1;
}
.up_label img{
  margin-left: 5px;
}
.input-file::file-selector-button:hover{
  background-color: #fff;
  color: #565A90;
  transition: all .25s ease-in;
}
.submi_btn{
  width: fit-content;
  padding: 13px 25px;
  border-radius: 10px;
  background: #233C78;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
  border: none;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;

}
.b_news_bg {
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(../images/bg/nws.png), lightgray 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.news_date{
  color: #000;
font-size: 14px;
font-weight: 500;
line-height: 32px; /* 228.571% */
}
.news_detail_content_img img{
  width: 100%;
  border-radius: 10px;
}
.news_detail_content{

}
.news_detail_content p strong{
  font-size: 20px;
  font-weight: 500;
}
.news_detail_content p{
  color: #000;
font-size: 15px;
font-weight: 500;
line-height: 34px;
}
.news_detail_content ul li{
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 34px;
}
.news_detail_content ul{
  
  list-style: auto;
}
.contact_shoert_head{
  color: #000;
  font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-bottom: 20px;
}
.reset_btn{
  width: fit-content;
  padding: 13px 25px;
  border-radius: 10px;
  border: 0.2px solid #AFAFAF;
  background: rgba(226, 226, 226, 0.15);
   color: #989898;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.reset_btn img{
 margin-left: 5px;
}
.hamburger.toggle{
  position: fixed;
  cursor: pointer;
  right: 5%;
  top: 5%;
  transform: translate(-5%, -50%);
  z-index: 999999;
}
.hamburger.toggle div{
  background: #0a0909;
}
.map_area_card{
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
    overflow: hidden;
}
.map_area_card iframe{
  width: 100%;
  height: 100%;
}
.conatct_area_card{}
.conatct_area_card h3{
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.conatct_area_card h6{
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.conatct_area_card p{
  color: #000;
  font-family: Poppins;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 176.923% */
}
.conatct_area_card ul{
  list-style: none;
  padding-left: 0;  
}
.conatct_area_card ul li{
  margin-bottom: 15px;
}
.conatct_area_card ul li a{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
}
.conatct_area_card ul li a img{
  margin-right: 10px;
}

.slider-nav_m .cstm_arrow{
  position: absolute;
  bottom: -50px;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(35, 60, 120, 1);
  color: white;
}
.slider-nav_m .cstm_arrow.custom-next-arrow{
   left: 50px;
}

.cnt_sp{
  position: relative;
}
.cnt_sp::after{
  position: absolute;
  content: "";
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.00) 0.01%, rgba(78, 78, 78, 0.68) 53.12%, rgba(255, 255, 255, 0.00) 100%);
  top: 0;
  right: -20px;
}
.slider-nav_m .cstm_arrow.slick-disabled{
  color:  rgba(35, 60, 120, 1);
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(53, 53, 53, 0.08);
}
.bg_pruoduct{
  background: #223C77;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.footer_br_inner{
  border-radius: 10px;
}
.sm_icons img{
  width: unset !important;
}
.sm_icons .show_hover{
  display: none;
}
.product_slider .product_card:hover .init_show{
  display: none;
}
.product_slider .product_card:hover .show_hover{
  display: flex;
}



/* Page content */

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%
}

.bg_dark{
  background: #373b46;
}
.header.sticky .header_border{
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.space-area {
  height:850px;
  background:#009a11;
  padding:100px 0;
  position: relative;
}
.space-area h1 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
}
.count-area {
   
}
.count-area-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.count-area i {
    font-size: 48px;
}
.count-digit {
  color: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 600;
}
.count-title {
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}
.count_box{
  display: flex;
  align-items: center;
}

.count_box span{
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 50px;
  font-weight: 600;
}

@keyframes rotateMain {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateInner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}


.centralized {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-container {
  z-index: 0;
  margin: 0 auto;
  padding-top: 120px;
  height: 90vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main-container .main-circle {
  border: 20px solid #ffffff;
  border-bottom: 0;
  border-radius: 445px 450px 0 0;
  box-sizing: border-box;
  /* height: 30vw; */
  aspect-ratio: 2/1;
  width: 50vw;
  position: relative;
}

.main-container .main-circle .inner {
  background: linear-gradient(180deg, rgba(35, 60, 120, 0.35) 0%, rgba(235, 242, 244, 0.00) 100%);
  /* border: 4px solid #ffffff; */
  border-radius: 450px 449px 0 0;
  /* box-shadow: 4px 5px 5px 0px rgba(0, 0, 0, 0.2); */
  box-sizing: border-box;
  color: #616161;
  font-size: 24px;
  height: 100%;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}
.main-container .bubble-container {
  border: 6px;
  box-sizing: border-box;
  /* height: 40vw; */
  position: absolute;
  width: 50vw;
  aspect-ratio: 1.5/1;
  top: 50%;
  opacity: 0;
  z-index: -1;
  transform: rotate(0deg);
  transition: transform ease-in 0.7s, opacity ease 1s;
}
.main-container .bubble-container .bubble {
  border-radius: 100%;
  box-sizing: border-box;
  position: absolute;
  height: 110px;
  top: calc(50% - 55px);
  z-index: -9;
  left: -100px;
  width: 110px;
  transform: rotate(0deg);
  transition: all ease 0.8s;
}
.main-container .bubble-container .bubble .inner {
  background: #223c77;
  border-radius: 100%;
  box-shadow: 0px 0px 0px 7px #909dbb;
  box-sizing: border-box;
  height: 84px;
  width: 84px;
  overflow: hidden;
  color: white;
}
.main-container .bubble-container .bubble {
  background: #c8cedd;
}

.ab_map_bg{
  background-image: url(../images/bg/abt_map.svg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.text-blue{
  color: #233C78;
}
.gud_cont_ar{
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
}
.gud_cont_ar::before{
  color: black;
  position: absolute;
  top: -7px;
  color: #232323;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap ;
  line-height: normal;

}
.gud_cont_ar.gud1{
  top: -25px;
  right: 50%;
}
.gud_cont_ar.gud1:before{
  content: "Equality";
  left: -75%; 
}
.gud_cont_ar.gud2{
  top: -25px;
  right: 50%;
}
.gud_cont_ar.gud2:before{
  content: "Honesty And Integrity";
  left: -175%;
}
.gud_cont_ar.gud3{
  top: -70px;
  right: 50%;
}
.gud_cont_ar.gud3:before{
  content: "Sound Interpersonal Relationship";
  left: -330px;
}
.gud_cont_ar.gud4{
  top: -60px;
  right: 0;
}
.gud_cont_ar.gud4:before{
  content: "Professional Approach With Prompt Delivery";
  left: -121%;
  top: -25px;
}
.gud_cont_ar.gud5{
  top: -56px;
  left: 50%;
}
.gud_cont_ar.gud5:before{
  content: "Transparency  And  Openness";
  left: 105%;
}
.gud_cont_ar.gud6{
  top: -25px;
  left: 50%;
}
.gud_cont_ar.gud6:before{
  content: "Confidentiality";
  left: 105%;
}
.gud_cont_ar.gud7{
  top: -25px;
  left: 50%;
}
.gud_cont_ar.gud7:before{
  content: "Sustainability";
  left: 105%;
}
.centralized_bb{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width:1600px) {
  .main-container .main-circle{
    width: 47vw;
    aspect-ratio: 1.9/1;
  }
  .main-container .bubble-container{
    width: 46vw;
    top: 46%;
  }
}
@media screen and (max-width:1200px) {
  .gud_cont_ar::before{
    white-space: inherit;
  }
  .main-container .main-circle{
    height: 25vw;
    width: 40vw;
  }
  .main-container .bubble-container {
    width: 39vw;
    top: 49%;
}
}
@media screen and (max-width:991px) {
  .main-container .main-circle{
    display: none;
  }
  .main-container .bubble-container .bubble{
    position: initial;
  }
  .main-container .bubble-container{
    position: initial;
  }
  .main-container{
    padding-top: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
  }
  .gud_cont_ar::before{
    left: 105% !important;
    white-space: nowrap;
  }
  .gud_cont_ar img{
    display: none;
  }
  .gud_cont_ar{
    left: 0 !important;
    top: 50% !important;
  }
  .main-container .bubble-container{
    width: 100%;
    transform: rotate(0deg)!important;

  }
  .main-container .bubble-container .bubble{
    transform: rotate(0deg)!important
  }
  .centralized_bb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.gud_cont_ar.gud4:before{
  top: -10px;
}
}

@media screen and (max-width:557px) {
  .gud_cont_ar::before{
   
  }
  .main-container .bubble-container .bubble .inner{
    height: 65px;
    width: 65px;
  }
  .main-container .bubble-container .bubble{
    height: 90px;
    width: 90px;
  }
  .gud_cont_ar::before{
    font-size: 10px;
  }
}
@media screen and (max-width:400px) {
  
  .main-container .bubble-container .bubble .inner{
    height: 40px;
    width: 40px;
  }
  .main-container .bubble-container .bubble{
    height: 70px;
    width: 70px;
  }
  .gud_cont_ar::before{
    font-size: 10px;
  }
}
.tp_hd{
  position: absolute;
  top: 0;
  z-index: 1;
}
.reset_btn:hover{
  background: rgb(34 60 119);
color: #ffffff;
transition-duration: 1s;
}
.submi_btn:hover{
  background: #000000;
  transition-duration: 1s;
}
.svg_abt svg{
  width: 100%;
  height: 100%;
}
.ic_drp .dropdown-toggle::after{
  display: none;
}
.nav-links li.ic_drp  a{
 padding: 12px 5px;
}
.nav-links li.ic_drp a:hover{
  background-color: transparent;

}
.nav-links li.ic_drp a.dropdown-item:hover{
  background: #223C77;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
  color: #fff;
  font-weight: 500;
}
.bar{
  display: flex;
  border: 1px solid grey;
  border-radius: 5px;
  padding: 2px 5px;
}
.bar input {
  width: 0;
  outline: none;
  z-index: 0;
  border: none;
}
.search-btn{
  border: none;
  background-color: transparent;
}
.bar-expanded input{
  width: 100%;
}
.search_hd {
  position: relative;
}
.search_hd .ui-autocomplete{
  position: absolute;
  background: #ffffff;
  top: 36px;
  width: 100%;
  z-index: 99;
  /* border: 1px solid #80808085; */
  border-top: 0;
  border-radius: 12px;
  box-shadow: -1px 2px 3px 0px #8080806b;
}
.search_hd .ui-autocomplete .product_search_js{
  padding: 5px;border: 1px solid rgba(128, 128, 128, 0.164);

}

.spag-direct a{
  border: 1px solid #EC1C24;
  padding: 5px 14px !important;
  border-radius: 10px;
  background-color: #EC1C24;
  color: white !important;
}
.spag-direct a:hover{
  background-color: #EC1C24 !important;
}


.prod-img {
  /* height: 250px ; */
  object-fit: cover;
}