@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --global-title-color: #ff5d28;
  --global-secondary-text: rgb(130, 134, 143);
  --global-background-button: #ff5722;
  --global-background-button-hover: #da3a0a;
  --global-subtitle-color: rgb(75, 86, 106);
  --global-text-button: #fff;
  --header-conection-background: white;
  --header-connection-text: #1b1a1a;
  --header-menu-background: white;
  --header__navicon: white;
  --header-hero-content__contact: rgb(75, 86, 106);
  --what-to-expect-text: rgb(130, 134, 143);
  --what-to-expect__item-underline: #ff5d28;
  --about-us-content__description: rgb(130, 134, 143);
  --about-us-content__secondary-text: rgb(155, 158, 164);
  --new-pasta-background-color: #f7f6f2;
  --book-table-secondary-text: rgba(255, 255, 255, 0.81);
  --menu-meals-details__description: rgb(155, 158, 164);
  --menu-button-color: #ff5d28;
  --menu__action-button: #ffffff;
  --special-offers-background: #f7f6f2;
  --catering__secondary-text: rgb(155, 158, 164);
  --gift-cards-text: #ffffff;
  --gift-card-button: #ffffff;
  --gift-cards-buuton-text: rgb(75, 86, 106);
  --gift-cards: #ffffff;
  --gift-cards-references: rgb(255, 93, 40);
  --gift-cards-button-hover: rgb(60, 65, 76);
  --carousel-meals-background: #373e4a;
  --news-text: rgb(247, 246, 242, 0.8);
  --news-read-more: rgb(255, 93, 40);
  --footer-background: #f7f6f2;
  --footer__item-underline: #ff5d28;
  --global-header-hero-title: rgb(255, 255, 255);
  --global-header-hero-references: rgba(247, 246, 242, 0.62);
  --our-story__details__secondary-text: rgb(155, 158, 164);
  --carousel-shadow-color: rgba(0, 0, 0, 0.2);
  --carousel-bg-color: #fff;
  --carousel-caption-bg-color: white;
  --carousel-caption-text-color: white;
  --carousel-btn-bg-color: #ffffffe3;
  --carousel-btn-text-color: #434546;
  --our-team-secondary-text-color: rgba(247, 246, 242, 0.62);
  --our-team-subtitle-color: var(--global-text-button);
  --carousel-caption-name-color: var(--global-secondary-text);
  --carousel-caption-position-color: rgb(155, 158, 164);
  --contacts-acordion-background: #f7f6f2;
  --contacts-active-span: #ff5722;
  --contacts-reserve-background: #f7f6f2;
  --reservation__content-form: white;
  --form-validate-background: #ffe6e6;
  --reservation-error-message: red;
  --contacts-background: #f7f6f2;
  scroll-behavior: smooth;
}
img {
  display: block;
  width: 100%;
}
iframe {
  width: 100%;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.header {
  position: relative;
  z-index: 2;
}
.contact-btn {
  font-size: 1.1rem;
  font-family: "Nunito Sans", sans-serif;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #0ca353;
  color: white;
  border: solid 2px white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px;
}
@media (min-width: 768px) {
  .contact-btn {
    width: 150px;
    height: 150px;
    font-size: 1.3rem;
  }
}
@media (min-width: 1100px) {
  .contact-btn {
    width: 130px;
    height: 130px;
    font-size: 1.2rem;
  }
}
.contact-btn:hover {
  background-color: #077038;
}
.header__connection_background {
  display: none;
}
.header.nav-visible .header__connection_background {
  display: block;
  position: absolute;
  top: 340px;
  width: 100%;
  z-index: 13;
}
.header__logo a {
  position: relative;
  margin-left: 20px;
  z-index: 10;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 30px;
  font-family: "Nunito Sans", serif;
}
.header__logo--green {
  position: relative;
  z-index: 3;
  color: #0ca353;
  font-family: "Nunito Sans", serif;
}
.header.nav-visible .header__nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header.nav-visible .header__connection {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.header.nav-visible .header__connection-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.header__connection-social li {
  list-style: none;
}
.header__menu-btn {
  z-index: 10;
}
.header__nav_hero {
  position: relative;
  background-image: url(../img/header-hero.jpeg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.header__nav::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
.nav-list__button {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 8px 17px;
  font-size: 14px;
  font-family: "Nunito Sans", serif;
  border-radius: 34px;
  cursor: pointer;
}
.nav-list__link-button {
  padding-left: 50px;
}
.header__nav {
  align-items: center;
  letter-spacing: 0.3px;
  justify-content: space-between;
  padding: 20px 0;
  gap: 6px;
}
.header__nav-content {
  display: flex;
}
.header__nav-link {
  display: block;
  width: 218px;
}
.nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0;
  gap: 5px;
  padding-bottom: 25px;
  padding-top: 90px;
}
.nav-list__link a {
  position: relative;
  display: inline-block;
}
.header__nav-menu {
  top: -100vh;
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
}
.header__menu-btn {
  display: block;
  width: auto;
  height: auto;
  padding: 25px 30px;
  margin-left: auto;
  cursor: pointer;
  transition: opacity 0.5s ease;
  order: 3;
}
.header__menu-btn:hover {
  opacity: 0.6;
}
.header__navicon {
  display: block;
  width: 24px;
  height: 2px;
  position: relative;
  background: var(--header__navicon);
  cursor: pointer;
  transition: background 0.2s ease-out;
}
.header__navicon::before,
.header__navicon::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: var(--header__navicon);
  transition: all 0.2s ease-out;
}
.header__navicon.open::before,
.header__navicon.open::after {
  background-color: black;
}
.header__navicon:before {
  top: 7px;
}
.header__navicon:after {
  top: -7px;
}
.header.nav-visible .header__nav-menu {
  top: 0px;
}
.header.nav-visible .header__background,
.header.nav-visible .header__nav-menu {
  background: var(--header-menu-background);
}
.header.nav-visible .header__navicon {
  background: transparent;
}
.header.nav-visible .header__navicon::before {
  transform: rotate(-45deg);
}
.header.nav-visible .header__navicon::after {
  transform: rotate(45deg);
}
.header.nav-visible .header__navicon::before,
.header.nav-visible .header__navicon::after {
  top: 0;
}
.header__connection-social {
  display: flex;
  padding: 20px 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.header__connection-work-hours {
  text-align: center;
}
.header__connection-text-social,
.header__connection-text-hours,
.header__connection-email a,
.header__connection-phone_number a {
  color: var(--header-connection-text);
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 15.73px;
  letter-spacing: 1.1px;
}
.header__nav-logo {
  display: flex;
  flex: 30%;
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}
.nav-list__link a,
.header-menu-references {
  color: rgb(130, 134, 143);
  font-family: "Nunito Sans", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  margin: 10px 17px;
}
.header-hero {
  position: relative;
  z-index: 2;
  padding: 100px 10px 100px 10px;
}
.header-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-hero-content__title {
  text-align: center;
  color: white;
  font-family: "Quicksand", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 45px;
}
.header-hero-content__title span {
  color: #05aa55;
}
.header-hero-buttons {
  display: flex;
  justify-content: center;
  margin-top: 55px;
  gap: 20px;
}
.header-hero-content__subtext {
  text-align: center;
  color: white;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  margin-top: 35px;
}
.header-hero-button-connect {
  background-color: #05aa55;
  color: white;
  border: 1px solid #05aa55;
  padding: 10px 20px;
  font-size: 15px;
  font-family: "Nunito Sans", serif;
  border-radius: 34px;
  cursor: pointer;
  font-weight: 400;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease;
}
.header-hero-button-connect:hover {
  background-color: white;
  color: #05aa55;
  border-color: #05aa55;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.header-hero-button-learn {
  background-color: rgba(97, 97, 97, 0.5);
  color: white;
  border: 1px solid rgba(97, 97, 97, 0.5);
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Nunito Sans", serif;
  border-radius: 34px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}
.header-hero-button-learn:hover {
  background-color: #616161;
  color: white;
  border-color: #616161;
}
@media (min-width: 250px) {
  .header__navicon {
    color: black;
  }
  .nav-list__link a {
    font-size: 18px;
    line-height: 26px;
  }
  .header__connection-text-hours,
  .header__connection-text-social,
  .header__connection-email,
  .header__connection-phone_number {
    font-size: 16px;
    line-height: 20px;
    margin-top: 20px;
  }
  .header__connection-social-media {
    font-size: 600px;
    font-size: 12px;
    line-height: 20px;
  }
  .nav-list__button {
    background-color: #05aa55;
    color: white;
    border: 1px solid #05aa55;
    padding: 8px 17px;
    font-size: 14px;
    font-family: "Nunito Sans", serif;
    border-radius: 34px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease,
      border-color 0.3s ease;
  }
  .nav-list__button:hover {
    background-color: white;
    color: #05aa55;
    border-color: #05aa55;
  }
}
@media (min-width: 992px) {
  .nav-list__link a {
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
  }
  .nav-list__link a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #05aa55;
    transition: width 0.3s ease;
  }
  .nav-list__link a:hover::after {
    width: 100%;
  }
  .header__logo a {
    font-size: 1.7rem;
    margin-left: 0;
  }
  .header__nav-logo {
    margin-top: 0px;
  }
  .header-hero {
    padding: 190px 0px 200px 0px;
  }
  .header-hero-content__title {
    font-size: 90px;
  }
  .header-hero-content__subtext {
    font-size: 23px;
    font-weight: 300;
    width: 700px;
  }
  .header__nav {
    padding: 0;
    display: block;
  }
  .header__nav-logo img {
    width: 160px;
  }
  .nav-list__link a {
    font-size: 16px;
    line-height: 22px;
    color: white;
  }
  .header__connection-text-hours,
  .header__connection-text-social {
    font-size: 16px;
    line-height: 15px;
  }
  .header__connection-social-media {
    font-size: 11px;
    line-height: 15px;
  }
  .header__nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: end;
    flex-wrap: wrap;
    align-items: center;
    margin-left: auto;
    height: auto;
  }
  .nav-list {
    flex-direction: row;
    padding: 0;
  }
  .header__menu-btn {
    display: none;
  }
  .header__connection {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    justify-content: space-around;
  }
  .header__connection-social {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 0;
  }
  .header-menu {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--header-menu-background);
  }
  .header-menu-references {
    margin: 10px 0;
  }
  .header__connection_background {
    display: block;
    width: 100%;
    background-color: var(--header-conection-background);
  }
  .header-menu-content {
    display: flex;
    justify-content: space-between;
  }
  .header-menu-nav {
    margin-right: 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
  }
  .header__nav-content {
    display: flex;
    margin: 0;
    justify-content: space-between;
  }
  .nav-list__button {
    background-color: #05aa55;
    color: white;
    border: 1px solid #05aa55;
    padding: 8px 17px;
    font-size: 14px;
    font-family: "Nunito Sans", serif;
    border-radius: 34px;
    cursor: pointer;
  }
  .header.nav-visible .header__connection_background {
    position: static;
  }
  .header__connection {
    padding: 10px 65px;
  }
  .header__nav-content {
    padding: 20px 60px;
  }
  .header__connection-text-hours,
  .header__connection-text-social,
  .header__connection-email,
  .header__connection-phone_number {
    margin-top: 0px;
  }
}

.about-us {
  background-color: #1b1a1a;
}
.about-us-content {
  padding: 90px 20px;
}
.about-us-content-text {
  margin-bottom: 20px;
}
.about-us__title {
  font-family: "Nunito Sans", serif;
  font-size: 2rem;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}
.about-us__line {
  width: 50px;
  height: 2px;
  background-color: #28a745;
}
.about-us__text {
  margin-top: 20px;
  font-family: "Nunito Sans", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}
.about-us__text span {
  color: #28a745;
}
.about-us-item-advantages {
  display: flex;
  gap: 20px;
}
.about-us-list-advantages {
  margin-bottom: 20px;
}
.about-us-item-advantages svg {
  width: 20px;
  height: 20px;
  color: #28a745;
}
.about-us-text-advantages {
  font-family: "Nunito Sans", serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}
.about-us-content-button {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 34px;
  font-size: 1.1rem;
  font-family: "Nunito Sans", serif;
  cursor: pointer;
  margin-bottom: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.about-us-content-button:hover {
  background-color: #e7ebe8;
  color: #28a745;
  transform: scale(1.05);
}
.about-us-content-img {
  margin-top: 20px;
}
@media (min-width: 600px) {
  .about-us__title {
    font-size: 2.2rem;
  }
  .about-us__text {
    font-size: 1.3rem;
  }
  .about-us-text-advantages {
    font-size: 1.2rem;
  }
  .about-us-content-button {
    font-size: 1.2rem;
  }
}
@media (min-width: 800px) {
  .about-us-content {
    display: flex;
    gap: 30px;
  }
  .about-us-content-text {
    flex: 50%;
  }
  .about-us-content-img {
    flex: 50%;
    display: flex;
    justify-content: center;
  }
  .about-us-content-img img {
    object-fit: cover;
  }
}
.areas {
  padding: 30px 20px;
}
.areas__title {
  font-size: 28px;
  font-weight: 500;
  font-family: "Nunito Sans", serif;
  margin-bottom: 20px;
}
.areas__paragraph {
  font-size: 25px;
  font-weight: 400;
  font-family: "Nunito Sans", serif;
  margin-bottom: 20px;
}
.areas__highlight {
  color: #00c853;
}
.areas__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.areas__item {
  padding-top: 10px;
  text-align: left;
  transition: box-shadow 0.3s ease;
}
.areas__item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.areas__item-title {
  font-size: 24px;
  font-weight: 400;
  font-family: "Nunito Sans", serif;
  margin-bottom: 10px;
}
.areas__line {
  width: 8%;
  height: 2px;
  background-color: #00b050;
  margin-bottom: 10px;
}
.areas__item-description {
  font-size: 14px;
  color: #555;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .areas__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .areas__item-title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .areas {
    padding: 40px 40px;
  }
  .areas__title {
    width: 900px;
    font-size: 30px;
    margin-bottom: 30px;
  }
  .areas__item-title {
    font-size: 20px;
  }
  .areas__line {
    width: 40px;
  }
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 25px;
  padding-bottom: 25px;
  justify-content: center;
}
.cards__item-nego,
.cards__item-office,
.cards__item-talk {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cards__item-nego::before,
.cards__item-office::before,
.cards__item-talk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.cards__item-nego {
  background-image: url(../img/cards/negotiation.webp);
  padding: 24px;
}
.cards__item-office {
  background-image: url(../img/cards/office.webp);
}
.cards__item-talk {
  background-image: url(../img/cards/people-talking.webp);
}
.cards__content {
  padding: 160px 0px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
}
.cards__title {
  text-align: center;
  color: white;
  font-size: 28px;
  font-family: "Nunito Sans", serif;
  font-weight: 500;
  font-style: normal;
  width: 100%;
  margin-bottom: 20px;
}
.cards__text {
  width: 300px;
  text-align: center;
  color: white;
  font-size: 18px;
  font-family: "Nunito Sans", serif;
  font-weight: 500;
  font-style: normal;
  margin-top: 25px;
  padding: 0px 10px 0px 10px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  display: flex;
}
.cards__text.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
@media (min-width: 450px) {
  .cards__text {
    width: 400px;
  }
}
@media (min-width: 850px) {
  .cards__text {
    width: 600px;
  }
}
@media (min-width: 1100px) {
  .cards {
    padding: 20px;
    flex-wrap: nowrap;
  }
  .cards__title {
    cursor: pointer;
    font-size: 27px;
    width: 100%;
  }
  .cards__text {
    display: flex;
    width: 300px;
    font-weight: 300;
  }
  .cards__text {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  .cards__text.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  .cards__item-nego,
  .cards__item-office,
  .cards__item-talk {
    width: 30%;
  }
}
.consulting {
  position: relative;
  background-image: url(../img/consulting/get-consult.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.consulting__container {
  padding: 90px 20px;
}
.consulting__title {
  color: white;
  font-family: "Nunito Sans", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 20px;
}
.consulting__line {
  width: 50px;
  height: 2px;
  background-color: white;
}
.consulting__description {
  color: white;
  font-family: "Nunito Sans", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 50px;
}
.consulting__button {
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 34px;
  font-size: 1rem;
  font-family: "Nunito Sans", serif;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.consulting__button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
}

@media (min-width: 840px) {
  .consulting__container {
    display: flex;
    align-items: center;
  }
  .consulting-content {
    flex: 30%;
  }
  .consulting__button-container {
    display: flex;
    justify-content: center;
    flex: 5%;
  }
}
@media (min-width: 1000px) {
  .consulting__title {
    font-size: 35px;
  }
  .consulting__description {
    font-size: 20px;
  }
  .consulting__button {
    font-size: 1.1rem;
  }
}
.contacts {
  background-color: #1b1a1a;
}
.contacts-container {
  display: flex;
  flex-direction: column;
  padding: 50px 20px;
  gap: 20px;
}
.contacts__info {
  flex: 1;
}
.contacts__title {
  font-family: "Nunito Sans", serif;
  color: white;
  font-size: 2rem;
  margin-bottom: 10px;
  display: inline-block;
}
.contacts__line {
  width: 10%;
  height: 2px;
  background-color: #00b050;
}
.contacts__description {
  margin-top: 20px;
  font-family: "Nunito Sans", serif;
  color: white;
  margin-bottom: 50px;
  font-size: 1.3rem;
}
.contacts__details {
  color: white;
  margin-bottom: 20px;
}
.contacts__item {
  color: white;
  margin-bottom: 15px;
}
.contacts__subtitle {
  font-family: "Nunito Sans", serif;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
}
.contacts__text a,
.contacts__text {
  font-family: "Nunito Sans", serif;
  color: white;
  margin: 5px 0;
  font-size: 1rem;
}
.contacts__map {
  margin-top: 20px;
}

.contacts__iframe {
  width: 100%;
  height: 200px;
  border: none;
}
.contacts__form__title {
  text-align: center;
  font-family: "Nunito Sans", serif;
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.contacts__form {
  background-color: #272626;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacts__input,
.contacts__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #484747;
  border-radius: 25px;
  background-color: #323131;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}
.contacts__textarea {
  height: 100px;
  resize: none;
}
.contacts__button {
  margin-top: 30px;
  padding: 10px 20px;
  font-family: "Nunito Sans", serif;
  background-color: #05aa55;
  color: #ffffff;
  border: none;
  border-radius: 34px;
  cursor: pointer;
  font-weight: bold;
}
.contacts__button:hover {
  background-color: #028c36;
}
@media (min-width: 900px) {
  .contacts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .contacts__form {
    display: flex;
    justify-content: center;

    height: 500px;
    grid-column: 2;
  }
  .contacts__info {
    grid-column: 1;
  }
  .contacts__button {
    font-size: 1.1rem;
  }
}
.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 30px 20px 30px 20px;
}
.features__item {
  color: #1b1a1a;
  font-family: "Nunito Sans", serif;
  font-weight: 300;
  font-style: normal;
  border-radius: 8px;
  background-color: #fff;
}
.features__title {
  color: #323232;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
}
.features__underline {
  width: 8%;
  height: 2px;
  background-color: #00b050;
}
.features__text {
  font-size: 1.1rem;
  color: #7f7e7e;
  margin-bottom: 1rem;
  margin-top: 0.7rem;
  font-family: "Nunito Sans", serif;
  font-weight: 300;
}
.features__link {
  font-size: 1rem;
  color: #00b050;
  text-decoration: none;
  font-weight: bold;
}
.features__link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .features {
    flex-direction: row;
    justify-content: space-between;
    padding: 50px 40px;
  }
  .features__item {
    flex: 1;
    max-width: 30%;
  }
  .features__title {
    font-size: 1.5rem;
  }
  .features__text {
    font-size: 0.95rem;
  }
}
.footer {
  background-color: #1b1a1a;
  color: white;
  font-family: "Nunito Sans", serif;
  padding: 20px 10px;
}
.footer__container {
  padding-top: 50px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
.footer__logo {
  font-size: 1.7rem;
  margin-bottom: 30px;
  font-family: "Nunito Sans", serif;
}
.footer__logo--green {
  color: #0ca353;
  font-family: "Nunito Sans", serif;
}
.footer__description {
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: "Nunito Sans", serif;
}
.footer__links {
  text-align: center;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__link {
  color: white;
  font-family: "Nunito Sans", serif;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer__link:hover {
  color: #0ca353;
}
.footer__button {
  padding: 8px 17px;
  background-color: #0ca353;
  color: white;
  border: none;
  border-radius: 34px;
  font-size: 1rem;
  font-family: "Nunito Sans", serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.footer__button:hover {
  background-color: #d7d8d7;
  color: #0ca353;
}
.footer__bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  font-size: 0.875rem;
  display: flex;
  color: #0ca353;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__credits,
.footer__rights {
  margin: 0;
  font-family: "Nunito Sans", serif;
}
@media (min-width: 570px) {
  .footer__logo {
    font-size: 1.9rem;
  }
  .footer__description {
    font-size: 1.3rem;
  }
  .footer__link {
    font-size: 1.1rem;
  }
  .footer__button {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .footer__list,
  .footer__social {
    margin-top: 80px;
  }
  .footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer__description {
    font-size: 1.1rem;
  }
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer__brand {
    text-align: left;
    max-width: 250px;
  }
  .footer__links {
    text-align: center;
  }
  .footer__social {
    text-align: right;
  }
}
.foregien-citizen-container {
  padding: 90px 20px 50px 20px;
}
.foregien-citizen__title {
  font-family: "Nunito Sans", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.foregien-citizen__line-title {
  width: 50px;
  height: 2px;
  background-color: #28a745;
}
.foregien-citizen__description {
  font-size: 1.1rem;
  color: #555;
  font-family: "Nunito Sans", serif;
  margin-bottom: 30px;
  margin-top: 20px;
}
.foregien-citizen__sub-description {
  font-size: 1.1rem;
  color: #3e3d3d;
  margin-bottom: 30px;
  font-family: "Nunito Sans", serif;
  margin-top: 20px;
}
.foregien-citizen__button {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 34px;
  font-size: 1.1rem;
  font-family: "Nunito Sans", serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.foregien-citizen__button:hover {
  background-color: #333;
  transform: scale(1.05);
}
.foregien-citizen-content {
  margin-top: 20px;
}
@media (min-width: 800px) {
  .foregien-citizen-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
  }
  .foregien-citizen-content {
    margin-top: 0px;
  }
  .foregien-citizen__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1100px) {
  .foregien-citizen-container {
    gap: 30px;
  }
  .foregien-citizen__title {
    font-size: 2.2rem;
  }
  .foregien-citizen__description,
  .foregien-citizen__sub-description {
    font-size: 1.1rem;
    text-align: center;
  }
  .foregien-citizen__sub-description {
    text-decoration: underline;
  }
  .foregien-citizen__button {
    font-size: 1.2rem;
  }
}
.contacts-acordion {
  padding: 50px 20px;
}
.contacts-accordion-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contacts-accordion-title {
  font-size: 2rem;
  color: black;
  margin-bottom: 1rem;
  margin-top: 0.7rem;
  font-family: "Quicksand", serif;
  font-weight: 500;
}
.contacts-acordion-line {
  width: 50px;
  height: 2px;
  background-color: #28a745;
}
.contacts-accordion-paragrph {
  text-align: center;
  font-size: 1.1rem;
  color: black;
  margin-bottom: 1rem;
  margin-top: 0.7rem;
  font-family: "Nunito Sans", serif;
  font-weight: 300;
}
.contacts-accordion-content {
  padding-bottom: 40px;
}
.contacts-accordion-items {
  padding: 20px 0px 10px 0px;
  border-bottom: 1px solid #d5d6d7;
}
.accordion__title-container {
  display: flex;
  justify-content: space-between;
}
.accordion__title {
  color: black;
  font-family: "Nunito Sans", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 19px;
  line-height: 26px;
}
.accordion__title-container span {
  display: inline-flex;
  position: relative;
  width: 30px;
  height: 30px;
  background-color: transparent;
  transform: rotate(0);
  transition: transform 0.5s ease-out;
}
.accordion__title-container.active span::after {
  opacity: 0;
}
.accordion__title-container span::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #4b566a;
}
.accordion__title-container.active span::before,
.accordion__title-container.active span::after {
  background-color: #28a745;
}
.accordion__title-container span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--global-subtitle-color);
}
.accordin__item-container {
  overflow: hidden;
  box-sizing: content-box;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  transition: max-height 0.5s ease-out, margin-top 0.5s ease-out,
    opacity 0.1s ease-out, visibility 0.1s ease-out;
}
.accordin__item-container.active {
  visibility: visible;
  opacity: 1;
  transition: max-height 0.5s ease-out, margin-top 0.5s ease-out,
    opacity 0.1s ease-out, visibility 0.1s ease-out;
}
.accordin__item-text {
  color: #4b566a;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 24px;
}
@media (min-width: 800px) {
  .contacts-accordion-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .contacts-accordion-content {
    width: 48%;
  }
  .contacts-accordion-paragrph {
    width: 700px;
  }
}
.join-us {
  background-color: #0ca353;
}
.join-us__container {
  padding: 90px 20px;
}
.join-us__title {
  color: white;
  font-family: "Nunito Sans", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
  margin-bottom: 20px;
}
.join-us__line {
  width: 50px;
  height: 2px;
  background-color: white;
}
.join-us__description {
  color: white;
  font-family: "Nunito Sans", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.join-us__button {
  padding: 10px 30px;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 34px;
  font-size: 1rem;
  font-family: "Nunito Sans", serif;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.join-us__button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
}

@media (min-width: 840px) {
  .join-us__container {
    display: flex;
    align-items: center;
  }
  .join-us-content {
    flex: 30%;
  }
  .join-us__button-container {
    display: flex;
    justify-content: center;
    flex: 5%;
  }
}
@media (min-width: 1000px) {
  .join-us__title {
    font-size: 35px;
  }
  .join-us__description {
    font-size: 20px;
  }
  .join-us__button {
    font-size: 1.1rem;
  }
}
.our-command__content {
  padding: 40px 20px;
}
.our-command__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-command__title {
  color: black;
  font-size: 34px;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  margin-bottom: 20px;
}
.our-command-line {
  width: 8%;
  height: 2px;
  background-color: #00b050;
}
.our-command__subtitle {
  margin-top: 20px;
  color: black;
  font-size: 16px;
  font-family: "Nunito Sans", serif;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 15px;
}
.our-command__secondary-text {
  color: var(--global-secondary-text);
  font-weight: 500;
  font-size: 18px;
  font-family: "Nunito Sans", serif;
  margin-bottom: 25px;
  text-decoration: underline;
}
.our-command__tab-box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid rgb(58, 58, 58);
  position: relative;
}
.our-command__tab-box-btn {
  color: black;
  font-weight: 400;
  font-size: 16px;
  font-family: "Nunito Sans", serif;
  padding: 15px;
  background: none;
  border: none;
}
.our-command__tab-box-btn.active {
  color: #00b050;
}
.our-command__content-menu {
  display: none;
}
.our-command__content-menu.active {
  display: block;
  animation: moving 0.5s ease;
}
@keyframes moving {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
.our-command__content-menu-item {
  margin-top: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 27px 27px;
  width: 100%;
}
.our-command__content-menu-item img {
  width: 100%;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  border-radius: 10px;
}
.our-command__content-menu-item-title {
  margin-top: 20px;
  font-size: 22px;
  font-family: "Dangrek", cursive;
  font-weight: 400;
  line-height: 1.3;
}
.our-command__content-menu-item-price {
  font-size: 22px;
  font-family: "Dangrek", cursive;
  font-weight: 500;
}
.line {
  position: absolute;
  top: 53px;
  left: 17px;
  width: 90px;
  height: 2px;
  transition: all 0.3s ease-in-out;
}
.our-command__content-menu-item {
  background-color: rgba(240, 242, 244, 0.852);
  padding: 30px;
}
.our-command__content-menu-item-title {
  margin-top: 20px;
  color: black;
  padding: 10px;
  font-family: "Nunito Sans", serif;
}
@media (min-width: 455px) {
  .line {
    top: 55px;
  }
  .our-command__tab-box-btn {
    font-size: 18px;
  }
  .our-command__content-menu-item img {
    max-width: 300px;
    max-height: 300px;
  }
}
@media (min-width: 500px) {
  .line {
    left: 32px;
  }
}
@media (min-width: 600px) {
  .line {
    left: 50px;
  }
}
@media (min-width: 650px) {
  .our-command__content-menu.active {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .our-command__content-menu-item {
    flex: 1 1 calc(35% - 20px);
  }
  .our-command__title {
    font-size: 38px;
  }
  .our-command__subtitle {
    font-size: 20px;
  }
  .our-command__secondary-text {
    font-size: 22px;
  }
}
@media (min-width: 700px) {
  .line {
    top: 58px;
    left: 65px;
  }
  .our-command__tab-box-btn {
    font-size: 20px;
  }
}
@media (min-width: 800px) {
  .line {
    top: 58px;
    left: 75px;
  }
  .our-command__subtitle {
    width: 700px;
  }
  .our-command__content-menu.active {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .our-command__content-menu-item {
    flex: 1 1 calc(30% - 20px);
  }
}
@media (min-width: 900px) {
  .line {
    left: 95px;
  }
  .our-command__content-menu-item img {
    max-width: 300px;
    max-height: 157px;
  }
}
@media (min-width: 1018px) {
  .line {
    left: 115px;
  }
}
@media (min-width: 1200px) {
  .line {
    left: 150px;
  }
  .our-command__content-menu-item img {
    max-width: 300px;
    max-height: 200px;
  }
}
.reviews {
  padding: 50px 20px;
}
.reviews-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
.reviews__title {
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 20px;
}
.reviews__line {
  width: 8%;
  height: 2px;
  background-color: #00b050;
}
.reviews__paragraph {
  text-align: center;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  max-width: 900px;
  width: 100%;
}
.reviews-item-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.reviews-title {
  font-family: "Nunito Sans", serif;
  font-weight: 500;
  font-size: 1.3rem;
}
.review-date {
  font-family: "Nunito Sans", serif;
  font-weight: 300;
  font-size: 1.1rem;
}
.reviews-description {
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-size: 1.2rem;
}
.reviews-item {
  width: 100%;
  max-width: 900px;
  background-color: aliceblue;
  padding: 20px 30px;
}
.review-about {
  display: flex;
  justify-content: space-between;
}
.stars-container {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  gap: 5px;
}
.stars-container img {
  width: 20px;
  height: 20px;
}
.reviews-form {
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reviews-form-title {
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-size: 1.4rem;
}
.form-status {
  display: none;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #00b050;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.form-status.show {
  display: block;
  opacity: 1;
}
.reviews-form label {
  font-weight: bold;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-size: 1.1rem;
}
.reviews-form input,
.reviews-form select,
.reviews-form textarea {
  width: 100%;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.1rem;
}
.reviews-form button {
  background: #0ca353;
  color: #fff;
  padding: 10px;
  border: none;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
}
.reviews-form button:hover {
  background: #0a8745;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.modal-content {
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 100px 30px;
  border-radius: 70px;
}
.modal-content img {
  width: 100px;
}
.modal-content-text-small {
  width: 100%;
  text-align: center;
  max-width: 400px;
  margin-top: 10px;
  font-family: "Nunito Sans", serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #6e706f;
}
.modal-content-text {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "Nunito Sans", serif;
  font-weight: 600;
  font-size: 1.3rem;
}
.pagination-container {
  max-width: 900px;
  margin: 20px auto;
  text-align: center;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pagination-button {
  font-family: "Nunito Sans", serif;
  color: black;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 1.3rem;
}
.pagination-button.active {
  font-weight: bold;
  text-decoration: underline;
}
@media (min-width: 740px) {
  .reviews-title {
    font-size: 1.4rem;
  }
  .review-date {
    font-size: 1.2rem;
  }
  .reviews-description {
    font-size: 1.3rem;
  }
  .reviews-form label,
  .reviews-form button,
  .reviews-form input,
  .reviews-form select,
  .reviews-form textarea {
    font-size: 1.2rem;
  }
}
.services__container {
  padding: 90px 20px;
}
.services__intro {
  font-family: "Nunito Sans", serif;
  margin-bottom: 40px;
}
.services__title {
  font-family: "Nunito Sans", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.services__line-title {
  width: 50px;
  height: 2px;
  background-color: #28a745;
}
.services__description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  margin-top: 20px;
  font-family: "Nunito Sans", serif;
}
.services__button {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 34px;
  font-size: 1.1rem;
  font-family: "Nunito Sans", serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.services__button:hover {
  background-color: #333;
  transform: scale(1.05);
}
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.services__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
.services__subtitle {
  font-family: "Nunito Sans", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.services__line {
  width: 40px;
  height: 2px;
  background-color: #616161;
}
.services__text {
  font-family: "Nunito Sans", serif;
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}
@media (min-width: 600px) {
  .services__title {
    font-size: 2.3rem;
  }
  .services__description,
  .services__button {
    font-size: 1.1rem;
  }
  .services__subtitle {
    font-size: 1.5rem;
  }
  .services__text {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .services__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .services__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .services__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .services__description {
    text-align: center;
    width: 900px;
  }
  .services__title {
    font-size: 2rem;
  }
  .services__subtitle {
    font-size: 1.4rem;
  }
  .services__text {
    margin-top: 20px;
    font-size: 1rem;
  }
  .services {
    padding: 90px 30px;
  }
}
@media (min-width: 1300px) {
  .services__container {
    padding: 90px 0px;
  }
}
.stats {
  background-color: #1b1a1a;
  padding: 90px 20px;
}
.stats-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.stats__block {
  text-align: center;
  width: 100%;
}
.stats__number {
  font-family: "Quicksand", serif;
  font-size: 2rem;
  font-weight: 500;
  color: white;
}
.stats__description {
  font-family: "Nunito Sans", serif;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #05aa55;
}

@media (min-width: 510px) {
  .stats-content {
    justify-content: space-between;
  }
  .stats__block {
    width: 45%;
  }
  .stats__number {
    font-size: 2.5rem;
  }
  .stats__description {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .stats-content {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .stats__block {
    width: auto;
  }
  .stats__number {
    font-size: 2.5rem;
  }
  .stats__description {
    font-size: 1.1rem;
  }
}
