/*
 Theme Name:   GP VMI Child Theme
 Description:  GeneratePress Child Theme
 Template:     generatepress
 Version:      1.0
*/

/* Base */

html, body {
    overflow-x: hidden;
}

/* Utilities */

/* Components */

input[type=search] {
	padding: 10px 0.75rem;
	font-size: 21px;
	line-height: 1;
	border: 3px solid;
	color: var(--white);
}

input#wp-block-search__input-1::placeholder {
	color: var(--white);
}

input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
	border: none;
	padding: 0px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
	border: none;
	outline: none;
}

.cf7-wrapper .flex {
	margin-bottom: 2rem;
}

.cf7-container {
	width: 50%;
}

.cf7-container__input input {
	border-bottom: 1px solid;
	border-color: #fff;
	margin-top: 0.5rem;
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 0.25rem;
}

.cf7-container__input input:focus {
	border-bottom: 1px solid;
}

.cf7-container__input input::placeholder {
	color: #fff;
}

.cf7-container textarea {
	background: #fff;
	padding: 0.5rem;
	color: var(--blue-dark);
}

.cf7-container__header p {
	margin-bottom: 0px;
	padding: 1rem 0rem;
	font-size: 16px;
	font-weight: 600;
}


.cf7-container__right .cf7-container__header p {
	padding: 0.5rem 0rem;
}

.cf7-container span.wpcf7-form-control.wpcf7-checkbox {
	display: grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	row-gap: 1rem;
}

.cf7-container .wpcf7-list-item {
	margin: 0;
	font-size: 15px;
	display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

.cf7-container input.wpcf7-submit {
	align-items: center;
    background-color: rgba(255, 255, 255, 0);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
	margin-top: 1rem;
    text-decoration: none;
    border: 3px solid var(--white);
    padding: 1rem 3rem;
}

.cf7-container input.wpcf7-submit:hover {
	background-color: var(--blue-dark);
}

.cf7-wrapper .form-disclaimer p {
	margin-bottom: 0px;
	font-size: 14px;
}

.cf7-wrapper .form-disclaimer a:hover {
	color: #fff;
}

.cf7-container .wpcf7-not-valid-tip {
	font-size: 13px;
	padding-top: 2px;
	color: var(--orange);
}

.wpcf7 form.invalid .wpcf7-response-output {
	margin: 1.5rem 0rem;
    font-size: 17px;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--orange);
}

.wpcf7 form.sent .wpcf7-response-output {
	margin: 1.5rem 0rem;
    font-size: 17px;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--green);
}

/* Layout */

.hero_bg_blue .hero-section {
	background: linear-gradient(to left,rgba(40,55,79,0.7) 0%,rgba(40,55,79,0.7) 100%),var(--inline-bg-image) center /cover no-repeat;
	background-blend-mode: normal, normal;
}

.hero_bg_green .hero-section {
	background: linear-gradient(to left,rgba(181,196,188,0.61) 0%,rgba(181,196,188,0.61) 100%),var(--inline-bg-image) center /cover no-repeat;
	background-blend-mode: normal, normal;
}

.hero_bg_orange .hero-section {
	background: linear-gradient(to left,rgba(255,145,54,0.58) 0%,rgba(255,145,54,0.58) 100%),var(--inline-bg-image) center /cover no-repeat;
	background-blend-mode: normal, normal;
}

.hero_bg_gray .hero-section {
	background: linear-gradient(129deg,rgba(217,217,217,0.68) 0%,rgba(255,255,255,0.66) 100%),var(--inline-bg-image) center /cover no-repeat;
	background-blend-mode: normal, normal;
}

.background-video {
	position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.video-section {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.video-overlay::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
	background: linear-gradient( 90deg, var(--blue-dark) 50%, rgba(40, 55, 79, 0.35) 72%, rgba(40, 55, 79, 0.18) 86%, rgba(40, 55, 79, 0.1) 100%),repeating-linear-gradient( 0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 2px);
    width: 100%;
    height: 100%;
    z-index: 1;
	background-blend-mode: overlay;
}

.google-map {
	height: 500px;
}


@media (max-width: 1240px) {
	
	a.hide-1240 {
		display: none;
	}
	
	.cf7-container span.wpcf7-form-control.wpcf7-checkbox {
		grid-template-columns: repeat(3,minmax(0,1fr));
	}
	
}


@media (max-width: 1024px) {
	
	.background-video {
		width: 100%;
	}
	
	.video-overlay::before {
		background: linear-gradient( 90deg, var(--blue-dark) 10%, rgba(40, 55, 79, 0.65) 60%, rgba(40, 55, 79, 0.35) 80%, rgba(40, 55, 79, 0.15) 100%),repeating-linear-gradient( 0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 2px);
	}
	
	.cf7-container span.wpcf7-form-control.wpcf7-checkbox {
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
	
	.cf7-wrapper .flex {
		column-gap: 2rem;
	}
	
}

@media (max-width: 768px) {
	
	.cf7-wrapper .flex {
		flex-direction: column;
	}
	
	.cf7-container {
		width: 100%;
	}
	
	.cf7-container span.wpcf7-form-control.wpcf7-checkbox {
		grid-template-columns: repeat(3,minmax(0,1fr));
		margin-bottom: 1rem;
	}
	
}

@media (max-width: 512px) {
	
	.cf7-container span.wpcf7-form-control.wpcf7-checkbox {
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
	
}