/* Varialbes */
:root {
	--font-default: 'Manrope', sans-serif;
	--font-heading: 'Manrope', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #171827;
	--white: #ffffff;
	--color-primary: #015FC9;
	--color-secondary: #25cdc7;
	--color-style-five: #05be8a;
	--color-heading: #04000b;
	--color-paragraph: #666666;
	--main: #009fd4;
	--border-radius: 3rem;
	--border-hover: transparent;
	--footer: #DDD;

}

::selection{
	background-color: var(--main);
	color: black;
}

.active-color{
    color: var(--main) !important;
    text-decoration: 3px underline;
}


/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body,
html {
	height: 100%;
}

html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

html, body, div, span, img,
ol, ul, li, a, p, h1, h2, h3,
h4, h5, h6, option, legend, label, article, aside,
caption, figure, footer, header, hgroup,
mark, nav, section, time, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

img {
	border: none;
	outline: none;
	max-width: 100%;
}

.color-style-five a:hover {
	color: var(--color-secondary);
}

.secondary a:hover {
	color: var(--color-primary);
}

input {
	border: 1px solid #e7e7e7;
	border-radius: inherit;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	min-height: 50px;
}

input:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

select:focus {
	outline: none;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
}

ul {
	list-style-type: none;
}

ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}


/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
	font-family: var(--font-default);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	overflow-x: hidden;
	background-color: var(--white);
	color: var(--color-paragraph);
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Inter Tight", sans-serif;
}

a, .btn, button {
	-webkit-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	outline: medium none;
	text-decoration: none;
	font-weight: 700;
}

p {
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
}

.bg-dark {
	background-color: var(--dark) !important;
}

.color-style-five .bg-theme {
	background-color: var(--color-secondary);
}

.text-light {
	color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
	color: var(--white);
}

.title {
	font-weight: 800;
	font-size: 50px;
}

@media (max-width: 767px) {
	.title {
		font-size: 36px;
		margin-top: 0;
	}
}

.bg-dark .title {
	color: var(--white);
}


button {
	display: inline-block;
	font-weight: 700;
	text-transform: capitalize;
	transition: all 0.35s ease-in-out;
	overflow: hidden;
	border-radius: 7px;
	border: 2px solid transparent;
	-webkit-box-shadow: inherit;
	box-shadow: inherit;
	font-size: 16px;
	letter-spacing: 0;
	padding: 14px 40px;
	background: #E7EDF8;
	position: relative;
	z-index: 1;
	color: var(--white);
	border: none;
	background: var(--color-primary);
}

.color-style-five button {
	background: var(--color-secondary);
}

button i {
	margin-right: 4px;
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
	color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
	color: var(--white);
}

.scroll-top {
	width: 50px;
	height: 50px;
	line-height: 50px;
	position: fixed;
	bottom: 105%;
	right: 25px;
	font-size: 24px;
	z-index: 99;
	color: #ffffff;
	text-align: center;
	cursor: pointer;
	transition: 1s ease;
	border-radius: 50%;
  }
  
  .scroll-top:hover{
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  }
  
  .scroll-top.open {
	bottom: 100px;
  }
  
  .scroll-top i{
	color: #fff;
  }

.scroll-top{
	background: var(--main);
} 
/* =================== banner here ==================== */


.section1 .heading h1{
    position: relative;
    font-size: clamp(30px, 2.8vw, 120px);
	color: var(--black);
	font-weight: 600;
    color: #009fd4; 
    display: inline-block;
   }

   .section1 .heading h1::before{
    position: absolute;
    content: '';
    width:100%;
    height:4px;
    background-color: var(--black);
    left: 0;
    bottom: 0;
   }

   .section1 .image img{
	box-shadow: 0px 10px 30px -5px rgb(109 117 143 / 33%);
   }
