/* Fonts 
    font-family: "Manrope", sans-serif;
    font-family: "Open Sans", sans-serif;
*/

:root {
  --font-primary: "Open Sans", sans-serif;
  --font-family-secondary: "Manrope", sans-serif;
  --font-secondary: "Manrope", sans-serif;
  --font-dmsans: "DM Sans", sans-serif;;
  --font-inter: "Inter", sans-serif;;
  --green: #04634C;
  --darkgreen: #053529;
  --gray: #F5F5F5;
  --gray2: #545454;
  --gray3: #525252;
  --white: #ffffff;
  --black: #000000; 
  --text-color: #888888;    
  --light-green: #849D97
}

* {
    font-family: var(--font-primary);
}

body {
    margin: 0 !important;
}

a {
    text-decoration: none;
    color: var(--green);
}

.site-main > article {
    margin: 0;
}

.page-width {
    width: 100%;
    max-width: 1128px;
    margin: 0 auto;
}

/* Page Banner */
.page-banner {
    background: var(--green);
    height: 262px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-banner h1 {
    margin: 0;
    text-align: center;
    color: #E2EDEA;
    font-size: 35px;
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: normal;
}
/* end Page Banner */

/* 404 Page */
.page-content {
    margin: 0;
}
.page-content__wrap {
    padding: 60px 30px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.page-content__wrap h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 38px;
    color: var(--green);
}
.page-content__wrap a.back-btn {
    display: table;
    min-width: 264px;
    height: 57px;
    line-height: 57px;
    text-align: center;
    border-radius: 100px;
    font-family: var(--font-dmsans);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
    background: var(--green);
    margin: 0 auto;
}
/* end 404 Page */

/* Contact Us Page*/
.contact-wrapper {
    padding: 73px 20px 126px;
    background: #F5F5F5;
}
.contact-wrapper_details {
    margin: 0 auto;
    max-width: 1126px;
    width: 100%;
    display: flex;
    background: #Fff;
    border-radius: 30px;
    justify-content: space-between;
    margin-bottom: 61px;
}
.contact-form-left {
    width: 66%;
    padding: 40px 20px 33px;
}
.contact-form-left_content {
    max-width: 553px;
    width: 100%;
    margin: 0 auto;
}
.contact-form-left_content .subtitle {
    color: #04634C;
    font-size: 17px;
    margin-top: 0;
    line-height: normal;
}
.contact-details-right {
    width: 33%;
    background: #04634C;
    border-radius: 0 30px 30px 0;
    padding: 55px 26px 33px;
}
.contact-details-right_content {

}
.info-card {
    max-width: 288px;
    background: #fff;
    border-radius: 15px;
    padding: 30px 29px;
    font-size: 13px;
    color: #04634C;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 17px;
    font-weight: 400;
    line-height: 16px;
}
.info-card.info-icon-loc,
.info-card.info-icon-call{
    padding: 22px 29px;
}
.info-card:last-child {
    margin-bottom: 16px;
}
.info-icon {
    display: flex;
    width: 18px;
}
.info-icon-mail {
    position: relative;
    top: 2px;
}
.info-text {
	flex: 1;
}
.connect-text {
    color: #fff;
    line-height: 22.9px;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    margin-bottom: 18px;
}
.social-icons-wrap ul {
    display: flex;
  list-style: none;
  gap: 12px;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

.map-wrapper_row {
    margin: 0 auto;
    max-width: 1126px;
    width: 100%;
}
.map-wrapper_row iframe {
    border-radius: 30px;
}


/* Contact Us Form */
/* Layout Grid */
.cf7-grid {
    width: 100%;
}
.cf7-grid .wpcf7-spinner{
    display: none;
}
.cf7-submit-wrap p,
.cf7-grid .cf7-row p {
    margin: 0 !important;
}
.cf7-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.cf7-row.full {
    flex-direction: column;
    margin-bottom: 28px;
}

/* Columns */
.cf7-col {
    flex: 1;
}

/* Inputs */
.cf7-grid input,
.cf7-grid textarea {
    width: 100%;
    padding: 10.8px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #f9f9f9;
    font-size: 15px;
}

/* Textarea */
.cf7-grid textarea {
    height: 130px;
    resize: none;
}

/* Submit Button */
.cf7-submit-wrap input[type="submit"] {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 50px;
    background: #0E6245; /* dark green like screenshot */
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s ease;
	font-family: var(--font-dmsans);
	font-weight: 500;
}

.cf7-submit-wrap input[type="submit"]:hover {
    opacity: 0.85;
}


@media screen and (max-width: 767px) {
    .contact-wrapper_details {
        flex-direction: column;
    }
    .contact-details-right,
    .contact-form-left {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .cf7-row {
        flex-direction: column;
        gap: 12px;
    }

    .cf7-col {
        width: 100%;
    }

    .cf7-grid input,
    .cf7-grid textarea {
        width: 100%;
    }

    .cf7-submit-wrap input[type="submit"] {
        width: 100%;
    }
}
/* END Contact Us Page*/