:root {
  --dl-color-gray-500: #595959;
  --dl-color-gray-700: #999999;
  --dl-color-gray-900: #D9D9D9;
  --dl-size-size-large: 144px;
  --dl-size-size-small: 48px;
  --dl-color-danger-300: #A22020;
  --dl-color-danger-500: #BF2626;
  --dl-color-danger-700: #E14747;
  --dl-color-gray-black: #000000;
  --dl-color-gray-white: #FFFFFF;
  --dl-size-size-medium: 96px;
  --dl-size-size-xlarge: 192px;
  --dl-size-size-xsmall: 16px;
  --dl-space-space-unit: 16px;
  --dl-color-success-300: #199033;
  --dl-color-success-500: #32A94C;
  --dl-color-success-700: #4CC366;
  --dl-size-size-xxlarge: 288px;
  --dl-size-size-maxwidth: 100vw;
  --dl-radius-radius-round: 50%;
  --dl-space-space-halfunit: 8px;
  --dl-space-space-sixunits: 96px;
  --dl-space-space-twounits: 32px;
  --dl-radius-radius-radius2: 2px;
  --dl-radius-radius-radius4: 4px;
  --dl-radius-radius-radius8: 8px;
  --dl-space-space-fiveunits: 80px;
  --dl-space-space-fourunits: 64px;
  --dl-space-space-threeunits: 48px;
  --dl-space-space-oneandhalfunits: 24px;
  --d: 2500ms;
	--angle: 90deg;
	--gradX: 100%;
	--gradY: 50%;
	--c1: rgb(0, 0, 0);
	--c2: rgba(168, 239, 255, 0.1);
}
@font-face {
  font-family: Dragonlands;
  src: url(/public/playground_assets/Dragonlands.woff);
  font-weight: bold;
}
.navbar{
  background-color: #F1F1F1;
}
.nav-item a {
  color: #000;
  margin-left:10px;
  margin-right:10px;
}
.navbar-toggler-icon{
  color: #000 !important;
  border: 2px solid black;
}
.collapse a:hover{
  color: #000;
}
.dropdown-menu{
  background-color: #F1F1F1 !important;
}
.dropdown-item{
  background-color: #F1F1F1 !important;
}
.fixed-top{
  z-index: 99999 !important;
}

/*-------------------------------------------------*/

body {
  scroll-behavior: smooth;
  background-color: #F1F1F1 !important;
  overflow-x: hidden;
}
body::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}
html{
  overflow-x: hidden;
}
span{
  cursor:default;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#content.fade-in {
  animation: fadeIn 1s ease-in;
}

.loader {
  position: fixed;
  margin: 0;
  top:0;
  left:0;
	font-family: Montserrat;
	font-size: 40px;
	color: var(--white);
	letter-spacing: 0.5em;
	background-color: black;
	display: flex;
	justify-content: center;
	align-items: center;
  text-align: center;
	height: 100vh;
  width: 100%;
  z-index: 999999;
}

.loader > div {
  width: 90%;
  padding-top:20vh;
  margin-left: auto;
  margin-right: auto;
  top: 5%;
}
.loader span {
	opacity: 0.15;
}
@media (max-width:426px){
  .loader span{
    font-size: 35px;
  }
  .loader-inner {
    position: absolute;
    bottom: 20vh;
    left: 45%;
  }
}
@media (max-width:375px){
  .loader span{
    font-size: 30px;
  }
  .loader{
    letter-spacing: 0.3em;
  }
}
#I {
	opacity: 1;
	animation: flickerI 4s linear  reverse infinite;
}
#I::after {
	content: '';
	width: 150%;
	-webkit-box-shadow: -35px 0px 60px 8px rgba(212,175,55,1);
	-moz-box-shadow: -35px 0px 60px 8px rgba(212,175,55,1);
	box-shadow: -35px 0px 60px 8px rgba(212,175,55,1);
}
#L, #G {
	animation: flickerLG 4s linear reverse infinite;
	position: relative;
}
#L::after, 
#L::before  {
	content:' ';
	width: 100px;
	height: 100px;
	background: var(--white);
	position: absolute;
	top: -50%;
	left: 100%;
	border-radius: 100%;
	opacity: 0.05;
	filter: blur(10px);
}
#L::after {
	width: 200px;
	height: 200px;
	top: -150%;
	left: -5%;
	opacity: 0.1;
	filter: blur(10px);
}
#H {
	animation: flickerH 4s linear reverse infinite
}

#T {
	animation: flickerH 4s linear reverse infinite
}

@keyframes flickerI {
	0% {
		opacity: 0.4;
	}
	5% {
		opacity: 0.5;
	}
	10% {
		opacity: 0.6;
	}
	15% {
		opacity: 0.85;
	}
	25% {
		opacity: 0.5;
	}
	30% {
		opacity: 1;
	}
	35% {
		opacity: 0.1;
	}
	40% {
		opacity: 0.25;
	}
	45% {
		opacity: 0.5;
	}
	60% {
		opacity: 1;
	}
	70% {
		opacity: 0.85;
	}
	80% {
		opacity: 0.4;
	}
	90% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

@keyframes flickerLG {
	0% {
		opacity: 0.19;
	}
	5% {
		opacity: 0.2;
	}
	10% {
		opacity: 0.25;
	}
	15% {
		opacity: 0.35;
	}
	25% {
		opacity: 0.2;
	}
	30% {
		opacity: 0.4;
	}
	35% {
		opacity: 0.1;
	}
	40% {
		opacity: 0.25;
	}
	45% {
		opacity: 0.2;
	}
	60% {
		opacity: 0.4;
	}
	70% {
		opacity: 0.35;
	}
	80% {
		opacity: 0.4;
	}
	90% {
		opacity: 0.2;
	}
	100% {
		opacity: 0.4;
	}
}

@keyframes flickerH {
	0% {
		opacity: 0.15;
	}
	5% {
		opacity: 0.2;
	}
	10% {
		opacity: 0.12;
	}
	15% {
		opacity: 0.2;
	}
	25% {
		opacity: 0.15;
	}
	30% {
		opacity: 0.4;
	}
	35% {
		opacity: 0.05;
	}
	40% {
		opacity: 0.12;
	}
	45% {
		opacity: 0.15;
	}
	60% {
		opacity: 0.3;
	}
	70% {
		opacity: 0.2;
	}
	80% {
		opacity: 0.3;
	}
	90% {
		opacity: 0.18;
	}
	100% {
		opacity: 0.3;
	}
}

@keyframes flickerT {
	0% {
		opacity: 0.01;
	}
	5% {
		opacity: 0.05;
	}
	10% {
		opacity: 0.03;
	}
	15% {
		opacity: 0.1;
	}
	25% {
		opacity: 0.07;
	}
	30% {
		opacity: 0.1;
	}
	35% {
		opacity: 0.05;
	}
	40% {
		opacity: 0.06;
	}
	45% {
		opacity: 0.1;
	}
	60% {
		opacity: 0.;
	}
	70% {
		opacity: 0.1;
	}
	80% {
		opacity: 0.;
	}
	90% {
		opacity: 0.0;
	}
	100% {
		opacity: 0.1;
	}
}
.loader-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
   margin: auto;
}
.loader-bar {
  width: 200px;
  height: 10px;
  background-color: #191919;
  margin-top: 20px;
}
.loader-percent {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



 /* ----------- FIRST SECTION ----------------- */
  
.home-hero {
  width: 100%;
  height: 830px !important;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  background-color: #F1F1F1;
}

.home-text {
  top: 10%;
  left: 5%;
  width: 418px;
  height: 206px;
  position: absolute;
  font-size: 10rem;
  line-height: 0.8;
  text-align: center;
  font-weight: 900;
  
  font-family: Dragonlands;
  color: black;
}

.home-text span {
  display: block;
}

.home-text006 {
  top: 42%;
  left: 49%;
  width: var(--dl-size-size-xxlarge);
  position: absolute;
  font-size: x-large;
  font-weight: 500;
}
@media (min-width:1550px) {
  .home-text006{
    left: 6%;
    font-size: 31px;
  }
}

.home-btn-group1 {
  display: flex;
  position: relative;
  align-items: center;
  flex-direction: row;
}

.home-button {
  left: 25px;
  width: 196px;
  border: none;
  top: 85%;
  height: 92px;
  position: absolute;
  padding-top: var(--dl-space-space-unit);
  border-right: 1px solid;
  padding-left: var(--dl-space-space-twounits);
  padding-right: var(--dl-space-space-twounits);
  padding-bottom: var(--dl-space-space-unit);
  background-color: #F1F1F1;
  font-size: x-large;
}

.home-text008 {
  font-style: normal;
  font-weight: 700;
}

.home-text010 {
  font-style: normal;
  font-weight: 700;
  color: #191919;
}

.home-button1 {
  top: 85%;
  left: 17%;
  width: 700px;
  border: none;
  bottom: -330px;
  height: 70px;
  position: absolute;
  padding-top: var(--dl-space-space-unit);
  border-color: transparent;
  padding-right: var(--dl-space-space-twounits);
  padding-bottom: var(--dl-space-space-unit);
  background-color: transparent;
  font-size: x-large;
}

#changing-text>span { 
  font-size: 15px;
  align-items: center;
  justify-content: center;
  color: #191919;
}

#ran {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
} 

@property --angle {
  syntax: '<angle>';
  initial-value: 90deg;
  inherits: true;
}

.home-button2 {
  top: 60%;
  left: 5%;
  cursor: pointer;
  font-size: x-large;
  width: 200px;
  height: 90px;
  position: absolute;
  background-color: transparent;
  border: 3px solid;
  border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.1turn, var(--c1) 0.15turn, var(--c2) 0.25turn) 30;
  animation: borderRotate var(--d) linear infinite forwards;
}
@keyframes borderRotate {
  100% {
    --angle: 420deg;
  }
}
.home-image2 {
  right: 0px;
  width: 500px;
  bottom: 0px;
  position: absolute;
  object-fit: cover;
  background-size: auto;
}

@media (min-width:1356px) and (max-width:1550px){
    .home-hero{
        height:770px !important;
    }
    .home-text006{
        top:45%;
    }
    .home-image2{
      width: 400px;
    }
}

@media (min-width:1025px) and (max-width:1355px) {
  .home-button {
    top: 75%;
    width: 570px;
    height: 80px;
    border: none;
    border-bottom: 1px solid black;
  }
  .home-text010{
    font-size: medium;
    line-height: 20px;
  }
  .home-button1 {
    top: 90%;
    height: 60px;
    width: 550px;
    left: 5%;
  }
  .home-hero {
    max-height: 610px;
}
.home-text{
   font-size:7rem;
}
.home-text006{
   top:40%;
   left: 5%;
}
.home-image2{
   width:300px;
}
}

@media (min-width:768px) and (max-width: 1024px) {
  .home-hero {
    height: 600px;
  }

  .home-text {
    font-size: 8rem;
  }

  .home-text006 {
    top: 37%;
    left: 6%;
  }

  .home-button {
    top: 65%;
    height: 80px;
    border: none;
    border-bottom: 1px solid black;
  }
  .home-text010{
    font-size: large;
  }

  .home-button1 {
    top: 80%;
    height: 60px;
    width: 400px;
    left: 5%;
  }

  .home-button2 {
    top: 50%;
    height: 70px;
    width: 150px;
  }

  .home-image2 {
    width: 380px;
  }
}

@media (min-width: 426px) and (max-width: 767px) {
  .home-hero {
    height: 500px;
  }

  .home-text {
    font-size: 5rem;
    text-align: center;
    width: 100% ;
    left: auto;
    right: auto;
  }

  .home-text006 {
    top: 25%;
    left: 50%;
  }

  .home-button {
    top: 60%;
    height: 70px;
    border: none;
    border-bottom: 2px solid black;
  }
  .home-text010{
    font-size: large;
  }

  .home-button1 {
    top: 70%;
    height: 100px;
    width: 200px;
    left: 3%;

  }

  .home-button2 {
    top: 45%;
    height: 80px;
    width: 150px;
  }

  .home-image2 {
    width: 400px;
  }
}
@media (max-width: 425px) {
  .home-hero {
    height: 700px !important;
    padding: 0px !important;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .home-text {
    font-size: 400% !important;
    height: 150px;
    width:90%;
    text-align: center;
    font-weight: 900;
    font-family: Dragonlands;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-text span:nth-child(1) {
    position: relative;
  }

  .home-text006 {
    top: 25%;
    left: 100%;
    transform: translateX(-50%);
    font-size: small;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-image2 {
    width: 75%;
    right:-60px !important;
    bottom: 0%;
    height: auto;
    position: absolute;
    transform: scale(1);
  }

  .home-button1 {
    width: 140px;
    top: 63%;
    left: 3%;
    position: absolute;
    font-size: small;
    margin: 0% !important;
    padding: 0%;
    line-height: 1;
  }

  .home-btn-group1 {
    flex-direction: column;
  }

  .home-button {
    top: 55%;
    left: 4%;
    padding: 10px;
    bottom: 20%;
    border-bottom: 1px solid;
    border-right: none;
    font-size: large;
    padding: 0%;
    height: 50px;
    width: 140px;
  }
  .home-button2 {
    top: 35%;
    height: 70px;
    width: 120px;
    font-size: medium;
  }
}

@media (max-width: 375px){
      .home-button1{
        top: 60%;
      }
      .home-button{
        top: 60%;
      }
}


/*---------  INTRODUCTION ----------- */

.home-banner {
  width: 100%;
  min-height: 700px;
  max-height: 750px;
  display: flex;
  padding: var(--dl-space-space-twounits);
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background-color: #F1F1F1;
  overflow: hidden; /* Add overflow: hidden to prevent content overflow */
}


.home-text012 {
  font-size: 700%;
  text-align: center;
  font-family: Dragonlands;
  color: black;
  word-break: break-word; /* Add word-break: break-word to allow word wrapping */
}

.home-text013 {
  top: 35%;
  right: 4%;
  position: absolute;
  font-size: 20px;
  max-width: 45%;
  align-self: flex-start;
  margin-top: auto;
  text-align: left;
  margin-bottom: auto;
  overflow: hidden; /* Add overflow: hidden to prevent content overflow */
}
.home-image3 {
  width: 45%;
  height: auto;
  position: absolute;
  object-fit: cover;
  top: 60%; /* Adjust the vertical position */
  left: 3px;
  transform: translateY(-50%); /* Vertically center the image */
  opacity: 0; /* Hide the image initially */
  
}
.animated{
  animation-name: biscuit;
  animation-duration: 1000ms;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes biscuit {
  0% {
    transform: translateY(-50%) rotate(-180deg);
    left: -20%;
    opacity: 1;
   
  }

  25% {
    transform: translateY(-50%) rotate(-135deg);
    left: -15%;
    opacity: 1;

  }

  50% {
    transform: translateY(-50%) rotate(-90deg);
    left: -10%;
    opacity: 1;

  }

  75% {
    transform: translateY(-50%) rotate(-45deg);
    left: -5%;
    opacity: 1;
  
  }

  100% {
    transform: translateY(-50%) rotate(0deg);
    left: 3px;
    opacity: 1;
  
  }
}

@media (min-width:1550px){
  .home-banner{
    height: 900px;
  }
  .home-image3{
    height: 700px;
    width: auto;
  }
}

@media (min-width: 768px) and (max-width:1024px){
  .home-text012 {
    font-size: 4rem;
  }
  .home-text013 {
    top: 20%;
    font-size:20px;
  }
}

@media (max-width: 768px) {
  .home-text012 {
    font-size: 4.5rem;
  }

  .home-text013 {
    font-size: 20px;
  }
}
@media (min-width: 1440px){
  .home-banner{
    height: 1000px;
  }
}

@media (max-width: 425px) {
  .home-banner {
    height: auto; /* Change to 'auto' for responsive height */
  }

  .home-text012 {
    font-size: 2.5rem;
    top: 3%;
    position: absolute;
  }

  .home-text013 {
    font-size: 17px;
    min-width: 90%;
    top: 14%; /* Adjust the vertical position as needed */
    margin: auto;
    text-align: center;
    line-height: 1.3;
  }

  .home-image3 {
    height: auto;
    top: 55% !important;
    width: 190%;
    left: -45%;
    opacity: 1;
    animation: rotate 50s infinite linear !important;
  }

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

    25% {
      transform: rotate(-270deg);
    }

    50% {
      transform: rotate(-180deg);
    }

    75% {
      transform: rotate(-90deg);
    }

    100% {
      transform: rotate(0deg);
    }
  }
}
@media (max-width: 375px){
  .home-text013{
    font-size: 15px;
  }
  .home-text012{
    font-size: 2rem;
  }
}


/* UTILITY - STORY SECTION  */

.home-banner1 {
  width: 100%;
  height: 850px;
  display: flex;
  padding: var(--dl-space-space-twounits);
  position: relative;
  align-items: center;
  flex-direction: column;
  padding-bottom: 48px;
  justify-content: space-between;
  background-color: #191919;
}
.home-text018 {
  width: 676px;
  height: 64px;
  text-align: center;
  font-weight: 600;
  margin-bottom: var(--dl-space-space-twounits);
}

.home-text020 {
  color: var(--dl-color-gray-white);
  font-size: 7rem;
  font-family: Dragonlands;
}

.home-image4 {
  top: 30%;
  right: 7%;
  width: 30%;
  height: auto;
  position: absolute;
  object-fit: cover;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 30px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

.home-text026 {
  top: 25%;
  left: 20%;
  color: var(--dl-color-gray-white);
  position: absolute;
  font-size: 50px;
  font-family: Dragonlands;
}
        
.home-text027 {
  top: 40%;
  left: 5%;
  color: var(--dl-color-gray-white);
  width: 50%;
  position: absolute;
                                                
}
.home-text027 .br_{
    display: inline-block;
    content: "";
    margin-top: 35px;
}
@media (min-width:1700px){
  .home-image4{
    top: 15% ;
  }
}
@media(max-width: 768px) {
  .home-banner1 {
    height: auto;
    padding: 40px 20px;
  }

  .home-text018 {
    width: 100%;
    font-size: 2rem;
    height: auto;
    margin-bottom: 20px;
  }

  .home-text020 {
    font-size: 3rem;
  }

  .home-image4 {
    top: 5%;
    right: auto;
    width: 80%;
    height: auto;
    position: static;
    object-fit: cover;
  }

  .home-text026 {
    top: auto;
    left: auto;
    text-align: center;
    font-size: 2rem;
    width: 100%;
    margin-bottom: 20px;
    position: static;
  }

  .home-text027 {
    width: 100%;
    top: auto;
    left: auto;
    font-size: 0.8rem !important;
    position: static;
  }
}

/* UTILITY - ART SECTION  */

.home-banner2 {
  width: 100%;
  height: 700px;
  display: flex;
  padding: var(--dl-space-space-threeunits);
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #F1F1F1;
}

.home-text021 {
  top: 20%;
  right: 5%;
  color: var(--dl-color-gray-black);
  width: 50%;
  position: absolute;
}

.home-text028 {
  top: 5%;
  right: 30%;
  position: absolute;
  text-align: center;
  font-size: 50px;
  font-family: Dragonlands;
  color: black;
}

.home-image5 {
  width: 30%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 20%;
  left: 5%;
  animation: float 4s ease-in-out infinite;
}
@media (min-width:1700px){
  .home-image5{
    top: 15% ;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  .home-banner2 {
    padding: 0;
    align-items: center !important; 
    height: auto;
    min-height: 850px;
  }

  .home-text028 {
    top: 5%; /* Adjusted top position */
    text-align: center;
    font-size: 2.5rem; /* Adjusted font size */
    left: auto;
    right: auto;
  }

  .home-image5 {
    top: auto; /* Adjusted top position */
    top: 20%; /* Adjusted top position */
    width: 55%; /* Adjusted width */
    left: auto;
    right: auto;
    align-self: center;
    object-fit: cover;
  }

  .home-text021 {
    width: 90%;
    top: 60%;
    font-size: 0.8rem;
  }
}
@media  (max-width: 426px) {
  .home-banner2{
    padding: 0;
    align-items: center !important; 
    height: auto;
    min-height: 850px;
  }
  .home-text028 {
    top: 5%; /* Adjusted top position */
    text-align: center;
    font-size: 2.5rem; /* Adjusted font size */
    left: auto;
    right: auto;
  }

  .home-image5 {
    top: auto; /* Adjusted top position */
    top: 15%; /* Adjusted top position */
    width:60%; /* Adjusted width */
    left: auto;
    right: auto;
    align-self: center;
    object-fit: cover;
  }

  .home-text021 {
    width: 90%;
    top:40%;
    font-size: 0.8rem;
  }

}


/*   UTILITY - METALLUX   */

.home-banner3 {
  width: 100%;
  height: 650px;
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 0;
  flex-direction: column;
  justify-content: space-between;
  background-color: #191919;
}

.home-text029 {
  top: 5%;
  left: 20%;
  color: var(--dl-color-gray-white);
  position: absolute;
  font-size: 50px;
  font-family: Dragonlands;
}

.home-text033 {
  top: 30%;
  left: 5%;
  color: var(--dl-color-gray-white);
  width: 50%;
  position: absolute;
}

.home-image6 {
  top: 20%;
  right: 10%;
  width: 30%;
  height: auto;
  position: absolute;
  object-fit: cover;
  animation: float 3s ease-in-out infinite;
}

@media (min-width: 1440px) {
  .home-image6{
    top: 8%;
  }
}

@media (max-width: 768px) {
  .home-banner3 {
    height: 800px;
    padding: 0;
    align-items: center !important; 
  }

  .home-text029 {
    top: 5%;
    text-align: center;
    font-size: 2rem;
    left: auto;
    right: auto;
    margin: 10px;
  }

  .home-image6 {
    top: 11%;
    width: 40%;
    left: auto;
    right: auto;
    align-self: center;
    object-fit: cover;
  }

  .home-text033 {
    width: 90%;
    top: 55%;
    font-size: 11px;
  }
}
@media (max-width:426px){
  .home-image6{
    width: 65%;
  }
  .home-text033{
    top: 50%;
    font-size: 0.8rem;
  }
}



/* UTILITY - WHITELIST  */

.home-banner4 {
  width: 100%;
  height: 600px;
  display: flex;
  padding: var(--dl-space-space-threeunits);
  position: relative;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #F1F1F1;
}

.home-image60 {
  width: 25%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 20%;
  left: auto;
  right: auto;

  animation: float 4s ease-in-out infinite;
}

.home-text030 {
  top: 10%;
  right: 25%;
  position: absolute;
  text-align: center;
  font-size: 50px;
  font-family: Dragonlands;
  color: black;
}

.home-text035 {
  top: 40%;
  right: 5%;
  color: var(--dl-color-gray-black);
  width: 50%;
  position: absolute;
}

@media (max-width: 425px) {
  .home-banner4 {
    height: 600px;
    padding: 0;
    align-items: center;
  }

  .home-text030 {
    top: 5%;
    text-align: center;
    font-size: 2rem;
    left: auto;
    right: auto;
    margin: 10px;
  }

  .home-image60 {
    top: 15%;
    width: 60%;
    left: auto;
    right: auto;
  }

  .home-text035 {
    width: 90%;
    top: 60%;
    font-size: 0.8rem;
  }
}

@media(min-width: 425px) and (max-width: 768px) {
  .home-banner4 {
    height: auto;
    min-height: 740px;
    padding: 0;
    align-items: center;
  }

  .home-text030 {
    top: 5%;
    text-align: center;
    font-size: 2.5rem;
    left: auto;
    right: auto;
  }

  .home-image60 {
    top: 11%;
    width: 45%;
    align-self: center;
  }

  .home-text035 {
    width: 90%;
    top: 56%;
    font-size: 0.8rem;
  }
}


/* ---------- STORY SECTION --------------  */

.home-blog-post-card {
  width: 100%;
  height: 800px;
  display: flex;
  position: relative;
  max-width: var(--dl-size-size-maxwidth);
  align-items: stretch;
  flex-direction: row;
  justify-content: space-between;
  background-color: #F1F1F1;
}


.home-image7 {
  height: auto;
  width: 100%;
  z-index: 100;
  object-fit: contain;
}

.home-image07 {
  height: auto;
  width: 15%;
  right: 1%;
  bottom: 1%;
  position: absolute;
  z-index: 1000;
}

.home-image007 {
  width: 100%;
  bottom: 3%;
  z-index: 999;
  height: auto;
  position: absolute;
  animation: up 0.5s linear;
}

@keyframes up {
  0% {
    transform: translate(0, 100px);
  }

  50% {
    transform: translate(0, 50px);
  }

  100% {
    transform: translate(0, 0px);
  }
}

.home-text031 {
  top: 13px;
  left: 46px;
  z-index: 150;
  position: absolute;
  font-size: 3em;
  font-family: Dragonlands;
  font-weight: 900;
  line-height: 0.8;
  color: black;
}

.home-text032 {
  font-size: 2em;
}

.home-text034 {
  font-size: 2em;
}

.home-button3 {
  left: 43%;
  width: var(--dl-size-size-xlarge);
  bottom: 50px;
  height: auto;
  position: absolute;
  font-weight: bolder;
  font-family: Dragonlands;
  background-color: transparent;
  font-size: xx-large;
  border: 3px solid black;
  z-index: 9999;
  cursor: pointer;
}
@media (min-width: 425px) and (max-width: 768px) {
  .home-blog-post-card{
    height: 700px;
  }
  
  .home-text031{
    width: 90%;
    text-align: center; 
  }
  .home-image7{
    width: 100%;
    height: auto;
    object-fit: contain;
    bottom: 20%;
    position: absolute;
  }
  
  .home-button3{
      left: 40%;
  }
}
@media (min-width: 390px) and (max-width: 425px) {
  .home-blog-post-card {
    height: 650px;
    align-items: center;
  }

  .home-text031 {
    width: inherit;
    height: 100px;
    left: auto;
    right: auto;
    position: absolute;
    text-align: center;

  }

  .home-text032, .home-text034 {
    font-size: 3rem;
  }

  .home-image7 {
    min-height: 80vh;
    bottom: -15%;
    position: absolute;
    transform: scale(2.5);
  }

  .home-image07 {
    height: auto;
    width: 20%;
    position: absolute;
    bottom: 1px;
  }

  .home-image007 {
    display: none;
  }

  .home-button3 {
    width: 25%;
    height: auto;
    font-size: small;
    left: 40%;
    bottom: 1px;
  }
  
}
@media (max-width:390px) {
  .home-blog-post-card {
    height: 600px;
    align-items: center;
    justify-content: center;
    align-items: center;
  }

  .home-text031 {
    width: inherit;
    height: 100px;
    left: auto;
    right: auto;
    position: absolute;
    text-align: center;

  }

  .home-text032, .home-text034 {
    font-size: 3rem;
  }

  .home-image7 {
    min-height: 80vh;
    bottom: -10%;
    position: absolute;
    transform: scale(2.5);
  }

  .home-image07 {
    height: auto;
    width: 20%;
    position: absolute;
  }

  .home-image007 {
    display: none;
  }

  .home-button3 {
    width: 25%;
    height: auto;
    font-size: medium;
    left: 40%;
    bottom: 10px;
  }
}
@media (max-width:377px){
  .home-image7{
    bottom: 0% !important;
  }
}

.home-banner5 {
  width: 100%;
  height: 800px;
  display: flex;
  padding: var(--dl-space-space-twounits);
  position: relative;
  align-items: center;
  flex-direction: column;
  background-color: #F1F1F1;
}

.home-text036 {
  font-size: 5rem;
  text-align: center;
  font-family: Dragonlands;
  color: black;
}

.home-video {
  top: 25%;
  right: 3%;
  width: 600px;
  height: auto;
  position: absolute;

}

.home-text037 {
  top: 30%;
  left: 20px;
  width: 50%;
  font-size: xx-large;
  position: absolute;
  text-align: left;
  color: black;
}
@media (min-width:425px) and (max-width:1024px){
  .home-banner5{
    height: auto;
    min-height: 800px;
  }
  
  .home-text037{
    top: 20%;
    width: 95%;
    text-align: left;
  }
  .home-video{
    display: none;
  }
}
@media (max-width: 425px){
  .home-banner5 {
    height: 730px;
  }

  .home-text036 {
    font-size: 2.5rem;
  }

  .home-text037 {
    width: 95%;
    font-size: 17px;
    top: 15%;
  }

  .home-video {
    width: 90%;
    top: 55%;
    left: auto;
    right: auto;

  }
}
.home-text040 {
  top: 50%;
  left: 20px;
  width: 40%;
  font-size: xx-large;
  position: absolute;
  text-align: center;
  border: 2px solid black;
}

.home-text043 {
  top: 70%;
  left: 20px;
  width: 40%;
  font-size: xx-large;
  position: absolute;
  text-align: center;
  border: 2px solid black;
}

.wrapper {
  margin: auto;
  width: 95%;
  background-color: #F1F1F1;
}

.wrapper>h1 {
  font-size: 5rem;
  font-family: Dragonlands;
  color: black;
  background-color: #F1F1F1;
  text-align: center !important;
}
@media (max-width:425px){
  .wrapper>h1{
    font-size: 2.5rem;
  }
}

.cards {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.cards li {
  border: 2px solid #490A3D;
  border-radius: 5px;
  background-color: black;
  color: #fff;
  flex: 1 1 200px;
}

.cards h2 {
  background-color: black;
  margin: 0;
  padding: 10px;
  text-align: center;
}

.cards p {
  padding: 5px;
  text-align: center;
  margin: 0px;
}

.flex {   
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.flex li {
  flex: 1 1 300px;
  margin: 10px;
}

.cards svg {
  background-color: #F1F1F1;
  display: block;
  margin: 0px auto 5px;
}

.cards .ab {
  font-size: 10px;
}

.arrow {
  border: solid #191919;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.faq-section {
  max-width: 100%;
  margin: 5%;
}

header {
  margin-bottom: 70px;
}

header>p {
  font-size: 22px;
  color: #191919;
  text-align: center;
}

.faq-section h2 {
  font-size: 5rem;
  font-family: Dragonlands;
  color: black;
  text-align: center !important;
  display: inline-block;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
}

details {
  cursor: pointer;
}

summary:focus-visible {
  outline: 2px solid orange;
  outline-offset: 8px;
  border-radius: 4px;
}

h4 {
  width: 90%;
}

summary {
  font-size: 20px;
  color: #191919;
  display: flex;
  justify-item: space-between;
  align-items: center;
  margin-bottom: 25px;

}

summary::marker {
  display: none;
  content: "";
}

span {
  margin-top: 4px;
}

details>p {
  max-width: 650px;
  color: #191919;
  font-size: 18px;
  line-height: 155%;
  letter-spacing: .1px;
  margin-bottom: 40px;
  padding-left: 10px;
}

hr {
  color: black;
  margin-block: 20px;
}

@media (max-width:425px){
  .faq-section h4{
    font-size: 18px !important;
  }
  .faq-section h2{
    font-size: 2.5rem ;
  }
  .faq-section p{
    font-size: 13px !important;
  }
  .faq-section h3{
    font-size: 20px !important;
  }

}
/*
.carousel-item {
  height: 600px;
  background-color: #191919;
}

.carousal img {
  max-width: 200px;
  height: auto;
  object-fit: cover;
}

.carousel-caption>h5 {
  font-size: 4rem;
  line-height: 0.9;
}

.carousel-caption {
  left: 5%;
  text-align: left !important;
  background-color: #191919;
  max-width: 350px;
  right: auto;
  padding: 5px;
  top: 3%;
}
 */
/*footer*/
footer {
  width: 100%;
  background-color: black;
  min-height: 50px;
  padding: 10px 0px 20px 0px;
}

.social_footer_ul {
  display: table;
  margin: 15px auto 0 auto;
  list-style-type: none;
  padding-inline-start: 0%;
}

.social_footer_ul li {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  float:left;
}

.social_footer_ul li a {
  color: #CCC;
}

.social_footer_ul li i {
  width: 30px;
  height: 30px;
  text-align: center;
}

@media(max-width: 767px) {
  .home-header {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }

  .home-nav {
    display: none;
  }

  .home-btn-group {
    display: none;
  }

  .home-burger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  

  .home-banner {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }

  .home-text013 {
    padding-left: var(--dl-space-space-unit);
    padding-right: var(--dl-space-space-unit);
  }

  .home-banner1 {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }

  .home-banner2 {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }

  .home-banner3 {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }

  .home-banner4 {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }

  .home-blog-post-card {
    flex-direction: column;
  }

  .home-image7 {
    width: 100%;
  }


  .home-text037 {
    padding-left: var(--dl-space-space-unit);
    padding-right: var(--dl-space-space-unit);
  }

  .home-text040 {
    padding-left: var(--dl-space-space-unit);
    padding-right: var(--dl-space-space-unit);
  }

  .home-text043 {
    padding-left: var(--dl-space-space-unit);
    padding-right: var(--dl-space-space-unit);
  }

  .home-banner6 {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }
}

@media(max-width: 425px) {
  body {
    width: 100% !important;
    padding: 0% !important;
    overflow-x: hidden;
  }

  .home-header {
    padding: 5px;
    padding-right: 10px;
    height: 60px;
  }

  .home-mobile-menu {
    padding: 5px;
  }
  
  .home-container02 {
    margin-bottom: var(--dl-space-space-unit);
  }

  .home-btn-group1 {
    flex-direction: column;
  }

  .home-button1 {
    margin-top: var(--dl-space-space-unit);
    margin-left: 0px;
  }
  
}

@media(max-width: 375px) {
  .home-button1 {
    width: 120px;
    top: 75%;
    left: 5%;
  }

  .home-text010 {
    left: 5%;
    width: 120px;
    top: 65%;
  }
}

/* ---------------- CAROUSAL --------------- */

.carousel-item {
  height: 550px;
  background-color: #191919;
  position: relative;
}

.mobile-image {
  display: block;
  position: absolute;
  
  width: 40%;
  height: auto;
  right: 10%;
}
.a_img{
  bottom: 0% !important;
  position:absolute;
}
.c_img{
  width: 35%;
}


.carousel-caption {
  position: absolute;
  left: 2%;
  text-align: center;
  color: white;
  width: 60%;
  max-width: 400px;
  top: 40%;
  transform: translateY(-40%);


}
.carousel-caption h5 {
  font-family: Dragonlands;
  font-size: xx-large;
}
@media (min-width:425px) and (max-width: 768px){
  .carousel-caption{
    width: 35%;
  }
  .b_img{
    top: 25%;
  }
}
/* Media Query for mobile devices */
@media (max-width: 425px) {
  .mobile-image {
    display: block;
    height: 300px;
    width: auto;
    top: 0%;
  }
  .carousel-inner .a_img{
    height: 260px;
    width: auto;
    left: 50%;
    transform: translateX(-50%);

  }
  .carousel-inner .b_img{
    
    left: 50%;
    transform: translateX(-50%);
  }
  .carousel-inner .c_img{
    height: 250px;
    left: 50%;
    transform: translateX(-50%);
  }
  .carousel-caption {
    position: static;
    top: initial;
    left: initial;
    transform: none;
    width: 70%;
    text-align: center;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
  }

  .carousel-caption h5 {
    font-size: 2rem;
    margin-bottom: -5%;
  }

  .carousel-caption p {
    font-size: 11px;
    margin: 0%;

  }
}

/* Media Query for tablets and larger devices */
@media (min-width: 426px) and (max-width:1140px) {
  .mobile-image {
    display: none;
  }
  .carousel-caption{
    width: 80%;
    left: auto;
    right: auto;
    margin: auto  ;
  }
  .carousel-caption h5 {
    font-size: 2.5rem;
  }

}


