/*
Theme Name: Client
Version: 1.0
Description: A custom theme developed by Smartboost
Author: Smartboost
Template: bootscore
*/

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: url("assets/fonts/Inter-Regular.woff2") format("woff2"),
         url("assets/fonts/Inter-Regular.ttf") format("truetype");
    font-display: swap;
}

@import url("../bootscore/style.css");

:root {
	--accent:	 	#8DC442;
	--offwhite:     #F5F5F7;
	--black: 	 	#000000;
	--white: 	 	#FFFFFF;
	
	--vp-small: 	40px;
    --vp-medium: 	80px;
    --vp-large: 	120px;
	
    --font-body: "Inter", sans-serif;
    --font-heading: "Poppins", sans-serif;
	
}

/* ********** GENERAL ********** */

html {
	margin: 0 !important;
}

html,
body {
	font-family: var(--font-heading) !important;
}

h1, h2, h3, h4, h5, h6  {
  	font-family: var(--font-heading) !important;
}

h1 {
    font-size: 50px !important;
}

h2 {
	font-size: 36px !important;
}

h3 {
	font-size: 24px !important;
}
	
p {
	font-family: var(--font-body) !important;
	font-size: 16px !important;
	font-weight: 400;
}

.btn-cta {
    display: inline-block;
    padding: 13px 30px;
	color: var(--white);
	font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
	text-align: center;
	border: 1px solid transparent;
    transition: all .5s;
}

.btn-cta:hover {
	transition: all .5s;
}

.btn-white {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--black);
}

.btn-black {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}

.text-black {
	color: var(--black);
}

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

.bg-black {
	background-color: var(--black);
}

.desktop {
	display: block !important;
}

.mobile {
	display: none !important;
}

/* ********** NAVIGATION ********** */

#wpadminbar {
	display: none !important;
}

/* ********** FLEX SECTION ********** */

/* HERO PRIMARY */

.hero-primary {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-primary .container {
  position: relative;
  z-index: 2;
}

.hero-primary .hero-heading,
.hero-primary .hero-subheading,
.hero-primary .hero-content {
  color: #ffffff;
}


/* Header */

.sb-announcement-bar p {
	font-size: 14px;
}

.nav-cta {
	margin-left: 1rem;
}

.text-black {
	color: var(--black);
}

/* ********** MEDIA QUERIES ********** */

@media (max-width: 991px) {
	
	/* GENERAL */
	
	/* NAVIGATION */
	
	/* FLEX SECTION */
	
}

@media (max-width: 767px) {
	
	/* GENERAL */
	
	h1 {
		
	}
	
	h2 {
		
	}
	
	p {
		
	}
	
	.desktop {
		display: none !important;
	}

	.mobile {
		display: block !important;
	}
	
	/* NAVIGATION */
	
	/* FLEX SECTION */
	
}

















