/*
Theme Name: Teepee
Description: This theme is a custom coded for the client.
Author: Chirag
Version: 1.0
*/
/**
 * ===========================================
 *					Generic Css
 * ============================================
 */

html {
    font-size: 100%;
}
body { 
	background: #fff; 
	color: #888686;
	font-family: 'Karla', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { 
	text-decoration: none;
	transition: color .5s ease, 
				background-color 0.5s ease
}
img,
svg,
iframe {
	height: auto;
	max-width: 100%;
}
header, 
section, 
footer,
article {
	width: 100%;
}
.accessibility {
	backface-visibility: hidden;
	left: -999999999px;
	position: absolute;
}
h1 {
	font-size: 4rem;
	font-family: 'Advent Pro', sans-serif;
}
h2 {
	font-size: 3.75rem;
	font-family: 'Advent Pro', sans-serif;
}
h4{
	font-size: 1.875rem;
	font-weight: 700;
	font-family: 'Advent Pro', sans-serif;
}
.mw-75 {
	max-width: 75%;
}
.sitebtn {
	display: inline-block;
	padding: 7px 50px;
	color: #fff;
	background-color: #5a929b;
	border-radius: 5px;
	font-size: 1.625rem;
	border: 2px solid transparent;
	font-weight: 600;
	line-height: 1.4;
	font-family: 'Advent Pro', sans-serif;
}
.sitebtn:hover {
	border-color: #5a929b;
	color: #5a929b;
	text-decoration: none;
	background-color: #fff;
}
.sectiontitle {
	color: #1c3a60;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
    margin-bottom: 2.5rem;
}
.sectiontitle b {
	font-weight: 600;
}
.sectiontitle:after {
	content: '';
	display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 7px;
    border-radius: 5px;
    background-color: #5a929b;
}
.simplelink {
	font-size: 1.25rem;
	color: #5a929b;
	font-family: 'Advent Pro', sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
	padding-right: 25px;
}
.simplelink::after {
 	content: " ";
    width: 10px;
    top: 50%;
    right: 3px;
    left: auto;
    margin-top: -5px;
    height: 10px;
    -o-transition: all 200ms;
    transition: all 200ms;
    -webkit-transition: all 200ms;
    position: absolute;
    border-right: 3px solid #5a929b;
    border-bottom: 3px solid #5a929b;
    transform: rotate(-45deg);
}
/**
 * ======================================================================================
 *									Header Css
 * =======================================================================================
 */
@-webkit-keyframes slide-down { 0% { opacity:0; transform:translateY(-100%);}100% { opacity:0.9; transform:translateY(0);}}
@-moz-keyframes slide-down { 0% { opacity:0; transform:translateY(-100%);}100% { opacity:0.9; transform:translateY(0);}}
@keyframes slide-down { 0% { opacity:0; transform:translateY(-100%);}100% { opacity:0.9; transform:translateY(0);}}

.siteheader {
	position: relative;
	z-index: 1009;
	height: 156px;
}
.siteheader__container {
	display: block;
	width: 100%;
	z-index: 1009;
	position: relative;
	padding: 75px 0 30px;
}
body.home .siteheader {
	position: absolute;
	top: 0;
	left: 0;
}
.siteheader.fixed .siteheader__container {
	left: 0;
    top: 0;
    position: fixed;
	background-color: #fff;
    -webkit-animation: slide-down 0.7s;
    -moz-animation: slide-down 0.7s;
    animation: slide-down 0.7s;
	background-color: #fff;
	padding: 10px 0;
	box-shadow: 0 0 3px rgba(0,0,0,0.1);
}
.siteheader__menu li {
	display: inline-block;
	margin-left: 3rem;
	position: relative;
}
.siteheader__menu li a {
	display: block;
	font-size: 1.5rem;
	font-family: 'Advent Pro', sans-serif;
	color: #1c3a60;
	padding: 5px 0;
	font-weight: 600;
}
.siteheader__menu li ul li {
	display: block;
	margin-left: 0;
	padding: 0 15px;
}
.siteheader__menu li ul li a {
	font-size: 1.125rem;
}
.siteheader__menu li a:hover,
.siteheader__menu li.current-menu-item > a{
	text-decoration: none;
	color: #5a929b;
}
.siteheader__menu li.menubtn a {
	padding: 4px 30px;
	border-radius: 5px;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    background-color: #5a929b;
    border: 2px solid transparent;
}
.siteheader__menu li.menubtn a:hover {
	border-color: #5a929b;
	color: #5a929b;
	background-color: #fff;
	text-decoration: none;
}
/**
 * ======================================================================================
 *									Page Hero
 * =======================================================================================
 */
.pagehero {
	color: #2e4c72;
	padding: 50px 0;
}
.pagehero__info {
	display: block;
	width: 500px;
	max-width: 100%;
}
.pagehero__info h1 {
	font-weight: 600;
	margin-bottom: 1.5rem;
}
.pagehero__info p {
	font-size: 1.25rem;
}
.pagehero__info .sitebtn {
	margin-top: 1.5rem;
}
.pagehero__cont {
	display: block;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
.pagehero__img {
	display: block;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
}
/**
 * ======================================================================================
 *									Home Page
 * =======================================================================================
 */
.homehero {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.homehero__content {
	min-height: 100vh;
	padding-bottom: 250px;
    padding-top: 180px;
}
.homehero .homehero__content h1 {
	font-size: 5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #1c3a60;
	line-height: 1;
}
.homehero__contentbox {
	display: block;
	width: 100%;
	max-width: 870px;
}
.homehero__contentbox p {
	font-size: 1.75rem;
	color: #1c3a60;
	width: 100%;
	max-width: 700px;
}
.H_ourservices {
	padding: 130px 0;
}
.H_ourservices__box {
	display: block;
}
.H_ourservices__box > img {
	margin-bottom: 1.75rem;
}
.H_ourservices__box h4 {
	margin-bottom: 1.75rem;
	color: #2e4c72;
}
.H_ourservices__box p {
	font-size: 1.25rem;
	max-width: 280px;
	margin: 0 auto 1.75rem;
}
.H_discoverway {
	padding: 135px 0;
	background-size: cover;
	background-position: bottom right;
	background-repeat: no-repeat;
}
.H_discoverway .H_discoverway__content {
	color: #fff;
	display: block;
	width: 100%;
	max-width: 650px;
}
.H_discoverway .H_discoverway__content h2 {
	text-transform: uppercase;
	margin-bottom: 1.75rem;
}
.H_discoverway .H_discoverway__content .sitebtn {
	margin-top: 1.75rem;
}
.H_howitwork {
	padding: 130px 0 0;
}
.H_howitwork .sectiontitle {
	margin-bottom: 4.5rem;
}
.H_howitwork__box {
	display: block;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0,0,0,0.065);
    border-radius: 8px;
}
.H_howitwork__box__icon {
	height: 132px;
}
.H_howitwork__box h4 {
	color: #1c3a60;
	margin-bottom: 1rem;
}
.H_howitwork__box p {
	font-size: 16px;
}
.H_partnerwith {
	padding: 130px 0 130px;
}
.H_partnerwith .sectiontitle{
	margin-bottom: 1.75rem;
}
.H_partnerwith .sitebtn{
	margin-top: 1.75rem;
}
.H_partnerwith p {
	font-size: 1.25rem;
}
/**
 * ======================================================================================
 *									Footer
 * =======================================================================================
 */
.contactus {
	padding: 75px 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: #fff;
}
.contactus__box p {
	width: 100%;
	max-width: 500px;
	margin: 0 auto 30px;
}
.contactus__box h1 {
	font-size: 6.25rem;
}
.sitefooter {
	padding: 60px 0;
	background-color: #fff;
}
.sitefooter__box {
	display: block;
	max-width: 300px;
}
.sitefooter h4 {
	color: #1c3a60;
}
.sitefooter ul li a {
	font-size: 1.25rem;
	color: #888686;
}
.sitefooter .sitefooter__box a {
	color: #888686;
}
.socialicons li a {
	display: block;
	width: 40px;
	text-align: center;
	height: 40px;
	line-height: 40px;
}
.copyright {
	color: #fff;
	background-color: #1c3a60;
	padding: 20px 0;
}
.copyright p {
	font-weight: 600;
	margin-bottom: 0;
}

/**
 * ======================================================================================
 *							How It Works
 * =======================================================================================
 */
.how-Work {
	padding: 60px 0;
	background-color: rgba(90, 146, 155, 0.16);
}
.how-Work p {
	font-size: 1.325rem;
}
.how-Work .row {
	padding-top: 50px;
	padding-bottom:  50px;
}
.how-Work  .howWork-box {
	max-width: 480px;
	margin: 0 auto;
	width: 100%;
}
.how-Work  .howWork-box h2 {
	color: #1c3a60;
	text-transform: uppercase;
	
}
.title-border {
	position: relative;
	padding-bottom: 8px;
	display: inline-block;
	margin-bottom: 2.5rem;	
}
.title-border:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 80px;
	height: 7px;
	border-radius: 5px;
	background-color: #5a929b;
}
.how-Work  .howWork-box span {
	font-size: 25px;
	color: #5a929b;
	font-weight: 700;
	display: block;
}

/**
 * ======================================================================================
 *							Pricing
 * =======================================================================================
 */
.w-32 {
	width: 32%;
}
.w-22-6 {
	width: 22.6%
}
.pricing--table {
	padding: 60px 0 80px;
}
.pricing--table.table td,.pricing--table .table th {
	vertical-align: middle;
}
.pricing--table table thead th:first-child{
	border-top: 1px solid #dedede;	
}
.pricing--table table {
	box-shadow: 6px 10px 32px 1px rgba(0, 0, 0, 0.06);
	border-left: 1px solid #dedede;
}
.pricing--table table .Pricingfechar:last-child > th:first-child {
	border-bottom: 1px solid #dedede;	
}
.pricing--table table thead th {
	font-size: 2rem;
	color: #1c3a60;
	padding-top: 15px;
	padding-bottom: 15px;
	font-family: 'Advent Pro', sans-serif;
    font-weight: 600;
	border: none;
	border-right: 1px solid #dedede;
	line-height: 1.2;
}
.table td, .table th {
	padding: .75rem 1.5rem;
}
.pricing--table .table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(240, 243, 243, 0.30);
}
.pricing--table table tbody .pricing-price {
	background-color: transparent !important;
}
.pricing--table table .pricing-price th {
	font-size: 2.625rem;
    color: #5a929b;
	border-top: none;
	line-height: 1;
}
.pricing--table table .pricing-price th small {
	display: block;
}
.pricing--table table .pricing-price th small {
	font-size: 55%;
}
.pricing--table table .pricing-price th.Ptitle {
	font-size: 2rem;
	color: #1c3a60;
	font-family: 'Advent Pro', sans-serif;
	font-weight: 600;
}
.pricing--table table .pricing-price th.pricingContact {
	font-size: 1.875rem;
}
.pricing--table table .Pricingfechar {
	color: #888686;
    font-size: 1.25rem;
}
.pricing--table .table tbody th {
	border-right: 1px solid #dedede;
}
.pricingYes {
	color: #1c3a60;
}
.pricing--table table .Pricingfechar th {
	font-weight: 400;
}

/**
 * ======================================================================================
 *							why teepee
 * =======================================================================================
 */
.sc-teepee {
	padding: 60px 0;
}
.sc-teepee p{
	font-size: 1.25rem;
}
.sc-teepee h2 {
	color: #1c3a60;
    margin-bottom: 2rem;
}
.teepee-works {
	padding: 50px 0;
 	background-color: rgba(209, 210, 215, 0.16);
}
.teepee-works p {
	font-size: 1.25rem;
}
.teepee-works .teepee-worksBox h2 {
	color: #1c3a60;
	margin-bottom: 2rem;
}
.teepee-works .row{
	padding: 50px 0;
}
.sc-contact {
	padding: 80px 0;
	font-size: 18px;
}
.sc-contact a {
	color: #888686;	
}
.sc-contact h4 {
	color: #1c3a60;
    font-weight: 500;
}
.sc-contact li a {
	font-size: 1.25rem;
    color: #888686;
	display: block;
	width: 30px;
	text-align: center;
	line-height: 30px;
	line-height: 30px;
}
.sc-contact li a:hover {
	color: #1c3a60;
}
.sc-contact .contact--form {
	padding: 30px;
    border-radius: 8px;
    background-color: rgba(209, 210, 215, 0.16);
	box-shadow: 6px 10px 32px 1px rgba(0, 0, 0, 0.06);
}
.sc-contact .contact--form .form-control {
	border-radius: 8px;
	box-shadow: 3px 3px 7px 3px rgba(0, 0, 0, 0.06);
	outline: none;
	border: none;
	color: #888686;
}
.sc-contact .contact--form .form-control::-webkit-input-placeholder {
  color: #888686;
}
.sc-contact .contact--form .form-control:-ms-input-placeholder {
  color: #888686;
}
.sc-contact .contact--form .form-control::placeholder {
  color: #888686;
}
.sc-contact .contact--form h3 {
	font-family: 'Advent Pro', sans-serif;
	font-size: 35px;
	color: #1c3a60;
}
.sc-contact--container {
	display: block;
    width: 365px;
    margin-left: auto;
    max-width: 100%;	
}
/**
 * ======================================================================================
 *							FAQ Page
 * =======================================================================================
 */
.sc-faqQA {
	padding: 60px 0;
}
.sc-faqQA h2 {
	color: #1c3a60;
}
.sc-faqQA .card.similaires-box {
	margin-bottom: 1.5rem;
	box-shadow: 3px 3px 7px 3px rgba(0, 0, 0, 0.06);
	border: 1px solid #eae9e9;
	border-radius: 5px;
}
.sc-faqQA .similaires-box .card-header {
	background-color: transparent;
	color: #888686;
	border: none;
	cursor: pointer;
	padding-left: 60px;
}
.sc-faqQA .similaires-box .card-body {
	padding-left: 60px;
}
.sc-faqQA .similaires-box .faqicon {
	position: absolute;
    left: -1px;
    top: 0;
    background-color: #5a929b;
    color: #fff;
    padding: 12px 18px;
    border-radius: 5px 0 0 5px;
    min-height: 51px;
	display: flex;
	align-items: center;
}
.sc-faqQA .similaires-box.active .faqicon .faqicon-plus,
.sc-faqQA .similaires-box .faqicon .faqicon-minus {
	display: none;
}
.sc-faqQA .similaires-box.active .faqicon .faqicon-minus {
	display: block;
}
.sc-faqQA .similaires-box .card-header {
    padding-top: 0;
    padding-bottom: 0;	
}
.sc-faqQA .similaires-box .card-header p {
    padding: .75rem 0;	
}
.sc-faqQA .similaires-box.active .card-header p {
	color: #1c3a60;
	font-weight: 700;
}

/**
 * ======================================================================================
 *								BLog Page
 * =======================================================================================
 */
.sc-blog {
	padding: 80px 0;
}
.sc-blog .blog-articat {
	margin-bottom: 2rem;
	box-shadow: 3px 3px 7px 3px rgba(0, 0, 0, 0.06);
	border-radius: 8px;
	overflow: hidden;
}
.sc-blog .blog-articat .blog-data {
	padding: 20px;
}
.sc-blog .blog-articat .blog-data a {
	color: #1c3a60;
	text-decoration: none;
	font-family: 'Advent Pro', sans-serif;
	display: inline-block;
}
.sc-blog .blog-articat .blog-data h5 {
	font-weight: 700;
	font-size: 22px;
}
.sc-blog .blog-articat .blogauthor-data .blog-author__avatar {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 15px;
}
.sc-blog .blog-articat .embed-responsive-item {
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	background-color: rgba(0,0,0,0.2);
}
.sc-blog .blog-articat .blogauthor-data h5 {
	font-size: 14px;
    color: #1c3a60;
    font-weight: bold;
}
.sc-blog .blog-articat .blogauthor-data sapn {
	font-size: 14px;
}
.related-blog,
.Subscribe--email {
	padding: 25px;
    box-shadow: 3px 3px 7px 3px rgba(0, 0, 0, 0.06);
	margin-bottom: 1.5rem;
}
.related-blog h5,
.Subscribe--email h5 {
	font-family: 'Advent Pro', sans-serif;
	color: #013a78;
 	font-weight: bold;
	font-size: 26px;
	margin-bottom: 1.5rem;
}
.Subscribe--email .form-control {
	height: calc(1.5em + .75rem + 5px);
	color: #888686;
}
.Subscribe--email .sitebtn {
	background-color: #1c3a60;
    width: 100%;
	font-size: 20px;
}
.Subscribe--email .sitebtn:hover {
	border-color: #1c3a60;
	color: #1c3a60;
	background-color: #fff;
}
.Subscribe--email div.wpcf7 .ajax-loader{
	position: absolute;
}
.related-blog .related-count {
	width: 40px;
	text-align: center;
	margin-right: 15px;
}
.related-blog a {
	text-decoration: none;
    color: #888686;
    font-size: 16px;
    display: block;
    border-bottom: 1px solid rgba(28, 58, 96, 0.17);
    padding: 8px 0;
}
.related-blog a h1{
	color: #1c3a60;
}
.related-blog a .media-body h5 {
	font-size: 17px;
	color: #5a929b;
}
.related-blog li:last-child  a{
	border: none;
}
/**
 * ======================================================================================
 *								Assessments Page
 * =======================================================================================
 */
.sc-assessment {
	padding: 60px 0;
}
.sc-assessment p {
	font-size: 1.125rem;
}
.sc-assessment h3 {
	color: #1c3a60;
	font-family: 'Advent Pro', sans-serif;
	padding-bottom: 15px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}
.sc-assessment ul {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
}
.sc-assessment ul li{
	padding-left: 45px;
    position: relative;
    display: block;
    margin-bottom: 15px;
    min-height: 30px;
}
.sc-assessment ul li:after {
	content: '';
    top: 3px;
    left: 2px;
    background-image: url(img/true-icon.png);
    width: 25px;
    height: 25px;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/**
 * ======================================================================================
 *								Privacy Policy Page
 * =======================================================================================
 */
.sc-Privacy {
	padding: 60px 0;
	background-image: url('img/privacybg.png');
	background-size: auto;
	background-position: right top;
	background-repeat: no-repeat;
}
.sc-Privacy p,
.sc-Privacy li {
	font-size: 1.25rem;
}
.sc-Privacy strong,
.sc-Privacy h4,
.sc-Privacy h1 {
	color: #1c3a60;
	margin-bottom: 1.5rem;
}
.sc-Privacy ul {
  list-style: none; /* Remove default bullets */
}
.sc-Privacy ul li::before {
  content: "\2022";
  color: #5a929b;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.sc-Privacy a {
	color: #5a929b;
}
.sc-Privacy h6 {
	text-transform: uppercase;
	color: #5a929b;
	font-size: 18px;
	font-weight: 700;
}
.sc-Privacy strong {
	text-transform: uppercase;
	font-size: 18px;
}

/**
 * ======================================================================================
 *								About Teepee
 * =======================================================================================
 */
.sc-about-teepee  {
	padding: 80px 0 120px;
}
.sc-about-teepee p {
	font-size: 1.25rem;
}
.sc-solution h4 {
	font-family: 'Karla', sans-serif;
	font-weight: 400;
}
.sc-about-teepee h2 {
	color: #1c3a60;
	text-transform: uppercase;
}
.sc-about-teepee h2 span {
	font-weight: 600;
}
.sc-solution {
	background-color: rgba(90, 146, 155, 0.16);
	color: #1c3a60;
}
.sc-solution a{
	color: #5a929b;
}
.sc-Mission .py-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.sc-Mission strong {
	color: #1c3a60;
}
/**
 * ======================================================================================
 *								Single BLog
 * =======================================================================================
 */
.singleblogmain {
	padding: 60px 0;
}
.singleblogmain h2 {
	color: #1c3a60;
}
.singleblogmain {
	color: #000;
}
.singleblogmain p {
	font-size: 1.25rem;
	color: #000;
}
.blogherosingle {
	padding: 150px 0 ;
	color: #fff;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.blogherosingle:before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(23,58,86,0.6);
    z-index: 1;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.singletitle {
	position: relative;
	z-index: 1;
}
.singletitle h2,
.singletitle h5{
	color: #fff;
	font-weight: 600;
}
/**
 * ======================================================================================
 *									Media Query
 * =======================================================================================
 */
@media only screen and (min-width: 576px) {
	
}
@media only screen and (min-width: 768px) {
	
}
@media only screen and (min-width: 992px) {
	.sub-menu {
		display: block;
		position: absolute;
		left: 0;
		top: 100%;
		min-width: 200px;
		border: 1px solid #DBDBDB;
		margin-top: 0;
		background-color: #fff;
		margin-left: 0;
		opacity: 0;
		z-index: 555;
		padding-left: 0;
		list-style: none;
		border-top: 2px solid #5a929b;
		visibility: hidden;
		text-align: left;
		transform: translateY(10px);
		-o-transition: transform 320ms;
		transition: transform 320ms;
		-webkit-transition: transform 320ms;
	}
	.siteheader__menu li.menu-item-has-children > a {
		padding-right: 20px;
	}
	.siteheader__menu li:hover>ul {
		visibility: visible;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
	.siteheader__menu > li.menu-item-has-children > a::after{
		content: " ";
		width: 10px;
		top: 50%;
		right: 3px;
		left: auto;
		margin-top: -7px;
		height: 10px;
		-o-transition: all 200ms;
		transition: all 200ms;
		-webkit-transition: all 200ms;
		position: absolute;
		border-right: 3px solid #1c3a60;
		border-bottom: 3px solid #1c3a60;
		transform: rotate(45deg);
		opacity: 1;
	}
	.siteheader__menu > li.current-menu-item > a::after,
	.siteheader__menu > li.menu-item-has-children > a:hover::after {
		border-color: #5a929b;
	}
}
@media only screen and (min-width: 1200px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl {
		width: 94%;
	    max-width: 1200px;
	}
	.contactus__box__cont {
		height: 400px;
	}
}
@media only screen and (min-width: 1400px) {
	
}
/**
 * ======================================================================================
 *									Media Query
 * =======================================================================================
 */

@media only screen and (max-width: 1399px) {
	h1 {
		font-size: 3.5rem;
	}
	h2 {
		font-size: 3.125rem;
	}
	h4 {
		font-size: 1.5rem;
	}
	.siteheader {
		height: 101px;
	}
	.sitebtn {
	    font-size: 1.25rem;	
	}
	.siteheader__container {
		padding: 40px 0 10px;
	}
	.siteheader__menu li a {
		font-size: 1.25rem;
	}
	.homehero__contentbox {
		max-width: 650px;
	}
	.homehero .homehero__content h1 {
    	font-size: 4rem;
		margin-bottom: 1.5rem;
	}
	.H_ourservices__box h4 {
		margin-bottom: 1.125rem;
	}
	.homehero__contentbox p {
		font-size: 1.5rem;
	}
	.H_ourservices {
		padding: 80px 0;
	}
	.H_howitwork {
		padding-top: 80px;
	}
	.H_ourservices__box p {
		font-size: 1.125rem;
	}
	.H_howitwork__box {
		padding: 20px;
	}
	.contactus__box h1 {
		font-size: 4.5rem;
	}
	.sitefooter ul li a {
		font-size: 1.125rem;
	}
	.H_partnerwith {
		padding: 80px 0 80px;
	}
	.pagehero__info p {
		font-size: 1.175rem;
	}
	.sc-about-teepee p {
		font-size: 1.125rem;
	}
	.pricing--table table .pricing-price th {
		font-size: 2rem;
	}
	.pricing--table table thead th {
		padding-bottom: 10px;
		padding-top: 10px;
	}
	.pricing--table table .pricing-price th.pricingContact {
		font-size: 1.5rem;
	}
	.pagehero__img{
		max-width: 350px;	
	}
	.pagehero__cont {
		 max-width: 800px;
	}
	.pricing--table table .pricing-price th.pricingContact {
		font-size: 1.25rem;
	}
	.homehero__content  {
		padding-top: 150px;
		padding-bottom: 250px;
	}
}
@media only screen and (max-width: 1299px) {
	
}
@media only screen and (max-width: 1199px) {
	h1 {
		font-size: 3.125rem;
	}
	h2 {
		font-size: 2.875rem;
	}
	h4 {
		font-size: 1.325rem;
	}
	.siteheader {
		height: 65px;
	}
	.siteheader__menu li {
		margin-left: 2.5rem;
	}
	.homehero .homehero__content h1 {
		font-size: 3.25rem;
	}
	.siteheader__logo {
		width: 140px;
	}
	.siteheader__container {
		padding: 10px 0 10px;
	}
	.H_discoverway {
		padding: 100px 0;
	}
	.sc-about-teepee {
		padding: 70px 0 70px;
	}
	.how-Work p {
		font-size: 1.125rem;
	}
	.pricing--table table thead th {
		font-size: 1.75rem; 
	}
	.pricing--table table .pricing-price th {
		font-size: 1.75rem;
		padding: 10px;
	}
	.pricing--table table .pricing-price th.Ptitle {
		font-size: 1.75rem;
	}
	.pricing--table table .Pricingfechar {
		font-size: 1.125rem;
	}
	.homehero__content  {
		min-height: unset;
		padding-bottom: 250px;
		padding-top: 150px;
	}
	.sc-assessment h3 {
		font-size: 2.125rem;
	}
}
@media only screen and (max-width: 991px) {
	.menu-toggle {
		width: 34px;
		height: 25px;
		display: block;
		z-index: 1003;
		-webkit-transition: .5s ease-in-out;
		-o-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		cursor: pointer;
		position: relative;
		margin: 0;
		padding: 0;
		margin-left: auto;
		z-index: 1009;
	}
	.menu-toggle span {
		display: block;
		position: absolute;
		height: 4px;
		width: 100%;
		background: #1c3a60;
		opacity: 1;
		border-radius: 3px;
		left: 0;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}
	.menu-toggle span:nth-child(1) {
		top: 0;
		-webkit-transform-origin: left center;
		-ms-transform-origin: left center;
		transform-origin: left center;
	}
	.menu-toggle span:nth-child(2) {
		top: 11px;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: left center;
		-ms-transform-origin: left center;
		transform-origin: left center;
	}
	.menu-toggle span:nth-child(3) {
		bottom: 0;
		-webkit-transform-origin: left center;
		-ms-transform-origin: left center;
		transform-origin: left center;
	}
	.menu-toggle.active span:nth-child(1) {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		left: 0;
	}
	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}
	.menu-toggle.active span:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		bottom: -3px;
		left: 0;
	}
	.menumobile {
		position: fixed;
		height: 100vh;
		top: 0;
		left: 0;
		width: 80%;
		max-width: calc(100% - 70px);
		transition: all 500ms ease-in-out;
		transform: translateX(-100%);
		z-index: 1008;
		background-color: #fff;
		overflow: auto;
		padding-top: 60px;
		box-shadow: 0px 0 3px rgba(0, 0, 0, 0.1);
	}
	.siteheader.active .menumobile {
		transform: translateX(0%);
	}
	.overlay {
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		z-index: 1007;
		background-color: #fff;
		-webkit-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}
	.siteheader.active .overlay {
		opacity: 1;
		visibility: visible;
	}
	.siteheader__menu li {
		margin-left : 0;
		display: block;
		position: relative;
	}
	.siteheader__menu li .open-children {
		position: absolute;
		display: inline-block;
		height: 55px;
		width: 50px;
		right: 0;
		top: 0;
		line-height: 48px;
		text-align:center;
		padding: 0;
		border-left: 1px solid rgba(0,0,0,0.1);
	}
	.siteheader__menu li.active .open-children svg {
		transform: rotate(180deg);
	}
	.siteheader__menu li:not(:last-child){
		border-top: 1px solid rgba(0,0,0,0.1);		
	}
	.siteheader__menu li a {
	    padding: 10px 15px;
	}
	.siteheader__menu li.menubtn a {
    	text-align: center;
		padding: 7px 20px;
		border-radius: 0;
	}
	.sub-menu {
		display: none;
		padding-left: 0;
   		background-color: #f5f5f5;
	}
	.siteheader__menu li.active .sub-menu {
		display: block;
	}
	.pricing--table table thead th {
		font-size: 1.325rem;
		padding: 10px;
	} 
	.pricing--table table .Pricingfechar th {
		padding: 10px;
	}
	.pricing--table {
		padding: 30px 0 50px;
	}
	.sc-assessment h3 {
		font-size: 1.75rem;
	}
	.homehero__content  {
		min-height: unset;
		padding-bottom: 250px;
    	padding-top: 130px;
	}
	.pricing--table table .pricing-price th.Ptitle {
		font-size: 1.325rem;
	}
}
@media only screen and (max-width: 767px) {
	.homehero .homehero__content h1 {
		font-size: 3rem;
	}
	h1 {
		font-size: 3rem;
	}
	h2 {
		font-size: 2.5rem;
	}
	.contactus__box h1 {
		font-size: 4rem;
	}
	.sc-Mission {
		padding-bottom: 0;
	}
	.sc-blog {
		padding: 0 0 50px;
	}
	.sc-contact {
		padding: 0 0 50px;
	}
	.sc-faqQA {
		padding: 0 0 60px;
	}
	.how-Work {
		padding: 0;
	}
	.sc-contact--container {
		margin-left: 0;
	}
	.blogherosingle {
		padding: 100px 0 ;
	}
}
@media only screen and (max-width: 575px) {
	html {
		font-size: 90%;
	}
	body {
		line-height: 1.5;
	}
	h1 {
		font-size: 2.75rem;
	}
	h2 {
		font-size: 2.25rem;
	}
	.homehero__content  {
		padding-bottom: 170px;
    	padding-top: 100px;
	}
	.homehero .homehero__content h1 {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}
	.H_ourservices {
		padding: 50px 0;
	}
	.H_discoverway {
		padding: 60px 0;
	}
	.contactus {
		padding: 50px 0;
	}
	.H_partnerwith {
		padding: 50px 0 50px;
	}
	.contactus__box h1 {
		font-size: 3rem;
	}
	.sitefooter {
		padding: 40px 0 15px;
	}
	.copyright {
		font-size: 13px;
	}
	.sc-faqQA .similaires-box .faqicon {
		min-height: 42px;
	}
	.teepee-works {
		padding: 50px 0 0;
	}
	.sitebtn {
		padding: 7px 30px;
	}
	.pricing--table table thead th {
		font-size: 1.125rem;
	}
	.pricing--table table .pricing-price th {
		font-size: 1.25rem;
		padding: 5px;
	}
	.pricing--table table .Pricingfechar th,
	.pricing--table table .pricing-price th.Ptitle{
		padding: 5px;
	}
	.pricing--table table .Pricingfechar {
		font-size: 1rem;
	}
	.pricing--table table thead th {
		padding: 5px;
	}
	.pricing--table {
		padding: 0 0 50px;
	}
	.title-border:after {
		width: 50px;
		height: 5px;
	}
	.sc-assessment h3 {
		font-size: 1.75rem;
	}
	.sc-assessment {
		padding: 15px 0;
	}
	.siteheader__menu li .open-children {
		height: 48px;
	}
	.homehero__contentbox p {
		font-size: 1.25rem;
	}
	.blogherosingle {
		padding: 80px 0 ;
	}
	.pricing--table table .pricing-price th.Ptitle {
		font-size: 1.125rem;
	}
}