body {
  font-family: "Outfit", sans-serif;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "PT Serif", serif;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
}

.button {
  display: inline-block;
  padding: 14px 32px;
  outline: none;
  border: 2px solid;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 55px;
  transition: 0.3s ease;
}
.button.small {
  padding: 8px 16px;
  font-size: 12px;
}
.button.primary {
  color: #ffffff;
  border-color: #9cc312;
  background-color: #9cc312;
}
.button.primary:hover {
  color: #ffffff;
  border-color: #89ac10;
  background-color: #89ac10;
}
.button.primary.outline {
  color: #9cc312;
}
.button.primary.outline:hover {
  color: #ffffff;
  border-color: #89ac10;
  background-color: #89ac10;
}
.button.secondary {
  color: #1D1D1D;
  border-color: #ffffff;
  background-color: #ffffff;
}
.button.secondary:hover {
  color: #1D1D1D;
  border-color: #ffffff;
  background-color: #ffffff;
}
.button.secondary.outline {
  color: #ffffff;
}
.button.secondary.outline:hover {
  color: #1D1D1D;
  border-color: #ffffff;
  background-color: #ffffff;
}
.button.outline {
  background: none;
}

.header .header-main {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  right: 0;
}
.header .header-main .header-top {
  color: #ffffff;
  padding: 40px 0;
}
.header .header-main .header-top .header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-main .header-top .header-top-inner .header-logo {
  font-size: 26px;
  font-weight: 700;
}
.header .header-main .header-top .header-top-inner .header-logo span {
  color: #9cc312;
}
.header .header-main .header-top .header-top-inner .header-logo .header-logo-img {
  height: 36px;
}
.header .header-main .header-top .header-top-inner .header-contacts {
  display: flex;
  align-items: center;
}
.header .header-main .header-top .header-top-inner .header-contacts .header-contact {
  margin-left: 30px;
  display: flex;
  align-items: center;
}
.header .header-main .header-top .header-top-inner .header-contacts .header-contact.header-tel .icon, .header .header-main .header-top .header-top-inner .header-contacts .header-contact.header-email .icon {
  display: inline-block;
  margin-right: 15px;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header .header-main .header-top .header-top-inner .header-contacts .header-contact.header-tel .icon {
  background-image: url("../img/icons/phone.png");
}
.header .header-main .header-top .header-top-inner .header-contacts .header-contact.header-email .icon {
  background-image: url("../img/icons/mail.png");
}
.header .header-main .header-top .header-top-inner .header-contacts .header-contact .header-contact-text {
  display: flex;
  flex-direction: column;
}
.header .header-main .header-top .header-top-inner .header-contacts .header-contact .header-contact-text .title {
  color: #a8bbac;
  font-size: 14px;
}
.header .header-main .header-top .header-top-inner .header-nav-toggle {
  display: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  background-image: url("../img/icons/menu.png");
  background-size: 100%;
  background-position: center;
}
.header .header-main .header-nav .header-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 55px;
}
.header .header-main .header-nav .header-nav-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style-type: none;
}
.header .header-main .header-nav .header-nav-menu .header-nav-item .header-nav-item-link {
  position: relative;
  display: block;
  padding: 10px 26px;
  color: #1D1D1D;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease;
}
.header .header-main .header-nav .header-nav-menu .header-nav-item .header-nav-item-link:hover, .header .header-main .header-nav .header-nav-menu .header-nav-item .header-nav-item-link.active {
  color: #9cc312;
}
.header .header-main .header-nav .header-nav-menu .header-nav-item .header-nav-item-link:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #9cc312;
  transform: translateX(-50%);
}
.header .header-main .header-nav .header-nav-button {
  display: block;
  padding: 18px 33px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #9cc312;
  border-radius: 0 55px 55px 0;
  transition: 0.3s ease;
}
.header .header-main .header-nav .header-nav-button:hover {
  background-color: #89ac10;
}

.home-slide {
  position: relative;
  background-position: center;
  background-image: url("../img/bg-hq.webp");
  background-size: cover;
  background-color: #13361e;
}
.home-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.home-slide .home-slide-inner {
  position: relative;
  z-index: 1;
  display: flex;
  padding-top: 100px;
  min-height: 790px;
  color: #ffffff;
  align-items: center;
}
.home-slide .home-slide-inner .home-slide-content {
  max-width: 800px;
}
.home-slide .home-slide-inner .home-slide-content h1 {
  margin-bottom: 25px;
  font-size: 66px;
  line-height: 77px;
}
.home-slide .home-slide-inner .home-slide-content p {
  font-size: 20px;
  font-weight: 300;
}
.home-slide .home-slide-inner .home-slide-content .slide-buttons {
  margin-top: 40px;
}
.home-slide .home-slide-inner .home-slide-content .slide-buttons > .button:not(:last-of-type) {
  margin-right: 10px;
}

.page .page-header {
  position: relative;
  padding: 260px 0 80px;
  background-image: url("../img/bg2.webp");
  background-size: cover;
  background-color: #13361e;
}
.page .page-header.not-found {
  background-position: center;
  background-image: url("../img/bg3.webp");
}
.page .page-header.not-found {
  background-position: center;
  background-image: url("../img/bg3.webp");
}
.page .page-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.page .page-header .page-heading {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 55px;
}
.page .page-content {
  padding: 50px 0;
  font-size: 18px;
  line-height: 32px;
}
.page .page-content ul {
  padding: 0;
  list-style-type: none;
}
.page .page-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.page .page-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f0da";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: #9cc312;
}

.section {
  padding: 100px 0;
}
.section.section-border {
  border-bottom: 1px solid #f6f6f6;
}
.section.section-bg {
  background-color: #f8f3ee;
  background-repeat: repeat;
  background-size: contain;
  background-image: url("../img/bg-leaf-pattern.png");
}
.section .section-title {
  margin-bottom: 40px;
  font-size: 44px;
  text-align: center;
}

.about-text-wrap {
  text-align: center;
}
.about-text-wrap .about-text {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 30px;
}

.service .service-wrapper {
  padding: 20px;
  height: 100%;
  border: 1px solid #efe9e3;
}
.service .service-wrapper .service-title {
  margin-bottom: 20px;
  height: 50px;
  font-size: 20px;
}

.heading-with-top-text {
  text-align: center;
}
.heading-with-top-text .top {
  color: #9cc312;
  font-size: 12px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price-list {
  width: 100%;
  margin-bottom: 30px;
}
.price-list td, .price-list th {
  padding: 10px;
  border-bottom: 1px solid #efe9e3;
}
.price-list td:nth-of-type(2) {
  color: #9cc312;
}
.price-list .section-row th {
  padding-top: 40px;
}

.form-input {
  padding: 10px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #efe9e3;
}

.contact-form {
  padding: 30px;
  border: 1px solid #efe9e3;
  border-radius: 6px;
  background-color: #ffffff;
}
.contact-form .contact-form-header {
  margin-bottom: 30px;
}

.contact-boxes {
  padding: 20px;
}

.contact-box {
  margin-bottom: 40px;
  display: flex;
}
.contact-box .icon {
  display: inline-block;
  margin-bottom: 6px;
  width: 45px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-box.contact-box-address .icon {
  background-image: url("../img/icons/pin.png");
}
.contact-box.contact-box-hours .icon {
  background-image: url("../img/icons/wall-clock.png");
}
.contact-box.contact-box-tel .icon {
  background-image: url("../img/icons/phone.png");
}
.contact-box.contact-box-email .icon {
  background-image: url("../img/icons/mail.png");
}
.contact-box .contact-box-text {
  margin-left: 15px;
  font-size: 20px;
  font-weight: 500;
  align-self: center;
}

.our-services .our-services-tabs .our-service-tab {
  display: none;
}
.our-services .our-services-tabs .our-service-tab.toggled {
  display: block;
}

.our-services-section {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid #efe9e3;
}
.our-services-section .service-section-title {
  margin-bottom: 40px;
}
.our-services-section .service-section-items .service-item .service-item-title {
  position: relative;
  padding-left: 25px;
  margin: 0;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
}
.our-services-section .service-section-items .service-item .service-item-title::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f0da";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: #9cc312;
}

.section.husqvarna {
  padding: 40px 0;
  border-top: 1px solid #f6f6f6;
}

.we-use-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.we-use-wrap h4 {
  margin: 0;
}
.we-use-wrap img {
  height: 50px;
}

.not-found-content {
  padding: 60px 0;
  text-align: center;
}
.not-found-content .not-found-text {
  margin-bottom: 20px;
  font-size: 22px;
}

.rental {
  display: flex;
  margin: 0 -10px;
  flex-wrap: wrap;
}
.rental .rental__item {
  padding: 10px;
  flex: 0 0 33.3%;
}
.rental .rental__item .rental__item__wrap {
  padding: 20px;
  height: 100%;
  text-align: center;
  border: 1px solid #efe9e3;
  border-radius: 5px;
}
.rental .rental__item .rental__item__wrap .rental__item__image {
  margin-bottom: 15px;
}
.rental .rental__item .rental__item__wrap .rental__item__image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.rental .rental__item .rental__item__wrap .rental__item__title {
  margin-bottom: 10px;
  color: #13361e;
  font-size: 16px;
  line-height: 26px;
}
.rental .rental__item .rental__item__wrap .rental__item__desc {
  font-size: 12px;
  line-height: 17px;
}
.rental .rental__item .rental__item__wrap .rental__item__price {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #efe9e3;
}
.rental .rental__item .rental__item__wrap .rental__item__price .rental__price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rental .rental__item .rental__item__wrap .rental__item__price .rental__price .price__days {
  color: #a8bbac;
}
.rental .rental__item .rental__item__wrap .rental__item__price .rental__price .price__amount {
  color: #9cc312;
  font-weight: 600;
}

.items-for-sale .item {
  margin-bottom: 20px;
}
.items-for-sale .item .item__wrap {
  display: flex;
  padding: 20px;
  border: 1px solid #efe9e3;
  border-radius: 5px;
  align-items: center;
}
.items-for-sale .item .item__wrap .item__title {
  width: 30%;
  margin: 0;
  color: #13361e;
  font-size: 18px;
}
.items-for-sale .item .item__wrap .item__desc {
  width: 40%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.items-for-sale .item .item__wrap .item__price {
  margin-left: auto;
  color: #9cc312;
  font-weight: 600;
}

.news-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.news article.new {

}

.news article.new img {
width: 100%;
height: 200px;
border-radius: 5px;
border: 1px solid #efe9e3;
object-fit: cover;
}

.news article.new .new-title {
margin: 20px 0 20px;
}

.news article.new a {
    font-size: 12px;
    color: #9cc312;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer {
  padding: 40px 0;
  color: #a8bbac;
  background-color: #13361e;
}
.footer .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-main .footer-madeby {
  color: #a8bbac;
  text-decoration: none;
}
.footer .footer-main .footer-madeby .footer-madeby-logo {
  margin-left: 8px;
  height: 20px;
}

@media screen and (max-width: 1024px) {
  .header .header-main .header-top .header-top-inner .header-contacts {
    display: none;
  }
  .header .header-main .header-top .header-top-inner .header-nav-toggle {
    display: block;
  }
  .header .header-main .header-nav {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    top: 100px;
  }
  .header .header-main .header-nav.show {
    display: block;
  }
  .header .header-main .header-nav .header-nav-inner {
    position: relative;
    flex-direction: column;
    border-radius: 0 0 25px 25px;
  }
  .header .header-main .header-nav .header-nav-inner::before {
    position: absolute;
    right: 16px;
    top: -8px;
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
  }
  .header .header-main .header-nav .header-nav-inner .header-nav-menu {
    flex-direction: column;
  }
  .header .header-main .header-nav .header-nav-inner .header-nav-button {
    width: 100%;
    padding: 18px 30px;
    border-radius: 0 0 25px 25px;
  }
  .button {
    padding: 12px 24px;
    font-size: 13px;
  }
  .section .section-title {
    font-size: 33px;
  }
  .page .page-header {
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .page .page-header .page-heading {
    font-size: 39px;
  }
  .home-slide .home-slide-inner {
    min-height: 520px;
    padding-top: 80px;
  }
  .home-slide .home-slide-inner .home-slide-content h1 {
    font-size: 44px;
    line-height: 55px;
  }
  .items-for-sale .item {
    margin-bottom: 20px;
  }
  .items-for-sale .item .item__wrap {
    flex-wrap: wrap;
  }
  .items-for-sale .item .item__wrap .item__title {
    width: 100%;
  }
  .items-for-sale .item .item__wrap .item__desc {
    width: 100%;
    margin: 10px 0;
  }
  .rental .rental__item {
    flex: 100%;
  }
  .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .footer-main {
    flex-direction: column;
    text-align: center;
  }
  .footer .footer-main .footer-copyright {
    margin-bottom: 20px;
  }
}

/*# sourceMappingURL=front.css.map */
