@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

:root{
	--primary-color			: #192324;
	--secondery-color		: #F8F8F8;
	--text-color			: #283132;
	--accent-color			: #F5821F;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Hanken Grotesk", sans-serif;
    --btn-bg			: #ab1818;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--divider-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading-icon img{width:60px;}

.fw100{ font-weight: 100;}
.fw200{ font-weight: 200;}
.fw300{ font-weight: 300;}
.fw400{ font-weight: 400;}
.fw500{ font-weight: 500;}
.fw600{ font-weight: 600;}
.fw700{ font-weight: 700;}
.fw800{ font-weight: 800;}
.fw900{ font-weight: 900;}
.fwbold{ font-weight: bold;}
.fwbolder{ font-weight: bolder;}


.mb5{ margin-bottom: 5px;}
.mb10{ margin-bottom: 10px;}
.mb15{ margin-bottom: 15px;}
.mb20{ margin-bottom: 20px;}
.mb30{ margin-bottom: 30px;}

.mt5{ margin-top: 5px;}
.mt10{ margin-top: 10px;}
.mt15{ margin-top: 15px;}
.mt20{ margin-top: 20px;}
.mt30{ margin-top: 30px;}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}
.main_title {
  margin-bottom: 40px;
}
.main_title h2 {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: none;
  margin-bottom: 0;
}
.main_title h1 {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}
.main_title h3 {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-left: 35px;
  margin-bottom: 5px;
}.main_title h3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url('../images/icon-sub-heading.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  width: 24px;
  height: 5px;
}
.mb0{
  margin-bottom: 0px;
}
.row.no_gutters {
  margin-right: 0px;
  margin-left: 0px;
}
.row.no_gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}
.testimonial_sec {
  background: var(--secondery-color);
}
#button {
  text-align: center;
  border-radius: 50px;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  z-index: 1000;
  padding: 8px 10px;
  position: fixed;
  background-color: #ececec;
  text-align: center;
  cursor: pointer;
}
.show {
  display: block !important;
}
#button::after {
  line-height: 25px;
  color: #fff;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
#button.show {
  visibility: visible;
}
#button::after {
  line-height: 25px;
  color: #fff;
}
#button img {
  rotate: -90deg;
  filter: grayscale(1);
  margin-bottom: 4px;
}

@media screen and (max-width:767px) {
  .main_title h1 {
		font-size: 22px;
	}
  .mo_mb0{
  margin-bottom: 0px;
}
.main_title h2 {
  font-size: 22px;
}

}