.section-1 {
	text-align: center;
}

.section-1 .description{
	padding-bottom: 3.125rem;
}

.section-1 .btn {
	background: #006353;
	color: white;
	border: 0;
	
	cursor: pointer;
}

.section-1 .overlay{
    position: fixed;
    top: 0 ;
    left: 0;
    z-index: 112;
    width: 100%;
    height: 100%;
    
    display: none;
}

.section-1 .overlay-background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: opacity 0.4s;
}

.section-1 .overlay-content{
    background: white;
    padding: 2em 2.4em 2em;
    border-radius: 6px;
    width: 320px;
    
    max-height: 80vh;
    overflow: auto;
}

.section-1 .overlay-content textarea,
.section-1 .overlay-content input{
    max-width: 100%;    
    min-height: 34px;
    padding: 0.35em 0.75em;
}

.section-1 .overlay-content .wpcf7-not-valid-tip{ font-size: 0.85rem; }
.section-1 .overlay-content br{ display: none; }
.section-1 .overlay .wpcf7-form-control-wrap:not(:nth-child(2)){
    margin-top: 1.25em;
    display: block;
    width: 100%;
}

.section-1 .overlay .wpcf7-form-control-wrap.subject {
    display: none;
}

.section-1 .overlay .overlay-header{
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-1 .overlay .overlay-header label{
    position: relative;
    width: 25px;
    height: 25px;
    display: block;
    cursor: pointer;
    transform: translate(75%, -65%);
}

.section-1 .overlay .overlay-header label div{
    width: 100%;
    height: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.section-1 .overlay .overlay-header label span{
    display: block;
    height: 2px;
    border-radius: 1px;
    background: #999;
    width: 100%;
    position: relative;
}

.section-1 .overlay .overlay-header label span:before{
    content: '';
    height: 100%;
    width: 100%;

    display: block;
    background: #999;
    transform: rotate(90deg);
}

.section-1 .overlay input[type="submit"]{
    margin: auto;
    margin-top: 2em;
    height: 3px;
}

.section-1 #toggle-enquiry-form{
    display: none;
}

.section-1 #toggle-enquiry-form:checked + .overlay{
    display: block;
}









