.phone-banner {
    position: fixed; /* Фіксує плашку, щоб вона не прокручувалася */
    top: 40px; /* Відступ зверху */
    right: 50px; /* Відступ з правого боку */
    background-color: rgba(236, 171, 40, 1); /* Жовтий фон */
    padding: 10px 25px;
    border-radius: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 1000; /* Щоб плашка була поверх іншого контенту */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); /* Тінь для гарного вигляду */
}

/* Стиль для телефонних номерів */
.phone-link {
    color: #fff; /* Білий текст */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* Стиль для іконки трубки */
.phone-icon {
    width: 16px; /* Розмір іконки */
    vertical-align: middle;
    margin-right: 5px;
}

/* Адаптація для мобільних */
@media (max-width: 768px) {
    .phone-banner {
        top: 10px;
        right: 15px;
        padding: 5px 10px;
    }
    .phone-link {
        font-size: 12px;
    }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.header {
  background: url(../img/bg.jpg) left bottom/cover no-repeat;
  min-height: 100vh;
  color: #fff;
}
.header .container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header .text {
  width: 100%;
  max-width: 650px;
  margin-top: -15vh;
}
.header .text .lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 10px 20px;
  width: 150px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.header .text .lang a {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}
.header .text .lang a:hover {
  text-decoration: underline;
}
.header .text .lang .active {
  color: #3C6042;
  font-weight: bold;
}
.header .text .lang p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.header .text .logo img {
  width: 230px;
  margin-bottom: 35px;
}
.header .text h1 {
  font-size: 55px;
  margin-bottom: 30px;
  font-weight: 600;
}
.header .text h1 span {
  color: #3C6042;
  text-shadow: -1px 1px 0 #fff, 1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}
.header .text p {
  font-size: 20px;
  margin-bottom: 40px;
}

.a-btn {
  border-radius: 10px;
  background: #ECAB28;
  box-shadow: inset 0px -11px 4px 0px #cc9322;
  width: 400px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 20px;
  text-transform: uppercase;
  transition: 0.3s all;
}
.a-btn:hover {
  color: #000;
  transform: scale(1.02);
}

.pt {
  padding: 70px 0;
}

hr.separator:after {
  background: none repeat scroll 0% 0% #3C6042;
  content: "";
  height: 10px;
  left: 50%;
  margin: -5px auto auto -5px;
  position: absolute;
  transform: rotate(-45deg);
  width: 10px;
  opacity: 1;
}

hr.separator {
  border-top: 1px solid #3C6042;
  width: 100%;
  clear: both;
  margin: 80px 0;
  opacity: 1;
}

.title {
  margin-bottom: 35px;
}
.title h2 {
  font-size: 45px;
  color: #3C6042;
  margin-bottom: 25px;
}
.title h3 {
  font-weight: bold;
  margin-bottom: 25px;
  color: #3C6042;
}
.title .fg {
  margin-bottom: 25px;
  width: 150px;
  height: 2px;
  background-color: #3C6042;
}

.title-w h2 {
  color: #fff;
}
.title-w h3 {
  color: #fff;
}
.title-w .fg {
  background-color: #fff;
}
.title-w p {
  color: #fff;
}

.about .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.about .content .text {
  width: 35%;
}
.about .content .text p {
  font-size: 19px;
}
.about .content .text p span {
  margin-top: 20px;
  font-weight: 500;
  display: block;
  font-style: italic;
}
.about .content .img {
  width: 45%;
  max-width: 800px;
}
.about iframe {
  width: 100%;
  height: 650px;
  border-radius: 30px;
}

.top {
  position: absolute;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

.bottom {
  position: absolute;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
  left: 0;
}

.advantages {
  background-color: #3C6042;
  position: relative;
}
.advantages .container {
  position: relative;
  z-index: 999;
}
.advantages .container .items {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.advantages .container .items .item {
  background-color: #ECAB28;
  padding: 30px;
  text-align: center;
}
.advantages .container .items .item img {
  width: 60px;
  margin-bottom: 15px;
}
.advantages .container .items .item h3 {
  font-weight: bold;
  font-size: 22px;
}
.advantages .container .items .item p {
  margin: 0;
}

.spheres .items {
  margin-top: 85px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 30px;
}
.spheres .items .item {
  background-color: #3C6042;
  color: #fff;
  padding-bottom: 50px;
  position: relative;
  border-top-right-radius: 90px;
}
.spheres .items .item h6 {
  position: absolute;
  top: -40px;
  left: 20px;
  font-weight: 900;
  font-size: 65px;
  color: rgba(60, 96, 66, 0.5);
}
.spheres .items .item img {
  width: 100%;
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
  border-top-right-radius: 90px;
}
.spheres .items .item h3 {
  margin: 0 20px;
  margin-bottom: 15px;
}
.spheres .items .item p {
  margin: 0 20px;
  font-size: 15px;
}

.assortment {
  background-color: #3C6042;
}
.assortment .content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 50px;
}
.assortment .content .text {
  width: 100%;
  position: relative;
}
.assortment .content .text .items {
  width: 100%;
  background-color: #ECAB28;
  padding: 70px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.assortment .content .text .items .item {
  display: flex;
  align-items: center;
}
.assortment .content .text .items .item h4 {
  font-weight: 900;
  font-size: 45px;
  margin: 0;
  opacity: 0.5;
  margin-right: 25px;
  width: 60px;
  min-width: 60px;
  max-width: 60px;
}
.assortment .content .text .items .item .txt h3 {
  font-size: 20px;
  font-weight: bold;
}
.assortment .content .text .items .item .txt p {
  font-size: 15px;
  margin: 0;
}
.assortment .content .img {
  width: 100%;
}
.assortment .table-title {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.assortment .table-title .item-title {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}
.assortment .table-title .item-title .item {
  padding: 15px;
  background-color: #ECAB28;
  display: flex;
  align-items: center;
  height: 100%;
  max-height: 120px;
}
.assortment .table-title .item-title .item img {
  width: 40px;
  margin-right: 20px;
}
.assortment .table-title .item-title .item .txt h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.assortment .table-title .item-title .item .txt p {
  margin: 0;
}
.assortment .table-grid .items {
  display: grid;
  grid-template-columns: 20% 78.5%;
  gap: 20px;
}
.assortment .table-grid .items .item {
  background-color: #fff;
  padding: 20px;
}

.btn-g {
  text-align: center;
  margin-top: 30px;
}

.clients .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.clients .items .item {
  background-color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}
.clients .items .item img {
  width: 100%;
  transition: 0.3s all;
}
.clients .items .item:hover img {
  transform: scale(1.05);
}

.block-text {
  background-color: #3C6042;
  color: #fff;
}
.block-text p {
  margin-bottom: 35px;
}
.block-text .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.block-text .content .img {
  width: 100%;
}
.block-text .content ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}
.block-text .content ul li {
  list-style-type: none;
  font-size: 20px;
  background-color: #ECAB28;
  padding: 30px;
  text-align: center;
  width: 100%;
}
.block-text .content ul li span {
  background-color: #fff;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  border-radius: 90px;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.block-text .content ul li p {
  margin: 0;
}

.contact p {
  margin: 5px 0;
  font-size: 18px;
}
.contact a {
  color: #000;
  display: inline-block;
  margin: 5px 0;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
}
.contact a:hover {
  text-decoration: underline;
}
.contact .a-btn {
  text-align: center;
  text-decoration: none;
  color: #000;
}
.contact .a-btn:hover {
  text-decoration: none;
}
.contact .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.contact .content iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
}
.contact .content .social {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.contact .content .social img {
  background-color: #ECAB28;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 10px;
  margin-right: 20px;
}
.contact .content .media {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}
.contact .content .media img {
  width: 35px;
  border-radius: 10px;
}

footer {
  padding: 35px 0;
  text-align: center;
}

.modal-success {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: auto;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 20vh auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 300px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: end;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  border-bottom: none;
}

.modal-content {
  max-width: 550px;
  width: 100%;
}

.modal-body {
  padding-top: 0;
}
.modal-body h3 {
  font-weight: bold;
  font-size: 24px;
}
.modal-body .input {
  width: 100%;
  margin-bottom: 20px;
  border: none;
  outline: none;
  border-bottom: 1px solid #46B385;
  padding: 10px 0;
}
.modal-body .a-btn {
  margin-top: 20px;
}
.modal-body .a-btn-green {
  border: none;
}

@media (max-width: 1400px) {
  .header .text {
    width: 550px;
  }
  .header .text h1 {
    font-size: 45px;
  }
  .header .text p {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .about .content .text p {
    font-size: 16px;
  }
  .title h2 {
    font-size: 38px;
  }
  .header .text .logo img {
    width: 190px;
  }
  .header .text {
    width: 500px;
  }
  .header .text h1 {
    font-size: 40px;
  }
  .header .text p {
    font-size: 16px;
  }
  .a-btn {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .assortment .content .text .items {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  .about .content {
    gap: 35px;
  }
  .about iframe {
    height: 400px;
  }
  .advantages .container .items, .spheres .items {
    grid-template-columns: repeat(2, 1fr);
  }
  .assortment .content {
    flex-direction: column;
  }
  .assortment .content .text {
    width: 100%;
  }
  .assortment .content .text .items {
    grid-template-columns: repeat(1, 1fr);
    padding: 50px 30px;
  }
  .assortment .content .img {
    width: 100%;
  }
  .assortment .table-title {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 35px;
  }
  .assortment .table-title .title {
    margin-bottom: 10px;
  }
  .assortment .table-grid .items {
    grid-template-columns: 20% 77%;
  }
  .block-text .content {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }
  .clients .items {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact .content {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .about .content {
    flex-direction: column;
    padding: 20px;
  }
  .about .content .img {
    width: 100%;
  }
  .about .content .text {
    width: 100%;
  }
  .advantages .container .items, .spheres .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .header .text {
    width: 100%;
  }
  .header {
    background: url(../img/bg-m.jpg) center bottom/cover no-repeat;
  }
  hr.separator {
    margin-top: 40px;
  }
}
@media (max-width: 500px) {
  .a-btn {
    width: 100%;
  }
  .title h2 {
    font-size: 33px;
  }
  .about iframe {
    height: 250px;
  }
  .assortment .content .text .items {
    padding: 30px 15px;
  }
  .assortment .content .text .items .item h4 {
    margin-right: 10px;
  }
  .assortment .table-title .item-title {
    grid-template-columns: repeat(1, 1fr);
  }
  .assortment .table-grid .items {
    grid-template-columns: 35% 59%;
  }
  .block-text .content ul li {
    font-size: 18px;
  }
  .block-text .title {
    margin: 0;
  }
  .header .text .logo img {
    width: 150px;
  }
  .header {
    height: auto;
    padding-bottom: 50px;
  }
  .header .text {
    margin-top: 35px;
  }
  .header .container {
    height: auto;
    justify-content: start;
  }
  .assortment .content .text .items .item h4 {
    font-size: 40px;
    width: 50px;
    min-width: 50px;
    max-width: 50px;
  }
  .assortment .table-title {
    margin-top: 60px;
  }
}/*# sourceMappingURL=style.css.map */