@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
 :root {
	 --color-white-100: #fff;
	 --color-white-200: #e4e6e7;
	 --color-white-300: #c9cccf;
	 --color-white-400: #a1a6aa;
	 --color-white-500: #798086;
	 --color-black-100: #14191f;
	 --color-black-200: #101419;
	 --color-black-300: #0c0f13;
	 --color-black-400: #0c0f13;
	 --color-black-500: #080a0c;
	 --color-black-600: #060709;
	 --color-black-700: #040506;
	 --color-black-800: #020303;
	 --color-blue-100: #dcebfe;
	 --color-blue-200: #bedbfe;
	 --color-blue-300: #91c3fd;
	 --color-blue-400: #61a6fa;
	 --color-blue-500: #3c83f6;
	 --color-blue-600: #2463eb;
	 --color-blue-700: #1d4fd7;
	 --color-blue-800: #1e3fae;
	 --color-blue-900: #1e3b8a;
	 --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	 --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	 --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

 *, *::before, *::after {
	 padding: 0;
	 margin: 0;
	 box-sizing: border-box;
	 list-style: none;
	 list-style-type: none;
	 text-decoration: none;
	 -webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
	 text-rendering: optimizeLegibility;
}
 html {
	 font-size: 100%;
	 box-sizing: inherit;
	 scroll-behavior: smooth;
	 height: -webkit-fill-available;
}
 body {
	 font-family: "Rubik", sans-serif;
	 font-size: clamp(1rem, 2vw, 1.125rem);
	 font-weight: 400;
	 line-height: 1.5;
	 height: -webkit-fill-available;
	 color: var(--color-white-100);
	 
}
 main {
	 overflow: hidden;
}
 a, button {
	 cursor: pointer;
	 border: none;
	 outline: none;
	 user-select: none;
	 background: none;
	 box-shadow: none;
	 text-decoration: none;
}
 img, video {
	 display: block;
	 max-width: 100%;
	 height: auto;
	 object-fit: cover;
}
 .section {
	 margin: 0 auto;
	 padding: 6rem 0 1rem;
}
 .container {
	 max-width: 75rem;
	 height: auto;
	 margin: 0 auto;
	 padding: 0 1.25rem;
}
 .centered {
	 text-align: center;
	 vertical-align: middle;
	 margin-bottom: 1rem;
}
 .heading-xl {
	 font-family: inherit;
	 font-size: clamp(5.648rem, 6vw, 4.241rem);
	 font-weight: 700;
	 line-height: 1.15;
	 letter-spacing: -1px;
	 text-shadow:  3px 4px black
}
 .heading-lg {
	 font-family: inherit;
	 font-size: clamp(2.179rem, 5vw, 3.176rem);
	 font-weight: 700;
	 line-height: 1.15;
	 letter-spacing: -1px;
}
 .heading-md {
	 font-family: inherit;
	 font-size: clamp(1.794rem, 4vw, 2.379rem);
	 font-weight: 700;
	 line-height: 1.25;
	 letter-spacing: -1px;
}
 .heading-sm {
	 font-family: inherit;
	 font-size: clamp(1.476rem, 3vw, 1.782rem);
	 font-weight: 600;
	 line-height: 1.5;
}
 .heading-xs {
	 font-family: inherit;
	 font-size: clamp(1.215rem, 2vw, 1.335rem);
	 font-weight: 500;
	 line-height: 1.5;
}
.text-primary {
    color: #FF6600;
}
.text-darken{
	color: var(--color-black-500);
}
.text-center{
	text-align: center;
}
.text-uppercase {
	 text-transform: uppercase;
}
.text-spaced-md {
	 letter-spacing: 5px;
}
.font-weight-400 {
	 font-weight: 400;
}

.font-size-1 {
	font-size: 1rem;
}

.font-size-2 {
	font-size: 1.25rem;
}

.font-size-3 {
	font-size: 1.5rem;
}

.font-size-4 {
	font-size: 1.75rem;
}

.font-size-5 {
	font-size: 2rem;
}

.font-size-6 {
	font-size: 2.25rem;
}

.font-size-7 {
	font-size: 2.5rem;
}



 .btn {
	 display: inline-block;
	 font-family: inherit;
	 font-size: 1rem;
	 font-weight: 500;
	 line-height: 1.5;
	 text-align: center;
	 vertical-align: middle;
	 white-space: nowrap;
	 user-select: none;
	 outline: none;
	 border: none;
	 border-radius: 0.25rem;
	 text-transform: unset;
	 transition: all 0.3s ease-in-out;
}
 .btn-inline {
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 column-gap: 0.5rem;
}
 .btn-darken {
	 padding: 0.75rem 2rem;
	 color: var(--color-white-100);
	 background-color: var(--color-black-200);
	 box-shadow: var(--shadow-medium);
}
.btn-blue {
    padding: 0.75rem 2rem;
    color: var(--color-white-100);
    background-color: var(--color-blue-600);
    box-shadow: var(--shadow-medium);
}
 .btn-neutral {
	 padding: 0.75rem 2rem;
	 color: var(--color-black-500);
	 background-color: var(--color-white-100);
	 box-shadow: var(--shadow-medium);
}
.btn-primary {
    color: #fff;
    background-color: #FF6600;
    border-color: #FF6600;
}

.mt-1 {
	margin-top: 5px;
}
.mt-2 {
	margin-top: 10px;
}
.mt-3 {
	margin-top: 15px;
}
.mt-4 {
	margin-top: 20px;
}
.mt-5 {
	margin-top: 25px;
}









 .header {
	 width: 100%;
	 height: auto;
	 margin: 0 auto;
	 transition: all 0.35s ease;
}
 .header .on-scroll {
	 background: var(--color-black-300);
	 box-shadow: var(--shadow-medium);
}
 .navbar {
	 display: flex;
	 flex-direction: row;
	 align-items: center;
	 justify-content: flex-start;
	 column-gap: 1.25rem;
	 width: 100%;
	 height: 6.25rem;
	 margin: 0 auto;
}
 .brand {
	 font-family: inherit;
	 font-size: 1.6rem;
	 font-weight: 600;
	 line-height: 1.5;
	 letter-spacing: -1px;
	 color: var(--color-blue-600);
	 text-transform: uppercase;
}
 .menu {
	 position: fixed;
	 top: -100%;
	 left: 0;
	 width: 100%;
	 height: auto;
	 padding: 4rem 0 3rem;
	 overflow: hidden;
	 background-color: var(--color-black-300);
	 box-shadow: var(--shadow-medium);
	 transition: all 0.4s ease-in-out;
}
 .menu.is-active {
	 top: 0;
	 width: 100%;
	 height: auto;
}
 .menu-inner {
	 display: flex;
	 flex-direction: column;
	 justify-content: center;
	 align-items: center;
	 row-gap: 1.25rem;
}
 .menu-link {
	 font-family: inherit;
	 font-size: 1rem;
	 font-weight: 500;
	 line-height: 1.5;
	 color: var(--color-black-700);
	 text-transform: uppercase;
	 transition: all 0.3s ease;
}
 .menu-block {
	 display: inline-block;
	 font-family: inherit;
	 font-size: 0.875rem;
	 font-weight: 500;
	 line-height: 1.25;
	 user-select: none;
	 white-space: nowrap;
	 text-align: center;
	 margin-left: auto;
	 padding: 0.65rem 1.5rem;
	 border-radius: 3rem;
	 text-transform: capitalize;
	 color: var(--color-white);
	 background-color: var(--color-blue-600);
	 box-shadow: var(--shadow-medium);
	 transition: all 0.3s ease-in-out;
}
 @media only screen and (min-width: 48rem) {
	 .menu {
		 position: relative;
		 top: 0;
		 width: auto;
		 height: auto;
		 padding: 0rem;
		 margin-left: auto;
		 background: none;
		 box-shadow: none;
	}
	 .menu-inner {
		 display: flex;
		 flex-direction: row;
		 column-gap: 2rem;
		 margin: 0 auto;
	}
	 .menu-link {
		 text-transform: capitalize;
	}
	 .menu-block {
		 margin-left: 2rem;
	}
}
 .burger {
	 position: relative;
	 display: block;
	 cursor: pointer;
	 user-select: none;
	 order: -1;
	 z-index: 10;
	 width: 1.6rem;
	 height: 1.15rem;
	 border: none;
	 outline: none;
	 background: none;
	 visibility: visible;
	 transform: rotate(0deg);
	 transition: 0.35s ease;
     
}
 @media only screen and (min-width: 48rem) {
	 .burger {
		 display: none;
		 visibility: hidden;
	}
}
 .burger-line {
	 position: absolute;
	 display: block;
	 left: 0;
	 width: 100%;
	 height: 2px;
	 border: none;
	 outline: none;
	 opacity: 1;
	 border-radius: 1rem;
	 transform: rotate(0deg);
	 background-color: var(--color-blue-600);
	 transition: 0.25s ease-in-out;
}
 .burger-line:nth-child(1) {
	 top: 0px;
}
 .burger-line:nth-child(2) {
	 top: 0.5rem;
	 width: 70%;
}
 .burger-line:nth-child(3) {
	 top: 1rem;
}
 .burger.is-active .burger-line:nth-child(1) {
	 top: 0.5rem;
	 transform: rotate(135deg);
}
 .burger.is-active .burger-line:nth-child(2) {
	 opacity: 0;
	 visibility: hidden;
}
 .burger.is-active .burger-line:nth-child(3) {
	 top: 0.5rem;
	 transform: rotate(-135deg);
}
 .banner-column {
	 position: relative;
	 display: grid;
	 align-items: center;
	 row-gap: 3rem;
}
 @media only screen and (min-width: 48rem) {
	 .banner-column {
		 grid-template-columns: repeat(2, minmax(0, 1fr));
		 justify-content: center;
	}
}
 @media only screen and (min-width: 64rem) {
	 .banner-column {
		 grid-template-columns: 1fr max-content;
		 column-gap: 4rem;
		 margin-top: 3rem;
	}
}
.banner-section{
    background-image: url('../../assets/img/carousel-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
}


 .banner-inner {
	 display: flex;
	 flex-direction: column;
	 align-items: flex-start;
	 row-gap: 1.75rem;
     color: var(--color-white-100);
     margin-top: 6rem;
}

.grid-container{
	display: grid;
	grid-template-columns: auto auto auto;
	padding: 10px;
	gap: 1.5rem;

}

.grid-item{
  padding: 20px;
  font-size: 30px;
  text-align: center;
}

.card{
	border-radius: 10px;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.card-image img{
	border-radius: 10px 10px 0 0;
}
.card-content{
	padding: 1rem;
}

/* Flex */
.flex {
	display: flex;
}
.justify-between{
	justify-content: space-between;
}
.justify-center{
	justify-content: center;
}

.align-center{
	align-items: center;
}
.bg-primary-50{
	background-color: #ff660050;
}
.rounded{
	border-radius: 10px;
}
.rounded-sm{
	border-radius: 5px;
}

.px-2-py-1{
	padding: .3rem .5rem;
}



/* Footer */
.footer {
    padding: 40px 0;
    background-color: #0d1117;
    color: white;
}

.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer li {
    display: inline-block; /* Change to inline-block for horizontal layout */
    padding: 0 10px;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul a:hover {
    opacity: 1;
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}

.analytics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 2.5rem;
	margin-bottom: 3rem;
  }
  .analytic {
	box-shadow: var(--shadow);
	padding: 1.5rem;
	border-radius: 10px;
	display: flex;
	padding-left: 2rem;
  }
  .analytic-info h4 {
	font-weight: 400;
	color: #555;
	font-size: 0.98rem;
  }
  .analytic-info h1 {
	color: var(--main-text);
	font-weight: 600;
  }
  .analytic-info h1 small {
	font-size: 0.8rem;
	font-weight: 700;
  }
  .analytic:first-child .analytic-icon {
	background-color: #dce5ff;
	color: #6883db;
  }
  .analytic:nth-child(2) .analytic-icon {
	background-color: #ebf7f5;
	color: red;
  }
  .analytic:nth-child(3) .analytic-icon {
	background-color: #ebf7f5;
	color: #2ec3a3;
  }
  .analytic:nth-child(4) .analytic-icon {
	background-color: var(--main-accent);
	color: var(--color-main);
  }
  .analytic-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin-right: 0.8rem;
  }

  .grid-container{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 10px;
	gap: 1.5rem;

}

.grid-container .card{
  padding: 20px;
}

.grid-container .card .card-image{
  max-width: 450px;
}

.grid-container .card .card-image img {
  width: 100%;
}
.flex {
	display: flex;
  }
  
  .justify-between {
	justify-content: space-between;
  }
  .badge{
    background: #78B3CE;
    color: white;
    padding: 3px 7px;
    border-radius: 7px;
    margin-top: 5px;
}

.btn {
	padding: 0.7rem 1rem;
	border: none;
	border-radius: 10px;
	display: flex;
	align-items: center;
}
.btn span {
	font-size: 1.2rem;
	display: inline-block;
	margin-right: 0.7rem;
}
.btn-primary{
	background-color: #f3950d;
	color: white;
	padding: 0.7rem 1rem;
	border-radius: 10px;
	border: none;
	cursor: pointer;
}
.btn-success{
	background-color: #2ec3a3;
	color: white;
	padding: 0.7rem 1rem;
	border-radius: 10px;
	border: none;
	cursor: pointer;
}

#brand-logo-mobile{
	display: none;
}
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background:white;
	padding: 0 20px;
}
@media screen and (max-width: 768px) {
	.menu-link{
		color:white;
	}
	#brand-logo-desktop{
		display: none;
	}
	#brand-logo-mobile{
		display: block;
	}
	.grid{
		display: grid;
		grid-template-columns: 1fr;
	}
	.container{
		padding:0;
	}

	.heading-xl{
		font-size: 3.1rem;
		text-align: center;
		text-shadow: 2px 2px 13px black;
	}
	.banner-section a {
		margin: 0 auto;
	}
	.navbar{
		height: 5.25rem;
	}
	.banner-section{
		height: 65vh;
	}
	

}