@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500,600,700&display=swap");

:root {
  --primary-color: #061b3d;
  --secondry-color: #337fde;
  --primary-font-family: "Roboto", sans-serif;
}

.btn-solid {
  display: inline-block;
  color: var(--White-Pure, var(--Color-Greys-G-07, #fff));
  /* CTA/100/Semi-Bold */
  background-color: var(--secondry-color) !important;
  border-radius: 0;
  border: 1px solid #337fde;
  padding: 11px 22px;
  font-size: 16px;
  line-height: 147%;
  font-weight: 600;
  font-family: var(--primary-font-family);
}

.btn-solid:hover {
  background-color: #3aad4d !important;
  border: 1px solid #3aad4d;
}

.btn-brochure {
  display: inline-block;
  color: #061b3d;
  border: 1px solid var(--Primary-color-01, #061b3d);
  background: var(--White-Pure, #fff);
  border-radius: 0;
  margin: 0 0.5rem 0 0;
  padding: 11px 22px;
  font-size: 16px;
  line-height: 147%;
  font-weight: 600;
  font-family: var(--primary-font-family);
}

.btn-brochure svg {
  margin-left: 8px;
}

.btn-brochure:hover {
  background: #061b3d;
  color: #fff;
}

.btn-brochure:hover svg path {
  fill: #fff;
}

.cta {
  margin-top: 40px;
  display: block;
  color: var(--White-Pure, var(--Color-Greys-G-07, #fff));
  font-family: var(--primary-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  background: #337fde;
  padding: 16px 24px;
  align-items: center;
  -webkit-transition: background 0.2s ease;
  /* Safari */
  transition: background 0.2s ease;
}

.cta img {
  margin-left: 8px;
  -webkit-transition: margin 0.2s ease;
  /* Safari */
  transition: margin 0.2s ease;
}

.cta:hover {
  background: #3aad4d;
}

.cta:hover img {
  margin-left: 12px;
}

.cta svg {
  margin-left: 8px;
  -webkit-transition: margin 0.2s ease;
  /* Safari */
  transition: margin 0.2s ease;
}

.cta:hover svg {
  margin-left: 12px;
}

header {
  position: fixed;
  top: 0px;
  background-color: #fff;
  width: 100%;
  z-index: 1000;
  padding-top: 15px;
  padding-bottom: 15px;
}

header .container {
  display: flex;
  position: relative;
}

.logo-container {
  flex: 1;
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 55px;
}

.nav-btn {
  flex: 3;
  display: flex;
  align-items: center;
}

.nav-links {
  flex: 2;
}

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

.logo {
  color: var(--clr-light);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
}

.logo span {
  font-weight: 300;
}

.dropdown ul {
  padding-left: 0;
}

.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
}

.nav-link {
  position: relative;
  padding: 16px 25px;
}

.nav-link > a {
  color: #061b3d;
  /* CTA/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}

.nav-link > a::after {
  content: "";
  position: absolute;
  left: 7%;
  bottom: 6px;
  width: 0;
  height: 1px;
  background: #061b3d;
  transition: width 0.2s ease;
}

.nav-link > a:hover::after {
  width: 80%;
}

.nav-link > a > i {
  margin-left: 0.2rem;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 15rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
  background: #fff;
}

.dropdown ul {
  position: relative;
}

.dropdown-link > a {
  display: flex;
  color: #061b3d;
  padding: 0.5rem 1rem;
  font-size: 15px;
  font-family: var(--primary-font-family);
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
  line-height: 130%;
}

.dropdown-link:hover > a {
  background-color: #eef0f5;
  color: #061b3d;
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid #fff;
}

.dropdown-link i {
  transform: rotate(-90deg);
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #d6d5d5;
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: #061b3d;
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: 0.8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: #061b3d;
  position: relative;
  z-index: 1001;
  transition: 0.5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: #061b3d;
  border-radius: 3px;
  transition: 0.5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 920px) {
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
    position: fixed;
    height: calc(100vh - 4rem);
    top: 4rem;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
  }

  #check:checked ~ .nav-btn {
    transform: translateX(0);
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
    animation: animation 0.5s ease forwards var(--i);
    justify-content: center;
  }

  .nav-links {
    flex: initial;
    width: 100%;
  }

  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    padding: 8px 25px;
    transform: translateY(15px);
  }

  .nav-link > a {
    line-height: 1;
    padding: 1.6rem 2rem;
    justify-content: center;
  }

  /* .nav-link:hover > a {
    transform: scale(1);
    background-color: #eef0f5;
  } */
  .dropdown,
  .dropdown.second {
    padding: 30px 0;
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: #eef0f5;
    display: none;
    box-shadow: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown {
    display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover > a > i {
    transform: rotate(360deg);
  }

  .dropdown-link > a {
    background-color: transparent;
    color: #061b3d;
    padding: 1.2rem 2rem;
    justify-content: center;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    background-color: var(--clr-btn);
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: 0.5s;
  }

  .nav-link:hover .arrow {
    background-color: var(--clr-nav-hover);
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover > a {
    background-color: var(--clr-dropdown-link-hov);
  }

  .dropdown-link:first-child:hover ~ .arrow {
    background-color: var(--clr-nav-hover);
  }

  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: 0.7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: 0.7s;
  }

  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a:hover::after {
    width: 0%;
  }

  .nav-link.dropdownLinks {
    background-color: #eef0f5;
  }
}

.hero-banner {
  margin-top: 88px;
  height: 97vh;
}

/* .hero-banner .carousel-caption {
  width: 100%;
  height: calc(100% - 90px);
  top: 90px;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: left;
} */

.hero-banner .title-div {
  display: flex;
  align-items: center;
}

.hero-banner .carousel-item.banner-one {
  background: url(../img/bannerslide1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
}

.hero-banner .carousel-item.banner-two {
  background: url(../img/bannerslide2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
}

.hero-banner .carousel-item.banner-three {
  background: url(../img/bannerslide3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
}

.hero-banner .home-bannertitle {
  font-size: min(max(36px, 6.555vw), 90px);
  color: #fff;
}

.hero-banner .home-bannertitle.black {
  color: #061b3d;
}

@media (min-width: 1600px) {
  .hero-banner {
    height: 875px;
  }
}

@media (max-width: 991px) {
  .hero-banner {
    height: 60vh;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    height: 90vh;
  }

  .hero-banner .carousel-item.banner-one {
    background: url(../img/mobilebanner-slide1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
  }

  .hero-banner .carousel-item.banner-two {
    background: url(../img/mobilebanner-slide2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
  }

  .hero-banner .carousel-item.banner-three {
    background: url(../img/mobilebanner-slide3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
  }

  .hero-banner .title-div {
    align-items: flex-start;
    justify-content: center;
    padding-top: 8rem;
  }

  .hero-banner .home-bannertitle {
    text-align: center;
  }

  .hero-banner .title-div .cta-div {
    justify-content: center;
  }

  /* .hero-banner .carousel-caption {
    height: calc(60% - 90px);
  } */
}

.home-intro-section {
  padding-bottom: 160px;
  padding-top: 160px;
}

.home-intro-section .row {
  --bs-gutter-x: 2rem;
}

.home-intro-section .intro-row {
  padding-bottom: 80px;
}

.home-intro-section .content-col .title {
  color: var(--Primary-color-01, #061b3d);
  /* Headings/125/Semi-Bold */
  font-family: var(--primary-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.home-intro-section .subtitle {
  color: var(--Primary-color-02, #3aad4d);
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 8px;
}

.home-intro-section .short-disc {
  margin-top: 24px;
  color: #5d5d5d;
}

.home-intro-section .cta {
  margin-top: 24px;
}

@media (max-width: 991px) {
  .home-intro-section {
    padding-bottom: 96px;
    padding-top: 96px;
  }

  .home-intro-section .short-disc {
    margin-top: 24px;
  }

  .home-intro-section .img-col {
    margin-bottom: 3rem;
  }
}

.home-products-section {
  background: url(../img/home-products-bg.png);
  padding-top: 168px;
  padding-bottom: 296px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.home-products-section .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.home-products-section .section-title h3 {
  color: var(--White-Pure, var(--Color-Greys-G-07, #fff));
  font-family: var(--primary-font-family);
  font-size: 67px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.home-products-section .product-row {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 72px;
}

.home-products-section .product-row .product-card {
  background: #fff;
  padding: 32px 40px;
  overflow: hidden;
}

.home-products-section .product-row .product-card a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.home-products-section .product-row .product-card a .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: padding 0.4s ease;
}

.home-products-section .product-row .product-card a .card-top h4 {
  color: var(--Primary-color-01, #061b3d);
  font-family: var(--primary-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  max-width: 240px;
}

.home-products-section .product-row .product-card a .card-top p {
  color: var(--Gray-01, #5d5d5d);
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 8px;
}

.home-products-section .product-row .product-card a .img-div {
  margin-top: 80px;
  transition: transform 0.4s ease;
}

.home-products-section .product-row .product-card:hover .card-top {
  padding: 0 12px;
}

.home-products-section .product-row .product-card:hover .img-div {
  transform: scale(1.1);
}

.home-products-section .loadmore-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.home-products-section .loadmore-btn .cta.hidden img {
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .home-products-section {
    background-size: cover;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .home-products-section .section-title h3 {
    font-size: 56px;
  }

  .home-products-section .product-row {
    grid-template-columns: auto auto;
    gap: 48px;
  }

  .home-products-section .product-row .product-card {
    padding: 30px;
  }

  .home-products-section .product-row .product-card a .card-top h4 {
    font-size: 28px;
  }

  .home-products-section .product-row .product-card a .img-div {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .home-products-section {
    background-size: cover;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-products-section .section-title {
    margin-bottom: 56px;
  }

  .home-products-section .section-title h3 {
    font-size: 42px;
  }

  .home-products-section .product-row {
    grid-template-columns: auto;
    gap: 24px;
  }

  .home-products-section .product-row .product-card {
    padding: 30px;
  }

  .home-products-section .product-row .product-card a .card-top h4 {
    font-size: 28px;
  }

  .home-products-section .product-row .product-card a .img-div {
    margin-top: 60px;
  }
}

.menufactur-process {
  padding-top: 168px;
  padding-bottom: 168px;
}

.menufactur-process .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.menufactur-process .section-title h3 {
  color: #061b3d;
  font-family: var(--primary-font-family);
  font-size: 67px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.menufactur-process .process-row {
  display: grid;
  grid-template-columns: auto auto;
  gap: 24px;
}

.menufactur-process .process-row .process-card {
  position: relative;
}

.menufactur-process .process-row .process-card .process-img {
  position: relative;
}

.menufactur-process .process-row .process-card .process-text {
  position: absolute;
  top: 40px;
  left: 40px;
}

.menufactur-process .process-row .process-card .process-text h2 {
  font-weight: 400;
  margin-bottom: 8px;
}

.menufactur-process .process-row .process-card .process-text .processTitle {
  color: var(--White-Pure, var(--Color-Greys-G-07, #fff));
  /* Headings/100/Semi-Bold */
  font-family: var(--primary-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.menufactur-process .cta-div {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .menufactur-process {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .menufactur-process .section-title h3 {
    font-size: 56px;
  }

  .menufactur-process .process-row .process-card .process-text {
    top: 15px;
    left: 30px;
  }
}

@media (max-width: 767px) {
  .menufactur-process .process-row {
    grid-template-columns: auto;
  }

  .menufactur-process .section-title h3 {
    font-size: 42px;
  }

  .menufactur-process .process-row .process-card .process-text {
    top: 25px;
  }

  .menufactur-process .process-row .process-card .process-text .processTitle {
    font-size: 30px;
    font-weight: 600;
  }

  .menufactur-process .cta-div {
    margin-top: 0;
  }
}

.arise-footer {
  background: #f7f7f7;
  padding-top: 64px;
  padding-bottom: 0px;
}

.arise-footer .logo-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.arise-footer .logo-col .logo-footer {
  display: flex;
  align-items: center;
}

.arise-footer .logo-col .logo-footer img {
  margin-right: 40px;
  height: 55px;
}

.arise-footer .logo-col p {
  color: #5d5d5d;
}

.arise-footer .social-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.arise-footer .social-col .social-inner {
  display: flex;
  gap: 8px;
}

.arise-footer .quick-links-col .link-title {
  color: var(--Gray-01, #5d5d5d);
  /* Body/140/Semi-Bold */
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.arise-footer .quick-links-col ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 0;
}

.arise-footer .quick-links-col ul li {
  margin-bottom: 8px;
}

.arise-footer .quick-links-col ul li a {
  color: var(--Gray-02, #a2a2a2);
  /* CTA/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.arise-footer .quick-links-col ul li:last-child {
  margin-bottom: 0;
}

.arise-footer hr {
  margin-bottom: 0;
  color: #a2a2a2;
  margin-top: 48px;
}

.arise-footer .footer-bottom {
  padding: 32px 0;
  text-align: center;
}

.arise-footer .footer-bottom p {
  color: #5d5d5d;
}

@media (max-width: 991px) {
  .arise-footer {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .arise-footer .logo-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .arise-footer .social-col {
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
  }

  .arise-footer .quick-links-col .link-title {
    margin-top: 3rem;
  }

  .arise-footer .footer-bottom .botttom-link {
    display: flex;
    gap: 15px;
  }

  .arise-footer .footer-bottom {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .arise-footer {
    padding-top: 64px;
    padding-bottom: 32px;
  }

  .arise-footer .social-col {
    margin-top: 2rem;
    justify-content: flex-start;
  }
}

.blog-page {
  margin-top: 70px;
}

.blog-page .blog-page-banner {
  padding-bottom: 80px;
}

.blog-page .blog-page-banner .bredcrum {
  padding: 42px 6px;
}

.blog-page .blog-page-banner .carousel-item {
  margin-bottom: 72px;
}

.blog-page .blog-page-banner .carousel-item h2 {
  font-size: min(max(32px, 6.555vw), 36px);
}

.blog-page .blog-page-banner .carousel-item .row {
  --bs-gutter-x: 2rem;
}

.blog-page .blog-page-banner .carousel-item .subtitle {
  color: var(--Primary-color-02, #3aad4d);
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.blog-page .blog-page-banner .carousel-item .date {
  color: #061b3d;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 14px 0;
}

.blog-page .blog-page-banner .carousel-item .short-disc {
  margin-top: 24px;
  color: #5d5d5d;
}

/* .blog-page .blog-page-banner .carousel-item .img-col {
  background: url(../img/blog-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  background-position: center center;
} */
.blog-page .blog-page-banner .carousel-item .cta {
  margin-top: 25px;
  display: block;
  color: var(--White-Pure, var(--Color-Greys-G-07, #fff));
  /* CTA-Big/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  background: #337fde;
  padding: 16px 24px;
}

.blog-page .blog-page-banner .carousel-item .cta img {
  margin-left: 8px;
  transition: margin 0.2s ease;
}

.blog-page .blog-page-banner .carousel-item .cta:hover {
  background: #3aad4d;
}

.blog-page .blog-page-banner .carousel-item .cta:hover img {
  margin-left: 12px;
}

.blog-page .blog-page-banner .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  gap: 12px;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 0;
  margin-bottom: 0rem;
  margin-left: 0;
}

.blog-page .blog-page-banner .carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 44px;
  height: 6px;
  border-radius: 8px;
  padding: 0;
  margin-right: 0;
  margin-left: 0;
  text-indent: -999px;
  cursor: pointer;
  background-color: #061b3d;
  background-clip: padding-box;
  border: none;
  opacity: 0.25;
  transition: opacity 0.6s ease;
}

.blog-page .blog-page-banner .carousel-indicators .active {
  opacity: 1 !important;
  background-color: #337fde;
}

@media (max-width: 991px) {
  .blog-page .blog-page-banner .bredcrum {
    padding: 56px 6px;
  }

  .blog-page .blog-page-banner .carousel-item .img-col {
    margin-bottom: 3rem;
    min-height: 360px;
  }

  .blog-page .blog-page-banner .carousel-item .short-disc {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .blog-page .blog-page-banner .bredcrum {
    padding: 40px 6px;
  }

  .blog-page .blog-page-banner .carousel-item .img-col {
    min-height: 200px;
  }
}

.blog-page .blog-page-reading .bredcrum {
  padding: 80px 6px 24px;
}

.blog-page .blog-page-reading .container .col-md-11 {
  position: relative;
}

.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content p {
  margin-top: 1rem;
  color: #061b3d;
}

.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h1,
.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h2,
.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h3,
.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h4,
.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h5,
.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h6 {
  margin-top: 3rem;
  font-size: 36px;
  font-weight: 600;
  color: #061b3d;
  font-family: var(--primary-font-family);
}

.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content a {
  color: #337fde;
  font-size: 16px;
}

.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content ul {
  margin-top: 1.5rem;
  list-style: disc;
  margin-bottom: 1.5rem;
}

.blog-page
  .blog-page-reading
  .container
  .col-md-11
  .blog-reading-content
  ul
  li {
  margin: 8px 0;
}

.blog-page
  .blog-page-reading
  .container
  .col-md-11
  .blog-reading-content
  ul
  li:last-child {
  margin-bottom: 0;
}

.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content ol {
  margin-top: 1.5rem;
  list-style: decimal;
}

.blog-page
  .blog-page-reading
  .container
  .col-md-11
  .blog-reading-content
  ol
  li {
  margin: 8px 0;
}

.blog-page
  .blog-page-reading
  .container
  .col-md-11
  .blog-reading-content
  ol
  li:last-child {
  margin-bottom: 0;
}

.blog-page .blog-page-reading .container .col-md-11 .row {
  --bs-gutter-x: 2rem;
}

.blog-page .blog-page-reading .container .col-md-11 .date {
  color: var(--Primary-color-01, #061b3d);
  /* Body/140/Regular */
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 16px;
  margin-bottom: 80px;
}

.blog-page .blog-page-reading .container .col-md-11 .date span.color {
  color: #337fde;
}

.blog-page .blog-page-reading .container .col-md-11 .blog-reading-content {
  padding-bottom: 96px;
}

.blog-page .blog-page-reading .side-bar-mobile {
  display: none;
}

.blog-page .blog-page-reading .container .col-md-11 .side-bar .social-share {
  text-align: center;
  max-width: 50px;
  padding-top: 90px;
  top: 88px;
}

.blog-page
  .blog-page-reading
  .container
  .col-md-11
  .side-bar
  .social-share
  .icon {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.13);
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.blog-page .blog-page-reading .container .col-md-11 .side-bar .social-share p {
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-page
  .blog-page-reading
  .container
  .col-md-11
  .side-bar
  .social-share.sticky {
  padding-top: 0px;
  position: sticky;
  top: 88px;
  padding-bottom: 2.5rem;
  /* Add any additional styles for sticky positioning */
}

.blog-page .blog-page-reading .main-img-div {
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .blog-page {
    margin-top: 70px;
  }

  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content {
    padding-bottom: 64px;
  }

  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h1,
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h2,
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h3,
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h4,
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h5,
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h6 {
    margin-top: 2.5rem;
    font-size: 32px;
  }

  .blog-page .blog-page-reading .bredcrum {
    padding-top: 56px;
  }

  .blog-page .blog-page-reading .container .col-md-11 .date,
  .blog-page .blog-page-reading .main-img-div {
    margin-bottom: 56px;
  }

  .blog-page .blog-page-reading .container .col-md-11 .side-bar .social-share {
    min-width: 50px;
    max-width: fit-content;
  }

  .blog-page .blog-page-reading .container .col-md-11 .side-bar .social-share {
    padding-top: 10px;
  }

  .blog-page
    .blog-page-reading
    .container
    .col-md-11
    .side-bar
    .social-share.sticky {
    padding-top: 0px;
    top: 70px;
  }
}

@media (max-width: 767px) {
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h1,
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h2,
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h3,
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h4,
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h5,
  .blog-page .blog-page-reading .container .col-md-11 .blog-reading-content h6 {
    font-size: 28px;
  }

  .blog-page .blog-page-reading .container .col-md-11 .side-bar {
    display: none;
  }

  .blog-page .blog-page-reading .side-bar-mobile {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
    padding: 1rem 8px;
  }

  .blog-page .blog-page-reading .side-bar-mobile .social-share-mobile {
    text-align: center;
  }

  .blog-page .blog-page-reading .side-bar-mobile .social-share-mobile .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
  }

  .blog-reading-footer .arise-footer {
    padding-bottom: 130px;
  }
}

.more-blogs-section {
  padding-bottom: 80px;
}

.more-blogs-section .title {
  color: var(--Primary-color-01, #061b3d);
  text-align: center;
  font-family: var(--primary-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.more-blogs-section .row {
  --bs-gutter-x: 1.5rem;
}

.more-blogs-section .blog-card {
  margin-top: 40px;
}

.more-blogs-section .blog-card .card-inner {
  height: 100%;
  background: #fafafa;
  padding: 16px;
}

.more-blogs-section .blog-card .card-inner .img-div {
  min-height: 340px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.more-blogs-section .blog-card .card-inner .img-div .img-bg {
  min-height: 340px;
}

.more-blogs-section .blog-card .card-inner .card-title {
  color: #061b3d;
  font-family: var(--primary-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.more-blogs-section .blog-card .card-inner p {
  color: #5d5d5d;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  margin-top: 8px;
  font-weight: 400;
  line-height: 140%;
}

.more-blogs-section .blog-card .card-inner p.date {
  margin-top: 32px;
  color: #061b3d;
}

.more-blogs-section .blog-card .card-inner:hover {
  background: #fff;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.16);
}

.more-blogs-section .blog-card .card-inner:hover p.date {
  color: #337fde;
}

.more-blogs-section .blog-card .card-inner:hover .img-div .img-bg {
  transform: scale(1.1);
}

.pagination .nav-links,
.pagination-box {
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

span.prev.page-numbers.placeholder,
span.next.page-numbers.placeholder {
  cursor: not-allowed;
  opacity: 1;
  height: auto;
  width: auto;
  padding: 0 !important;
}

.pagination a.next.page-numbers,
.pagination a.prev.page-numbers, 
.pagination-box a.next.page-numbers,
.pagination-box a.prev.page-numbers {
  padding: 0 !important;
  border: none;
}

.pagination a.page-numbers,
.pagination-box a.page-numbers {
    border-radius: var(--Value-40px, 40px);
    background: transparent;
    font-family: var(--primary-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    padding: 15px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--Icon-CTA-Outlined-Default-Stroke, #dde1e8);
    color: #000 !important;
}

.pagination span.page-numbers,
.pagination-box span.page-numbers {
    border-radius: var(--Value-40px, 40px);
    background: transparent;
    color: var(--Gray-02, #a2a2a2);
    font-family: var(--primary-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    padding: 15px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination span.page-numbers.current,
.pagination-box span.page-numbers.current {
    border-radius: var(--Value-40px, 40px);
    background: var(--Primary-color-01, #061b3d);
    color: #fff;
}

.nav-prev-text.disable {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: url(../img/arrow-prev.svg) no-repeat center center;
}

.nav-next-text.disable {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: url(../img/arrow-next.svg) no-repeat center center;
}

.about-banner {
  margin-top: 88px;
}

.about-banner .container {
  padding-top: 80px;
}

.about-banner .container .banner-detail {
  margin-top: 80px;
  margin-bottom: 56px;
}

.about-banner .container .banner-detail .banner-title {
  color: #061b3d;
  font-family: var(--Primary-color-01);
  font-size: 67px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.about-banner .container .banner-detail .sub-title {
  color: var(--Gray-01, #5d5d5d);
  font-family: var(--primary-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .more-blogs-section .blog-card .card-inner .img-div {
    min-height: 200px;
    margin-bottom: 0;
  }

  .more-blogs-section .blog-card .card-inner .img-div .img-bg {
    min-height: 200px;
  }

  .more-blogs-section .blog-card .card-inner {
    padding: 0;
  }

  .more-blogs-section .blog-card .card-inner .card-text-box {
    padding: 16px 12px;
  }

  .about-banner {
    margin-top: 70px;
  }

  .about-banner .container {
    padding-top: 40px;
  }

  .about-banner .container .banner-detail {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .about-banner .container .banner-detail .about-banner-title {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .about-banner .container {
    margin-top: 0px;
  }

  .more-blogs-section .blog-card .card-inner .img-div {
    min-height: 200px;
    margin-bottom: 0;
  }

  .more-blogs-section .blog-card .card-inner .img-div .img-bg {
    min-height: 200px;
  }

  .more-blogs-section .blog-card .card-inner {
    padding: 0;
  }

  .more-blogs-section .blog-card .card-inner .card-text-box {
    padding: 16px 12px;
  }

  .about-banner .container .banner-detail .about-banner-title {
    font-size: 32px;
  }

  .about-banner .container .banner-detail .sub-title {
    font-size: 22px;
  }
}

.seperator hr {
  color: #a2a2a2;
  margin: 80px 0;
  opacity: 1;
}

.our-services-section {
  padding-bottom: 80px;
}

.our-services-section .title {
  color: var(--Primary-color-01, #061b3d);
  text-align: center;
  font-family: var(--primary-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.our-services-section .row {
  --bs-gutter-x: 1.5rem;
}

.our-services-section .service-card .card-inner {
  height: 100%;
  position: relative;
}

.our-services-section .service-card .card-inner {
  margin-top: 40px;
  background: #fafafa;
  padding: 24px;
}

.our-services-section .service-card .card-inner .img-div {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.our-services-section .service-card .card-inner .img-div img {
  transition: transform 0.4s ease;
}

.our-services-section .service-card .card-inner .card-title {
  color: var(--Primary-color-01, #061b3d);
  text-overflow: ellipsis;
  /* S-Headings/130/Semi-Bold */
  font-family: var(--primary-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.our-services-section .service-card .card-inner .learn-more {
  opacity: 0;
  margin-top: 16px;
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.our-services-section .service-card .card-inner .learn-more p {
  color: #337fde;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.our-services-section .service-card .card-inner:hover {
  background: #fff;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.16);
}

.our-services-section .service-card .card-inner:hover .learn-more {
  transition: all 0.3s ease;
  opacity: 1;
}

.our-services-section .service-card .card-inner:hover .img-div img {
  transform: scale(1.1);
}

.our-team-section {
  padding-bottom: 80px;
  padding-top: 80px;
}

.our-team-section .title {
  color: var(--Primary-color-01, #061b3d);
  text-align: center;
  font-family: var(--primary-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.our-team-section .row {
  --bs-gutter-x: 1.5rem;
}

.our-team-section .service-card .card-inner {
  margin-top: 40px;
  background: var(--Color-Greys-G-07, #fff);
  box-shadow: 0px 0px 5.3px 0px rgba(0, 0, 0, 0.1);
}

.our-team-section .service-card .card-inner .member-detail {
  padding: 40px;
}

.our-team-section .service-card .card-inner .member-detail .card-title {
  color: var(--Primary-color-01, #061b3d);
  font-family: var(--primary-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.our-team-section .service-card .card-inner .member-detail .designation {
  color: var(--Gray-01, #5d5d5d);
  text-overflow: ellipsis;
  /* CTA-Big/100/Semi-Bold */
  font-family: var(--primary-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 12px;
}

.our-team-section .service-card .card-inner .member-detail .disc {
  color: var(--Gray-02, #a2a2a2);
  /* Body/140/Regular */
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 24px;
}

.our-client-section {
  padding-bottom: 80px;
  padding-top: 80px;
}

.our-client-section .title {
  color: var(--Primary-color-01, #061b3d);
  text-align: center;
  font-family: var(--primary-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.our-client-section .client-row {
  margin-top: 80px;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 80px;
}

.our-client-section .client-row .card-inner {
  background: var(--Color-Greys-G-07, #fff);
  box-shadow: 0px 0px 5.3px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px 0;
}

@media (max-width: 991px) {
  .our-client-section .client-row {
    grid-template-columns: auto auto;
    gap: 50px;
    margin-top: 56px;
  }

  .seperator hr {
    margin: 56px 0;
  }

  .our-services-section {
    padding-bottom: 56px;
  }

  .our-team-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .our-team-section .service-card .card-inner .member-detail {
    padding: 20px;
  }

  .our-team-section .service-card .card-inner .member-detail .card-title {
    font-size: 28px;
  }

  .our-team-section .service-card .card-inner .member-detail .designation {
    font-size: 18px;
  }

  .our-client-section {
    padding-bottom: 64px;
    padding-top: 40px;
  }

  .our-services-section .service-card {
    margin-bottom: 2rem;
  }

  .our-services-section .service-card .card-inner {
    height: 100%;
  }

  .our-services-section .service-card .card-inner .learn-more {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .our-client-section .client-row {
    grid-template-columns: auto auto;
    gap: 30px;
  }
}

.bredcrum p,
.bredcrum h1 {
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.bredcrum p a.disable,
.bredcrum h1 a.disable {
  color: #061b3d;
}

.bredcrum p svg,
.bredcrum h1 svg {
  margin: 0 16px;
}

.bredcrum p span.active,
.bredcrum h1 span.active {
  color: #3981d9;
}

.contact-us-section {
  background: #fff;
  max-width: 1600px;
  margin: auto;
}

.contact-us-section.contact-us-page {
  margin-top: 88px;
}

.contact-us-section.contact-us-page .content-col {
  width: 45%;
  background: url(../img/contact-page-banner-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 200px;
}

.contact-us-section.contact-us-page .content-col .col-title {
  font-family: var(--primary-font-family);
  font-size: 90px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.contact-us-section.contact-us-page .content-col .margin {
  margin-top: 80px;
}

.contact-us-section.contact-us-page .content-col .contact-number {
  display: flex;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 16px;
}

.contact-us-section.contact-us-page .content-col .contact-number p {
  color: #fff;
  font-family: var(--primary-font-family);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 21px */
  opacity: 0.8;
}

.contact-us-section.contact-us-page .content-col .contact-number p.title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 4px;
  opacity: 1;
}

.contact-us-section.contact-us-page .content-col .contact-number svg,
.contact-us-section.contact-us-page .content-col .contact-number img {
  margin-right: 1.5rem;
}

.contact-us-section.contact-us-page .form-col {
  width: 55%;
  background: #fff;
  padding: 80px 80px 200px;
}

.contact-us-section.contact-us-page.single-temp{
    background: url(../img/new-single-form-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}


.contact-us-section.contact-us-page.single-temp .form-col {
  width: 100%;
  padding: 0;
  background: transparent;
}

.contact-us-section.contact-us-page.single-temp .form-col .single-inner-form{
    background: #fff;
    padding: 40px 20px;
    
}

.contact-us-section.contact-us-page .form-col .row {
  --bs-gutter-x: 1.5rem;
}

.contact-us-section.contact-us-page .form-col .title {
  color: var(--Primary-color-01, #061b3d);
  font-family: var(--primary-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.contact-us-section.contact-us-page .form-col .input-field {
  width: 100%;
  background-color: #f5f5f5;
  padding: 12px;
  border: 0.5px solid transparent;
  margin-bottom: 20px;
  border-radius: 4px;
}

.contact-us-section.contact-us-page .form-col .input-field:focus-visible {
  outline: none;
}

.contact-us-section.contact-us-page .form-col .input-field::placeholder {
  color: #061b3d;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.contact-us-section.contact-us-page .form-col textarea {
  min-height: 80px;
  border-radius: 4px;
}

.contact-us-section.contact-us-page .form-col label {
  margin-bottom: 10px;
  color: var(--Gray-2, #4f4f4f);
  /* Body/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  padding-left: 12px;
}

.contact-us-section.contact-us-page .form-col label span.star {
  color: #eb5757;
}

.contact-us-section.contact-us-page .form-col .file-attech-col {
  margin-bottom: 40px;
}

.contact-us-section.contact-us-page .form-col .file-attech-col .attech-name {
  padding-left: 12px;
  border: none;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 600;
}

.contact-us-section.contact-us-page .form-col .file-attech-col .file {
  border-radius: 4px;
  border: 0.6px dashed var(--Gray-02, #a2a2a2);
  background: var(--Gray-form-fields, #f5f5f5);
  padding: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 160px;
}

.contact-us-section.contact-us-page .form-col .file-attech-col .file p {
  color: var(--Gray-02, #a2a2a2);
  text-align: center;
  /* Body/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.contact-us-section.contact-us-page
  .form-col
  .file-attech-col
  .file
  .text-center
  span.wpcf7-form-control-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.contact-us-section.contact-us-page
  .form-col
  .file-attech-col
  .file
  .attech-input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
}

@media (max-width: 991px) {
  .contact-us-section.contact-us-page {
    margin-top: 70px;
  }

  .contact-us-section.contact-us-page .form-col {
    width: 100%;
    padding: 64px 32px 96px;
  }

  .contact-us-section.contact-us-page .content-col {
    width: 100%;
    padding: 80px 0;
  }

  .contact-us-section.contact-us-page .content-col .col-title {
    font-size: 64px;
  }

  .contact-us-section.contact-us-page .content-col .margin {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  /* .contact-us-section.contact-us-page .form-col {
    padding: 64px 16px 64px;
  } */
  .contact-us-section.contact-us-page .form-col .inner-div {
    padding: 0;
  }

  .contact-us-section.contact-us-page .content-col {
    width: 100%;
    padding: 64px 16px;
  }

  .contact-us-section.contact-us-page .content-col .col-title {
    font-size: 52px;
  }

  .contact-us-section.contact-us-page .content-col .margin {
    margin-top: 40px;
  }

  .contact-us-section.contact-us-page .content-col .contact-number svg {
    margin-right: 1rem;
  }

  .bredcrum p svg {
    margin: 0;
  }
}

.home-contact-section {
  background: url(../img/home-contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-contact-section .form-col {
  background: #fff;
  padding: 80px;
}

.home-contact-section .form-col .inner-div h5 {
  margin-bottom: 40px;
  color: var(--Primary-color-01, #061b3d);
  font-family: var(--primary-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.home-contact-section .form-col .row {
  --bs-gutter-x: 1.5rem;
}

.home-contact-section .form-col .input-field {
  width: 100%;
  background-color: #f5f5f5;
  padding: 12px;
  border: 0.5px solid transparent;
  margin-bottom: 20px;
  border-radius: 4px;
}

.home-contact-section .form-col .input-field:focus-visible {
  outline: none;
}

.home-contact-section .form-col .input-field::placeholder {
  color: #061b3d;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.home-contact-section .form-col textarea {
  min-height: 80px;
  border-radius: 4px;
}

.home-contact-section .form-col label {
  margin-bottom: 10px;
  color: var(--Gray-2, #4f4f4f);
  /* Body/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  padding-left: 12px;
}

.home-contact-section .form-col label span.star {
  color: #eb5757;
}

.home-contact-section .form-col .file-attech-col {
  margin-bottom: 40px;
}

.home-contact-section .form-col .file-attech-col .file {
  border-radius: 4px;
  border: 0.6px dashed var(--Gray-02, #a2a2a2);
  background: var(--Gray-form-fields, #f5f5f5);
  padding: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 125px;
}

.home-contact-section
  .form-col
  .file-attech-col
  .file
  .text-center
  span.wpcf7-form-control-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.home-contact-section .form-col .file-attech-col .attech-name {
  padding-left: 12px;
  border: none;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 600;
}

.home-contact-section .form-col .file-attech-col .file p {
  color: var(--Gray-02, #a2a2a2);
  text-align: center;
  /* Body/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.home-contact-section .form-col .file-attech-col .file .attech-input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
}

.home-contact-section .detail {
  padding-top: 80px;
  padding-left: 40px;
}

.home-contact-section .detail .col-title {
  font-family: var(--primary-font-family);
  font-size: 67px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.home-contact-section .detail .margin {
  margin-top: 80px;
}

.home-contact-section .detail .contact-number {
  display: flex;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 16px;
}

.home-contact-section .detail .contact-number p {
  color: #fff;
  font-family: var(--primary-font-family);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 21px */
  opacity: 0.8;
}

.home-contact-section .detail .contact-number p.title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 4px;
  opacity: 1;
}

.home-contact-section .detail .contact-number svg,
.home-contact-section .detail .contact-number img {
  margin-right: 1.5rem;
}

@media (max-width: 991px) {
  .home-contact-section .detail {
    padding-top: 0;
    padding-left: 0;
    margin-bottom: 3rem;
  }

  .home-contact-section .detail .col-title {
    font-size: 52px;
  }

  .home-contact-section .detail .margin {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .home-contact-section .detail .col-title {
    font-size: 46px;
  }

  .home-contact-section .form-col {
    padding: 40px 20px;
  }
}

.services-page {
  margin-top: 88px;
}

.services-page .bredcrum {
  padding-top: 80px;
  padding-bottom: 80px;
}

.service-tab-section {
  padding-bottom: 200px;
}

.service-tab-section .nav-tabs {
  align-items: flex-end;
  border: none;
}

.service-tab-section .nav-tabs .nav-link {
  padding: 16px;
  border: none;
  border-bottom: 1px solid var(--Gray-02, #a2a2a2);
  background: var(--Color-Greys-G-07, #fff);
  color: var(--Primary-color-01, #061b3d);
  text-align: center;
  /* CTA-Big/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  opacity: 1;
}

.service-tab-section .nav-tabs .nav-link.active {
  border-bottom: 3px solid var(--Primary-color-03, #337fde);
  color: var(--Primary-color-01, #061b3d);
  font-weight: 600;
}

.service-tab-section .tab-content {
  padding-top: 80px;
}

.service-tab-section .tab-content .row {
  --bs-gutter-x: 2.5rem;
}

.service-tab-section .tab-content .content-col .subtitle {
  color: var(--Primary-color-02, #3aad4d);
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.service-tab-section .tab-content .content-col p {
  margin-top: 40px;
}

.service-tab-section .tab-content .content-col .title {
  color: var(--Primary-color-01, #061b3d);
  font-family: var(--primary-font-family);
  font-size: 67px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  margin-top: 1rem;
}

.service-tab-section .cta {
  margin-top: 80px;
  display: block;
  color: var(--White-Pure, var(--Color-Greys-G-07, #fff));
  /* CTA-Big/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  background: #337fde;
  padding: 16px 24px;
}

.service-tab-section .cta img {
  margin-left: 8px;
  transition: margin 0.2s ease;
}

.service-tab-section .cta:hover {
  background: #3aad4d;
}

.service-tab-section .cta:hover img {
  margin-left: 12px;
}

@media (max-width: 991px) {
  .services-page .bredcrum {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .services-page {
    margin-top: 70px;
  }

  .service-tab-section .nav {
    flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: scroll;
    white-space: nowrap;
    padding-bottom: 2rem;
    gap: 30px;
  }

  .service-tab-section .tab-content .content-col .title {
    font-size: 44px;
  }

  .service-tab-section {
    padding-bottom: 96px;
  }
}

@media (max-width: 767px) {
  .service-tab-section .tab-content .content-col .title {
    font-size: 38px;
  }
}

.segment-tab-section {
  padding-bottom: 200px;
}

.segment-tab-section .nav-tabs {
  align-items: flex-end;
  border: none;
}

.segment-tab-section .nav-tabs .nav-link {
  padding: 16px;
  border: none;
  border-bottom: 1px solid var(--Gray-02, #a2a2a2);
  background: var(--Color-Greys-G-07, #fff);
  color: var(--Primary-color-01, #061b3d);
  text-align: center;
  /* CTA-Big/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  opacity: 1;
}

.segment-tab-section .nav-tabs .nav-link.active {
  border-bottom: 3px solid var(--Primary-color-03, #337fde);
  color: var(--Primary-color-01, #061b3d);
  font-weight: 600;
}

.segment-tab-section .tab-content {
  padding-top: 80px;
}

.segment-tab-section .row {
  --bs-gutter-x: 2.5rem;
}

.segment-tab-section .margin {
  margin-bottom: 64px;
}

.segment-tab-section .product-card {
  background: #fafafa;
  padding: 32px 40px;
  margin-bottom: 64px;
  height: 100%;
}

.segment-tab-section .product-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.segment-tab-section .product-card a .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: padding 0.4s ease;
}

.segment-tab-section .product-card a .card-top .card-title {
  color: #061b3d;
  font-family: var(--primary-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  max-width: 280px;
}

.segment-tab-section .product-card a .card-top .sub-title {
  color: #5d5d5d;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 8px;
}

.segment-tab-section .product-card a .card-img {
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s ease;
  mix-blend-mode: multiply;
}

.segment-tab-section .product-card:hover {
  background: #fff;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.16);
}

.segment-tab-section .product-card:hover .card-img {
  transform: scale(1.1);
}

.segment-tab-section .product-card:hover .card-top {
  padding-left: 8px;
  padding-right: 8px;
}

.segment-tab-section .cta {
  margin-top: 16px;
  display: block;
  color: var(--White-Pure, var(--Color-Greys-G-07, #fff));
  /* CTA-Big/100/Regular */
  font-family: var(--primary-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  background: #337fde;
  padding: 16px 24px;
}

.segment-tab-section .cta:hover {
  background: #3aad4d;
}

@media (max-width: 991px) {
  .segment-tab-section {
    padding-bottom: 96px;
    overflow-x: hidden;
  }

  .segment-tab-section .tab-content {
    padding-top: 20px;
  }

  .segment-tab-section .nav {
    flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: scroll;
    white-space: nowrap;
    padding-bottom: 2rem;
    gap: 30px;
  }

  .segment-tab-section .product-card {
    padding: 32px 30px;
    margin-bottom: 30px;
  }
}

.product-discription-section {
  margin-top: 88px;
  padding-bottom: 80px;
}

.product-discription-section .bredcrum {
  padding: 80px 6px;
}

.product-discription-section .row {
  --bs-gutter-x: 1.5rem;
}

.product-discription-section .product-detail-row {
  margin-bottom: 80px;
}

.product-discription-section .subtitle {
  color: var(--Primary-color-02, #3aad4d);
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 16px;
}

.product-discription-section .product-detail-row .disc h2 {
  margin-bottom: 20px;
}

.product-discription-section .product-detail-row .disc p {
  margin-top: 15px;
  color: #5d5d5d;
}

.product-discription-section .product-detail-row .disc ul {
  list-style: disc;
  margin: 1rem 0 2rem;
}

.product-discription-section .product-detail-row .disc ul li {
  margin: 8px 0;
  color: #5d5d5d;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

@media (max-width: 991px) {
  .product-discription-section {
    margin-top: 70px;
    padding-bottom: 64px;
  }

  .product-discription-section .product-detail-row {
    margin-bottom: 40px;
  }

  .product-discription-section .product-detail-row .img-col {
    margin-bottom: 40px;
  }

  .product-discription-section .bredcrum {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.other-products {
  padding-top: 80px;
  padding-bottom: 80px;
}

.other-products .row {
  --bs-gutter-x: 1.5rem;
}

.other-products .section-title {
  color: var(--Primary-color-01, #061b3d);
  text-align: center;
  font-family: var(--primary-font-family);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 40px;
}

.other-products .product-card-row .card-col .product-card {
  background: #fafafa;
  overflow: hidden;
  height: 100%;
}

.other-products .product-card-row .card-col .product-card .img-div {
  max-height: 375px;
  overflow: hidden;
}

.other-products .product-card-row .card-col .product-card .img-div img {
  transition: transform 0.4s ease;
  scale: 0.9;
}

.other-products.home .product-card-row .card-col .product-card .img-div img {
  scale: 1;
}

.other-products .product-card-row .card-col .product-card .text-box {
  padding: 40px 32px 32px;
  transition: padding 0.4s ease;
}

.other-products
  .product-card-row
  .card-col
  .product-card
  .text-box
  .section-title {
  text-align: left;
  margin-bottom: 8px;
  /* font-size: 32px; */
}

.other-products
  .product-card-row
  .card-col
  .product-card
  .text-box
  .section-title
  br {
  display: none;
}

.other-products .product-card-row .card-col .product-card .text-box p {
  color: #5d5d5d;
}

.other-products .product-card-row .card-col .product-card:hover {
  background: var(--White-Pure, #fff);
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.16);
}

.other-products .product-card-row .card-col .product-card:hover .img-div img {
  transform: scale(1.05);
}

.other-products.home
  .product-card-row
  .card-col
  .product-card:hover
  .img-div
  img {
  transform: scale(1.1);
}

.other-products .product-card-row .card-col .product-card:hover .text-box {
  padding: 40px 40px 32px;
}

@media (max-width: 991px) {
  .other-products {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .other-products .product-card-row .card-col {
    margin-bottom: 40px;
  }

  .other-products .section-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .other-products .section-title {
    font-size: 26px;
  }

  .segment-tab-section {
    padding-bottom: 64px;
  }
}

.other-products.home {
  padding-top: 0px;
  padding-bottom: 0;
}

.other-products.home .product-card-row .card-col {
  margin-top: 80px;
  margin-bottom: 0;
}

.other-products.home .product-card-row .card-col .product-card .img-div {
  max-height: 375px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .other-products.home .product-card-row .card-col {
    margin-top: 40px;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .other-products.home .product-card-row .card-col .product-card .text-box {
    padding: 30px 24px 24px;
  }

  .other-products.home
    .product-card-row
    .card-col
    .product-card
    .text-box
    .section-title {
    font-size: 28px;
    font-weight: 600;
  }
}

.trust {
  position: relative;
  padding-bottom: 168px;
  /*  IMPORTANT CODE BELOW */
}

.trust .slider {
  overflow: hidden;
}

.trust .slide-track {
  animation: 30s scroll infinite linear;
  flex-flow: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.trust .slide {
  flex: 1;
  margin-left: 3rem;
  margin-right: 3rem;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 991px) {
  .trust {
    padding-bottom: 96px;
  }
}

@media screen and (max-width: 768px) {
  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }

    100% {
      transform: translateX(-800px);
    }
  }
}

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

/* body,
html {
  overflow-x: hidden;
} */

a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
  margin-bottom: 0;
}

h1 {
  font-family: var(--primary-font-family);
  font-family: var(--primary-font-family);
  font-size: min(max(36px, 6.555vw), 90px);
  font-weight: 600;
  margin-bottom: 0;
  color: #222;
  line-height: 110%;
}

h1.white {
  color: #fff;
}

h1 span.cross {
  text-decoration: line-through;
  opacity: 0.2;
}

.h1-font {
  font-family: var(--primary-font-family);
  font-size: min(max(32px, 6.555vw), 67px);
  color: #061b3d;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 115%;
}

h2 {
  font-family: var(--primary-font-family);
  font-size: min(max(32px, 6.555vw), 67px);
  color: #061b3d;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 115%;
}

h2.white {
  color: #fff;
}

h3 {
  font-family: var(--primary-font-family);
  font-size: min(max(26px, 11.111vw), 48px);
  color: #000;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 120%;
}

h3.white {
  color: #fff;
}

h4 {
  font-family: var(--primary-font-family);
  font-size: min(max(24px, 6.555vw), 28px);
  color: #061b3d;
  font-weight: 500;
  margin-bottom: 0;
}

h4.white {
  color: #fff;
}

h5 {
  font-family: var(--primary-font-family);
  font-size: min(max(22px, 6.555vw), 24px);
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
}

h5.white {
  color: #fff;
}

h6 {
  font-family: var(--primary-font-family);
  font-size: min(max(20px, 6.555vw), 22px);
  color: #000;
  font-weight: 500;
  margin-bottom: 0;
}

h6.white {
  color: #fff;
}

.page-title {
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 140%;
}

p {
  color: #061b3d;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 140%;
}

p.opacity {
  opacity: 0.5;
}

p.white {
  color: #fff;
}

.container {
  max-width: 91rem;
  --bs-gutter-x: 3rem;
}

.row {
  --bs-gutter-x: 0;
}

@media (max-width: 991px) {
  .container {
    --bs-gutter-x: 3.75rem;
  }
}

@media (max-width: 767px) {
  .container {
    --bs-gutter-x: 2rem;
  }
}

.home-main header .primary-arrow-btn {
  display: none;
}

/*# sourceMappingURL=condensed.css.map */
.modal .row {
  --bs-gutter-x: 1.5rem;
}

.modal .modal-title {
  color: var(--Primary-color-01, #061b3d);
  font-family: var(--primary-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* margin-top: 40px;
  margin-bottom: 40px; */
}

.modal .input-field {
  width: 100%;
  background-color: #f5f5f5;
  padding: 12px;
  border: 0.5px solid transparent;
  margin-bottom: 20px;
  border-radius: 4px;
}

.modal .input-field:focus-visible {
  outline: none;
}

.modal .input-field::placeholder {
  color: #061b3d;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.modal textarea {
  min-height: 80px;
  border-radius: 4px;
}

.modal label {
  margin-bottom: 10px;
  color: var(--Gray-2, #4f4f4f);
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  padding-left: 12px;
}

.modal label span.star {
  color: #eb5757;
}

.modal .file-attech-col {
  margin-bottom: 40px;
}

.modal .file-attech-col .file {
  border-radius: 4px;
  border: 0.6px dashed var(--Gray-02, #a2a2a2);
  background: var(--Gray-form-fields, #f5f5f5);
  padding: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 80px;
}

.modal .file-attech-col .file .text-center span.wpcf7-form-control-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.modal .file-attech-col .attech-name {
  padding-left: 12px;
  border: none;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 600;
}

.modal .file-attech-col .file p {
  color: var(--Gray-02, #a2a2a2);
  text-align: center;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.modal .file-attech-col .file .attech-input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0;
}

.privacy-policy-page {
  margin-top: 96px;
  padding-top: 88px;
  padding-bottom: 88px;
  background: #fafafa;
}

.privacy-policy-page .title {
  font-size: 48px;
  margin-bottom: 3rem;
}

.privacy-policy-page .content h3 {
  font-size: 28px;
  margin-top: 2.5rem;
}

.privacy-policy-page .content ul {
  list-style: disc;
  margin: 1rem 0 2rem;
}

.privacy-policy-page .content ul li {
  margin: 8px 0;
  color: #5d5d5d;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.privacy-policy-page .content p {
  margin-top: 1rem;
  color: #5d5d5d;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.privacy-policy-page .content h5 {
  font-size: 20px;
  margin-top: 1.5rem;
}

@media (max-width: 991px) {
  .privacy-policy-page {
    margin-top: 70px;
    padding-top: 76px;
    padding-bottom: 76px;
  }
}

@media (max-width: 767px) {
  .privacy-policy-page {
    margin-top: 70px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .privacy-policy-page .title {
    font-size: 34px;
  }
}

.brands-row {
  display: grid;
  gap: 44px;
  grid-template-columns: auto auto auto auto auto;
  padding-bottom: 80px;
}

.brands-row .brand-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.brands-row .brand-img img {
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-height: 130px;
}

.brands-row .brand-img p {
  color: #000;
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .brands-row {
    grid-template-columns: auto auto auto auto;
    gap: 38px;
  }
}

@media (max-width: 767px) {
  .brands-row {
    grid-template-columns: auto auto;
    gap: 35px;
  }
}

.about-banner .pagination-wrapper {
  padding-bottom: 80px;
}

.about-banner .pagination-wrapper .navigation.pagination {
  align-items: center;
  justify-content: center;
}

.about-banner .pagination-wrapper .navigation.pagination .nav-links {
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 16px;
}

.about-banner
  .pagination-wrapper
  .navigation.pagination
  .nav-links
  .page-numbers {
  border-radius: var(--Value-40px, 40px);
  background: transparent;
  color: var(--Gray-02, #a2a2a2);
  /* Body/11/Reg/B-04 */
  font-family: var(--primary-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  padding: 15px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-banner
  .pagination-wrapper
  .navigation.pagination
  .nav-links
  .page-numbers.current {
  border-radius: var(--Value-40px, 40px);
  background: var(--Primary-color-01, #061b3d);
  color: #fff;
}

.about-banner .pagination-wrapper .navigation.pagination .nav-links a.prev.page-numbers {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: url(../img/arrow-prev.svg) no-repeat center center;
}

.about-banner .pagination-wrapper .navigation.pagination .nav-links a.next.page-numbers {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: url(../img/arrow-next.svg) no-repeat center center;
}