/*poopins font link*/
@import url("https://fonts.googleapis.com/css2?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");
/*poopins font link*/

/* Montserrat */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Montserrat */

@font-face {
  font-family: "Recoleta";
  src: url("../fonts/recoleta-regular.woff") format("woff"),
    url("../fonts/recoleta-regular.ttf") format("truetype"),
    url("../fonts/recoleta-regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*,
body,
html {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--poppins-font);
  --primary: #28418C;
}

:root {
  --poppins-font: "Poppins", sans-serif;
  --montserrat-font: "Montserrat", sans-serif;
  --recoleta: "Recoleta", sans-serif;
  --white: #fff;
  --transition4: 0.4s;
  --radius50px: 50px;
  --primary: #032258;
  --radius6px: 6px;
  --dark-bg: #011633;
  --redinfo: #cb2700;
}

.recoleta {
  font-family: var(--recoleta);
}

.montserrat {
  font-family: var(--montserrat-font);
}

.poppins {
  font-family: var(--poppins-font);
}

::-webkit-scrollbar {
  width: 10px;
  background-color: var(--primary);
  height: 10px;
  border-radius: 50px;
  display: none;
}

/* basic css */
ul {
  list-style: none;
}

a:hover {
  color: var(--white);
}

ol,
ul {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  opacity: 0.8;
  font-family: var(--montserrat-font);
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
  -webkit-transition: all var(--transition4);
  -o-transition: all var(--transition4);
  transition: all var(--transition4);
}

img,
video {
  display: block;
  max-width: 100%;
}

.theme-container {
  padding: 0 25px;
  margin: auto;
  max-width: 1450px;
}

.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 15px;
  border-radius: var(--radius6px);
  font-weight: 400;
}

.theme-btn:hover {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}

.primary-btn {
  color: #fff;
  background: var(--primary);
}

.h5title {
  color: #333333;
}

.space-30px {
  padding: 30px 0;
}

.space-50px {
  padding: 50px 0;
}

.primary-bg {
  background-color: var(--primary);
}

.space-100px {
  padding: 100px 0;
}

.space-70px {
  padding: 70px 0;
}

.space-20px {
  padding: 20px 0;
}

.space-40px {
  padding: 40px 0;
}

.grey-bg {
  background-color: #f7f7f7;
}

.dark-bg {
  background-color: var(--dark-bg);
}

/* basic css */

.top-arrow {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: var(--primary);
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-arrow svg path {
  stroke: #fff;
}

.top-arrow svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 100%;
  height: 100%;
}

@-webkit-keyframes toparrow {
  0% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
}

@keyframes toparrow {
  0% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
}

/*header css start*/
.header-btn .theme-btn {
  min-width: 100%;
  padding: 5px 20px;
  font-size: 14px;
}

.navbar {
  padding: 0;
  gap: 12px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
}

.header.header-sticky,
.bg-header {
  background-color: var(--dark-bg);
}

.main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  min-height: 60px;
}

.menu-item {
  position: relative;
  list-style: none;
}

.menu-dropdown .menu-link {
  gap: 5px;
}

.menu-dropdown .menu-link svg {
  width: 10px;
  height: 10px;
}

.menu-item:hover .menu-link,
.menu-item.active .menu-link {
  color: var(--white);
}

.menu-item:hover .menu-link svg path {
  stroke: var(--white);
}

.menu-link {
  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-family: inherit;
  font-size: 13px;
  font-weight: 300;
  line-height: inherit;
  cursor: pointer;
  text-transform: capitalize;
  color: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 25px 8px;
  letter-spacing: 0.2px;
  position: relative;
  text-transform: uppercase;
}

.menu-item.active .menu-link:before {
  display: block;
}

.menu-link:before {
  display: none;
  content: "";
  position: absolute;
  bottom: 16px;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50px;
}

.menu-link>i.bx {
  font-size: 1.35rem;
  line-height: 1.5;
  color: inherit;
}

.close-icon {
  position: absolute;
  -webkit-filter: invert(1);
  filter: invert(1);
  right: 10px;
  top: 20px;
  width: auto;
  height: 20px;
  cursor: pointer;
  display: none;
  z-index: 1;
}

.burger {
  position: relative;
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 20px;
  height: 20px;
  opacity: 0;
  visibility: hidden;
  background: transparent;
}

.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.1px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 1rem;
  background: var(--white);
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.main-header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.65);
}

.menu {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-link:after {
  content: "";
  position: absolute;
  bottom: 20px;
  width: calc(100% - 30%);
  height: 1px;
  border-radius: 50%;
  background: #ffffff42;
  opacity: 0;
}

.menu-link:hover:after {
  opacity: 1;
}

.gap3 {
  gap: 3rem;
}

/*header css end*/

/* slider css :start */
.slider-content {
  min-height: calc(100vh - 10.7rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: center;
  padding-bottom: 1rem;
  position: relative;
  z-index: 1;
  padding-top: 5rem;
}

.slider-area {
  background-image: url(../images/stocks/hero.webp);
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.slider-content p {
  color: #ffffff;
  font-size: 18px;
  max-width: 800px;
  opacity: 1;
  /* font-weight: 300; */
  margin-top: 10px;
  font-family: var(--montserrat-font);
}

.slider-content h1 {
  font-size: max(30px, 3vw);
  color: var(--white);
  font-family: var(--recoleta);
}

/* slider css end */

/* client slider start*/
.client-slider .h5title {
  margin: 0;
}

.client-slider-info img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  display: inline;
  margin: 0 15px;
}

/* client slider end*/

/* video section css start*/
.video-controls svg {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.video-controls {
  position: absolute;
  top: 0;
  z-index: 2;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-tag {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 2rem;
  line-height: 130%;
  font-size: 32px;
  text-transform: uppercase;
}

.video-content {
  position: relative;
}

.video-tag span {
  color: #67686b;
  font-weight: 400;
}

.video-content video {
  min-height: 500px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: calc(100vh - 8rem);
}

.video-content:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  background-image: -o-linear-gradient(top, #0000006b, #00000000);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0000006b), to(#00000000));
  background-image: linear-gradient(180deg, #0000006b, #00000000);
}

.client-slider-info {
  text-align: center;
  overflow: auto;
  white-space: nowrap;
}

/* video section css end*/

/* Our Pillars of Excellence start */
.opoe-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.opoe-items li img {
  width: auto;
  height: 50px;
  -webkit-filter: invert(1);
  filter: invert(1);
}

.opoe-items li p {
  font-size: 20px;
  line-height: 130%;
  margin-top: 12px;
  color: #fff;
}

.opoe-content {
  max-width: 1100px;
  margin: auto;
}

.opoe-items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 3rem;
  background: #000;
  border-radius: 10px;
}

/* Our Pillars of Excellence end */

/* grid-layout start */
body .big-grid .left {
  width: 60%;
}

body .big-grid .right {
  width: 40%;
}

.grid-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reverse .grid-items {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.grid-items .left {
  width: 40%;
}

.grid-items .right {
  width: 60%;
}

.white-text .right * {
  color: var(--white);
}

.grid-items .right h4 {
  font-size: max(30px, 2.5vw);
  line-height: 100%;
  font-family: var(--recoleta);
  padding-bottom: 10px;
}

.grid-items .right p {
  line-height: 155%;
  font-size: 15px;
  padding-bottom: 10px;
  text-align: justify;
  font-family: var(--montserrat-font);
  font-weight: 500;
}

.grid-items .left img {
  border-radius: 20px;
}

/* grid-layout end */

/* quote-style start */
.quote-doc {
  position: relative;
  border: 4px solid var(--primary);
  border-radius: 50px;
  margin: auto;
  max-width: 920px;
  padding: 4rem;
}

.quote-img {
  position: absolute;
  height: 70px;
}

.quote-first {
  top: -16px;
  left: -22px;
}

.quote-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.quote-second {
  bottom: -16px;
  right: -22px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.quote-content p {
  font-size: 14px;
  line-height: 180%;
  font-weight: 500;
}

.quote-content h2 {
  font-size: 40px;
  line-height: 130%;
  font-weight: 800;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
}

.quote-content * {
  color: var(--primary);
}

/* quote-style end */

/* footer css start */
.footer-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-items .menu-link {
  color: #000;
  padding: 0;
  font-weight: 400;
}

.footer .menu-link:after {
  background: #00000042;
  bottom: -3px;
}

.footer {
  padding: 10px;
  border-bottom: 1px solid #dddddd;
}

.copyright-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 723px;
  margin: auto;
  padding: 6px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.copyright-content p {
  font-size: 12px;
  color: #666666;
}

.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.social-media svg {
  width: auto;
  height: 26px;
  cursor: pointer;
}

/* footer css end */

/* company-info css start */
.company-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 6rem;
  margin: auto;
  max-width: 1100px;
}

.company-content .list {
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.company-content .list h5 {
  margin: 5px 0;
  font-weight: 600;
  color: var(--primary);
}

.company-content .list img {
  width: auto;
  height: 100px;
  margin: auto;
  margin-bottom: 4rem;
}

.company-content .list p {
  font-size: 14px;
  opacity: 1;
  font-weight: 500;
}

/* company-info css end */

/* login css start */
.modal-content:has(.login-content) {
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.modal-dialog:has(.login-content) {
  max-width: 800px;
}

.login-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-content .left,
.login-content .right {
  width: 50%;
}

.heading-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 5px;
  margin-bottom: 20px;
}

.heading-login h4 {
  margin: 0;
  font-size: 22px;
}

.heading-login img {
  margin-bottom: 8px;
  height: 30px;
}

.heading-login p {
  font-size: 13px;
  opacity: 0.6;
  line-height: 120%;
  font-weight: 500;
}

.login-content .right .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-size: 10px;
  opacity: 1;
  -webkit-filter: invert(1);
  filter: invert(1);
}

.modal-content:has(.login-content) .modal-body {
  padding: 0;
}

.login-content .right img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.app-item img {
  height: 20px;
}

.app-item,
.app-function {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.login-content .left {
  padding: 2rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form-control,
.form-select {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: var(--radius6px);
  color: #787878;
}

.form-label {
  font-size: 13px;
  margin-bottom: 3px;
}

.form-control:focus,
.form-select:focus {
  border-color: #ced4da;
  -webkit-box-shadow: 0px 3px 0px #00000017;
  box-shadow: 0px 3px 0px #00000017;
}

.flex-item,
.flex-item .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  padding: 0;
}

.flex-item .form-check {
  gap: 5px;
}

.form-check .form-check-input {
  width: 16px;
  height: 16px;
  float: none;
  margin: 0;
}

.heading-login h4 span {
  color: #000;
}

.app-item {
  padding: 8px 16px;
  border-radius: var(--radius6px);
  border: 1px solid #e1e1e1;
  font-size: 13px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #646464;
}

.download-app .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.download-app .line:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #e1e1e1;
  pointer-events: none;
  z-index: 0;
}

.download-app .line span {
  position: relative;
  background: #fff;
  z-index: 1;
  font-size: 12px;
  padding: 6px 12px;
  color: #8f8f8f;
}

.download-app {
  margin-top: 5px;
}

.remembe-me .form-check-label {
  opacity: 0.8;
}

.app-item:hover {
  color: inherit;
  background: #f5f5f5;
}

.w-full {
  width: 100%;
}

.form-group {
  margin-bottom: 5px;
}

.size-sm {
  font-size: 13px;
}

/* login css end */

/* about us css start */
.top-head .slider-content {
  height: auto;
  min-height: 420px;
  max-width: 500px;
  text-align: center;
  margin-left: auto;
}

.top-head .typing-text {
  padding: 0;
  text-align: left;
  font-size: 55px;
}

.top-head .slider-content p {
  max-width: 100%;
  font-weight: 500;
}

.about-us {
  background-image: url(../images/stocks/about_us.webp);
}

.top-head::before {
  opacity: 0.7;
  background: #000000;
}

.legacy_milestones * {
  color: #000000;
}

.legacy_milestones-content p {
  font-size: 16px;
  opacity: 1;
  font-family: var(--montserrat-font);
}

.mb-0 {
  margin-bottom: 0 !important;
}

.legacy_milestones {
  background: var(--primary);
  margin-bottom: 3rem;
}

.legacy_milestones-content * {
  color: #fff;
}

.legacy_milestones-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 8rem;
  gap: 5rem;
}

.legacy_milestones-content h2 {
  font-size: 4rem;
  font-family: var(--recoleta);
  line-height: 100%;
}

.stone-style {
  position: absolute;
  width: 100px;
  bottom: -90px;
  left: 25px;
}

.relative {
  position: relative;
}

.next-generation-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.next-generation-content .left {
  -webkit-box-flex: 0.6;
  -ms-flex: 0.6;
  flex: 0.6;
}

.next-generation-content .right {
  -webkit-box-flex: 0.4;
  -ms-flex: 0.4;
  flex: 0.4;
}

.next-generation-content .right h6 {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 20px;
}

.next-generation-content .right p {
  line-height: 180%;
}

.timeline-content p {
  display: none;
}

.timeline-content li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}

.timeline-content {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-right: -1px;
}

.timeline-content li {
  border: 1px solid #fff;
  position: relative;
  border-top: 0;
  border-left: 0;
}

.timeline-content li h4 {
  position: absolute;
  bottom: 0px;
  left: 10px;
  color: #ffffffdb;
  font-weight: 400;
  font-size: 20px;
}

.timeline-content li:hover p {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  color: #fff;
  padding: 0 10px;
  font-size: 14px;
}

.timeline-content li:hover h4 {
  display: none;
}

.timeline-content li:hover img {
  -webkit-filter: brightness(0.2);
  filter: brightness(0.2);
}

.lld-content li {
  list-style: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.lld-content li span {
  opacity: 0.8;
}

.lld-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.lld-content li img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.next-generation-content .left img,
.lld-content li img,
.quality-content img,
.radius {
  border-radius: 10px;
}

.legacy-laxmi-diamond h2 {
  padding-bottom: 15px;
}

.lld-content li h5 {
  margin-top: 15px;
}

/* about us css end */

/* world map css start */
.counter-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 4rem;
}

.counter-timer li {
  text-align: left;
  min-width: 190px;
}

.counter-timer span.percent:after {
  content: "+";
  display: inline-block;
}

.world-map-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 6rem 0 2rem 0;
}

.world-map-content * {
  color: #fff;
}

.world-map-content h2 {
  padding-top: 1rem;
  line-height: 130%;
  font-size: 40px;
  font-family: var(--recoleta);
  font-weight: 200;
}

.counter-timer li:first-child {
  border-right: 2px solid #ffffff4f;
  padding-right: 25px;
  margin-right: 10px;
}

.counter-timer li .count {
  font-size: 45px;
  font-weight: 500;
  white-space: nowrap;
}

.counter-timer li p {
  font-size: 20px;
  margin-top: -8px;
}

.world-map-content .right {
  padding-top: 5rem;
  zoom: 0.9;
}

/* world map css end */

/* sustainable-process start */
.sustainable-process {
  background-image: url(../images/blogs-news/sustainable-process.webp);
}

.flip-box-img path {
  stroke: #fff;
}

.flip-box-img {
  width: auto;
  height: 22px;
  display: none;
}

.box-container {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 0 2rem;
}

.box-item {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: var(--radius6px);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 20px;
  opacity: 0;
  background: #000;
}

.flip-box {
  height: 100%;
}

.flip-box-front {
  height: 100%;
  padding: 20px;
  background-position: center;
  background-size: cover;
}

.color-white * {
  color: #fff;
}

h3.flip-box-header {
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  font-family: var(--recoleta);
  width: 100%;
}

.inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.flip-box-back p {
  text-align: left;
  font-size: 16px;
  overflow: auto;
  font-weight: 300;
  opacity: 0.9;
}

.box-item:hover .flip-box-front {
  opacity: 0;
}

.box-item:hover .flip-box-back {
  opacity: 1;
}

.quality-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.quality-content p {
  margin-top: 15px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.flip-box-front:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000066;
  pointer-events: none;
  z-index: 0;
}

.small-grid .grid-items {
  gap: 3rem;
  margin: auto;
  max-width: 1200px;
}

.small-grid .grid-items p {
  max-width: 620px;
  text-align: left;
}

.white-text * {
  color: #fff;
}

/* sustainable-process end */

/* stories css :start */
.blogs-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.large-blog {
  -webkit-box-flex: 0.75;
  -ms-flex: 0.75;
  flex: 0.75;
}

.small-blogs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  -webkit-box-flex: 0.45;
  -ms-flex: 0.45;
  flex: 0.45;
}

.blogs-items h4 {
  font-size: 16px;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background: -o-linear-gradient(bottom, black, transparent);
  background: -webkit-gradient(linear, left bottom, left top, from(black), to(transparent));
  background: linear-gradient(360deg, black, transparent);
  margin: 0;
  font-weight: 400;
  z-index: 1;
}

.large-blog h2,
.blog-title {
  margin-top: 20px;
  padding-right: 15px;
}

.blogs-news-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: block;
}

.blogs-news-image img {
  -webkit-filter: brightness(0.9);
  filter: brightness(0.9);
}

.object-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  -webkit-transition: -webkit-transform 1.1s ease-out;
  transition: -webkit-transform 1.1s ease-out;
  -o-transition: transform 1.1s ease-out;
  transition: transform 1.1s ease-out;
  transition: transform 1.1s ease-out, -webkit-transform 1.1s ease-out;
}

.object-cover:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.small-blogs h2 {
  font-size: 18px;
  margin-top: 16px;
}

.small-blogs p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blogs-items h2,
.blog-title {
  line-height: 130%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.small-blogs h4 {
  font-size: 14px;
}

.small-blogs .blogs-news-image {
  aspect-ratio: 1;
}

.stories-highlights {
  background-image: url(../images/blogs-news/stories-heighlight.webp);
  background-position: center bottom;
}

.top-head:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}

.awards-events .small-blogs {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.our-institutes-content {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.our-institutes-items {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.our-institutes-items p {
  text-align: center;
  padding: 6px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: -o-linear-gradient(bottom, black, transparent);
  background: -webkit-gradient(linear, left bottom, left top, from(black), to(transparent));
  background: linear-gradient(360deg, black, transparent);
  font-weight: 300;
  font-size: 14px;
}

.csr-image {
  background-image: url(../images/blogs-news/csr.webp);
}

.csr-content .slide-item p {
  margin-bottom: 10px;
}

.csr-doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  border-radius: 14px;
  margin: 10px 0;
}

.csr-doc .left,
.csr-doc .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  width: 100%;
}

.csr-doc .right {
  padding: 30px 50px;
}

.reverse-csr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.csr-doc .left img {
  height: 450px;
  -o-object-position: top;
  object-position: top;
}

.csr-doc .right h3 {
  font-size: 24px;
  line-height: normal;
}

.csr-doc p {
  margin-bottom: 10px;
  font-size: 15px;
}

.bg-01 {
  background: #fefaef;
  border: 2px solid #e7ddc1;
}

.bg-02 {
  background: #fff4ef;
  border: 2px solid #d7c3b9;
}

.bg-03 {
  background: #f7fff3;
  border: 2px solid #b9cbb0;
}

.bg-04 {
  background: #ebedef;
  border: 2px solid #bdc7d1;
}

.bg-05 {
  background: #f7fff3;
  border: 2px solid #b9cbb0;
}

.bg-06 {
  background: #fff4ef;
  border: 2px solid #d7c3b9;
}

.carousel-control-next,
.carousel-control-prev {
  background: #ffffff;
  opacity: 1;
  width: 35px;
  height: 50px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-size: 26px;
  -webkit-filter: invert(1);
  filter: invert(1);
}

.carousel-control-prev {
  border-radius: 0 6px 6px 0;
}

.carousel-control-next {
  border-radius: 6px 0 0 6px;
}

/* stories css end */

/* blog page css start */
.head-style::after {
  background: transparent;
  opacity: 1;
}

.head-style .slider-content * {
  color: var(--primary);
}

.blogs {
  background-image: url(../images/blogs-news/blogs.webp);
}

.blog-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.blog-grid p {
  font-size: 15px;
}

.blog-grid h2,
.blog-title {
  font-size: 22px;
}

.blog-title {
  margin-bottom: 10px;
  color: #000;
  font-weight: 500;
}

.blog-title:hover {
  color: var(--primary);
}

.header-static {
  position: initial;
}

.object-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-image {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0px 15px 25px #00000021;
}

/* blog page css end */

/* blog slider */
.blog-slider .owl-nav {
  position: absolute;
  top: 35%;
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-slider .small-blogs {
  position: relative;
}

.owl-dots {
  display: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  background: #ffffff;
  width: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
}

.owl-nav button span {
  font-size: 30px;
  color: transparent;
}

.owl-nav button span {
  background-image: url(../images/icons_vectors/arrow.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  width: 100%;
  height: 100%;
  background-position: center;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.owl-carousel .owl-nav .owl-prev {
  border-radius: 0 6px 6px 0;
}

.owl-carousel .owl-nav .owl-next {
  border-radius: 6px 0 0 6px;
}

.owl-carousel .owl-nav .owl-next span {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* career css start */
.career-image {
  background-image: url(../images/stocks/career.webp);
}

.career-content {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2rem;
}

.career-items {
  padding: 34px;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
}

.career-items h2 {
  font-weight: 600;
  font-size: 26px;
}

.info-career {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  row-gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.info-career span {
  margin-right: 5px;
  opacity: 0.5;
}

.info-career label {
  color: #000;
}

.job-info {
  margin: 20px 0;
  line-height: 170%;
}

.action-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius6px);
  background: var(--primary);
  color: #fff;
}

.action-btn * {
  color: #fff;
  stroke: #fff;
}

.action-btn:hover {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.career-form .modal-dialog {
  max-width: 600px;
}

.career-form .modal-body {
  padding: 26px;
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.asterik {
  color: red;
}

.fields-career {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 14px;
  -moz-column-gap: 14px;
  column-gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 30px 0;
}

input[type="file"] {
  padding: 5px 12px;
}

.fileupload {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.heading h4 {
  margin: 0;
}

.heading p {
  font-size: 14px;
}

.heading .btn-close {
  background-size: 12px;
}

/* career css end */

/* contact css start */
.contact-image {
  background-image: url(../images/stocks/contact.webp);
}

.contact-into-pera {
  text-align: center;
  font-size: 24px;
  color: #000;
}

.contact-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-data .left,
.contact-data .right {
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5;
}

.contact-data iframe {
  height: 100%;
}

.contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.list-contact h4 {
  font-size: 26px;
  color: #fff !important;
}

.list-contact li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.list-contact ul {
  margin: 24px 0;
}

.list-contact ul li img {
  min-width: 20px;
  height: 20px;
  width: 20px;
  -webkit-filter: invert(1);
  filter: invert(1);
  opacity: 0.7;
}

.list-contact ul li p,
.list-contact ul li a {
  opacity: 1;
}

.contact-data .left {
  background: var(--primary);
  padding: 6rem 1rem;
}

.contact-data .left * {
  color: #d1d1d1;
}

.contact-info {
  margin: auto;
  max-width: 840px;
}

.list-contact li:hover * {
  color: #fff;
  opacity: 1;
}

/* contact css end */

.term-image {
  background-image: url(../images/stocks/term.webp);
}

.terms-data h3 {
  margin-bottom: 15px;
  margin-top: 50px;
}

.terms-data p {
  font-size: 15px;
  line-height: 180%;
  margin-bottom: 14px;
}

.form-check-input:checked[type="checkbox"] {
  position: relative;
  border: 1px solid #000;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  height: 16px;
  width: 16px;
  -webkit-appearance: none;
  background: var(--primary);
}

.form-check-input:checked[type="checkbox"]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0px 2px 2px 0;
  margin: 0px -1px 0 0px;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  -ms-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}

.form-check-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.video-frame {
  margin: auto;
  max-width: 1000px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 2rem;
}

.video-frame iframe {
  display: block;
  min-height: 565px;
}

.company-logos {
  display: -ms-grid;
  display: grid;
  margin-top: 25px;
  margin-left: -27px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.bento-grid p {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  max-width: 1000px;
}

.bento-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bento-grid h4 {
  font-size: max(30px, 2.5vw);
  line-height: 100%;
  font-family: var(--recoleta);
}

.bento-grid .left {
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bento-grid .right {
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5;
}

.bento-grid .right img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.link {
  color: var(--primary);
  text-decoration: underline;
}

.link:hover {
  color: inherit;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.custom-select {
  background-image: url('../images/icons_vectors/arrow-dark.svg');
  background-position: center right 10px;
  background-size: 14px;
  background-repeat: no-repeat;
  padding-right: 30px;
}

.mt-header {
  margin-top: 6rem;
}

.signin h4 {
  font-size: 20px;
}

.row:has(.form-group) {
  margin-left: -2px;
  margin-right: -2px;
}

.row .form-group {
  margin-bottom: 10px;
}

.row>* {
  padding-right: calc(var(--bs-gutter-x) * .1);
  padding-left: calc(var(--bs-gutter-x) * .1);
}

.asterisk {
  color: red;
}

.pp-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  margin: 10px 0;
}

input[type=checkbox]:checked {
  background-color: var(--primary);
  opacity: 1;
  border: 1px solid var(--primary);
}

input[type=checkbox] {
  position: relative;
  border: 1px solid #72757b;
  border-radius: 3px;
  background: #EAEBED;
  cursor: pointer;
  line-height: 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 18px;
  width: 18px;
  -webkit-appearance: none;
  opacity: .5;
}

input[type=checkbox]:before {
  content: '';
  position: absolute;
  background-image: url(../images/icons_vectors/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type=checkbox]:checked:before {
  opacity: 1;
}

.pp-info label {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 3px;
  cursor: pointer;
}

.back-link {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--primary) !important;
  justify-content: flex-end;
}

.back-link svg {
  width: 14px;
  height: 14px;
}

.back-link svg path {
  stroke: var(--primary);
}

/* blog detail page css */
.blog-content {
  margin: 2rem 0;
}

.news-update {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #f3f3f3;
  padding: 16px 12px;
}

.news-update span {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #f3f3f3;
  font-weight: 500;
  color: var(--redinfo);
  font-size: 17px;
  border-right: 1px solid #dfdfdf;
  z-index: 1;
}

.news-scroll {
  white-space: nowrap;
  display: flex;
  gap: 1rem;
  overflow: hidden;
  animation: scroll-left 30s linear infinite;
}

.news-scroll a {
  margin: 0;
  font-size: 16px;
  display: flex;
  overflow: initial;
  padding: 0;
  font-weight: 400;
  position: relative;
  align-items: center;
  padding-left: 12px;
}

.news-scroll a:before,
.dot-info:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--redinfo);
  border-radius: 50%;
  left: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.redinfo {
  color: var(--redinfo);
}

.dot-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 13px;
  margin-left: 6px;
}

.dot-info:before {
  background: #000000;
  opacity: .2;
  margin-top: -2px;
}

.breadcrumb-item a,
.breadcrumb-item {
  font-size: 14px;
  color: #000;
}

.b-title h1 {
  max-width: 70%;
}

.arthour {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 14px;
  margin: 20px 0;
  font-weight: 500;
}

.company-l img {
  width: 25px;
  height: 25px;
}

.company-l {
  display: flex;
  align-items: center;
  gap: 6px;
}

.b-content p {
  margin-bottom: 10px;
}

.b-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.b-content .left {
  width: 75%;
}

.b-content .right {
  width: 25%;
  margin-top: -4rem;
  padding-left: 2rem;
}

.share {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-end;
  font-size: 14px;
}

.b-content .small-blogs {
  display: flex;
  flex-direction: column;
}

.b-content .small-blogs .blogs-news-image {
  aspect-ratio: 1 / .8;
}

.b-content .small-blogs .blog-title {
  margin: 10px 0;
  font-size: 16px;
}

.b-spacing {
  margin-top: 35px;
  margin-bottom: 10px;
}

.diamond-cut {
  margin: 20px 0;
  display: flex;
  gap: 2rem;
}

.d-c-list {
  flex: 1;
}

.d-c-list p {
  font-size: 14px;
}

.p-popins p {
  font-family: var(--poppins-font);
}

.info-box {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.info-box p {
  font-size: 14px;
}

.info-box .box-item {
  min-height: 230px;
}

.conclusion-box {
  padding: 20px 28px;
  border-radius: 10px;
}

.cover-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/.5;
  margin: 20px 0;
}

.sticky-top {
  top: 15px;
}

/* blog detail page css */

.popup-dashboard {
  transition: opacity .15s linear;
  opacity: 0;
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.popup-dashboard.active {
  transition: opacity .15s linear;
  opacity: 1;
  display: flex;
}

.entry-banner {
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.6s ease;
  animation: zoomIn 0.6s ease forwards;
  position: relative;
  z-index: 9999;
}

@keyframes zoomIn {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.entry-banner img {
  width: 100%;
}

.entry-banner .btn-close,
.close-btn {
  position: absolute;
  top: 0;
  opacity: 1;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--primary);
  border-radius: 0;
  color: #fff;
}

.btn-close:before {
  display: none;
}