/*!
Theme Name: Turbohire
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: turbohire
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Turbohire is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/*  footer{display:none!important;} */

.site-header {
  transition: all 0.3s ease-out;
}

/* Sticky behavior */
.site-header.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 999;
	background-color: #fff;
/*     background-color: #fff2;
    backdrop-filter: blur(6px); */
    border-bottom: 1px solid var(--primary-blue-50);
}

/* Background change */
/* .site-header.is-scrolled {
background-color: #fff;
} */

.site-header.hide {
    translate: 0 -100%;
	opacity: 0;
}


/* Form Code Start */

input[type='text'],
input[type='tel'],
input[type='email'],
select,
textarea {
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    background-color: var(--theme-white);
    color: var(--primary-blue-900);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 120%;
    padding: 0.75rem 1rem;
    height: auto;
    width: 100% !important;
    font-family: var(--secondary-font);
}

:is(
    input[type='tel'],
    input[type='text'],
    input[type='email'],
    select,
    textarea
)::placeholder {
    color: rgba(46, 26, 107, 0.5);
}

.third-party-form :is(.form-columns-2, .form-columns-1) {
    max-width: unset !important;
}
.third-party-form form {
    font-family: var(--secondary-font);
}

.third-party-form form > *:not(:has(*[class*='/utm'])) {
    margin-bottom: 1.25rem;
}
.third-party-form .inputs-list {
    padding-left: 0;
    list-style: none;
}

input.hs-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    background-color: var(--primary-blue-600);
    color: var(--theme-white);
    border: 0;
    width: 100%;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.0225rem;
    cursor: pointer;
}

.third-party-form label{
    margin-bottom: 0.66rem;
    color: var(--Primary-Blue-900, #2E1A6B); 
font-size: 0.875rem; 
font-weight: 500;
line-height: 120%; 
letter-spacing: -0.00875rem;
display: inline-block;
}

.third-party-form fieldset >*{
    float:none!important;
}
.third-party-form fieldset.form-columns-2 {
    display: flex;
    gap: 1.25rem;
}
.third-party-form input{
    margin-right:0;
}


/* Form Code end */

@media screen and (max-width: 992px){
	html{
		font-size: 14px;
	}
	br{
		display:none!important;
	}
}

@media screen and (max-width: 768px){
    .third-party-form fieldset.form-columns-2 {
        gap: 1rem;
        flex-direction: column;
    }
    .third-party-form form > *:not(:has(*[class*='/utm'])) {
    margin-bottom: 1rem;
}
}

