/* Importing Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Pirata+One:400');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body, html{
  height: 100%;
  overflow-x: hidden;
  color: #fff;
  scroll-behavior: smooth;
  --cursor-color: #00d0ff;
  --background-color: #07131b;
  --text-color: #A1A1AA;
  --card-background-color: rgba(255, 255, 255, .015);
  --card-border-color: rgba(255, 255, 255, 0.1);
  --card-box-shadow-1: rgba(0, 0, 0, 0.05);
  --card-box-shadow-1-y: 3px;
  --card-box-shadow-1-blur: 6px;
  --card-box-shadow-2: rgba(0, 0, 0, 0.1);
  --card-box-shadow-2-y: 8px;
  --card-box-shadow-2-blur: 15px;
  --card-label-color: #FFFFFF;
  --card-icon-color: #D4D4D8;
  --card-icon-background-color: rgba(255, 255, 255, 0.08);
  --card-icon-border-color: rgba(255, 255, 255, 0.12);
  --card-shine-opacity: .1;
  --card-shine-gradient: conic-gradient(from 205deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, #10B981 25deg, rgba(52, 211, 153, 0.18) 295deg, rgba(16, 185, 129, 0) 360deg);
  --card-line-color: #2A2B2C;
  --card-tile-color: rgba(16, 185, 129, 0.05);
  --card-hover-border-color: rgba(255, 255, 255, 0.2);
  --card-hover-box-shadow-1: rgba(0, 0, 0, 0.04);
  --card-hover-box-shadow-1-y: 5px;
  --card-hover-box-shadow-1-blur: 10px;
  --card-hover-box-shadow-2: rgba(0, 0, 0, 0.3);
  --card-hover-box-shadow-2-y: 15px;
  --card-hover-box-shadow-2-blur: 25px;
  --card-hover-icon-color: #34D399;
  --card-hover-icon-background-color: rgba(52, 211, 153, 0.1);
  --card-hover-icon-border-color: rgba(52, 211, 153, 0.2);
  --blur-opacity: .01;
  background-color: var(--background-color);
  /* cur */
  cursor: url(icons8-cursor.svg),auto;
  }


header {
  position: relative;
  /* background-color:rgb(0, 13, 54); */
  /* background-color:rgb(16, 58, 193); */
  /* background: linear-gradient(rgb(6, 15, 44),rgb(4, 27, 103)); */
  background: linear-gradient(145deg, #162f46, #1c4469);
  /* z-index: ; */
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  
  /* background-color:rgba(136, 158, 223, 0.251); */
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #00d0ff; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(1, 100, 122); 
}



#pre-loader {
  background: #060c25;
  background-size: 100%;
  height: 500vh;
  /* height: 100px; */
  width: 100%;
  position: fixed;
  z-index: 1000;
  color: #ffffff;
  display: block;
}

#pre-loader .lds-hourglass {
  /* display: inline-block;
  position: relative;
  width: 80px;
  height: 80px; */

  display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
#pre-loader .lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 32px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}


#btn-back-to-top {
  background-color: #132472;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  border-radius: 50%;
  color: #8dc1ef;
  z-index: 50;
}

.navbar .logo {
  color: #fff;
  font-weight: 600;
  font-size: 2.1rem;
  text-decoration: none;
  /* text-shadow: ;? */
  /* textshadow ? */
  transition: all 0.3s ease-in-out;
  

}

.navbar .logo span {
  color: #4fa2ef;
}

.navbar .menu-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}

.navbar a:hover {
  color: #70f5e6;
}

.hero-section {
  height: 80vh;
  background-image: url("hero.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.hero-section .content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.hero-section .content h2 {
  font-size: 3rem;
  max-width: 600px;
  line-height: 70px;
}

.hero-section .content p {
  font-weight: 300;
  max-width: 600px;
  margin-top: 15px;
}

.hero-section .content button {
  /* background: #fff; */
  padding: 12px 30px;
  border: none;
  font-size: 1rem;
  /* border-radius: 6px; */
  margin-top: 38px;
  cursor: url(icons8-cursor.svg), auto;
  font-weight: 500;

  border-radius: 50px;
background: linear-gradient(145deg, #f0f0f0, #9a9494);
/* box-shadow:  25px 25px 35px #125447,
             -25px -25px 35px #1e8671; */


  transition: 0.4s ease-in-out;
}


.hero-section .content button:hover {
  color: #fff;
  /* background: #023498; */
  /* box-shadow: -3px -3px 33px 6px rgba(10,152,255,0.75);
-webkit-box-shadow: -3px -3px 33px 6px rgba(10,152,255,0.75);
-moz-box-shadow: -3px -3px 33px 6px rgba(10,152,255,0.75); */
/* padding: 1rem 2rem; */

border-radius: 25px;
background: linear-gradient(145deg, #162f46, #4696e0);
box-shadow:  32px 32px 64px #3e80bd,
             -32px -32px 64px #60c4ff;

}



.services-section {
  /* height: 100vh; */
  /* background-image: url("https://www.codingnepalweb.com/demos/create-responsive-coffee-website-html-css/hero-bg.jpg"); */
  /* background-color: #1c1a1a; */
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.services-section .content{
  text-align:center;
  padding: 1rem;
  
}

.packages-section .content{
  /* width: 100%; */
  display:flex;
  justify-content: space-evenly;
  flex-direction: column;
  /* align-items: center;
  align-content: center; */
  

}
.packages-section {
  /* height: 100vh; */
  /* background-image: url("https://www.codingnepalweb.com/demos/create-responsive-coffee-website-html-css/hero-bg.jpg"); */
  /* background-color: #1c1a1a; */
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: center;
  align-self: center;
  padding: 0 20px;
  align-content: space-around;
}
.contact-section{
  display: flex;
  /* gap: 5rem; */
  justify-content: space-around;
  align-items: center;

}
.contact-section .info{
  display: flex;
  flex-direction: column;
}

.contact-section .contact{
  display: flex;
  flex-direction: column;
}

.contact-section .contact form{
  width: 100%;
  margin: 10px 0;
}
.contact-section .contact form input, .contact-section .contact form textarea, .contact-section .contact form button{
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  font-size: 1rem;
  background-color: #1c1a1a;
  border: none;
  color: #D4D4D8;
  border-radius: 5px;
  border-bottom: #9f9c9c solid;
}
.contact-section .contact form input:focus{
  outline: none;
  box-shadow: none;
  border-bottom: 3px solid #67b24c;
}

.contact-section .contact form textarea:focus{
  outline: none;
  box-shadow: none;
  border-bottom: 3px solid #67b24c;
}
.contact-section .contact form button{
  background-color: #10B981;
  color: #fff;
  font-weight: 600;
  transition-duration: .3s;
  /* font-family: ; */

}
.contact-section .contact form button:hover{
  background-color: #04563a;
  border: none;


}
.footer{
  padding: 1rem;
  text-align: center;
  background-color: #323238;
}

.content{
  text-align:center;
  padding: 1rem;
  
}
.content h2{
  /* font-family: 'Pirata One', sans-serif; */

  
}
.package {
  border: solid 1px #545151;
  padding: 2rem;
  border-radius: 16px;
  transition: .4s;
}
.package:hover{
  box-shadow: 0 0 10px rgba(0,0,0,.5);
  translate: 0px -20px;

}
.package .price{
  display: flex;
  justify-content:center;
  align-items: center;
  font-size: 2em;

  
}
.package ul{
  height: 40vh;
  overflow: hidden;
  overflow-y: scroll;
}
.info span{
  font-weight: 600;
  color: #e5e8ed;
}
.info{
  color: #bdc2c6;
}
.package button{
  margin-top: 1rem;
  background:#19976d;
  font-weight: 600;
  color: #ffffff;
  border-style: none;
  outline: none;
  font-size:1rem;
  /* cursor: pointer; */
  cursor: url(icons8-cursor.svg), auto;
  padding: .5rem;
  width: 100%;
  border-radius: 8px;
  transition-duration: .2s;
}
.package button:hover{
  background: rgb(2, 86, 60) ;
}
.package ul{
  list-style-image: url(work-item-svgrepo-com.svg); 
}

.package ul li{
  text-decoration: none;
  
  text-align: left;
  color: #fff;
}
.package ul li::before {
  content: "";
  width: 1em; /* Adjust the width and height as needed */
  height: 1em;
  /* background-image: url(work-item-svgrepo-com.svg); */
  background-size: contain;
  background-repeat: no-repeat;
  fill: #dba8a8; /* Change to your desired color */
  display: inline-block;
}
.popular{
  color: rgb(191, 207, 223);
  background: linear-gradient(45deg, #162f46, #4696e0);
  /* padding: .5rem; */
  
}

.popular ul li{
  text-decoration: none;
  /* list-style-image: url(work-item-svgrepo-com.svg);  */
  text-align: left;
  color: #000;
  /* list-style-position: inside; */
  /* filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); */
  /* fill: green; */
  text-align: left;
  /* color: #3a3939; */


}

.review{
  border: solid 1px #3e3d3d;
  padding: 10px;
  border-radius: 10px;
  transition: .6s;
  background-color: var(--card-background-color);
}
.review:hover{
  /* box-shadow: 0px 3px 6px #000; */
  box-shadow: -1px -1px 12px 3px rgba(0,0,0,0.75);
-webkit-box-shadow: -1px -1px 12px 3px rgba(0,0,0,0.75);
-moz-box-shadow: -1px -1px 12px 3px rgba(0,0,0,0.75);
}
.review img{
  width: 70px;
  border-radius: 50%;
}
/* .cursor {
	display:block; 

	position: absolute;
	top:0;
	left:0;
	z-index: -1;
	
	opacity: 0;
} */


.circle {
	width: var(--circle-size);
	height: var(--circle-size);
	
	border-radius: 50%;
	
	background: var(--cursor-color);
	transform: scale(var(--scale));
	transition: transform .3s ease-out
}
.select-tag{
  background: linear-gradient(145deg, #162f46, #4696e0);
}
.row{
  display:flex;
  flex-direction: row;
  /* align-items: end; */
  justify-content:center;
}
.col{
  display:flex;
  flex-direction:column;
}
/* Card Area */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 32px;
  position: relative;
  z-index: 1;
  justify-content: space-evenly;
}
.about-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px;
  position: relative;
  z-index: 1;
  text-align: justify;
}

.card {
  background-color: var(--background-color);
  box-shadow: 0px var(--card-box-shadow-1-y) var(--card-box-shadow-1-blur) var(--card-box-shadow-1), 0px var(--card-box-shadow-2-y) var(--card-box-shadow-2-blur) var(--card-box-shadow-2), 0 0 0 1px var(--card-border-color);
  padding: 56px 16px 16px 16px;
  border-radius: 15px;
  /* cursor: pointer; */
  cursor: url(icons8-cursor.svg), auto;
  position: relative;
  transition: box-shadow 0.25s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background-color: var(--card-background-color);
}
.card .icon {
  z-index: 2;
  position: relative;
  display: table;
  padding: 8px;
}
.card .icon::after {
  content: "";
  position: absolute;
  inset: 4.5px;
  border-radius: 50%;
  background-color: var(--card-icon-background-color);
  border: 1px solid var(--card-icon-border-color);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  transition: background-color 0.25s, border-color 0.25s;
}
.card .icon svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  transform: translateZ(0);
  color: var(--card-icon-color);
  transition: color 0.25s;
}
.card h4 {
  z-index: 2;
  position: relative;
  margin: 12px 0 4px 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  line-height: 2;
  color: var(--card-label-color);
}
.card p {
  z-index: 2;
  position: relative;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-color);
}
.card .shine {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s;
}
.card .shine:before {
  content: "";
  width: 150%;
  padding-bottom: 150%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 55%;
  filter: blur(35px);
  opacity: var(--card-shine-opacity);
  transform: translateX(-50%);
  background-image: var(--card-shine-gradient);
}
.card .background {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
  mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}
.card .background .tiles {
  opacity: 0;
  transition: opacity 0.25s;
}
.card .background .tiles .tile {
  position: absolute;
  background-color: var(--card-tile-color);
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
}
.card .background .tiles .tile.tile-4, .card .background .tiles .tile.tile-6, .card .background .tiles .tile.tile-10 {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.card .background .tiles .tile.tile-3, .card .background .tiles .tile.tile-5, .card .background .tiles .tile.tile-8 {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}
.card .background .tiles .tile.tile-2, .card .background .tiles .tile.tile-9 {
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}
.card .background .tiles .tile.tile-1 {
  top: 0;
  left: 0;
  height: 10%;
  width: 22.5%;
}
.card .background .tiles .tile.tile-2 {
  top: 0;
  left: 22.5%;
  height: 10%;
  width: 27.5%;
}
.card .background .tiles .tile.tile-3 {
  top: 0;
  left: 50%;
  height: 10%;
  width: 27.5%;
}
.card .background .tiles .tile.tile-4 {
  top: 0;
  left: 77.5%;
  height: 10%;
  width: 22.5%;
}
.card .background .tiles .tile.tile-5 {
  top: 10%;
  left: 0;
  height: 22.5%;
  width: 22.5%;
}
.card .background .tiles .tile.tile-6 {
  top: 10%;
  left: 22.5%;
  height: 22.5%;
  width: 27.5%;
}
.card .background .tiles .tile.tile-7 {
  top: 10%;
  left: 50%;
  height: 22.5%;
  width: 27.5%;
}
.card .background .tiles .tile.tile-8 {
  top: 10%;
  left: 77.5%;
  height: 22.5%;
  width: 22.5%;
}
.card .background .tiles .tile.tile-9 {
  top: 32.5%;
  left: 50%;
  height: 22.5%;
  width: 27.5%;
}
.card .background .tiles .tile.tile-10 {
  top: 32.5%;
  left: 77.5%;
  height: 22.5%;
  width: 22.5%;
}
@-webkit-keyframes tile {
  0%, 12.5%, 100% {
    opacity: 1;
  }
  25%, 82.5% {
    opacity: 0;
  }
}
@keyframes tile {
  0%, 12.5%, 100% {
    opacity: 1;
  }
  25%, 82.5% {
    opacity: 0;
  }
}
.card .background .line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.card .background .line:before, .card .background .line:after {
  content: "";
  position: absolute;
  background-color: var(--card-line-color);
  transition: transform 0.35s;
}
.card .background .line:before {
  left: 0;
  right: 0;
  height: 1px;
  transform-origin: 0 50%;
  transform: scaleX(0);
}
.card .background .line:after {
  top: 0;
  bottom: 0;
  width: 1px;
  transform-origin: 50% 0;
  transform: scaleY(0);
}
.card .background .line.line-1:before {
  top: 10%;
}
.card .background .line.line-1:after {
  left: 22.5%;
}
.card .background .line.line-1:before, .card .background .line.line-1:after {
  transition-delay: 0.3s;
}
.card .background .line.line-2:before {
  top: 32.5%;
}
.card .background .line.line-2:after {
  left: 50%;
}
.card .background .line.line-2:before, .card .background .line.line-2:after {
  transition-delay: 0.15s;
}
.card .background .line.line-3:before {
  top: 55%;
}
.card .background .line.line-3:after {
  right: 22.5%;
}
.card:hover {
  box-shadow: 0px 3px 6px var(--card-hover-box-shadow-1), 0px var(--card-hover-box-shadow-2-y) var(--card-hover-box-shadow-2-blur) var(--card-hover-box-shadow-2), 0 0 0 1px var(--card-hover-border-color);
}
.card:hover .icon::after {
  background-color: var(--card-hover-icon-background-color);
  border-color: var(--card-hover-icon-border-color);
}
.card:hover .icon svg {
  color: var(--card-hover-icon-color);
}
.card:hover .shine {
  opacity: 1;
  transition-duration: 0.5s;
  transition-delay: 0s;
}
.card:hover .background .tiles {
  opacity: 1;
  transition-delay: 0.25s;
}
.card:hover .background .tiles .tile {
  -webkit-animation-name: tile;
          animation-name: tile;
}
.card:hover .background .line {
  opacity: 1;
  transition-duration: 0.15s;
}
.card:hover .background .line:before {
  transform: scaleX(1);
}
.card:hover .background .line:after {
  transform: scaleY(1);
}
.card:hover .background .line.line-1:before, .card:hover .background .line.line-1:after {
  transition-delay: 0s;
}
.card:hover .background .line.line-2:before, .card:hover .background .line.line-2:after {
  transition-delay: 0.15s;
}
.card:hover .background .line.line-3:before, .card:hover .background .line.line-3:after {
  transition-delay: 0.3s;
}

/* End Card Area */

#webbtn{
  display: hidden;
}
.packages-section a {
  color: #D4D4D8;
  text-decoration: none;
  background-color: #293f38;
  border-radius: 20px;
  padding: .5em;
  margin: .5em;
  /* word-wrap: initial; */
  /* overflow-wrap: break-word; */
  text-overflow: clip;
  transition: 0.2s ease;

}
.packages-section a:hover {
  box-shadow: inset 0 0 6px rgba(241, 4, 4, 0.7),
  inset 0 0 20px rgba(246, 7, 7, 0.5),
  0 0 20px rgba(205, 7, 7, 0.5),
  0 0 40px rgba(234, 4, 4, 0.3),
  0 0 80px rgba(219, 8, 8, 0.1);

  
  }

.about-section {
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0rem 5em;

  background-image: url('pexels-fauxels-3183164.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
  



#close-menu-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: none;
  color: #000;
}

#hamburger-btn {
  color: #fff;
  cursor: pointer;
  display: none;
}

@media (max-width: 1200px) {
  header {
    padding: 10px;
  }

  header.show-mobile-menu::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  }

  .navbar .logo {
    font-size: 1.7rem;
  }

    
  #hamburger-btn, #close-menu-btn {
    display: block;
  }

  .contact-section{
    /* display: flex; */
    padding: 2rem;
    flex-direction: column;
  }
  .navbar .menu-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 70px 40px 0;
    transition: left 0.2s ease;
  }

  header.show-mobile-menu .navbar .menu-links {
    left: 0;
  }

  .navbar a {
    color: #000;
  }

  .hero-section .content {
    text-align: center;
  }

  .hero-section .content :is(h2, p) {
    max-width: 100%;
  }

  .hero-section .content h2 {
    font-size: 2.3rem;
    line-height: 60px;
  }
  
  .hero-section .content button {
    padding: 9px 18px;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    position: relative;
    z-index: 1;
  }
  .about-section{
    padding: 1rem;
  }
  .packages-section{
    padding: 1rem;
  }
  .about-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
    position: relative;
    z-index: 1;
    text-align: justify;
  }
  .about-grid h3{
    text-align: left;
  }
}
@media (max-width: 700px) {
  header {
    padding: 10px;
  }

  .packages-section .content{
    width: 100vw;
  }
  .packages-section .row{
    flex-direction: column;
    align-items: center;


  }
  .packages-section .row .select-tag{
    width: 80vw;
    border-radius: 10px;
  }

  header.show-mobile-menu::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  }

  .navbar .logo {
    font-size: 1.7rem;
  }

    
  #hamburger-btn, #close-menu-btn {
    display: block;
  }

  .navbar .menu-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 70px 40px 0;
    transition: left 0.2s ease;
  }

  header.show-mobile-menu .navbar .menu-links {
    left: 0;
  }

  .navbar a {
    color: #000;
  }

  .hero-section .content {
    text-align: center;
  }

  .hero-section .content :is(h2, p) {
    max-width: 100%;
  }

  .hero-section .content h2 {
    font-size: 2.3rem;
    line-height: 60px;
  }
  
  .hero-section .content button {
    padding: 9px 18px;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(1, 0.8fr);
    justify-self: center;
align-self: center;
    grid-gap: 32px;
    position: relative;
    z-index: 1;
  }
}

.dark-text li{
  color:#cacedc !important;
}

blockquote {
  color: #A1A1AA;
}

html {font-size: 100%;} /*16px*/

body {
  /* background: white; */
  /* font-family: 'Bebas Neue', sans-serif; */
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  
  /* color: #000000; */
}

p {margin-bottom: 1rem; text-align: justify;}

h1, h2, h3, h4, h5 {
  margin: 3rem 0 1.38rem;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  font-size: 3.052rem;
}

h2 {font-size: 2.441rem;}

h3 {font-size: 1.953rem;}

h4 {font-size: 1.563rem;}

h5 {font-size: 1.25rem;}

small, .text_small {font-size: 0.8rem;}

