/* common */
/* 100 - Thin */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

/* 200 - ExtraLight */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}

/* 300 - Light */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* 400 - Regular */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* 500 - Medium */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

/* 600 - SemiBold */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

/* 700 - Bold */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* 800 - ExtraBold */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

/* 900 - Black */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

* {
    font-family: Poppins;
}
html {
    scroll-behavior: smooth !important;
}
body {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: #595959;
}
.option-width {
    max-width: 75%;
}
.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.25;
}
.form-check-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    body {
        font-size: 1rem;
    }
    .option-width {
        max-width: 100%;
    }
}

/* bootstrap overrides */
.container {
    max-width: 1024px;
    padding: 0 10px;
}
.btn {
    border-radius: 2px !important;
    font-size: 1rem !important;
    line-height: 1.25 !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    border-width: 2px !important;
    padding: 10px 30px !important;
    min-height: 50px !important;
    display: inline-flex !important;
    gap: 5px !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    text-align: center !important;
}
.btn-primary {
  color: #fff !important;
}
.btn-outline-dark:hover {
    color: #ffffff !important;
    background-color: #32aa27 !important;
    border-color: #32aa27 !important;
}
.btn-outline-dark:active,
.btn-outline-dark:focus {
    color: #ffffff !important;
    border-color: #41d034 !important;
    background-color: #41d034 !important;
}
.btn-outline-white:hover {
    color: #ffffff !important;
    background-color: #162415 !important;
    border-color: #162415 !important;
}
.btn-outline-white:active,
.btn-outline-white:focus {
    color: #ffffff !important;
    border-color: #595959 !important;
    background-color: #595959 !important;
}
.alert {
    border-radius: 2px !important;
}
.alert.alert-danger,
.alert.alert-success {
    position: relative;
    padding-left: 40px !important;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.alert.alert-danger::before,
.alert.alert-success::before {
    position: absolute;
    left: 8px;
}
.alert.alert-danger::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../icons/triangle-exclamation-solid.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.alert.alert-success::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../icons/circle-check-solid.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* navbar */
nav.navbar {
    padding: 15px 20px !important;
}
nav.navbar a:not(.btn) {
    color: #595959;
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
}
a.navbar-brand {
    color: #FFFFFF !important;
}
a.navbar-brand img {
    max-width: 100%;
    max-height: 80px;
}
nav.navbar .navbar-nav {
    align-items: center !important;
}
nav.navbar .nav-item a:not(.btn) {
    position: relative;
    transition: all 0.15s ease-in-out;
    text-decoration: none;
    z-index: 1;
    padding: 6px 0 !important;
    letter-spacing: 1px !important;
}
nav.navbar .nav-item a:not(.btn):hover,
nav.navbar .nav-item a:not(.btn):focus,
nav.navbar .nav-item a:not(.btn):active,
nav.navbar .nav-item.active a:not(.btn)
{
    color: #32aa27 !important;

}
nav.navbar .nav-item a:not(.btn)::after {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: -4px;
    transition: all 0.15s ease-in-out;
    opacity: 0;
    z-index: -1;
    transition: all 0.15s ease-in-out;
}
nav.navbar .nav-item a:not(.btn):hover::after,
nav.navbar .nav-item a:not(.btn):focus::after,
nav.navbar .nav-item a:not(.btn):active::after,
nav.navbar .nav-item.active a:not(.btn)::after {
    opacity: 1;
    background: #32aa27 !important;
    bottom: 0;
}
nav.navbar .navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
@media (max-width: 767px) {
    a.navbar-brand img {
        max-height: 40px;
    }
}

/* hero section */
.banner-section {
    background: url('../images/banner-home.jpeg') center center/cover no-repeat;
    background-attachment: fixed;
    padding-top: 135px;
}
.banner-section .hero-content {
    background: rgba(255, 255, 255, 0.85);
    display: inline-block;
    padding: 40px;
    width: 50%;
    margin-inline-start: auto;
    margin-inline-end: 0;
}
.banner-section .hero-title {
    color: #020402;
}
.hero-title {
    font-size: 3.875rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 10px !important;
}
.banner-section .hero-subtitle {
    color: #020402;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 10px !important;
}
.banner-section .hero-button {
    margin-top: 10px !important;
}
@media (max-width: 991px) {
    .banner-section .hero-content {
        width: 80%;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* section titles */
section {
    padding: 100px 20px;
    scroll-margin-top: 119px;
}
section:nth-of-type(even) {
    background: #eef1ef;
}
.section-content-wrapper {
    display: flex;
    margin-inline-end: auto;
    margin-inline-start: 0;
    text-align: start;
    align-self: flex-start;
    justify-content: flex-start;
    align-items: center;
}
.section-image {
    width: 70%;
}
.section-image-bg {
    width: 70%;
    background-image: url('../images/about.jpeg');
    background-size: cover;
    background-position: center;
    margin: 0 auto;
}
.section-image img {
    max-width: 100%;
    height: auto;
    display: none;
}
.section-image ::after {
    content: '';
    display: block;
    padding-top: 130%;
}
.section-content {
    width: calc(50% + 140px);
    padding: 40px;
    transform: translateX(-140px);
    margin: 0 -140px 0 0;
    background: #eef1ef;
}
.section-title {
    font-size: .875rem;
    font-weight: 600;
    color: #32aa27;
    line-height: 1.25;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #020402;
    line-height: 1.25;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    section {
        padding: 40px 20px;
    }
    .section-content-wrapper {
        flex-direction: column;
    }
    .section-content {
        width: 100%;
        transform: none;
        margin: 0;
    }
    .section-subtitle {
        font-size: 1.375rem;
    }
}

/* virtual tour */
#virtual-tour {
    text-align: center;
}
.video-container {
    margin-top: 50px;
}

/* icon */
.video-link {
    position: relative;
    display: inline-block;
}
.video-link:hover .icon-wrapper svg {
    fill: rgba(255, 255, 255, 1);
    transition: all 150ms ease-out;
}
.icon-wrapper {
    font-size: clamp(60px, 8vw, 80px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.icon-wrapper svg {
    width: 1em;
    height: 1em;
    fill: rgba(255, 255, 255, 0.5);
}

/* services */
#services .row {
    margin-top: 50px;
}
#services a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.15s ease-in-out;
}
#services a:hover {
    transform: scale(1.05);
}
#services a:hover .card-body-content h5 {
    color: #32aa27 !important;
}
#services a:hover .card-body-content h5 svg {
    fill: #32aa27 !important;
    transform: translateY(-1px) translateX(4px);
}
#services .card {
    border: none;
    border-radius: 0;
    transition: all 0.15s ease-in-out;
    box-shadow: 0 5px 20px 0 rgba(0,0,0,0.15) !important;
}
#services .card-body {
    padding: 0;
}
.card-image-bg {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.card-image-bg::after {
    content: '';
    display: block;
    padding-top: 66.66%;
}
.card-image-bg img {
    width: 100%;
    height: auto;
    display: none;
}
.card-body-content {
    padding: 20px;
}
.card-body-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #020402;
    line-height: 1.25;
}
.card-body-content h5 svg {
    height: 0.8em;
    fill: rgb(2, 4, 2);
    transition: all 150ms ease-out;
}
.card-body-content p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #595959;
    line-height: 1.5;
}

/* service single */
.container-75 {
    max-width: 1024px;
    margin: 0 auto;
}
.content-75-wrapper {
    width: 75%;
    margin: 0 auto;
    padding: 0 10px;
}
.featured-image-wrapper {
    margin-top: 40px;
}
@media (max-width: 767px) {
    .content-75-wrapper {
        width: 100%;
    }
}

/* get in touch */
.get-in-touch-row {
    margin-left: -10px;
    margin-right: -10px;
}
.get-in-touch-form-wrapper {
    padding: 40px;
    background-color: #162415;
}
.get-in-touch-form-wrapper .section-title,
.get-in-touch-form-wrapper .section-subtitle,
.get-in-touch-form-wrapper .form-check-label,
.get-in-touch-form-wrapper .form-label {
    color: #ffffff;
}
.get-in-touch-form-wrapper .form-control,
.get-in-touch-form-wrapper .form-select {
    background: transparent;
    border-radius: 0;
    padding: 8px 10px;
    color: #ffffff;
    font-size: 1.125rem;
}
.get-in-touch-form-wrapper .form-select option {
    color: #020402;
}
.form-select-wrapper {
    position: relative;
}
.form-select-wrapper::after {
    display: block;
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-75%) rotate(-45deg);
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 0 0 2px 2px;
    pointer-events: none;
    border-color: var(--clr-form-border);
}
.get-in-touch-form-wrapper .form-control::placeholder {
    color: #ffffff;
    opacity: 0.3;
}
.get-in-touch-form-wrapper .form-control:focus,
.get-in-touch-form-wrapper .form-check-input:focus,
.get-in-touch-form-wrapper .form-select:focus {
    box-shadow: none;
    outline-offset: 2px;
    outline-width: 2px;
    outline-style: solid;
    outline-color: #6e6b6b;
}
.get-in-touch-form-wrapper .form-check-input {
    background-color: transparent;
    border-radius: 0;
    color: #ffffff;
    border-color: #ffffff;
}
.get-in-touch-info-wrapper {
    padding-top: 40px;
    margin-left: 85px;
}
.get-in-touch-contact-section:not(:last-child) {
    margin-bottom: 20px;
}
.get-in-touch-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}
.get-in-touch-contact-row svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #595959;
}
.get-in-touch-contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    color: #020402;
    margin-bottom: 10px;
}
.get-in-touch-contact-link {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1;
    color: #595959;
    text-decoration: none;
    position: relative;
}
.get-in-touch-contact-link::after {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    background: currentColor;
    transition: all 150ms ease-out;
}
.get-in-touch-contact-link:hover {
    color: #32aa27;
}
.get-in-touch-hours-list {
    display: table;
    padding: 0;
    margin: 0;
}
.get-in-touch-hours-list li {
    display: table-row;
}
.get-in-touch-hours-list li div {
    display: table-cell;
}
.get-in-touch-hours-list .day {
    padding-inline-end: 20px;
}
.get-in-touch-hours-list .dash {
    padding: 0 10px;
}
.field-wrapper:not(:first-child) {
    position: relative;
    margin-top: 20px;
}
.label-required {
    color: #ec6366 !important;
    display: inline-block;
}
@media (max-width: 767px) {
    .get-in-touch-info-wrapper {
        margin-left: 0;
    }
}

/* testimonials */
.testimonials-row {
    margin-top: 50px;
}
#why-choose-us .testimonial-content-wrapper {
    position: relative;
    background-color: #32aa27;
    color: #ffffff;
    padding: 80px 60px 60px;
}
#why-choose-us .testimonial-icon-wrapper {
    font-size: 30px;
    position: absolute;
    top: 40px;
    display: flex;
    inset-inline-start: 40px;
}
#why-choose-us .testimonial-icon-wrapper svg {
    width: 1em;
    height: 1em;
    fill: #ffffff;
}
.testimonial-text, .testimonial-company {
    opacity: 0.7;
}
.testimonial-company {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
}
.testimonial-client {
    position: relative;
}
.testimonial-client::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 3px;
    background-color: #ffffff;
    position: absolute;
    left: -30px;
    top: 12px;
}
@media (max-width: 767px) {
    #why-choose-us .testimonial-content-wrapper {
        padding: 40px 30px 30px;
    }
    #why-choose-us .testimonial-icon-wrapper {
        width: 20px;
        height: 20px;
        font-size: 18px;
        inset-inline-start: 20px;
        top: 20px;
    }
}

/* footer */
footer {
    background-color: #162415;
    padding: 50px 0;
    color: #ffffff;
}
.footer-links a {
    text-decoration: none;
}