@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
:root{
	/*COLOR*/
	--wp-green:#189d98;
	--wp-white:#fff;
	--wp-grey:#3a3e46;
	--grey:#ededec;
	--light-grey: #fafafa;
	/*FONT*/
    --h1:70px;
    --h1-leading:86.81px;
    --h1-weight:300;
	--h1-ls:-0.20px;

	--h2: 46px;
	--h2-leading:62px;
	--h2-weight:400;
	--h2-ls:0px;

	--h3: 30px;
	--h3-leading:38px;
	--h3-weight:400;
	--h3-ls:0px;

	--h4: 24px;
	--h4-leading:30px;
	--h4-weight:400;
	--h4-ls:0px;

	--h5: 22px;
	--h5-leading:28px;
	--h5-weight:400;
	--h5-ls:0px;

	--h6: 20px;
	--h6-leading:26px;
	--h6-weight:500;
	--h6-ls:0px;

    --h7: 16px;
	--h7-leading:26px;
	--h7-weight:500;
	--h7-ls:0px;

	--p: 14px;
	--p-leading:26px;
	--p-weight:500;
	--p-ls:0px;

	--li:14px;
	--li-leading:26px;
	--li-weight:500;
	--li-ls:0px;
}
@media screen and (max-width:1280px) {
	:root{
		--h1:40px;
    	--h1-leading:46px;

		--h2: 30px;
		--h2-leading:40px;

		--h3: 24px;
		--h3-leading:32px;

		--h4: 22px;
		--h4-leading:30px;

		--h5: 20px;
		--h5-leading:28px;

		--h6: 18px;
		--h6-leading:26px;
	}
}
@media screen and (max-width:767px) {
	:root{
		--h1:24px;
    	--h1-leading:32px;

		--h2: 20px;
		--h2-leading:28px;

		--h3: 18px;
		--h3-leading:26px;

		--h4: 16px;
		--h4-leading:26px;

		--h5: 16px;
		--h5-leading:26px;

		--h6: 16px;
		--h6-leading:26px;

		--p: 12px;
		--p-leading:20px;

		--li: 12px;
		--li-leading:20px;
	}
}
/***************************************
TYPOGRAPHY
***************************************/
h1, .h1{
	font-size: var(--h1);
	line-height: var(--h1-leading);
	font-weight: var(--h1-weight);
	letter-spacing: var(--h1-ls);
}
h2, .h2{
	font-size: var(--h2);
	line-height: var(--h2-leading);
	font-weight: var(--h2-weight);
	letter-spacing: var(--h2-ls);
}
h3, .h3{
	font-size: var(--h3);
	line-height: var(--h3-leading);
	font-weight: var(--h3-weight);
	letter-spacing: var(--h3-ls);
}
h4, .h4{
	font-size: var(--h4);
	line-height: var(--h4-leading);
	font-weight: var(--h4-weight);
	letter-spacing: var(--h4-ls);
}
h5, .h5{
	font-size: var(--h5);
	line-height: var(--h5-leading);
	font-weight: var(--h5-weight);
	letter-spacing: var(--h4-ls);
}
h6, .h6{
	font-size: var(--h6);
	line-height: var(--h6-leading);
	font-weight: var(--h6-weight);
	letter-spacing: var(--h6-ls);
}
.h7{
	font-size: var(--h7);
	line-height: var(--h7-leading);
	font-weight: var(--h7-weight);
	letter-spacing: var(--h7-ls);
}
p{
	font-size: var(--p);
	line-height: var(--p-leading);
	font-weight: var(--p-weight);
	letter-spacing: var(--p-ls);
}
li{
	font-size: var(--li);
	line-height: var(--li-leading);
	font-weight: var(--li-weight);
	letter-spacing: var(--li-ls);
}
/***************************************
COMMON STYLE
***************************************/
body{
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size: var(--p);
	line-height: 26px;
	margin: 0;
}
*{
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p, figure, article, ul{
	margin: 0;
	padding: 0;
}
img{
	max-width: 100%;
	height: unset;
	display: block;
}
b, strong{
	font-weight: 700;
}
a{
	color: var(--wp-green);
}
/***************************************
HEADING WITH LOGO
***************************************/
.heading-with-logo{
	display: flex;
	align-items: center;
	grid-gap: 15px 20px;
}
.heading-with-logo .heading-logo-symbol{
	max-width: 60px;
}
.heading-with-logo .heading-logo-symbol img{
	width: 100%;
}
@media screen and (max-width:1280px) {
	.heading-with-logo .heading-logo-symbol{
		max-width: 37px;
	}
}
@media screen and (max-width:767px) {
	.heading-with-logo .heading-logo-symbol{
		max-width: 27px;
	}
}
/***************************************
LAYOUT
***************************************/
:root {
    --container-width: 1435px;
    --container-padding: 50px;
    --container: min(calc(100% - var(--container-padding) * 2), var(--container-width));
    --container-spacing: max(calc((100% - var(--container-width)) / 2), var(--container-padding));
    --container-spacing-minus: max(calc((-100% + var(--container-width)) / 2), var(--container-padding));
}
@media screen and (max-width:1280px) {
	:root {
		--container-padding: 30px;
	}
}
.container{
	width: var(--container);
	margin-inline: auto;
}
/***************************************
BUTTON
***************************************/
.button,
.quilter-offers-block .field_quilter_offers_link_button a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.25px;
    text-align: center;
    background-color: var(--wp-grey);
    color: var(--wp-white);
    text-decoration: none;
    text-transform: uppercase;
    border: 0;
    padding-block: 15px;
    padding-inline: 30px;
    min-height: 60px;
	cursor: pointer;
	transition: all 0.3s;
}
.button:hover{
	background-color: var(--wp-white);
	color: var(--wp-grey);
}
/***************************************
UL LISTNG
***************************************/
main ul li {
	color: rgb(var(--wp-grey));
    list-style: none;
    position: relative;
    display: block;
    padding-left: 30px;
}
main ul li:not(:last-child){
	margin-bottom: 10px;
}
main ul li::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    font-size: 30px;
    background-color: var(--wp-green);
    position: absolute;
    left: 0;
    top: 7px;
}
main ol li{
	color: rgb(var(--wp-grey));
    position: relative;
    display: flex;
    padding-left: 30px;
	counter-increment: olCounter 1;
}
main ol li::before {
    content: counter(olCounter);
	position: absolute;
	left: 0;
	color: var(--wp-green);
	font-weight: 600;
}
@media screen and (max-width:767px){
	main ul li{
		padding-left: 19px;
	}
	main ul li::before{
		width: 10px;
		height: 10px;
		top: 5px;
	}
}
/***************************************
FORM ELEMENTS
***************************************/
/*input*/
input:is([type="text"], [type="email"], [type="password"], [type="tel"], [type="color"]), 
textarea,
select {
	width: 100%;
    border: 1px solid var(--wp-white);
    background-color: var(--wp-white);
    color: #0f0f0f;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 20px;
    outline: 0;
    letter-spacing: 0.25px;
	opacity: 1;
	font-family: inherit;
	resize: none;
}
input:is([type="text"], [type="email"], [type="password"], [type="tel"], [type="color"])::placeholder,
textarea::placeholder{
	color: #0f0f0f;
	opacity: 1;
}
/*label*/
.form-wrapper label:not(.option){
	font-size: 14px;
    font-weight: 500;
	line-height: 25px;
}
/*select*/
select:not(#edit-category, [data-drupal-selector="edit-category"]){
	background-image: url('/themes/custom/webpro_network/assets/css/../img/select-arrow.png');
	background-repeat: no-repeat;
	background-position: center right 20px;
	-webkit-appearance: none;
    -moz-appearance: inherit;
    appearance: none;
}
/*checkbox*/
input.form-checkbox[type="checkbox"] {
    width: 21px;
    height: 21px;
    border-radius: 0px !important;
    border: 1px solid rgb(var(--wp-grey));
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: inherit;
    appearance: none;
	cursor: pointer;
}
input.form-checkbox[type="checkbox"]::after{
	content: '\f00c';
	font-size:16px;
	font-family: "Font Awesome 6 Pro";
	font-weight: 600;
	color: var(--main-highlight-color);
	transition:0.3s;
	opacity:0;
	visibility:hidden;
}
input.form-checkbox[type="checkbox"]:checked::after{
	opacity:1;
	visibility:visible;
}
/*checkbox solid*/
:where(.request-a-callback) input:is(input.form-checkbox[type="checkbox"], input.form-radio[type="radio"]){
    width: 33px;
    height: 33px;
    border: 1px solid var(--grey);
    background-color:var(--grey);
    margin: 0 !important;
    margin-right: 10px !important;
    padding: 0 !important;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px !important;
    -webkit-appearance: none;
    -moz-appearance: inherit;
    appearance: none;
    cursor: pointer;
}
:where(.request-a-callback) input:is(input.form-checkbox[type="checkbox"], input.form-radio[type="radio"]) + label{
	font-weight:500;
	cursor:pointer;
}
:where(.request-a-callback) input:is(input.form-checkbox[type="checkbox"], input.form-radio[type="radio"])::after{
	content: '\f00c';
	font-size:16px;
	font-family: "Font Awesome 6 Pro";
	font-weight: 600;
	color: var(--main-highlight-color);
	transition:0.3s;
	opacity:0;
	visibility:hidden;
}
:where(.request-a-callback) input:is(input.form-checkbox[type="checkbox"], input.form-radio[type="radio"]):checked::after{
	opacity:1;
	visibility:visible;
}
/*radio*/
.form-item-privacy input.form-radio[type="radio"]{
	display: none;
}
.form-item-privacy input.form-radio[type="radio"] ~ label.option{
	display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 30px;
    border: 1px solid #cccccc;
    font-size: 14px;
    font-weight: 600;
    color: var(--super-black);
	cursor: pointer;
}
.form-item-privacy input.form-radio[type="radio"]:checked ~ label.option{
	background-color: var(--main-highlight-color);
	color: var(--wp-white);
	border-color: var(--main-highlight-color);
}
/*ERROR*/
div[data-drupal-messages] div[role="alert"]{
	display: none;
}