@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primaryColor: #be1e2d;
  --secondaryColor: #df8d95;
  --headingColor: #181818;
  --menulinkColor: #be1e2d;
  --lightBGColor: #f5f5f5;
  --bodyTextColor: #272727;
  --textLightBlack: #555555;
  --linkHoverColor: #f66f00;
  --btnTextColor: #ffffff;
  --overlayColor: rgba(0, 0, 0, 0.33);
  --bodyBGColor: #ffffff;
  --borderColor: #e6e6e6;
  --grayLightBG: #fefefe;
  --bodyFontFamliy: "Nunito Sans", sans-serif;
  --headingFont: "Outfit", sans-serif;
  --btnFont: "Nunito Sans", sans-serif;
  --gradientColor: linear-gradient(45deg, #df8d95 0%, #d92d3e 100%);
  --gradientLightColor: linear-gradient(0deg, #df8d9500 30%, #ffb1b8 100%);
}

/*  Header Css */
header {
  width: 100%;
  left: 0;
  right: 0;
  padding: 10px 0;
}
/* navbar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  color: var(--bodyTextColor);
  font-family: var(--bodyFontFamliy);
  font-size: 14px;
}

.container {
  max-width: 1420px;
  margin: 0 auto;
}
@media (min-width: 1921px) {
  .home-banner-slider {
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
  }
  .home-banner-content-inner {
    padding: 0 50px;
  }
}
.container-fluid {
  width: 100%;
  padding: 0 60px;
}
@media screen and (max-width: 1024px) {
  .container-fluid {
    padding: 0 20px;
  }
}
input {
  font-family: var(--bodyFontFamliy);
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a {
  font-family: var(--headingFont);
  color: var(--secondaryColor);
  transition: all 0.35s ease-in-out;
  text-decoration: none;
  color: var(--primaryColor);
  font-weight: bold;
}
a {
  font-family: var(--bodyFontFamliy);
  color: var(--secondaryColor);
  transition: all 0.35s ease-in-out;
  text-decoration: none;
  color: var(--primaryColor);
}
a:hover {
  color: var(--secondaryColor);
}
button {
  font-family: var(--btnFont);
  border: 0;
  font-size: 16px;
  cursor: pointer;
}
img {
  max-width: 100%;
}
p,
small {
  font-family: var(--bodyFontFamliy);
}
p {
  font-size: 16px;
  line-height: 1.7;
}
a {
  transition: all 0.35s ease-in-out;
}
ul {
  padding: 0;
  margin-bottom: 0;
}
li {
  list-style: none;
}
.btn {
  padding: 15px 50px;
  border: 0;
  transition: all 0.35s ease-in-out;
  border-radius: 38px;
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: 20px;
  overflow: hidden;
}

.btn i {
  vertical-align: middle;
  margin-left: 10px;
  transition: all 0.35s ease-in-out;
}

.btn:hover i {
  transform: translateX(5px);
}
.btn-primary {
  background: var(--primaryColor);
  color: var(--btnTextColor);
}
.btn-primary:hover {
  background: var(--secondaryColor);
  color: var(--btnTextColor);
}
.btn-secondary {
  background: var(--secondaryColor);
  color: var(--btnTextColor);
}
.btn-secondary:hover {
  background: var(--primaryColor);
  color: var(--btnTextColor);
}
/* navbar */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  text-decoration: none;
  color: var(--primaryColor);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .navigation {
    position: fixed;
    width: 100%;
    background: var(--overlayColor);
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0;
    transition: all 0.35s ease-in;
    pointer-events: none;
  }

  .navigation.open {
    opacity: 1;
    pointer-events: all;
    z-index: 9999;
  }
}

/* nav menu button */

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.125rem;
  background: var(--primaryColor);
  transition: all 0.4s ease-in-out;
}
ul.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #e2d2bb;
}
.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.navbar .menu-items {
  display: flex;
  align-items: center;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: var(--bodyTextColor);
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
}
.expand-btn:after {
  content: " \25BE";
  opacity: 0.4;
  margin-left: 5px;
}

.navbar .dropdown-menu,
.menu-right {
  position: absolute;
  background: #fae0c0;
  width: max-content;
  line-height: 30px;
  border-radius: 5px;
  top: 100%;
  border-top: 1px solid var(--bodyBGColor);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  pointer-events: none;
  display: block;
  border: 0;
  padding: 0;
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}
.navbar .dropdown-menu,
.menu-left {
  left: 0;
}
.navbar .menu-left {
  left: -100%;
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  font-size: 14px;
}
.navbar .menu-item:hover {
  color: var(--primaryColor);
}

.menu-item.first-item {
  padding: 1.3585em 1.5em;
  color: var(--menulinkColor);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--bodyFontFamliy);
}
.menu-item.first-item:hover {
  color: var(--linkHoverColor);
}
.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.navbar .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: var(--secondaryColor);
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: var(--secondaryColor);
}
.navbar.desktop-menu {
  padding: 0;
}
/* Responsive style */
@media (min-width: 1024px) {
  .desktop-menu {
    display: block;
  }
  .mobile-menu {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .desktop-menu {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .navbar {
    padding: 10px 20px;
  }

  .overflow {
    overflow: hidden;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .menu-btn {
    display: flex;
  }

  .navbar .menu-items {
    position: fixed;
    height: 100%;
    max-height: initial;
    overflow-y: auto;
    width: 80%;
    top: 0;
    right: 0;
    background: var(--lightBGColor);
    display: block;
    transform: translateX(200%);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
    font-size: 14px;
  }

  .menu-items.open {
    transform: translateY(0);
  }

  .menu-items li:first-child {
    margin-top: 20px;
  }

  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 1rem 1rem;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 102%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open + .sample {
    max-height: 100%;
    transform: scaleZ(1);
  }

  .expand-btn.open + .blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }
  .col .mega-links li {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .navigation .menu-btn {
    opacity: 0;
  }
  .navigation.open .menu-btn {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 1;
  }

  /* animation menu hamburger */
  .navigation.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
  }

  .navigation.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: var(--primaryColor);
  }

  .navigation.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: var(--primaryColor);
  }
  .main-search {
    display: none;
  }
  .info-block {
    display: none;
  }
  .menu-item.first-item {
    padding: 1.3585em 1.1em;
    border-bottom: 1px solid var(--borderColor);
  }
}
.footer-copy-content p {
  margin-bottom: 0;
  padding: 12px 0;
  color: #fff;
  font-weight: 100;
}
.footer-copy-content {
  background: var(--gradientColor);
  border-top: 2px solid var(--secondaryColor);
}

.footer-copy-content p a {
  color: #fff;
  font-weight: 800;
}

.footer-copy-content p a:hover {
  color: var(--headingColor);
}
@media (max-width: 991px) {
  .footer-content-item.address {
    border: 0;
  }
}

/* home banner */

.about-section {
  padding: 50px 0;
  background: #f4f4f4;
}

.about-top-text h2 {
  margin-bottom: 0;
}

.about-top-text {
  text-align: center;
}

.about-top-text h2 span {
  font-weight: 400;
  color: var(--headingColor);
}

.about-top-text h2 {
  font-size: 44px;
}

.about-img {
  text-align: center;
  background-image: var(--gradientLightColor);
  padding: 30px;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 8rem;
}
.about-centent {
  text-align: center;
}

.about-centent p {
  margin-bottom: 0;
}
.about-centent h4 {
  font-size: 44px;
  margin-bottom: 20px;
}
.facilities-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.facilities-services-grid-item {
  background: #ffdfe1;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #ffd1d2;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 10px 10px 50px -25px #c98488;
}
section.facilities-services-section {
  padding: 50px 0;
}
.facilities-services-grid-item p {
  margin-bottom: 0;
}

.facilities-services-grid-icon {
  width: 90px;
  height: 70px;
}

.facilities-services-grid-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.facilities-services-grid-content h5 {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .facilities-services-grid-item {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .facilities-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .facilities-services-grid-item {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .facilities-services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.safty-lock-size-table table {
  width: 100%;
}

.safty-lock-size-table table th,
.safty-lock-size-table table td {
  padding: 12px;
  border: 1px solid;
  text-align: center;
}

.safty-lock-size-table table th {
  font-size: 20px;
}

.safty-lock-size-table table td {
  font-size: 18px;
}

section.safty-lock-size-section {
  padding: 50px 0;
}

.safty-lock-title {
  text-align: center;
}

.safty-lock-title h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.safty-lock-size-table {
  margin-top: 50px;
}

@media (max-width: 576px) {
  .safty-lock-size-table table th {
    font-size: 15px;
  }

  .safty-lock-size-table table td {
    font-size: 14px;
  }
  .safty-lock-size-table table th,
  .safty-lock-size-table table td {
    padding: 5px;
  }
}

/**
 * application-process styling
 */
.application-process {
  display: flex;
  flex-direction: column;
  padding: 60px 20px 0 37px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .application-process {
    padding: 60px 20px 0;
  }
}
.application-process__track {
  background: #393e46;
  background-clip: content-box;
  height: 100%;
  left: 30px;
  min-height: 9px;
  max-height: 100%;
  padding: 0 5px 7px;
  position: absolute;
  top: 0;
  width: 14px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .application-process__track {
    left: calc(50% - 7px);
  }
}
.application-process__track::after {
  background: var(--primaryColor);
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  width: 14px;
}
.application-process__item {
  padding-top: 40px;
  padding-left: 30px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .application-process__item {
    padding-left: 0;
    width: calc(50% + 2px);
  }
}
@media screen and (min-width: 768px) {
  .application-process__item:nth-child(odd) {
    margin-right: auto;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) {
  .application-process__item:nth-child(even) {
    margin-left: auto;
    padding-left: 40px;
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .application-process__item:nth-child(even) .application-process__line {
    left: 0;
    right: auto;
  }
}
.application-process__line {
  background: #393e46;
  height: 4px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .application-process__line {
    left: auto;
    right: 0;
  }
}
.application-process__wrap img {
  height: 150px;
  width: 150px;
}
@media screen and (max-width: 767.9px) {
  .application-process__footer {
    padding-left: 30px;
  }
}
.application-process.is-init .application-process__line {
  transition: width 0.5s ease-in-out;
  width: 0;
  will-change: width;
}
.application-process.is-init .application-process__wrap {
  opacity: 0;
  transform: translateY(-20px);
  transition: transform 0.5s, opacity 0.2s;
  will-change: opacity, transform;
  text-align: center;
}
.application-process.is-init .application-process__footer {
  opacity: 0;
  transition: opacity 0.2s;
  will-change: opacity;
}
.application-process.is-loading .application-process__line,
.application-process.is-loading .application-process__wrap,
.application-process.is-loading .application-process__footer {
  transition: none;
}
.application-process .is-visible .application-process__line {
  width: 100%;
}
.application-process .is-visible .application-process__wrap {
  opacity: 1;
  transform: translateY(0);
}
.application-process .is-visible.application-process__footer {
  opacity: 1;
}

.application-process.is-init .application-process__wrap h2,
.application-process__footer h2 {
  font-size: 32px;
  color: #000;
}
.application-process.is-init .application-process__wrap h2 {
  margin-top: 10px;
}
section.application-process-section {
  padding: 80px 0;
}
.application-process-title {
  text-align: center;
  margin-bottom: 50px;
}

.application-process-title h2 {
  font-size: 44px;
  text-transform: capitalize;
}
.application-process-number {
  font-size: 100px;
  position: absolute;
  right: -20px;
  top: -50px;
  opacity: 0.1;
  font-weight: 800;
  color: #be1e2d;
}
footer {
  background: var(--gradientColor);
  padding: 50px 0 20px;
}

.footer-logo {
  text-align: center;
}

.footer-address {
  text-align: center;
  margin-top: 30px;
}

.footer-address p {
  font-size: 20px;
  text-transform: capitalize;
  color: #ffff;
  font-weight: 500;
}

.footer-address p:has(a) {
  margin-bottom: 0;
  text-transform: none;
}

.footer-address p a {
  color: #fff;
}

.footer-address p a:hover {
  color: #333;
}
.section-title {
  text-align: center;
  margin-bottom: 30px;
}
.section-title h2 {
  font-size: 44px;
}

section.cta-section {
  background: #eddfdf;
  padding: 50px 0;
}

.cta-content h2 {
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.6;
}
.cta-content h6 {
  font-size: 22px;
  margin-bottom: 12px;
}
.cta-content ul li p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.cta-content ul li a {
  font-size: 18px;
  font-weight: 600;
}
.footer-copy-content ul {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 991px) {
  .cta-content ul {
    flex-direction: column;
  }
  .application-process__wrap img {
    height: 100px;
    width: 100px;
  }
  .application-process__item {
    padding-top: 30px;
  }
  .application-process.is-init .application-process__wrap h2,
  .application-process__footer h2 {
    font-size: 22px;
  }
  .application-process__footer h2 {
    display: none;
  }
}
@media (max-width: 767px) {
  section.application-process-section {
    padding: 50px 0 20px;
  }
  .cta-content h2 br {
    display: none;
  }
  .application-process__item {
    padding: 30px;
  }
  .footer-copy-content ul {
    flex-direction: column;
  }
  .footer-copy-content {
    padding: 10px 0;
  }
  .cta-content ul {
    gap: 0px;
  }
  .footer-copy-content p {
    padding: 0;
  }
}
@media (max-width: 576px) {
  .application-process__wrap img {
    height: 70px;
    width: 70px;
  }
  .application-process-number {
    font-size: 70px;
    right: -20px;
    top: -40px;
  }
}

section.founder-section {
  background: #f4f4f4;
  padding: 50px 0;
}

.founder-img {
  text-align: center;
}
.founder-content {
  text-align: center;
}
.founder-content h2 {
  font-size: 44px;
  margin-bottom: 10px;
}

.home-banner-slider {
  position: relative;
}

.home-banner-content {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  display: flex;
  align-items: center;
}

.home-banner-content-inner h2 {
  font-size: 70px;
  color: #fff;
  position: relative;
  margin-bottom: 20px;
}

.home-banner-content-inner p {
  color: #fff;
  font-size: 18px;
}
.home-banner-content-inner h2 span {
  position: relative;
  padding-bottom: 10px;
}

.home-banner-content-inner h2 span:after {
  content: "";
  width: 80%;
  bottom: 0;
  height: 2px;
  background: currentColor;
  position: absolute;
  left: 0;
}
.home-banner-img img {
  width: 100%;
}
@media (max-width: 991px) {
  .home-banner-content-inner h2 {
    font-size: 50px;
  }
}
@media (max-width: 576px) {
  .home-banner-content-inner h2 {
    font-size: 28px;
  }
  .navbar .logo {
    max-width: 200px;
  }
  .home-banner-content-inner p {
    font-size: 14px;
  }
} 