
body {
  font-family: 'Poppins', sans-serif;
  color: #464B53;
}

a {
  color: #2063F8;
  text-decoration: none;
}

a:hover {
  color: #2063F8;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0F072C;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3e9bdd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0F072C;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #0F072C;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled {
  border-color: #0F072C;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #AEB3B7;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #FF3841;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 8px;
  color: #ffffff;
  border: 2px solid #FF3841;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #FF3841;
  background: #ffffff;
  border: 2px solid #FF3841;
}

@media (max-width: 768px) { /* Adjust the max-width as needed for your mobile breakpoint */
  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: #FF3841; /* New background color */
    color: #fff; /* New text color */
    width: 40%;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff; /* Keep text color white on hover */
    background: #0F072C; /* Maintain background color on hover */
  }
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #0F072C;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #30235F;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #0F072C;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #0F072C;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../img/Abstract+Hotel+Library.jpg") top center;
  background-size: cover;
  position: relative;
  overflow: hidden; /* Ensure the pseudo-element is contained within #hero */
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0F072C; 
  opacity: 25%;
}


#hero .container {
  padding-top: 72px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 62px;
  }
}

#hero h1 {
  margin: 30px 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 66px;
  color: #ffffff;
  max-width: 50%; 
}

#hero h2 {
  color: #B3B3B3;
  margin: 20px 0;
  font-size: 20px;
}

#hero p {
  color: #ffffff;
  margin: 20px 0;
  font-size: 18px;
  max-width: 50%; 
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 12px;
  transition: 0.5s;
  color: #ffffff;
  border: 2px solid #FF3841;
  background: #FF3841;
}

#hero .btn-get-started:hover {
  background: #ffffff;
  color: #FF3841;
  border: 2px solid #FF3841;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 36px;
    line-height: 40px;
    max-width: 100%;
    text-align: center;
  }

  #hero h2 {
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    max-width: 100%;
  }

  #hero p {
    font-size: 18px;
    line-height: 24px;
    max-width: 100%;
    text-align: center;
  }

  #hero .btn-get-started {
    display: block; /* Makes the button a block-level element */
    margin: 24px auto; /* Centers the button horizontally with 20px top margin for spacing */
    text-align: center; /* Ensures text inside the button is centered */
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0 60px 0;
  overflow: hidden;
}

.section-about {
  padding: 0;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 80px;
  background: url(../assets/img/sectionbg1.png);
  background-repeat: no-repeat;
  background-position: center;
}

.section-about1 {
  padding: 60px;
  overflow: hidden;
  background: #FFFFFF;
}

.section-contact {
  padding: 140px 0 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #F8F9FF;
  padding: 60px 0 100px 0;
  overflow: hidden;
}

.section-test {
  background-color: #F8F9FF;
  padding: 60px 0 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.section-title h1 {
  font-size: 52px;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 26px;
  padding-bottom: 0;
  color: #0F072C;
}

.section-title h2 {
  font-size: 52px;
  font-weight: 800;
  text-transform: none;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #30235f;
}

.section-title h3 {
  font-size: 38px;
  font-weight: 600;
  text-transform: none;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #30235f
}

.section-title h4 {
  font-size: 28px;
  font-weight: 600;
  text-transform: none;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #30235f
}

.section-title p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 16px;
  color: #444;
}

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

.row-center-box {
  display: flex;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .icon-boxes {
  margin-top: 30px;
  margin-bottom: 60px;
}

.about .icon-box-2 {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  flex-direction: column; 
  padding: 50px 30px;
  height: 100%; 
  position: relative;
  overflow: hidden;
  background: #f1f8ff;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  border: 1px solid #ebedf1;
  box-shadow: 5px 5px #dbdfe2;
}

.about .icon-box-3 {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #F8F9FF;
  box-shadow: 0 0 29px 0 rgb(0 0 0 / 8%);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  height: 100%; 
}

.about .icon-box-4 {
  padding: 0 30px;
}

.about .icon-box-small {
  border: 1px solid #ebedf1;
  box-shadow: 5px 5px #dbdfe2;
  border-radius: 10px;
  margin-top: 20px;
  padding: 40px 20px 45px 30px;
  position: relative;
  background-color: #fff;
  background-image: url(../img/wave-bg-1.svg);
  background-repeat: no-repeat;
  background-position: top left;
  
  &:nth-child(2n) {
    background-image: url(../img/wave-bg-2.svg);
}

&:nth-child(3n) {
    background-image: url(../img/wave-bg-3.svg);
}
}

.about .icon-box-small-1 {
  border: 1px solid #ebedf1;
  box-shadow: 5px 5px #dbdfe2;
  border-radius: 10px;
  margin-top: 20px;
  padding: 40px 20px 45px 30px;
  position: relative;
  background-color: #fff;
  background-image: url(../img/blob-1.svg);
  background-repeat: no-repeat;
  background-position: top left;
}

.about .icon-box-small-2 {
  border: 1px solid #ebedf1;
  box-shadow: 5px 5px #dbdfe2;
  border-radius: 10px;
  margin-top: 20px;
  padding: 40px 20px 45px 30px;
  position: relative;
  background-color: #fff;
  background-image: url(../img/blob-2.svg);
  background-repeat: no-repeat;
  background-position: top left;
}

.about .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  margin-top: 24px;
}

.about .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

.about .icon-box .title a {
  color: #30235F;
  transition: 0.3s;
}

.about .icon-box .title-box {
  color: #0F072C;
  transition: 0.3s;
}

.about .icon-box .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: center;
  color: #4b4f5a;
}

.about .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: flex;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #0F072C;
  justify-content: center;
}

.about .icon-box:hover {
  transform: scale(1.08);
}

.about .icon-box:hover .title a {
  color: #0F072C;
}


.about .content h2 {
  font-weight: 700;
  font-size: 32px;
  margin-top: 24px;
  margin-bottom: 24px;
  color: #30235f;
}

.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  margin-top:24px;
  margin-bottom: 24px;
  color: #30235f;
}

.about .content h4 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #30235f;
}

.about .content h5 {
  font-weight: 600;
  font-size: 22px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #30235f;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #FF3841;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #0F072C;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #0F072C;
}

.about .content .btn-learn-more:hover {
  background: #0F072C;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .about .mobile-flex-reverse {
    flex-direction: column-reverse;
  }
}

.justify-content-center {
  justify-content: center!important;
}

.i-box {
  margin-top: 60px;
  margin-bottom: 60px;
}

.about-title h2 {
  color: #30235F;
  text-align: center;
  font-size: 52px;
  font-style: normal;
  font-weight: 900;
  line-height: 115%;
  margin-top: 2rem
}

.blue-text {
  color: #2063f8;
}

.orange-text {
  color: #ff9000;
}

.red-text {
  color: #FF3841;
}

/*--------------------------------------------------------------
# About1
--------------------------------------------------------------*/

.about1 .icon-boxes {
  margin-top: 60px;
  margin-bottom: 60px;
}

.about1 .icon-box-2 {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  flex-direction: column; 
  padding: 50px 30px;
  height: 100%; 
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.about1 .icon-box-3 {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #F8F9FF;
  box-shadow: 0 0 29px 0 rgb(0 0 0 / 8%);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  height: 100%; 
}

.about1 .icon-box-small {
  border: 1px solid #ebedf1;
  box-shadow: 5px 5px #dbdfe2;
  border-radius: 10px;
  margin-top: 20px;
  padding: 40px 20px 45px 30px;
  position: relative;
  background-color: #fff;
  background-image: url(../img/wave-bg-1.svg);
  background-repeat: no-repeat;
  background-position: top left;
  
  &:nth-child(2n) {
    background-image: url(../img/wave-bg-2.svg);
}

&:nth-child(3n) {
    background-image: url(../img/wave-bg-3.svg);
}
}

.about1 .icon-box-small-1 {
  border: 1px solid #ebedf1;
  box-shadow: 5px 5px #dbdfe2;
  border-radius: 10px;
  margin-top: 20px;
  padding: 40px 20px 45px 30px;
  position: relative;
  background-color: #fff;
  background-image: url(../img/blob-1.svg);
  background-repeat: no-repeat;
  background-position: top left;
}

.about1 .icon-box-small-2 {
  border: 1px solid #ebedf1;
  box-shadow: 5px 5px #dbdfe2;
  border-radius: 10px;
  margin-top: 20px;
  padding: 40px 20px 45px 30px;
  position: relative;
  background-color: #fff;
  background-image: url(../img/blob-2.svg);
  background-repeat: no-repeat;
  background-position: top left;
}

.about1 .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  margin-top: 24px;
}

.about1 .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

.about1 .icon-box .title a {
  color: #30235F;
  transition: 0.3s;
}

.about1 .icon-box .title-box {
  color: #0F072C;
  transition: 0.3s;
}

.about1 .icon-box .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: center;
  color: #4b4f5a;
}

.about1 .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: flex;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #0F072C;
  justify-content: center;
}

.about1 .icon-box:hover {
  transform: scale(1.08);
}

.about1 .icon-box:hover .title a {
  color: #0F072C;
}


.about1 .content h3 {
  font-weight: 600;
  font-size: 32px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #30235F;
}

.about1 .content h4 {
  font-weight: 600;
  font-size: 26px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #30235F;
}

.about1 .content h5 {
  font-weight: 600;
  font-size: 22px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #30235F;
}

.about1 .content ul {
  list-style: inside;
  padding: 0;
}

.about1 .content ul li {
  padding-left: 28px;
  position: relative;
}

.about1 .content ul li+li {
  margin-top: 10px;
}

.about1 .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #0F072C;
  line-height: 1;
}

.about1 .content p:last-child {
  margin-bottom: 0;
}

.about1 .content .btn-learn-more {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #0F072C;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #0F072C;
}

.about1 .content .btn-learn-more:hover {
  background: #0F072C;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .about1 .mobile-flex-reverse {
    flex-direction: column-reverse;
  }
}

.justify-content-center {
  justify-content: center!important;
}

.i-box {
  margin-top: 60px;
  margin-bottom: 60px;
}

.about1-title h2 {
  color: #30235F;
  text-align: center;
  font-size: 52px;
  font-style: normal;
  font-weight: 900;
  line-height: 115%;
  margin-top: 2rem
}

.blue-text {
  color: #2063f8;
}

.orange-text {
  color: #ff9000;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
  background: #0F072C;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  background: #FFFFFF;
}

.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #e03a3c;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
}

.counts .count-box .purecounter {
  display: inline-block; /* Allows the number and the symbol to be on the same line */
}

.counts .count-box .percentage-symbol {
  display: inline; /* Keeps the symbol inline */
  font-size: 36px; /* Match the font size of the purecounter if needed */
  font-weight: 700; /* Match the font weight of the purecounter if needed */
  color: #111111; /* Match the color of the purecounter if needed */
}

.list-container {
  display: flex;
  justify-content: space-between; /* Distributes space between the lists */
  flex-wrap: wrap; /* Allows the lists to wrap to the next line on smaller screens */
}

.list-container ul {
  flex: 1; /* Allows each list to grow to fill the space */
  min-width: 250px; /* Prevents the lists from becoming too narrow */
}

@media (max-width: 768px) {
  .list-container {
      flex-direction: column; /* Stacks the lists vertically on smaller screens */
  }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 20px 30px 50px 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #FF3841;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e03a3c;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .iconbox-blue {
  text-align: center;
  margin: 10px 0 10px 0;
  padding: 60px 40px 60px 40px;
  transition: all ease-in-out 0.3s;
  background: #D3DFFA;
  border-radius: 12px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .iconbox-green {
  text-align: center;
  margin: 10px 0 10px 0;
  padding: 60px 40px 60px 40px;
  transition: all ease-in-out 0.3s;
  background: #CFF5D9;
  border-radius: 12px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .iconbox-orange {
  text-align: center;
  margin: 10px 0 10px 0;
  padding: 60px 40px 60px 40px;
  transition: all ease-in-out 0.3s;
  background: #FFEFCC;
  border-radius: 12px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 60px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #0F072C;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 span {
  color: #0F072C;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #235EE7;
}

.services .iconbox-blue:hover .icon i {
  color: #235EE7;
}

.services .iconbox-blue:hover .icon path {
  fill: #235EE7;
}

.services .iconbox-orange i {
  color: #FFAF02;
}

.services .iconbox-orange:hover .icon i {
  color: #FFAF02;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-green i {
  color: #10CC41;
}

.services .iconbox-green:hover .icon i {
  color: #10CC41;
}

.services .iconbox-green:hover .icon path {
  fill: #e80368;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #0F072C;
  background-size: cover;
  padding: 100px 0;
}

.cta h3 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.cta p {
  color: #fff;
  font-size: 16px;
  margin-top: 1rem;
}

.cta .cta-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 20px;
  margin-bottom: 20px;
  background: #f96f00;
  border: 2px solid #f96f00;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fb8c00;
  color: #fff;
  border: 2px solid #fb8c00
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #0F072C;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(36, 135, 206, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0F072C;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0F072C;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(18, 66, 101, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #30235F;
  margin: 0 10px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #0F072C;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #30235F;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #e3f0fa;
  float: left;
  width: 44px;
  height: 44px;
  background: #0F072C;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #30235F;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #217bbc;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #0F072C;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #0F072C;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #0F072C;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #0F072C;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8fbfe;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #1a5e90;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

.img-center {
  display: flex;
  justify-content: center;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}


.img-fluidd {
  max-width: 90%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adjust the values as needed */
}

.img-fluiddd {
  max-width: 40%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.image-row {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to the next line as needed */
  justify-content: center; /* Centers the images within the container */
  gap: 20px; /* Adjust the space between images as needed */
}

@media (max-width: 768px) {
  .image-row {
      flex-direction: column; /* Stacks images vertically on mobile devices */
  }
}


@media (max-width: 768px) { 
  .img-fluid {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) { 
  .img-fluidd {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) { 
  .img-fluiddd {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.img-card {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) { 
  .img-card {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #F7F8F8;
  font-size: 14px;
  background: #f8fbfe;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #0F072C;
  border-bottom: 1px solid #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  color: #F7F8F8;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #F7F8F8;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f7f8f8;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #AEB3B7;
}

#footer .footer-top .social-links {
  margin-bottom: 30px;
}

#footer .footer-top .social-links ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex; /* Add this line to display list items in a row */
  flex-wrap: wrap; /* Optional: allows list items to wrap onto the next line if not enough space */
  justify-content: left; /* Centers the list items within the container */
}

#footer .footer-top .social-links ul i {
  padding-right: 2px;
  color: #f7f8f8;
  font-size: 20px;
  line-height: 1;
}

#footer .footer-top .social-links ul li {
  padding: 10px;
  display: flex;
  align-items: center;
}

#footer .footer-top .social-links ul li:not(:last-child) {
  margin-right: 0; /* Adds spacing between icons, adjust as needed */
}

#footer .footer-top .social-links ul a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-flex; /* Changed to inline-flex to center icon within the circle */
  align-items: center; /* Center icon vertically */
  justify-content: center; /* Center icon horizontally */
  line-height: 1;
  border-radius: 50%; /* Creates a circle around the icon */
  width: 40px; /* Width of the circle */
  height: 40px; /* Height of the circle, same as width to make it a perfect circle */
  background-color: darkred; /* Red circle background */
}

#footer .footer-top .social-links ul a:hover {
  text-decoration: none;
  color: #AEB3B7;
  background-color: red; /* Optional: change circle color on hover */
}

@media (max-width: 768px) {
  #footer .footer-top .social-links ul {
    flex-direction: row; /* Stacks the list items vertically */
    align-items: flex-start; /* Corrected from 'left' to 'flex-start' for proper alignment */
  }

  #footer .footer-top .social-links ul li {
    margin-right: 0; /* Removes the horizontal margin between items */
    margin-bottom: 10px; /* Adds some space between the items vertically */
  }

  #footer .footer-top .social-links ul li:last-child {
    margin-bottom: 0; /* Removes the margin from the last item to avoid extra space */
  }
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #f7f8f8;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 1px;
  right: 2px;
  bottom: 1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #0F072C;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #f96f00;
}

#footer .footer-background {
  background: #0F072C;
  width: 100%;
}

.btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 12px;
  transition: 0.5s;
  color: #ffffff;
  border: 2px solid #FF3841;
  background: #FF3841;
}

.btn-get-started:hover {
  background: #ffffff;
  color: #FF3841;
  border: 2px solid #FF3841;
}

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.services {
  padding: 60px 0;
}

.sections-bg {
  background-color: #F8F9FF;
  background-repeat: no-repeat;
  background-position: center;
}

.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  box-shadow: rgba(18, 66, 101, 0.08) 0px 0px 29px 0px;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-default);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #eeeeee;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: #FF3841;
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

.color-box {
  background-color: #F8F9FF;
  padding: 1rem 2rem;
  margin-top: 2rem;
  border: solid #e5e5e5 1px;
  border-radius: 30px;
  box-shadow: 0 0 29px 0 rgb(0 0 0 / 8%);
}

.align-items {
  text-align: center;
  margin-top: 2rem;
}

.btn-align {
  text-align: left;
  margin-top: 2rem;
}