body {
	 line-height: normal;
	 background-color: #1c1d1b;
	 margin: 0;
	 padding: 0;
	 overflow-x: hidden;
	 font-family: 'Poppins', sans-serif;
}

a { 
	color: inherit;
	text-decoration: none;
}
p , li {
	font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
input, textarea {
    font-family: 'Poppins', sans-serif;
}

.rectangle-container {
    margin: 32px 0px;
    display: flex;
    justify-content: center;
    width: 100%;
	flex-wrap: wrap;
}

.main-title-section {
    margin: 50px 0px;
}
.main-title-block {
    margin: 40px 0px 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-title-block>*, .tagline-block>* {
    margin: 0px;
}

.main-title {
	text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 900;
    width: fit-content;
    background: linear-gradient(0deg, var(--color-prgreen) 45%, #fff 92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-title::before {
    content: "";
    width: auto;
    height: 0px;
    box-shadow: -2px 14px 20px 1px #ffffff4d;
    display: flex;
}
.main-title-no-shading {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--color-prwhite);
}

.tagline-block {
    text-align: center;
}
.tagline {
    font-family: 'Poppins', sans-serif;
    color: #818180;
    font-weight: 500;
    font-size: 20px;
}

.sub-title {
	position: relative;
    font-size: 38px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    line-height: 1.25;
    font-weight: 500;
    width: fit-content;
    background: linear-gradient(0deg, var(--color-prgreen) 45%, #fff 92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-wrap: balance;
}
.sub-title::before {
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
    box-shadow: 0px 10px 20px 1px #ffffff5e;
    display: flex;
}
hr {
	background: linear-gradient(to left, #ffffff, var(--color-prgreen)) border-box;
    border: none;
    height: 2px;
}

#modal-container {
	padding-top: 70px;
}

@media (max-width: 500px) {
    .main-title-section {
        margin: 20px 0px;
    }
    .main-title, .main-title-no-shading {
        font-size: 30px;
    }
    .tagline-block {
        margin: 0 10%;
    }
	.sub-title {
        font-size: 25px;
        margin-top: 0px;
    }
	.rectangle-container {
        margin: 30px 0px 0px 0px;
    }
}

.fade-background-color{
 background: linear-gradient(0deg, var(--color-prgreen) 45%, #fff 92%);
}


.body-section {
	font-family: 'Poppins', sans-serif;
}
 @media (max-width:450px) {
	 .body-section {
	overflow: hidden;
}
}
:root {
  /* fonts */
  --font-poppins: Poppins;
  --font-open-sans: "Open Sans";
  --font-inherit: inherit;

  /* font sizes */
	 --font-size-3xl: 15px;
  --font-size-8xl: 27px;
  --font-size-6xl: 25px;
  --font-size-5xl: 24px;
	--font-size-10xl: 30px;
	--font-size-15xl: 33px;
  --font-size-19xl: 38px;
	--font-size-50xl: 45px;
  --font-size-36xl: 55px;
  --font-size-3xl-7: 22.7px;
  --font-size-9xl: 28px;
  --font-size-41xl: 60px;
	--size-font-main-header: 40px;
	--size-font-tagline: 20px;
	--size-font-subtitle : 30px;

  /* Colors */
  --color-gray-100: #1c1d1b;
  --color-gray-200: rgba(255, 255, 255, 0.1);
  --color-gray-300: rgba(255, 255, 255, 0.2);
  --white: #fff;
  --color-gainsboro: rgba(229, 229, 229, 0.5);
  --color-yellowgreen-100: rgba(137, 216, 93, 0.4);
  --color-darkslategray-100: #3f3f3f;
  --color-darkslategray-200: #3a3c39;
  --color-darkseagreen-100: #759662;
	--color-prgreen: #9bbe2c;
	--color-prgreen-active: #9bbe2c;
	--color-prgreen-inactive: #9bbe2c;
	--color-background: #1c1d1b;
	--color-prblue: #26394d;
	--color-prgray: #818180;
	--color-prwhite: #f0eded;
	--color-prblack: #1c1d1b;
  /* Paddings */
  --padding-17xl: 36px;

  /* border radiuses */
  --br-26xl-3: 45.3px;
  --br-16xl-4: 35.4px;
  --br-11xl: 30px;
  --br-31xl: 50px;
  --br-3xs: 10px;
	
		--itemWidth: min(300px, 30vw);
	--itemWidthMinus: calc(-1 * var(--itemWidth));
}


/* Animated Border */


.gradient-border {
	--borderWidth: 3px;
	background: #1D1F20;
	position: relative;
	border-radius: var(--borderWidth);
}
.gradient-border:after {
	content: '';
	position: absolute;
	top: calc(-1 * var(--borderWidth));
	left: calc(-1 * var(--borderWidth));
	height: calc(100% + var(--borderWidth) * 2);
	width: calc(100% + var(--borderWidth) * 2);
	background: conic-gradient(#000, #000, #000, #fff);
	border-radius: 25px;
	z-index: -1;
	animation: animatedgradient 3s ease alternate infinite;
	background-size: 300% 300%;
}


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

/* Animated Border End */

 .scroll-up-button {
	 position: fixed;
	 bottom: 50px;
	 right: 5%;
	 background-color: var(--color-prgreen);
	 color: white;
	 border: none;
	 border-radius: 50%;
	 padding: 8px 15px;
	 font-family: none;
	 font-size: 20px;
	 cursor: pointer;
	  display: none;
	 line-height: normal;
	 z-index: 999;
}
 .scroll-up-button.show {
	 display: block;
}

/* Animated Arrows */

.arrow {
	 --arrow-size: 1em;
	 --arrow-color: #a39f9f;
	 --arrow-color-hover: rgba(255, 255, 255, 0.5);
	 position: relative;
	 display: inline-flex;
	 vertical-align: middle;
	 width: 1em;
	 height: 1em;
	 overflow: hidden;
}
 .arrow::after {
	 content: '';
	 position: absolute;
	 top: 50%;
	 box-sizing: border-box;
	 display: inline-block;
	 width: calc(1em * .7071);
	 height: calc(1em * .7071);
	 border-top: calc(1em / 5) solid #a39f9f;
	 transition-delay: .2s ;
	 transition: all 150ms ease-in-out;
}
 .arrow.left::after {
	 left: calc(1em / 5);
	 border-left: calc(1em / 5) solid #a39f9f;
	 transform-origin: top left;
	 rotate: -45deg;
}
 .arrow.left:hover::after {
	 box-shadow: calc(1em / -8) calc(1em / -8) 0 #a39f9f;
}
 .arrow.right::after {
	 right: calc(1em / 5);
	 border-right: calc(1em / 5) solid #a39f9f;
	 transform-origin: top right;
	 rotate: 45deg;
}
 .arrow.right:hover::after {
	 box-shadow: calc(1em / 8) calc(1em / -8) 0 #a39f9f;
}
 a:hover .arrow.left::after, a:hover .arrow.right::after {
	 border-color: rgba(255, 255, 255, 0.5);
}
 a:hover .arrow.left::after {
	 box-shadow: calc(1em / -8) calc(1em / -8) 0 #a39f9f;
}
 a:hover .arrow.right::after {
	 box-shadow: calc(1em / 8) calc(1em / -8) 0 #a39f9f;
}
.text-logo {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}
img.letter-o {
	display: inline;
    position: relative;
    width: auto;
    margin: -3px 3px;
}

div.letter-o {
	display: inline-flex;
	position: relative;
	margin: -3px 1px;
	bottom: -5px;
}

