/* Google font */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

/* Theme Color */
:root {
	--main-color: #2B9865;
	--main-color-tow: #1E6D91;
	--white-color: rgb(255,255,255);
	--heading-color: rgb(1,1,1);
	--hero-bg: rgb(16,22,38);
	--wb-dark: #0C090A;
	--color-one: rgb(64,92,255);
	--color-four: rgb(159,137,247);
	--color-five: rgb(109,43,255);
	--color-six: rgb(33,211,253);
	--font-family-Jost: 'Jost', sans-serif;

	--font-8: 8px;
	--font-10: 10px;
	--font-12: 12px;
	--font-13: 13px;
	--font-14: 14px;
	--font-15: 15px;
	--font-16: 16px;
	--font-17: 17px;
	--font-18: 18px;
	--font-20: 20px;
	--font-22: 22px;
	--font-24: 24px;
	--font-26: 26px;
	--font-28: 28px;
	--font-30: 30px;
	--font-32: 32px;
	--font-33: 33px;
	--font-34: 34px;
	--font-35: 35px;
	--font-36: 36px;
	--font-38: 38px;
	--font-40: 40px;
	--font-42: 42px;
	--font-44: 44px;
	--font-45: 45px;
	--font-48: 48px;
	--font-49: 49px;
	--font-50: 50px;
	--font-52: 52px;
	--font-54: 54px;
	--font-55: 55px;
	--font-56: 56px;
	--font-58: 58px;
	--font-60: 60px;
	--font-62: 62px;
	--font-64: 64px;
	--font-65: 65px;
	--font-66: 66px;
	--font-68: 68px;
	--font-70: 70px;
	--font-72: 72px;
	--font-74: 74px;
	--font-76: 76px;
	--font-78: 78px;
	--font-80: 80px;
	--font-85: 85px;
	--font-90: 90px;
	--font-95: 95px;
	--font-100: 100px;
	--font-110: 110px;
	--font-120: 120px;
	--font-150: 150px;
	--font-200: 200px;
	scroll-behavior: smooth;
}

* {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
}

body {
	font-family: var(--font-family-Jost);
	font-size: 14px;
	line-height: 1.6em;
	font-weight: 400;
	background-color: var(--wb-dark);
	color: var(--white-color);
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}
a {
	text-decoration: none;
	cursor: pointer;
	color: var(--white-color);
}

button, a:hover,a:focus,a:visited {
	text-decoration: none;
	outline: none !important;
}

h1,h2,h3,h4,h5,h6 {
	position: relative;
	margin: 0px;
	background: none;
	font-family: var(--font-family-Jost);
	color: var(--white-color);
}

textarea {
	overflow: hidden;
}

a {
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
}
p {
	position: relative;
	line-height: 27px;
	color: var(--color-eight);
	font-size: 17px;
	font-family: var(--font-family-Jost);
}
h1 {
	line-height: 90px;
	font-weight: 600;
	font-size: var(--font-85);
}
h2 {
	line-height: 62px;
	font-weight: 600;
	font-size: var(--font-48);
}
h3 {
	line-height: 1.3em;
	font-size: var(--font-26);
}

h4 {
	line-height: 1.4em;
	font-size: var(--font-24);
}

h5 {
	line-height: 1.4em;
	font-size: var(--font-22);
}

h6 {
	line-height: 1.6em;
	font-size: var(--font-18);
}

ul,li {
	padding: 0px;
	margin: 0px;
}

img {
	display: inline-block;
	max-width: 100%;
}

.centered {
	text-align: center;
}

::-webkit-input-placeholder {
	color: inherit;
}

::-moz-input-placeholder {
	color: inherit;
}

::-ms-input-placeholder {
	color: inherit;
}

.scroll-to-top {
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	color: var(--main-color);
	font-size: var(--font-16);
	text-transform: uppercase;
	line-height: 38px;
	text-align: center;
	z-index: 100;
	cursor: pointer;
	background: var(--white-color);
	display: none;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
}

.scroll-to-top:hover {
	color: var(--white-color);
	background: var(--main-color);
}

  /*** 
  
  ====================================================================
	  Section Title
  ====================================================================
  
  ***/
  
.sec-title{
	position:relative;
	margin-bottom: 40px;
}
.sec-title .title{
	position:relative;
	font-weight:600;
	display:inline-block;
	font-size:var(--font-18);
	color: var(--white-color);
	margin-bottom:15px;
	padding-right: 70px;
	font-family:var(--font-family-Jost);
}
.sec-title .title:before{
	position:absolute;
	content:'';
	right:0px;
	top:10px;
	width:50px;
	height:3px;
	border-radius:50px;
	background: linear-gradient(90deg, var(--color-four) 0%, var(--color-five) 32.16%, var(--main-color) 64.84%, var(--color-six) 98.02%);
} 
.sec-title h2{
	line-height:52px;
	font-size:var(--font-42);
	color:var(--white-color);
	font-family:var(--font-family-Jost);
}
.sec-title h2 > a,
.sec-title.light .title,
.sec-title.light h2,
.sec-title.light .text{
	color: var(--white-color);
}

/* Btn Style One */
.button-box {
	margin-top: 30px;
}
.btn-style-one{
	position: relative;
	z-index:1;
	font-weight:600;
	overflow: hidden;
	text-align:center;
	padding: 19px 40px;
	border-radius: 50px;
	display:inline-block;
	letter-spacing: 0.14em;
	color: var(--white-color);
	font-size: var(--font-14);
	text-transform: uppercase;
	background: linear-gradient(90deg, var(--color-four) 0%, var(--color-five) 32.16%, var(--color-one) 64.84%, var(--color-six) 98.02%);
}
.btn-style-one:hover{
	color: var(--white-color);
}
.btn-style-one:before{
	position: absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	z-index:-1;
	opacity:0;
	border-radius:50px;
	transition:scale(1.05,1);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	background: linear-gradient(90deg, var(--color-six) 0%, var(--color-six) 32.16%, var(--color-one) 64.84%, var(--color-four) 98.02%);
}

.btn-style-one:hover::before{
	opacity:1;
	transition:scale(1,1); 
}
.btn-style-one.alternate,
.btn-style-one.alternate::before{
	border-radius:4px;
	font-family:var(--font-family-Jost);
}