html {
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
}
body {
    font-family: "Lato", sans-serif;
    font-size: 17px;
    line-height: 140%;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #00203F;
    letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 140%;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
h2.title {
    font-size: 40px;
    line-height: 110%;
    margin-bottom: 20px;
    text-transform: uppercase;
}
h3.title {
    font-size: 30px;
} 
p {
    margin: 0;
    padding: 0;
}
button {
    padding: 0;
    border: none;
}
.container {
    max-width: 1201px;
    padding: 0 15px;
    width: auto;
    margin: 0 auto;
}
.btn {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
    text-shadow: 0-1px 0 rgba(255,255,255,.2);
    background: #8EC46B;
    max-width: 680px;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease;
}
.btn:hover {
    background: #74a057;
    transition: all 0.5s ease;
}
input, input:focus, textarea, textarea:focus {
    outline: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a, a:hover, a:active {
    text-decoration: none;
    color: inherit;
}
.title {
    font-weight: 700;
    line-height: 110%;
}
/*header*/
.header {
    transition: all 0.5s ease;
    color: #fff;
}
.header__wrapper {
    display: flex;
    justify-content: center;
}
.header-top {
    padding-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.header-logo {
    width: 8%;
    height: 101%;
    position: absolute;
    left: 0px;
    background: #fff;
    transition: opacity 0.5s ease;
}
.header-logo:hover {
    transition: opacity 0.5s ease;
    opacity: 0.9;
}
.header-logo__img {
    width: 190px;
    height: 64px;
    transform: rotate(-90deg);
    margin-top: 95px;
    margin-left: -53px;
    object-fit: cover;
    transition: all 0.5s ease;
}
.header-logo::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0%;
    width: 40%;
    height: 45.4%;
    background: #fff;
    border-right: 18px solid #00203F;
    border-bottom: 18px solid #fff;
}
.header-logo::after {
    content: '';
    display: block;
    position: absolute;
    left: 85%;
    top: 2%;
    width: 72px;
    height: 3px;
    background: #FFCB77;
}
.header-menu {
    margin-right: auto;
    margin-left: 3%;
}
.header-menu__items {
    margin-left: 14px;
    display: flex;
    align-items: center;
}
.header-menu__item {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    padding: 18px 0 18px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease;
}
.header-menu__item:not(:last-child) {
    margin-left: 35px;
}
.header-menu__item.active::after {
    width: 100%;
    transition: width 0.5s ease-in-out;
}
.header-menu__item::after {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 0px;
    background-color: #8EC46B;
    transition: width 0.5s ease-in-out;
}
.header-menu__item:hover::after {
    width: 100%;
    transition: all 0.2s ease-in-out;
}
.header-menu__link {
    letter-spacing: 2px;
    display: block;
}
.header-menu__link_more {
    position: relative;
    display: flex;
    align-items: center;
}
.header-menu__link_more::after {
    content: '';
    display: block;
    background: url(../img/arrow-down.png) no-repeat;
    width: 15px;
    height: 9px;
    background-size: cover;
    margin-left: 7px;
}
.header-submenu {
    margin-left: -5px;
    margin-top: 10px;
    z-index: 2;
    padding: 15px 9px;
    width: 70%;
    display: none;
    transition: all 0.5s ease;
}
.header-menu__item_more:hover .header-submenu {
    position: fixed;
    background: rgba(45, 45, 45, 0.85);
    border-radius: 10px;
    z-index: 1000000;
    width: 270px;
    height: auto;
    color: #ffffff;
    display: block;
    transition: all 0.5s ease;
}
.header-submenu__item {
    transition: all 0.5s ease;
}
.header-submenu__item:hover {
    transition: all 0.5s ease;
    color: #8EC46B;
}
.header-submenu__item:not(:last-child) {
    margin-bottom: 10px;
}
.header-submenu__item.active {
    color: #8EC46B;
}
.header-menu__item_phone {
    display: none;
}
.header-info {
    display: flex;
}
.header-info__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    padding: 22px;
    border-radius: 20px;
    transition: opacity 0.5s ease;
}
.header-info__phone::before {
    content: '';
    display: block;
    background: url('../img/telephone-call.png');
    width: 22px;
    height: 22px;
    background-size: cover;
    margin-right: 17px;
}
.header-info__phone:hover {
    transition: opacity 0.5s ease;
    opacity: 0.8;
}
.header-info__phone_burger {
    display: none;
}
.header-book {
    position: absolute;
    right: 5px;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 21px;
    letter-spacing: 3px;
	font-weight: 700;
    height: 70px;
    max-width: 320px;
    padding: 20px 15px 20px;
    margin-left: 25px;
    background: #8EC46B;
    transition: all ease 0.5s;
}
.header-book::before {
    content: '';
    display: block;
    margin-right: 19px;
    width: 22px;
    height: 21px;
    background: url('../img/telephone-call.png') no-repeat;
    transition: all ease 0.5s;
    background-size: cover;
}
.header-book:hover {
    opacity: 0.7;
    transition: all ease 0.5s;
}
.menu-burger {
    display: none;
}
/*top section*/
.top-section {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('../img/complete-landscaping-tallahassee.jpg') no-repeat;
    color: #ffffff;
    position: relative;
    height: auto;
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom center;
    background-position: fixed;
}
.container_top-section {
    padding: 100px 0 0;
}
.top-section__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-section__btn {
    padding: 25px 15px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    max-width: 300px;
    margin-bottom: -5%;
}
.top-section__content {
    margin: 0 auto 0 8%;
}
.top-section__content-wrapper {
    padding: 50px 0 0;
    max-width: 700px;
    width: auto;
}
.top-section__title {
    font-family: "Abril Fatface", serif;
    color: #fff;
    text-transform: uppercase;
    font-style: normal;
    font-size: 62px;
    text-align: left;
    line-height: 125%;
    letter-spacing: 5px;    
    margin-bottom: 20px;
}
.top-section__title span {
    font-style: italic;
    font-family: "Lato", sans-serif;
    line-height: 130%;
    font-size: 25px;
    display: block;
}
.top-section__text {
    color: #fff;
    font-size: 17px;
    max-width: 540px;
    margin-bottom: 45px;
}
.top-section::before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 93.2%;
    width: 44%;
    height: 5.5px;
    background: #fff;
    border-top: 38px solid #00203F;
    border-left: 38px solid #fff;
} 
/*.top-section::after {
    content: '';
    display: block;
    position: absolute;
    right: 6%;
    top: 69%;
    width: 5px;
    height: 130px;
    background: #00203F;
}*/ 
.top-form_wrapper {
    position: relative;
    padding: 20px 20px 55px;
    background: #fff;
    width: 40%;
}
.top-form__fields {
    display: flex;
    flex-wrap: wrap;
}
.top-form__title {
    font-size: 22px;
    line-height: 110%;
    font-weight: 700;
    margin:  0 auto 25px auto;
}
.top-form__input {
    width: 100%;
    border: 1px solid #00203F;
    text-shadow: none;
    color: #212529;
    font-weight: 300;
    padding: 10px 12px;
    margin-bottom: 20px;
    font-size: 16px;
}
textarea.top-form__input {
    margin-bottom: 0px;
}
.top-form__input::placeholder, .top-form__textarea::placeholder {
    color: #212529;
    font-family: "Lato", sans-serif;
    opacity: 0.5;
}
.top-form__btn {
    margin-top: 20px;
    background: #8EC46B;
    border: 3px solid #8EC46B;
}
.top-form__success {
    position: absolute;
    border-radius: 4px;
    padding: 5px 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 32, 63, 0.5);
    display: none;
}
.top-form__success-content {
    position: absolute;
    width: 90%;
    padding: 30px;
    background: rgba(142, 196, 107, 1);
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}
.top-form__success_contact .top-form__success-content {
    max-width: 550px;
}
.top-form__success h4 {
    margin-bottom: 7px;
    font-size: 18px;
}
.top-form__input.error {
    padding-bottom: 10px;
}
.top-form__input.error+.error {
    font-size: 15px;
    color: #cc3a26;
    text-align: left;
    margin-top: -25px;
}
#services {
    outline: none;
}
#top-form__home > .remarck, #top-form__contact  > .remarck { 
    display:none; 
}
/* About */
.about {
    position: relative;
    padding: 10px 0 30px;
}
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
h2.about-title {
    color: #00203F;
    margin-right: 15px;
    line-height: 140%;
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
}
h2.about-title::before, .about_servicesPage h1.about-title::before  {
    content: "";
    display: block;
    background: #FFCB77;
    width: 150px;
    height: 2px;
    position: absolute;
    bottom: -7px;
    left: 0;
}
.about-wrapper__content {
    width: 50%;
}
.about-wrapper__img {
    margin-left: -2%;
    margin-top: 7%;
    width: 57%;
}
.about_why-choose {
    padding: 60px 0 45px;
}
.about_why-choose .about-wrapper__content {
    position: relative;
    width: 65%;
    top: -25px;
    border-top: 10px solid #00203F;
    background: #fff;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%);
    padding: 25px 35px;
}
.intro-text span {
    font-weight: 700;
}
.intro-text:not(:last-child) {
    margin-bottom: 7px;
}
.intro-item {
    margin-left: 18px;
    list-style: decimal;
    margin-bottom: 5px;
}
h2.about-title_why-choose {
    margin-bottom: 12px;
}
h2.about-title_why-choose::before {
    display: none;
}
/* Service */
.services {
    background: linear-gradient(360deg, rgba(228, 228, 228, 0.9), rgba(228, 228, 228, 0.8)), url('../img/metal-texture-with-dust-scratches-cracks-textured-backgrounds.jpg') no-repeat;
    background-size: cover;
    position: relative;
    padding: 55px 0;
}
.services::before {
    content: "";
    position: absolute;
    display: block;
    width: 85%;
    height: 30%;
    z-index: 0;
    top: 0;
    left: 0;
    background-size: cover;
    border-top: 30px solid #00203F;
    border-right: 30px solid transparent;
    box-sizing: border-box;
    /*border-right: 38px solid transparent;*/
}
.services::after {
    content: "";
    position: absolute;
    display: block;
    width: 5px;
    height: 100px;
    z-index: 0;
    top: 0;
    left: 5%;
    background: #FFCB77;
}
h2.services-title {
    text-align: center;
    color: #00203F;
}
.services-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.services-item {
    padding: 15px;
    cursor: pointer;
    width: 32.3%;
    height: auto;
    transition: all 0.5s ease;
    cursor: default;
    border-bottom: 7px solid #8EC46B;
    border-right: 7px solid transparent;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%);
    position: relative;
    transition: all 0.5s ease;
}
.services-item:hover {
    transform: scale(1.01);
    transition: all 0.5s ease;
}
.services-item:nth-last-child(n+4) {
    border-bottom: 1px solid #001f3f73;
    border-bottom: 7px solid #8EC46B;
    margin-bottom: 15px;
}
.services-item__img {
    height: 80px;
    width: 80px;
    display: block;
    opacity: 0.9;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 10px;
    transition: all 0.5s ease;
}
.services-item__content {
    padding: 5px 10px;
    text-align: center;
}
.services-item__title {
    font-size: 27px;
    font-weight: 400;
    width: 100%;
    font-family: "Abril Fatface", serif;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #00203F;
    font-weight: 600;
    line-height: 120%;
    transition: all 0.5s ease;
}
.services-item__text a, .serving-content__text a, .intro-text a,
.whoWe-text a, .contact-content__text a, .FAQ-item__bottom a, .map-text a {
    text-decoration: underline;
    cursor: pointer;
    z-index: 1;
    position: relative;
}
/* Gallery */
.gallery {
    padding: 40px 0 0;
    background-size: 80%;
    position: relative;
    overflow: hidden;
}
.gallery::after {
    content: "";
    display: block;
    background: #8EC46B;
    z-index: -1;
    width: 47%;
    height: 50%;
    position: absolute;
    top: 0;
    /*border-top: 20px solid #00203F;
    border-right: 20px solid transparent;*/
}
.gallery::before {
    content: "";
    display: block;
    z-index: -1;
    width: 47%;
    height: 67%;
    position: absolute;
    bottom: 15%;
    right: -10%;
    border: 5px solid #FFCB77;
    border-right: 20px solid transparent;
    
}
h2.gallery-title {
    position: relative;
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: "Abril Fatface", serif;
}
h2.gallery-title::after {
    content: "";
    display: block;
    background: #FFCB77;
    width: 150px;
    height: 2px;
    position: absolute;
    bottom: -12px;
}
.gallery-text {
    color: #fff;
    font-style: italic;
    font-size: 18px;
    max-width: 400px;
    margin-bottom: 30px;
}
.gallery-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: 0;
}
.gallery-item:nth-child(1) {
    width: 58%;
}
.gallery-item:nth-child(2) {
    width: 41%;
}
.gallery-item img {
    width: 100%;
    border: #00203F 1px solid;
    box-sizing: border-box;
}
.gallery-item:first-child {
    margin-top: auto;
    margin-bottom: 0;
}
.gallery-item_img1 {
    margin-left: -7%;
}
.gallery-item_img2 {
    margin-bottom: 45px;
    margin-top: -40px;
}
.gallery-item_img3 {
    margin-left: 23%;

}
/* Testimonials */
.testimonials {
    padding: 55px 0;
}
.testimonials.services:before {
    left: auto;
    right: 0;
    border-left: 30px solid transparent;
    border-right: none;
}
.testimonials.services::after {
    right: 5%;
    left: auto;
}
.testimonials-title {
    text-align: center;
    color: #00203F;
    margin-bottom: 25px;
}
.testimonials-item {
    padding: 30px 15px;
    width: 100%;
    border-bottom: 4px solid #00203F;
    background: #8EC46B;
    color: #fff;
    margin-right: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonials-item::before {
    content: '';
    display: block;
    background: url('../img/comment-quote.png') no-repeat;
    background-size: cover;
    margin-bottom: 10px;
    opacity: 0.3;
    width: 40px;
    height: 40px;
}
.testimonials-item__author-stars {
    display: flex;
}
.testimonials-item__author {
    margin-top: 15px;
    align-items: center; 
    text-align: center;  
}
.star {
    background: url('../img/star.png') no-repeat;
    width: 22px;
    height: 22px;
    background-size: contain;
    display: inline-block;
}
.star:not(:last-child) {
    margin-right: 8px;
}
.testimonials-item__author-name {
    font-weight: 700;
    font-size: 20px;
    margin-top: 7px;
    display: block;
}
.testimonials-slider {
    position: relative;
    padding: 0 0 0 50px;
    min-width: 0;
    width: 100%;
}
.testimonials-item.slick-slide {
    left: 0;
}
.slick-track {
    display: flex;
}
.slick-track .slick-slide {
    display: flex;
    height: auto;
}
.slick-list {
    padding: 0 0 0 15px;
    position: relative;
    overflow: hidden;
}
.testimonials-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}
.testimonials-slider .slick-dots li:not(:last-child) {
    margin-right: 20px;
}
.testimonials-slider .slick-dots button {
    font-size: 0;
    background-color: #212529;
    border-radius: 50%;
    width: 7px;
    height: 7px;
    cursor: pointer;
}
.testimonials-slider .slick-dots .slick-active button {
    background-color: #8EC46B;
}
.testimonials-slider .slick-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1000000;
    font-size: 0;
    width: 20px;
    height: 40px;
    cursor: pointer;
    z-index: 1000;
}
.testimonials-slider .slick-arrow.slick-prev {
    left: 2px;
    background: url('../img/arrow-left.png') 0 0 / 100% no-repeat;
    transition: all 0.5s ease;
}
.testimonials-slider .slick-arrow.slick-prev:hover, .testimonials-slider .slick-arrow.slick-next:hover {
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
.testimonials-slider .slick-arrow.slick-next {
    right: 5px;
    background: url('../img/arrow-right.png') 0 0 / 100% no-repeat;
    transition: opacity 0.5s ease;
}
.testimonials-slider .slick-arrow.slick-next:hover {
    opacity: 0.8;
    transition: opacity 0.5s ease;
}
/* FAQ */
.FAQ {
    padding: 50px 0;
}
.container_FAQ {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.FAQ__title {
    max-width: 30%;
    font-family: "Abril Fatface", serif;
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
}
.FAQ__title:after {
    content: "";
    position: absolute;
    display: block;
    width: 3px;
    height: 100px;
    z-index: 0;
    top: 0;
    right: 5%;
    background: #FFCB77;
}
.FAQ-wrapper {
    width: 60%;
    margin: 0 auto;
}
.FAQ-item {
    border-bottom: #00203F 2px solid;
    border-left: #fff 7px solid;
    border-right: #fff 7px solid;
    box-sizing: border-box;
    border-radius: 2px;
    background: #fff;
    margin-bottom: 10px;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 10%);
}
.FAQ-item__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px 15px 25px;
    cursor: pointer;
}
.FAQ-item__title {
    font-size: 20px;
    max-width: 625px;
    letter-spacing: 0;
}
.FAQ-item__plus {
    cursor: pointer;
    transition: all 0.5s ease;
}
.FAQ-item__plus.active {
    transition: all 0.5s ease;
    transform: rotate(45deg);
}
.FAQ-item__plus span {
    display: block;
    width: 20px;
    height: 2px;
    background: #8EC46B;
    transform: skew(45deg);
}
.FAQ-item__plus span:first-child {
    transform: rotate(90deg);
}
.FAQ-item__plus span:last-child {
    margin-top: -2px;
}
.FAQ-item__bottom {
    padding: 0px 25px 22px 25px;
    font-size: 17px;
    line-height: 140%;
    opacity: 1 !important;
    transition: all 0.5s ease;
    display: none;
}
.FAQ-item__bottom span {
    display: block;
}
.FAQ-item__bottom.active, .faq-item__bottom.active {
    transition: all 0.5s ease;
    display: block;
}
/* Map */
.map {
    margin: 25px 0 0;
    background: linear-gradient(360deg, rgba(142, 196, 107, 0.9), rgba(142, 196, 107, 0.95)), url('../img/hardscaping-tallahassee.jpg') no-repeat;
    background-size: 52%;
    display: flex;
    justify-content: space-between;
}
.map-title {
    margin-bottom: 15px;
}
.map-title::after {
    content: "";
    display: block;
    background: #FFCB77;
    width: 150px;
    height: 2px;
    margin-top: 11px;
}
.map-content {
    padding: 45px 35px;
    border-right: 10px solid #00203F;
    border-bottom: 15px solid transparent;
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    color: #fff;
    position: relative;
}
/*.map-content::before {
    top: 1%;
    left: -2%;
    position: absolute;
    content: "";
    display: block;
    width: 40%;
    height: 40%;
    border: #fff solid 3px;
    border-bottom: 0;
    border-right: 0;
    margin-top: 11px;
}*/
.map iframe {
    width: 50%;
}
.map_contact-us {
    margin-top: 0;
}
.map_contact-us iframe {
    height: 500px;
}
.map_contact-us .map-content {
    padding: 30px 15px 30px 25px;
}
.map-cities {
    display: flex;
    flex-wrap: wrap;
}
.map-item {
    display: flex;
    width: 48%;
    margin-top: 10px;
}
.map-item::before {
    content: '';
    background: url('../img/local2.png') no-repeat;
    background-size: contain;
    width: 15px;
    margin-right: 7px;
}
.map__btn {
    max-width: 300px;
    font-size: 18px;
    background: transparent;
    color: #00203F;
    margin-top: 30px;
    border: 2px solid #fff;
    background: #fff;
}
.map__btn:hover {
    background: #fff;
    color: #8EC46B;
}
/* Footer */
.footer {
    padding: 40px 0 30px;
    background: #00203F;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
}
.footer-logo {
    transition: opacity ease 0.5s;
}
.footer-logo:hover {
    transition: opacity ease 0.5s;
    opacity: .8;
}
.footer-logo__img {
    width: 150px;
    object-fit: cover;
}
.footer-item__title {
    font-size: 22px;
    margin-bottom: 10px;
}
.footer-item:first-child {
    padding-right: 15px;
    border-right: 2px solid #8EC46B;
}
.footer-item_terms a {
    padding: 15px;
    border-left: 2px solid #8EC46B;
    font-weight: 600;
    display: block;
    transition: all 0.5s ease;
    color: #000;
}
a.footer-item__privacy {
    display: block;
    color: #fff;
}
.footer-item_terms a:hover {
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-item__address, .footer-item__phone, 
.footer-item__email, .footer-item__hours {
    display: flex;
    margin-bottom:7px;
}
.footer-item__address::before {
    content: '';
    display: block;
    background: url('../img/address-1.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 0.5%;
    margin-right: 10px;
}
.footer-item__phone::before {
    content: '';
    display: block;
    background: url('../img/telephone-call.png') no-repeat;
    width: 18px;
    background-size: contain;
    margin-top: 1.5%;
    margin-right: 10px;
}
.footer-item__email::before {
    content: '';
    display: block;
    background: url('../img/message.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 1.5%;
    margin-right: 10px;
}
.footer-item__hours::before {
    content: '';
    display: block;
    background: url('../img/clock.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 1.5%;
    margin-right: 10px;
}
.footer-item__rights {
    padding-top: 15px;
    font-size: 14px;
    font-weight: 400;
    border-top: 2px solid #8EC46B55;
    text-align: center;
    display: block;
}
/* Page Contact us Start */
.top-section_contact .top-section__content-wrapper {
    padding-bottom: 25px;
}
.top-section_contact::before {
    display: none;
} 
.top-section_contact .container_top-section {
    padding: 30px 20px 60px;
}
.top-form__contact-us {
    max-width: 1070px;
    margin: auto;
    padding: 20px 35px 45px;
    align-items: flex-start;
    height: fit-content;
    position: sticky;
}
.top-form__contact-us div {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.top-form__contact-us div input {
    width: 49%;
    padding: 17px 22px;
}
.top-form__btn_contact-us {
    margin: auto;
    width: 100%;
    max-width: 200px;
    margin-left: 0;
    border: #8EC46B solid 2px;
    margin-top: 20px;
}
.contact-us {
    position: relative;
    padding: 75px 0 50px;
    background: #ececec;
}
.contact-us::before {
    content: '';
    display: block;
    top: 0;
    right: 0;
    border-top: #00203F 30px solid;
    border-left: transparent 30px solid;
    width: 70%;
    margin-right: 0;
    margin-left: auto;
    position: absolute;
}
.map_contact-us .map-content {
    border-right: 0;
}
.contact-us__title {
    color: #8EC46B;
    font-size: 37px;
    text-align: center;
    font-weight: 700;
    display: block;
    margin: auto;
    margin-bottom: 30px;
}
.contact-us__wrapper {
    max-width: 1070px;
    margin: auto;
}

/*Page About Start*/
.about_about-page {
    padding-top: 35px;
    color: #000;
}
.about_about-page .about-wrapper__content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.about_about-page::before {
    content: '';
    display: block;
    top: 0;
    right: 0;
    border-top: #00203F 30px solid;
    border-left: transparent 30px solid;
    width: 43%;
    margin-right: 0;
    margin-left: auto;
    position: absolute;
}
.about_about-page .about-wrapper__paragraph {
    width: 65%;
}
/* Page Services Start */
.bread-crumbs {
    font-size: 15px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
.top-section_services .container_top-section {
    padding-bottom: 70px;
    padding-top: 25px;
}
.top-section_services::before {
    display: none;
}
.bread-crumbs__first {
    opacity: 0.8;
}
.bread-crumbs__line {
    display: block;
    margin: -18px 10px 0;
    width: 20px;
    height: 1px;
    font-size: 25px;
    color: #8EC46B;
}
.about_servicesPage {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/landscape-design-installation-tallahassee.jpg) no-repeat;
    background-position: center right;
    background-size: contain;
    position: relative;
}
.about_servicesPage::before {
    content: '';
    display: block;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
    width: 100%;
    height: 150px;
    position: absolute;
    top: 0;
}
.about_servicesPage .about-wrapper__content {
    padding: 55px 0;
    width: 65%;
} 
.about_servicesPage h1.about-title {
    position: relative;
    margin-right: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 140%;
    color: #00203F;
    font-size: 30px;
}
.about_servicesPage h1.about-title::before {
    content: "";
    display: block;
    background: #FFCB77;
    width: 150px;
    height: 2px;
    position: absolute;
    bottom: -7px;
    left: 0;
}
.intro-title {
    font-size: 23px;
    margin-bottom: 5px;
}
.intro-list {
    margin-left: 17px;
    list-style: disc;
}
.intro-list li {
    margin-bottom: 5px;
}
.about_servicesPage-maintanence {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/lawn-care-tallahassee.jpg) no-repeat;
    background-position: center right;
    background-size: contain;
}
.about_servicesPage-irrigation {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/irrigation-tallahassee.jpg) no-repeat;
    background-position: center right;
    background-size: contain;
}
.intro-list_flex {
    display: flex;
    flex-wrap: wrap;
}
.intro-list_flex li {
    width: 46%;
}
/* Page Services End */

/*Privacy*/
.header_privacy {
    background: #454545;
    color: #ffffff;
}
.privacy {
    padding: 15px 0;
}
.links {
    padding: 30px 0;
}
.links-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.links-item {
    width: 30%;
}
/* Responsive */
@media (max-width: 1200px) {
    h2.title {
        font-size: 36px;
    }
    .container {
        max-width: 984px;
        padding: 0 18px;
        margin: 0 auto;
    }
    .header-logo__img {
        width: 160px;
        height: 54px;
        margin-left: -49px;
    }
    .header-logo::after {
        left: 78%;
    }
    .header-book {
        font-size: 20px;
    }
    .top-section__title {
        font-size: 49px;
    }
    .about_servicesPage {
        background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/landscape-design-installation-tallahassee.jpg) no-repeat;
        background-size: cover;
    }
    .about_servicesPage .about-wrapper__content {
        width: 75%;
    } 
    .about_servicesPage-maintanence {
        background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/lawn-care-tallahassee.jpg) no-repeat;
        background-size: cover;
    }
    .about_servicesPage-irrigation {
        background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/irrigation-tallahassee.jpg) no-repeat;
        background-size: cover;
    }
    .about_servicesPage h1.about-title, .about_servicesPage h2.about-title {
        font-size: 30px;
    } 
    .services-item__title {
        font-size: 25px;
    }
    .about-wrapper__img {
        margin-left: -21%;
    }
    h3.title {
        font-size: 28px;
    }
    .FAQ__title:after {
        right: 2%;
    }
    .map {
        background-size: 70%;
    }
    .footer-item__title {
        font-size: 19px;
    }
    .footer-wrapper {
        flex-wrap: wrap;
    }
    /*Page Contact Start*/
    
}
@media (max-width: 991px) {
    .container {
        max-width: 728px;
        padding: 0 20px;
    }
    h2.title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    h3.title {
        font-size: 26px;
    }
    .header-logo {
        width: 10%;
    }
    .header-book {
        display: none;
    }
    .top-section::before {
        display: none;
    }
    .header nav {
        position: relative;
    }
    .menu-close {
        width: 27px;
        height: 27px;
        position: fixed;
        top: 35px;
        right: 26px;
        z-index: 1004;
        cursor: pointer;
    }
    .menu-close span {
        display: block;
        width: 35px;
        height: 3px;
        background: #ffffff;
        transform: rotate(45deg);
    }
    .menu-close span:last-child {
        transform: rotate(-45deg);
        margin-top: -3px;
    }
    .header-menu {
        display: none;
        transition: all 0.5s ease;
    }
    .header-menu.active {
        display: block;
        transition: all 0.5s ease;
    }
    .header-menu__items {
        top: 0;
        left: 0;
        position: fixed;
        justify-content: flex-start;
        padding: 35px 15px;
        flex-direction: column;
        background: #8EC46B;
        width: 100%;
        height: 60%;
        border-radius: 5px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 1003;
        margin-left: 0;
        padding-top: 12%;
        text-align: center;
    }
    .header-menu__item:not(:last-child) {
        margin-left: 0;
    }
    .header-submenu {
        transform: translateX(-32%);
    }
    .menu-burger {
        margin-top: 12px;
        width: min-content;
        display: block;
        margin-left: auto;
        cursor: pointer;
    }
    .menu-burger span {
        display: block;
        width: 35px;
        height: 3px;
        background: #fff;
    }
    .menu-burger span:not(:last-child) {
        margin-bottom: 6px;
    }
    .header-menu__item {
        font-size: 16px;
    }
    .header-info__phone {
        display: none;
    }
    .header-menu__item_phone {
        display: block;
    }
    .header-info__phone.header-info__phone_burger {
        display: block;   
        padding: 0;
    }
    .header-info__phone::before {
        display: none;
    }
    .top-section {
        background-position: center bottom;
    }
    .top-form__title {
        font-size: 25px;
        margin-top: 10px;
    }
    .top-form_wrapper {
        width: 100%;
    }
    .top-section__wrapper {
        margin: auto;
        flex-wrap: wrap;
    }
    .top-section__content-wrapper {
        padding: 35px 0 0;
        max-width: none;
    }
    .top-form_wrapper {
        margin: 15px auto 0;
        padding: 0;
        width: 93%;
    }
    .container_top-section {
        padding: 30px 0 0;
    }
    .top-section__title {
        margin-bottom: 15px;
    }
    .top-section__text {
        margin-bottom: 60px;
    }
    .top-form {
        margin: auto;
        max-width: 550px;
        margin-bottom: 20px;
    }
    .about {
        padding: 80px 0 55px;
    }
    .about-wrapper {
        flex-wrap: wrap;
    }
    .about-wrapper__content {
        width: 100%;
        padding: 0;
    }
    h2.about-title {
        text-align: center;
    }
    h2.about-title::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-wrapper__paragraph {
        text-align: justify;
    }
    .about_why-choose .about-wrapper__content {
        padding: 15px 20px;
        width: 83%;
    }
    .about-wrapper__img {
        max-width: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
        margin-left: 12%;
        margin-top: -25%;
        height: 400px;
    }
    .services::before {
        height: 25%;
    }
    .container_why-choose {
        padding-top: 25px;
    }
    .services-item {
        width: 48.5%;   
    }
    .services-item:nth-last-child(n+3) {
        margin-bottom: 25px;
    }
    .contacts-item__btn_map {
        margin-left: auto;
    }
    .testimonials-item__author {
        flex-wrap: wrap;
    }
    .testimonials-item__author-name {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }
    .FAQ__title:after {
        right: 5%;
    }
    .FAQ-wrapper {
        width: 63%;
        margin-right: 0;
        margin-left: 10px;
    }
    .FAQ-item__top {
        padding: 15px 20px;
    }
    .FAQ-item__bottom {
        padding: 15px 65px 15px 20px;
        font-size: 15px;
    }
    .FAQ-item:not(:last-child) {
        margin-bottom: 17px;
    }
    .FAQ-item__title {
        font-size: 17px;
        max-width: 415px;
    }
    .map {
        background-size: 100%;
    }
    .map-content {
        max-width: 425px;
    }
    .footer-wrapper {
        flex-wrap: wrap;
    }
    .footer-item {
        text-align: center;
        width: 100%;
        border: 0;
    }
    .footer-item:first-child {
        border: 0;
        padding-right: 0;
    }
    .footer-item__address, .footer-item__phone, .footer-item__email, .footer-item__hours {
        justify-content: center;
        margin-bottom: 2px;
    }
    .footer-item:not(:last-child) {
        margin-bottom: 30px;
    }
    .footer-item__title {
        margin-bottom: 5px;
    }
    .footer-item_terms a {
        border: 0;
        padding: 0;
    }
    /*Page Contact Us*/
    .contact-us__title {
        font-size: 30px;
    }
    .contact-us__title {
        margin-bottom: 30px;
    }
    .top-form__contact-us {
        padding-bottom: 20px;
    }
    .map-content_contact {
        margin: auto;
        transform: translateX(0);
    }
    .about_servicesPage {
        background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/landscape-design-installation-tallahassee.jpg) no-repeat;
        background-size: cover;
        padding: 0;
    }
    .about_servicesPage h2.about-title {
        text-align: left;
    }
    .about_servicesPage h1.about-title, .about_servicesPage h2.about-title {
        font-size: 27px;
    } 
    .about_servicesPage h2.about-title::before {
        left: 0;
        transform: none;
    }
    .about_servicesPage-maintanence {
        background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/lawn-care-tallahassee.jpg) no-repeat;
        background-size: cover;
    }
    .about_servicesPage-irrigation {
        background: linear-gradient(270deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/irrigation-tallahassee.jpg) no-repeat;
        background-size: cover;
    }
}
@media (max-width: 797px) {
    .header-logo {
        width: 8%;
        height: 101%;
    }
    .header-logo__img {
        width: 126px;
        height: 42px;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
    .container {
       max-width: 727px;
       padding: 0 20px; 
    }
    .btn {
        font-size: 18px;
    }
    h2.title {
        font-size: 30px;
        margin-bottom: 20px;
        text-align: center;
    }
    .header {
        background: #ffffff;
    }
    .header-menu__items {
        padding: 75px 0 15px;
    }
    .header-logo {
        position: static;
        width: 100%;
        height: 77px;
    }
    .header-logo::before {
        height: 63px;
        width: 82%;
        background: transparent;
        border-bottom: 15px solid #00203F;
        border-right: 15px solid transparent;
        left: 0;
    }
    .header-logo::after {
        display: none;
    }
    .header-logo__img {
        transform: rotate(0deg);
        margin: 0 auto;
        padding: 4px 15px 7px;
        width: 180px;
        height: 59px;
    }
    .menu-burger {
        margin-top: 27px;
    }
    .menu-burger span {
        background: #00203F;
    }
    .menu-close {
        top: 44px;
        right: 25px;
    }
    .container_top-section {
        padding-top: 60px;
    }
    .top-section__title {
        font-size: 40px;
        max-width: none;
    }
    .top-section__title span {
        font-size: 19px;
    }
    .top-section__content-wrapper {
        padding-bottom: 15px;
    }
    .top-form__title {
        font-size: 22px;
		color: #8EC46B;		
    }
    .top-form {
        max-width: none;
    }
    .top-form_wrapper {
        width: 100%;
        margin-top: 7px;
        padding: 14px auto 0;
    }
    .about {
        padding-top: 60px;
    }
    .services-item__title {
        font-size: 22px;
    }
    .about-wrapper__img {
        margin-top: -47%;
    }
    .container_why-choose {
        padding-top: 0px;
    }
    .testimonials.services:before, .about_about-page::before {
        width: 85%;
        border-top: 15x solid #00203F;
        border-left: 15px solid transparent;
    }
    .services:before {
        border-top: 15px solid #00203F;
        border-right: 15px solid transparent;
    }
    .testimonials-title {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .testimonials-slider {
        padding: 0 40px 0 40px;
    }
    .slick-list {
        padding-left: 20px;
    }
    .testimonials-item__author {
        flex-wrap: nowrap;
    }
    .testimonials-item__author-name {
        margin-left: 10px;
        margin-top: 0px;
        width: fit-content;
    }
    .FAQ-wrapper {
        width: 65%;
    }
    h3.FAQ__title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .FAQ-item:not(:last-child) {
        margin-bottom: 14px;
    }
    .FAQ-item__top {
        padding: 10px 15px;
    }
    .FAQ-item__bottom {
        padding: 10px 65px 10px 15px;
    }
    .bread-crumbs {
        margin-bottom: 30px;
    }
    /*Page about start*/
    .about_about-page .about-wrapper__content {
        flex-wrap: wrap;
    }
    .about_about-page .about-wrapper__paragraph {
        width: 100%;
        margin-bottom: 15px;
    }
    .about_servicesPage {
        padding: 0 0 23% 0;
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/landscape-design-installation-tallahassee.jpg) no-repeat;
        background-size: contain;
        background-position: bottom center;
    }
    .about_servicesPage .about-wrapper__content {
        padding: 45px 0;
        width: 100%;
    }
    .about_servicesPage-maintanence {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/lawn-care-tallahassee.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .about_servicesPage-irrigation {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/irrigation-tallahassee.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .map-content {
        padding: 30px 22px;
    }
}
@media (max-width: 702px) { 
    .services, .testimonials, .about {
        padding: 55px 0;
    }
    .top-section__btn {
        font-size: 16px;
        padding: 22px 15px;
    }
    .about_why-choose .about-wrapper__content {
        width: 93%;
    }
    .about-wrapper__img {
        width: 93%;
        margin-top: -57%;
        margin-left: 9%;
    }
    h3.FAQ__title {
        font-size: 22px;
    }
    .about_servicesPage {
        padding: 0 0 33% 0;
        border-bottom: 2px solid #fff;
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/landscape-design-installation-tallahassee.jpg) no-repeat;
        background-size: contain;
        background-position: bottom center;
    }
    .about_servicesPage-maintanence {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/lawn-care-tallahassee.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .about_servicesPage-irrigation {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/irrigation-tallahassee.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .map {
        flex-wrap: wrap;
        background-size: cover;
    }
    .map iframe {
        width: 100%;
        height: 300px;
        border-top: 10px solid #00203F !important;
    }
    .map-content {
        max-width: 500px;
        border-bottom: none;
        border-right: none;
        margin: 0 auto;
    }
    .intro-list_flex li {
        width: 49.5%;
    }
}
@media (max-width: 600px) { 
    h2.title {
        margin-bottom: 20px;
        font-size: 26px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 38px;
    }
    h3.title {
        font-size: 24px;
    }
    .top-section {
        background: linear-gradient(360deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0)), url('../img/complete-landscaping-tallahassee-small.jpg') no-repeat;
        background-size: cover;
        background-position: center;
    }
    .top-section__content-wrapper {
        padding-top: 15px;
        padding-bottom: 0;
    }
    .top-section__text {
        font-size: 17px;
    }
    .top-form__title {
        font-size: 25px;
        margin-bottom: 15px;
        margin-top: 15px;
    }
    .services::before {
        height: 11%;
    }
    .services-item {
        width: 100%;
    }
    .services-item:not(:last-child) {
        margin-bottom: 20px;
    }
    .services-item__title {
        font-size: 20px;
    }
    .about_why-choose .about-wrapper__content {
        width: 97%;
    }
    .intro-title {
        font-size: 20px;
    }
    .testimonials-slider {
        padding: 0 25px 0 25px;
    }
    .slick-list {
        padding-left: 26px;
    }
    .container_FAQ {
        flex-wrap: wrap;
    }
    h3.FAQ__title, .FAQ-wrapper {
        max-width: none;
        width: 100%;
    }
    h3.FAQ__title {
        margin-bottom: 35px;
        text-align: center;
    }
    .FAQ__title:after {
        height: 3px;
        width: 130px;
        bottom: -14px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .gallery::after {
        width: 100%;
        height: 30%;
    }
    .gallery::before {
        width: 81%;
        height: 67%;
        right: 8%;
        bottom: 11%;
        border: 3px solid #FFCB77;
    }
    h2.gallery-title {
        margin-bottom: 20px;
    }
    h2.gallery-title::after {
        left: 50%;
        transform: translateX(-50%);
        bottom: -11px;
        width: 100px;
    }
    .gallery-text {
        text-align: center;
        margin: 0 auto 30px;
    }
    .gallery-wrapper {
        flex-wrap: wrap;
    }
    .gallery-item:nth-child(1), .gallery-item:nth-child(2) {
        width: 100%;
    }
    .gallery-item .gallery-item_img2, .gallery-item .gallery-item_img3 {
        width: 87%;
    }
    .gallery-item_img1 {
        margin-left: 0%;
    }
    .gallery-item_img2 {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .gallery-item_img3 {
        margin-right: 0;
        margin-left: 13%;
    }
    .footer-logo__img {
        width: 130px;
    }
    .about_servicesPage {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/landscape-design-installation-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom center;
    }
    .about_servicesPage-maintanence {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/lawn-care-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .about_servicesPage-irrigation {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/irrigation-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .about_servicesPage h1.about-title, .about_servicesPage h2.about-title {
        font-size: 25px;
    }
    .contact-us {
        padding-top: 60px;
    }
    .top-form__contact-us {
        padding: 7px;
        padding-bottom: 7px;
    }
    .intro-list_flex li {
        width: 100%;
    }
    .links-item {
        width: 100%;
    }
}
@media (max-width: 525px) {
    .about-wrapper__img {
        content: url('../img/landscape-lighting-small.jpg');
    }
    .gallery-item_img1 {
        content: url('../img/finished-landscaping-tallahassee-fl-small.jpg');
    }
    .gallery-item .gallery-item_img2 {
        content: url('../img/hardscaping-tallahassee-small.jpg');
    }
    .gallery-item .gallery-item_img3 {
        content: url('../img/sod-installation-leon-small.jpg');
    }
}
@media (max-width: 481px) {
    h2.title {
        font-size: 23px;
    }
    .header-logo {
        width: 191px;
    }
    .header-logo__img {
        width: 191px;
        height: 61px;
    }
    .menu-burger span {
        margin-left: auto;
    }
    .menu-burger span:nth-child(2) {
        width: 28px;
    }
    .menu-burger span:nth-child(3) {
        width: 21px;
    }
    .top-section__title {
        margin-bottom: 10px;
    }
    .top-section__title span {
        font-size: 18px;
    }
    .top-form__input {
        margin-bottom: 15px;
    }
    h2.gallery-title {
        margin-bottom: 20px;
    }
    .about_servicesPage {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/landscape-design-installation-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom center;
    }
    .about_servicesPage-maintanence {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/lawn-care-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .about_servicesPage-irrigation {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/irrigation-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .about_servicesPage h1.about-title, .about_servicesPage h2.about-title {
        font-size: 21px;
    } 
}
@media (max-width: 450px) {
    body {
        font-size: 16px;
    }
    .container {
        max-width: none;
        padding: 0 12px;
    }
    .container_top-section {
        padding-top: 60px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 34px;
    }
    .top-section__title span {
        font-size: 17px;
    }
    .top-section__text {
        font-size: 16px;
    }
    .about-wrapper__paragraph {
        text-align: left;
    }
    .about_why-choose .about-wrapper__content {
        padding-right: 30px;
    }
    .testimonials-slider .slick-dots {
        margin-top: 12px;
    }
    .services, .testimonials, .about {
        padding: 55px 0 45px;
    }
    .services-item__img {
        margin-bottom: 9px;
    }
    .services-item__title {
        font-size: 19px;
    }
    .testimonials-title {
        max-width: 80%;
        margin: 0 auto 20px;
    }
    .testimonials-slider {
        padding: 0 10px;
    }
    .FAQ {
        padding: 45px 0;
    }
    h3.FAQ__title {
        font-size: 23px;
    }
    .FAQ-item__title {
        max-width: 240px;
    }
    .FAQ-item__top {
        padding: 8px 10px;
    }
    .FAQ-item__bottom {
        font-size: 14px;
        padding: 8px 65px 8px 10px;
    }
    .bread-crumbs {
        margin-bottom: 17px;
    }
    .footer-item__hours {
        display: flex;
        flex-direction: column;
    }
    .footer-item__hours span {
        display: block;
    }
    .footer-item__hours::before {
        width: 18px;
        height: 18px;
        margin-left: 48%;
    }
    .top-form__contact-us {
        padding: 20px;
    }
    .about_servicesPage {
        padding: 0 0 35% 0;
        background: linear-gradient(360deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/landscape-design-installation-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom center;
    }
    .about_servicesPage .about-wrapper__content {
        padding-top: 30px;
    }
    .about_servicesPage-maintanence {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/lawn-care-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .about_servicesPage-irrigation {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1)), url(../img/irrigation-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .intro-list_flex {
        justify-content: space-between;
    }
}
@media (max-width: 400px) {
    h2.top-section__title, .top-section__title {
        font-size: 32px;
    }
    .top-section__title span {
        font-size: 16px;
    }
    .testimonials-item__author {
        flex-wrap: wrap;
        justify-content: center;
    }
    .testimonials-item__author-name {
        margin: 10px auto 0;
        text-align: center;
    }
    .about_servicesPage {
        padding: 0 0 35% 0;
        background: linear-gradient(360deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/landscape-design-installation-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom center;
    }
    .about_servicesPage-maintanence {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/lawn-care-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .about_servicesPage-irrigation {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/irrigation-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .map_contact-us .map-content { 
        padding: 30px 20px;
    }
}
@media (max-width: 360px) {
    body {
        font-size: 15px;
    }
    h2.title, h3.title { 
        font-size: 21px;
    }
    .btn {
        font-size: 15px;
        padding: 12px;
    }
    .header-logo {
        width: 170px;
        height: 72px;
    }
    .header-logo__img {
        width: 170px;
        height: 54px;
    }
    .header-logo::before {
        height: 58px;
    }
    .menu-burger span {
        height: 2px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 26px;
    }
    .top-section__title span {
        font-size: 15px;
    }
    .top-section__btn {
        max-width: 250px;
    }
    .top-form__title {
        font-size: 20px;
    }
    .top-form__input, .top-form__textarea {
        padding: 10px 7px;
    }
    .services-item__title {
        font-size: 18px;
    }
    h2.gallery-title {
        margin-bottom: 17px;
    }
    h2.gallery-title::after {
        bottom: -8px;
    }
    h3.FAQ__title {
        margin-bottom: 25px;
    }
    .FAQ__title:after {
        bottom: -10px;
    }
    .map iframe {
        height: 200px;
    }
}
@media (max-width: 310px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .header-logo {
        height: 60px;
    }
    .header-logo__img {
        width: 155px;
        height: 50px;
    }
    .header-logo::before {
        height: 50px;
        width: 74%;
        border-bottom: 10px solid #00203F;
        border-right: 10px solid transparent;
    }
    .menu-burger {
        margin-top: 19px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 23px;
    }
    .top-section__title span {
        font-size: 15px;
    }
    .about_servicesPage {
        padding: 0 0 35% 0;
        background: linear-gradient(360deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/landscape-design-installation-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom center;
    }
    .about_servicesPage-maintanence {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/lawn-care-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .about_servicesPage-irrigation {
        background: linear-gradient(360deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.985), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1)), url(../img/irrigation-tallahassee-small.jpg) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
}