@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  background: var(--white);
  color: var(--black);
  font-style: normal;
  font-variation-settings: "wdth" 100;
  padding: 0 4%;
}

a {
  text-decoration: none;
}

:root {
  --white: #fff;
  --white2: #F4F4F4;
  --black: #000;
  --green: #02403D;
  --green2: #D1F811;
  --grey: #DEE2E3;
  --text: #434343;
}

header {
  position: sticky;
  padding: 0 4%;
  height: 100px;
  top: 0;
  background: var(--white);
  z-index: 4;
  position: fixed;
  width: 92%;
  left: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  align-items: center;
  gap: 1rem;
}
header .logo-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
header .logo-menu .menu {
  display: flex;
  gap: 4px;
  flex-direction: column;
}
header .logo-menu .menu span {
  height: 4px;
  width: 30px;
  background: var(--green);
  display: flex;
}
header .logo {
  font-size: 24px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}
header .information {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  align-items: center;
}
header .information .number {
  font-size: 24px;
  color: var(--green);
  font-weight: 700;
}
header .information .soc {
  display: flex;
  gap: 1rem;
}
header .information .soc a {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
header .information .soc a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
header .information .soc a svg {
  transition: all 0.3s ease;
}
header .information .soc a:hover svg path {
  fill: var(--green);
}
header .information .button a {
  background: var(--green);
  padding: 1rem 2rem;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.2s;
  border-radius: 30px;
}
header .information .button a:hover {
  background: var(--green2);
  color: var(--green);
}

.people {
  width: 50%;
  position: absolute;
  bottom: 0;
  display: flex;
  margin: 0 auto;
  text-align: center;
  background-size: cover;
}
.people img {
  height: 80vh;
  margin: auto;
}
.people .btn {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}
.people .btn a {
  display: flex;
  background: var(--green2);
  padding: 2rem;
  border-radius: 30px;
  color: var(--green);
  transition: all 0.2s;
  justify-content: center;
}
.people .btn a:hover {
  background: var(--grey);
  color: var(--green);
}

.banner {
  height: 78vh;
  width: 100%;
  background: var(--green) url(../img/banner2.png) no-repeat center;
  background-size: cover;
  margin-top: 100px;
  border-radius: 30px;
  position: relative;
}
.banner .bgwhite {
  position: absolute;
  display: flex;
  width: calc(50% - 1em);
  background: var(--white);
  height: 35vh;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  padding: 2rem 0 0 2rem;
}
.banner .bgwhite a {
  display: flex;
}
.banner .bgwhite a:hover .usluga {
  background: var(--grey);
  color: var(--green);
}
.banner .bgwhite a:hover .usluga .title {
  color: var(--green);
}
.banner .bgwhite a:hover .usluga .text {
  color: var(--green);
}
.banner .bgwhite:after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: 0;
  height: 30px;
  width: 30px;
  bottom: 0;
  border-radius: 0 0 30px 0;
  box-shadow: 10px 6px 0 0 #fff;
}
.banner .bgwhite:before {
  content: "";
  position: absolute;
  top: -30px;
  right: 0;
  height: 30px;
  width: 30px;
  border-radius: 0 0 30px 0;
  box-shadow: 10px 6px 0 0 #fff;
}
.banner .usluga {
  transition: all 0.2s;
  background: var(--green2);
  color: var(--green);
  padding: 2rem;
  border-radius: 30px;
  justify-content: space-around;
  display: flex;
  flex-direction: column;
}
.banner .usluga .title {
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
}
.banner .usluga .text {
  color: var(--green);
  line-height: 24px;
}
.banner .usluga .arrow {
  display: flex;
  justify-content: flex-end;
}
.banner .usluga .arrow span {
  height: 50px;
  width: 50px;
  background: var(--green);
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50px;
}
.banner .usluga .arrow svg {
  height: 30px;
  width: 30px;
  fill: var(--white);
}
.banner .usluga2 {
  background: var(--green);
  color: var(--white2);
}
.banner .usluga2 .title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white2);
}
.banner .usluga2 .text {
  color: var(--white2);
  line-height: 24px;
}
.banner .usluga2 .arrow span {
  background: var(--white);
}
.banner .usluga2 .arrow span svg {
  fill: var(--green);
}
.banner .slogan {
  display: flex;
  padding: 2rem;
  text-transform: uppercase;
  font-size: 36px;
  color: var(--green2);
  border: 2px solid var(--green2);
  width: calc(50% - 5rem);
  position: absolute;
  right: 2rem;
  top: 10%;
  border-radius: 30px;
  font-weight: 700;
}

.business-grid {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .business-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
}

.timeline-section {
  padding: 0;
}
.timeline-section .timeline-header {
  text-align: left;
  margin-bottom: 1.5rem;
}
.timeline-section .timeline-header h2 {
  font-size: 28px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}
.timeline-section .timeline-header h2 span {
  position: relative;
}
.timeline-section .timeline-header h2 span:before {
  content: "";
  position: absolute;
  bottom: 10px;
  height: 5px;
  width: 100%;
  background: var(--green2);
  z-index: -1;
}
.timeline-section .timeline {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.timeline-section .timeline .timeline-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--green);
  border-radius: 25px;
  color: var(--white);
  transition: all 0.2s;
}
.timeline-section .timeline .timeline-item:hover {
  transform: translateY(-2px);
}
.timeline-section .timeline .timeline-item.highlight {
  background: var(--green2);
  color: var(--green);
}
.timeline-section .timeline .timeline-item.highlight .year {
  background: var(--green);
  color: var(--white);
}
.timeline-section .timeline .timeline-item .year {
  font-size: 18px;
  font-weight: 700;
  background: var(--white);
  color: var(--green);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  min-width: 60px;
  text-align: center;
  flex-shrink: 0;
}
.timeline-section .timeline .timeline-item .event {
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
  text-align: left;
}
@media (max-width: 768px) {
  .timeline-section .timeline {
    gap: 0.6rem;
  }
  .timeline-section .timeline .timeline-item {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    padding: 1rem;
  }
  .timeline-section .timeline .timeline-item .year {
    min-width: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .timeline-section .timeline .timeline-item .event {
    font-size: 13px;
  }
}

.about-section {
  padding: 4rem 0;
}
.about-section .about-content {
  margin: 0 auto;
  padding: 0 2rem;
}
.about-section .about-header {
  margin-bottom: 2rem;
}
.about-section .about-header h2 {
  font-size: 36px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-section .about-header h2 span {
  position: relative;
}
.about-section .about-header h2 span:before {
  content: "";
  position: absolute;
  bottom: 10px;
  height: 5px;
  width: 100%;
  background: var(--green2);
  z-index: -1;
}
.about-section .about-header .subtitle {
  font-size: 18px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}
.about-section .about-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about-section .about-text .text-block {
  background: var(--white);
  border: 1px solid var(--green);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.about-section .about-text .text-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(2, 64, 61, 0.15);
}
.about-section .about-text .text-block h3 {
  font-size: 16px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-section .about-text .text-block p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  .about-section .about-content {
    padding: 0 1rem;
  }
  .about-section .about-header {
    margin-bottom: 1.5rem;
  }
  .about-section .about-header h2 {
    font-size: 28px;
  }
  .about-section .about-header .subtitle {
    font-size: 16px;
  }
  .about-section .about-text {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-section .about-text .text-block {
    padding: 1.5rem;
  }
  .about-section .about-text .text-block h3 {
    font-size: 14px;
  }
  .about-section .about-text .text-block p {
    font-size: 13px;
  }
}

.summary {
  padding: 3rem 0;
  background: var(--green) url(../img/banner2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin: 2rem 0;
}
.summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 64, 61, 0.7);
  z-index: 1;
}
.summary .summary-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
}
.summary .summary-header {
  text-align: left;
  margin-bottom: 2rem;
}
.summary .summary-header h2 {
  font-size: 32px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.summary .summary-header h2 span {
  position: relative;
}
.summary .summary-header h2 span:before {
  content: "";
  position: absolute;
  bottom: 8px;
  height: 4px;
  width: 100%;
  background: var(--green2);
  z-index: -1;
}
.summary .summary-header .subtitle {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.summary .summary-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.summary .summary-text .text-item h3 {
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.summary .summary-text .text-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}
.summary .summary-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.summary .summary-cta {
  text-align: left;
}
.summary .summary-cta p {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.summary .summary-cta .cta-button {
  display: inline-block;
  background: var(--green2);
  color: var(--green);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(209, 248, 17, 0.3);
}
.summary .summary-cta .cta-button:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(209, 248, 17, 0.4);
}
.summary .summary-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.summary .summary-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.summary .summary-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}
.summary .summary-features .feature-item .feature-icon {
  flex-shrink: 0;
}
.summary .summary-features .feature-item p {
  font-size: 16px;
  color: var(--white);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .summary {
    padding: 3rem 0;
  }
  .summary .summary-content {
    padding: 0 3%;
  }
  .summary .summary-header {
    margin-bottom: 1.5rem;
  }
  .summary .summary-header h2 {
    font-size: 26px;
  }
  .summary .summary-header .subtitle {
    font-size: 16px;
  }
  .summary .summary-text {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .summary .summary-text .text-item h3 {
    font-size: 16px;
  }
  .summary .summary-text .text-item p {
    font-size: 14px;
  }
  .summary .summary-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .summary .summary-cta {
    text-align: center;
  }
  .summary .summary-cta p {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }
  .summary .summary-cta .cta-button {
    padding: 0.8rem 2rem;
    font-size: 14px;
  }
  .summary .summary-features {
    gap: 1rem;
  }
  .summary .summary-features .feature-item {
    padding: 1rem 1.5rem;
  }
  .summary .summary-features .feature-item p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .summary {
    padding: 2rem 0;
  }
  .summary .summary-content {
    padding: 0 2%;
  }
  .summary .summary-header h2 {
    font-size: 22px;
  }
  .summary .summary-header .subtitle {
    font-size: 14px;
  }
  .summary .summary-text {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .summary .summary-text .text-item h3 {
    font-size: 15px;
  }
  .summary .summary-text .text-item p {
    font-size: 13px;
  }
  .summary .summary-bottom {
    gap: 1.5rem;
  }
  .summary .summary-cta p {
    font-size: 15px;
  }
  .summary .summary-cta .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 13px;
  }
  .summary .summary-features {
    gap: 1rem;
  }
  .summary .summary-features .feature-item {
    padding: 0.8rem 1rem;
  }
  .summary .summary-features .feature-item p {
    font-size: 13px;
  }
}

.shipments-section {
  padding: 3rem 0;
}
.shipments-section .shipments-header {
  text-align: left;
  margin-bottom: 3rem;
}
.shipments-section .shipments-header h2 {
  font-size: 36px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}
.shipments-section .shipments-header h2 span {
  position: relative;
}
.shipments-section .shipments-header h2 span:before {
  content: "";
  position: absolute;
  bottom: 10px;
  height: 5px;
  width: 100%;
  background: var(--green2);
  z-index: -1;
}
.shipments-section .shipments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.shipments-section .shipments-grid .shipment-card {
  background: var(--white);
  border: 1px solid var(--green);
  padding: 2rem;
  border-radius: 25px;
  transition: all 0.3s;
}
.shipments-section .shipments-grid .shipment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(2, 64, 61, 0.2);
}
.shipments-section .shipments-grid .shipment-card .content h3 {
  font-size: 20px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1.3;
}
.shipments-section .shipments-grid .shipment-card .content p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .shipments-section .shipments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .shipments-section .shipments-grid .shipment-card {
    padding: 1.5rem;
  }
  .shipments-section .shipments-grid .shipment-card .content h3 {
    font-size: 18px;
  }
  .shipments-section .shipments-grid .shipment-card .content p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .shipments-section {
    padding: 2rem 0;
  }
  .shipments-section .shipments-header {
    margin-bottom: 2rem;
  }
  .shipments-section .shipments-header h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .shipments-section {
    padding: 1.5rem 0;
  }
  .shipments-section .shipments-header {
    margin-bottom: 1.5rem;
  }
  .shipments-section .shipments-header h2 {
    font-size: 24px;
  }
  .shipments-section .shipments-grid {
    gap: 1rem;
  }
  .shipments-section .shipments-grid .shipment-card {
    padding: 1rem;
  }
  .shipments-section .shipments-grid .shipment-card .content h3 {
    font-size: 16px;
  }
  .shipments-section .shipments-grid .shipment-card .content p {
    font-size: 12px;
  }
}

.delivery-seller {
  padding: 2rem 0;
}
.delivery-seller .delivery {
  background: var(--grey);
  padding: 2rem;
  border-radius: 30px;
}
.delivery-seller .delivery .title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--green);
}
.delivery-seller .delivery .delivery-item {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}
.delivery-seller .delivery .item {
  display: flex;
  gap: 1rem;
  color: var(--black);
  align-items: center;
}
.delivery-seller .delivery .item .text {
  display: flex;
  color: var(--green);
  font-weight: 700;
}
.delivery-seller .delivery .item .bg {
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: var(--green);
  border-radius: 100%;
}
.delivery-seller .seller {
  background: var(--green);
  padding: 2rem;
  border-radius: 30px;
}
.delivery-seller .seller .seller-item {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}
.delivery-seller .seller .title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--white2);
}
.delivery-seller .item {
  display: flex;
  gap: 1rem;
  color: var(--white);
  align-items: center;
}
.delivery-seller .item .text {
  display: flex;
  color: var(--white);
  font-weight: 700;
}
.delivery-seller .item .bg {
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: var(--white);
  border-radius: 100%;
}

.infoblock .info {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
}
.infoblock .info span {
  position: relative;
}
.infoblock .info span:before {
  content: "";
  position: absolute;
  bottom: 10px;
  height: 5px;
  width: 100%;
  background: var(--green2);
  z-index: -1;
}
.infoblock .clients .gap {
  gap: 1rem;
}
.infoblock .clients .client {
  border: 1px solid var(--green);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 12px;
  border-radius: 30px;
  text-transform: uppercase;
}
.infoblock .clients .green {
  background: var(--green2);
  border: 1px solid var(--green2);
  color: var(--green);
}

.manager {
  padding: 4rem 0;
}
.manager .cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.manager .title {
  text-transform: uppercase;
  font-size: 36px;
  color: var(--green);
  margin: 2rem 0;
}
.manager .tovar {
  background: var(--grey);
  padding: 2rem;
  text-align: center;
  border-radius: 30px;
}
.manager .tovar .name {
  margin-top: 1rem;
  background: var(--green);
  color: var(--white2);
  border-radius: 30px;
  padding: 0.5rem 2rem;
}

.banner-index {
  background: var(--green) url(../img/line.svg) no-repeat center;
  padding: 6rem 0;
  border-radius: 30px;
}
.banner-index .title {
  font-size: 40px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
}
.banner-index .info {
  padding: 0 15%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner-index .text {
  font-size: 20px;
  color: var(--white);
  margin-top: 2rem;
  line-height: 1.6;
}
.banner-index .text p {
  margin: 0 0 1.2rem;
}
.banner-index .text p:last-child {
  margin-bottom: 0;
}
.banner-index .btn {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin-top: 1.5rem;
}
.banner-index .btn a {
  display: inline-flex;
  background: var(--green2);
  padding: 1rem 2rem;
  border-radius: 25px;
  color: var(--green);
  transition: all 0.2s;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}
.banner-index .btn a:hover {
  background: var(--grey);
  color: var(--green);
  transform: translateY(-2px);
}
.banner-index .item-list {
  padding: 0 10%;
  display: grid;
  gap: 1rem;
}
.banner-index .item-list img {
  width: 100%;
}
.banner-index .item-list .item {
  position: relative;
  text-align: center;
}
.banner-index .item-list .item span {
  position: absolute;
  bottom: 2rem;
  font-size: 20px;
  left: 0;
  right: 0;
  color: var(--white);
}

.mini-banner {
  padding: 3rem 0;
  margin: 2rem 0;
}
.mini-banner .mini-banner-content {
  background: #E8E8E8;
  border-radius: 30px;
  padding: 3rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.mini-banner .mini-banner-main {
  flex: 1;
}
.mini-banner .mini-banner-main .mini-banner-title {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.mini-banner .mini-banner-main .mini-banner-title span {
  background: #02403D;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
}
.mini-banner .mini-banner-main p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0;
}
.mini-banner .mini-banner-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mini-banner .mini-banner-badges .badge-item {
  background: #02403D;
  color: #D1F811;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.list-usluga {
  padding: 4rem 0;
}
.list-usluga .title {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--green);
}
.list-usluga .title span {
  position: relative;
}
.list-usluga .title span:before {
  content: "";
  position: absolute;
  bottom: 10px;
  height: 5px;
  width: 100%;
  background: var(--green2);
  z-index: -1;
}
.list-usluga .subtitle {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 3rem;
  line-height: 1.6;
}
.list-usluga a {
  display: flex;
  background: var(--grey);
  border-radius: 30px;
  /* align-content: space-around; */
  height: 100%;
  transition: all 0.2s;
}
.list-usluga a:hover {
  background: var(--green);
}
.list-usluga a:hover .name {
  background: var(--white);
  color: var(--green);
}
.list-usluga a:hover .text {
  color: var(--white2);
}
.list-usluga .item-usluga {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
  flex-direction: column;
}
.list-usluga .item-usluga .name {
  color: var(--grey);
  background: var(--green);
  font-size: 20px;
  padding: 0.5rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
}
.list-usluga .item-usluga .text {
  color: var(--text);
}
.list-usluga .item-usluga .arrow {
  display: flex;
  justify-content: flex-end;
}
.list-usluga .item-usluga .arrow span {
  height: 50px;
  width: 50px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50px;
}
.list-usluga .item-usluga .arrow svg {
  height: 25px;
  width: 25px;
  fill: var(--green);
}

.usluga-banner {
  position: relative;
  margin: 4rem 0;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--green);
}
.usluga-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.usluga-banner .content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, #0a2d2a 100%);
  position: relative;
}
.usluga-banner .content .name {
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.usluga-banner .content .text {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}
.usluga-banner .content .text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.2rem;
  font-weight: 300;
}
.usluga-banner .content .text p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}
.usluga-banner .content .text p strong {
  font-weight: 600;
  color: var(--white);
}
.usluga-banner .content .text ul {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}
.usluga-banner .content .text ul li {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 300;
}
.usluga-banner .content .text ul li::before {
  content: "•";
  color: var(--green2);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 18px;
}
.usluga-banner .content .summary-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.usluga-banner .content .summary-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.usluga-banner .content .summary-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.usluga-banner .content .summary-features .feature-item .feature-icon {
  flex-shrink: 0;
}
.usluga-banner .content .summary-features .feature-item p {
  font-size: 16px;
  color: var(--white);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}
.usluga-banner .content .btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.usluga-banner .content .btn .btnban {
  background: var(--green2);
  color: var(--green);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(209, 248, 17, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.usluga-banner .content .btn .btnban::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.usluga-banner .content .btn .btnban:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(209, 248, 17, 0.4);
}
.usluga-banner .content .btn .btnban:hover::before {
  left: 100%;
}
@media (max-width: 768px) {
  .usluga-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: 2rem 0;
  }
  .usluga-banner .content {
    padding: 2rem;
    order: 2;
  }
  .usluga-banner .content .name {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }
  .usluga-banner .content .text {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .usluga-banner .content .text p {
    font-size: 14px;
  }
  .usluga-banner .content .text ul li {
    font-size: 14px;
  }
  .usluga-banner .content .summary-features {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .usluga-banner .content .summary-features .feature-item {
    padding: 1rem 1.5rem;
  }
  .usluga-banner .content .summary-features .feature-item p {
    font-size: 14px;
  }
  .usluga-banner .content .btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .usluga-banner .content .btn .btnban {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 14px;
  }
  .usluga-banner img {
    order: 1;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .usluga-banner {
    margin: 1rem 0;
    border-radius: 20px;
  }
  .usluga-banner .content {
    padding: 1.5rem;
  }
  .usluga-banner .content .name {
    font-size: 24px;
    margin-bottom: 1rem;
  }
  .usluga-banner .content .text {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  .usluga-banner .content .text p {
    font-size: 13px;
  }
  .usluga-banner .content .text ul li {
    font-size: 13px;
    padding-left: 1rem;
  }
  .usluga-banner .content .summary-features {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  .usluga-banner .content .summary-features .feature-item {
    padding: 0.8rem 1rem;
  }
  .usluga-banner .content .summary-features .feature-item p {
    font-size: 13px;
  }
  .usluga-banner .content .btn {
    gap: 1rem;
  }
  .usluga-banner .content .btn .btnban {
    padding: 0.7rem 1.2rem;
    font-size: 13px;
  }
  .usluga-banner img {
    height: 200px;
  }
}

.teams {
  padding: 6rem 0;
}
.teams .title {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--green);
}
.teams .title span {
  position: relative;
}
.teams .title span:before {
  content: "";
  position: absolute;
  bottom: 10px;
  height: 5px;
  width: 100%;
  background: var(--green2);
  z-index: -1;
}
.teams .company {
  background: var(--white2);
  padding: 2rem;
  color: var(--text);
  border-radius: 30px;
}
.teams .company .missia {
  font-weight: 700;
  padding: 1rem 3rem;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2rem;
  border-radius: 30px;
  color: var(--white2);
  background: var(--green);
}
.teams .company p {
  line-height: 24px;
  margin: 0;
  padding: 0.7rem 0;
}
.teams .team {
  margin-top: 2rem;
}
.teams .team .item {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.teams .team .item img {
  width: 100%;
  border-radius: 30px;
}
.teams .team .item .namec {
  background: var(--green2);
  color: var(--green);
  position: absolute;
  margin: 2rem;
  padding: 1rem 2rem;
  bottom: 0;
  width: calc(100% - 8rem);
  border-radius: 30px;
}
.teams .team .item .namec span {
  font-weight: 700;
  display: flex;
}

.faq {
  background: var(--grey);
  padding: 3rem;
  margin: 2rem 0;
  border-radius: 30px;
}
.faq .title {
  font-size: 32px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 3rem;
  font-weight: 700;
}
.faq .faqitem {
  background: var(--white);
  font-size: 18px;
  color: var(--text);
  padding: 1.5rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}
.faq .faqitem:hover {
  background: var(--green);
  color: var(--white);
}

.partners {
  padding: 6rem 0;
}
.partners .cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.partners .title {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--green);
}
.partners .title span {
  position: relative;
}
.partners .title span:before {
  content: "";
  position: absolute;
  bottom: 10px;
  height: 5px;
  width: 100%;
  background: var(--green2);
  z-index: -1;
}
.partners .partner {
  text-align: center;
}

.cols-1-3 {
  grid-template-columns: 33% 1fr;
}

.forms .special {
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  justify-content: space-between;
}
.forms .special .item {
  background: var(--green2);
  padding: 2rem;
  flex-direction: column;
  display: flex;
  gap: 2rem;
  border-radius: 30px;
  color: var(--green);
}
.forms .special .item span {
  height: 50px;
  width: 50px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50px;
}
.forms .special .item svg {
  height: 25px;
  width: 25px;
  fill: var(--green);
}
.forms .special .item .name {
  font-size: 24px;
  font-weight: 700;
}
.forms .special .color {
  background: var(--grey);
}
.forms .forma {
  background: var(--green) url(../img/banner2.png) no-repeat center;
  border-radius: 30px;
  grid-template-columns: 33% 1fr;
  display: grid;
}
.forms .forma img {
  display: flex;
  width: 100%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-right: 5px var(--grey);
}
.forms .forma .fields {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
}
.forms .forma .fields .title {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.forms .forma .fields .title span {
  position: relative;
  z-index: 2;
}
.forms .forma .fields .title span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  height: 5px;
  width: 100%;
  background: var(--green2);
  z-index: -1;
}
.forms .forma .fields form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.forms .forma .fields form ::-moz-placeholder {
  color: var(--green);
}
.forms .forma .fields form ::placeholder {
  color: var(--green);
}
.forms .forma .fields form input {
  background: #B7CECC;
  border: 0;
  padding: 0.5rem 2rem;
  font-size: 14px;
  border-radius: 30px;
}
.forms .forma .fields form textarea {
  background: #B7CECC;
  border: 0;
  padding: 0.5rem 2rem;
  font-size: 14px;
  border-radius: 30px;
}
.forms .forma .fields form button {
  background: var(--green2);
  border: 0;
  color: var(--green);
  padding: 1rem 2rem;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.2s;
  cursor: pointer;
}
.forms .forma .fields form button:hover {
  background: var(--white);
}

.blogs {
  padding: 6rem 0;
}
.blogs .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blogs .info .title {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  position: relative;
  z-index: 2;
}
.blogs .info .title span {
  position: relative;
  z-index: 2;
}
.blogs .info .title span:before {
  content: "";
  position: absolute;
  bottom: 10px;
  height: 5px;
  width: 100%;
  background: var(--green2);
  z-index: -1;
}
.blogs .info .title p {
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  color: var(--text);
}
.blogs .info .btn a {
  font-weight: 700;
  padding: 0.5rem 3rem;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2rem;
  border-radius: 30px;
  color: var(--white2);
  background: var(--green);
  transition: all 0.2s;
}
.blogs .info .btn a:hover {
  background: var(--green2);
  color: var(--green);
}
.blogs .blog-item {
  border-radius: 30px;
  position: relative;
}
.blogs .blog-item .namebtn {
  display: flex;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.blogs .blog-item .namebtn .name {
  font-weight: 700;
  color: var(--white);
}
.blogs .blog-item .namebtn .arrow span {
  height: 50px;
  width: 50px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50px;
  transition: all 0.2s;
}
.blogs .blog-item .namebtn .arrow svg {
  height: 25px;
  width: 25px;
  fill: var(--green);
}
.blogs .blog-item .namebtn .arrow:hover span {
  background: var(--grey);
}
.blogs .blog-item .date {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 12px;
  padding: 0.35rem 1rem;
  background: var(--white);
  border-radius: 30px;
  color: var(--green);
  z-index: 1;
}
.blogs .blog-item:before {
  content: "";
  position: absolute;
  background: var(--green);
  opacity: 0.5;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 30px;
  width: 100%;
}
.blogs .blog-item img {
  width: 100%;
  display: flex;
  border-radius: 30px;
}

.map-section {
  margin: 2rem 0;
}
.map-section .map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.map-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: #02403D;
  border-radius: 20px;
  padding: 2.5rem 5%;
  margin-top: 2rem;
  border: 1px solid rgba(209, 248, 17, 0.15);
}
footer .footlogo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
footer .logo {
  font-size: 28px;
  color: #D1F811;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
footer .contact-info {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}
footer .contact-info .number,
footer .contact-info .address,
footer .contact-info .email {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
footer .contact-info .number a {
  color: #D1F811;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
footer .contact-info .number a:hover {
  color: #ffffff;
}
footer .contact-info .address {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
}
footer .contact-info .email a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}
footer .contact-info .email a:hover {
  color: #D1F811;
  opacity: 1;
}

.rekvezit {
  font-size: 14px;
  color: var(--text);
}

@media (max-width: 1600px) {
  .banner .slogan {
    font-size: 24px;
  }
  .people .btn {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 3rem;
    font-size: 16px;
  }
  .people img {
    height: auto;
    max-width: 100%;
  }
  .people .btn a {
    padding: 1rem 2rem;
  }
  .banner .bgwhite {
    padding: 1rem 0 0 1rem;
    width: calc(50% - 0em);
  }
  .banner .bgwhite .gap {
    gap: 1rem;
  }
  .banner .usluga .title {
    font-size: 16px;
  }
  .banner .usluga .text {
    line-height: 16px;
    font-size: 14px;
  }
  .banner .usluga {
    padding: 1rem;
  }
  .banner {
    margin-top: 70px;
  }
  header {
    height: 70px;
  }
  header .information .number {
    font-size: 20px;
  }
  header .information .button a {
    font-size: 14px;
    padding: 0.75rem 2rem;
  }
  .delivery-seller .delivery .title, .delivery-seller .seller .title {
    font-size: 16px;
  }
  .delivery-seller .delivery .delivery-item, .delivery-seller .seller .seller-item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .infoblock .info {
    font-size: 24px;
  }
  .infoblock .clients .client {
    padding: 0.5rem 0.5rem;
    font-size: 11px;
  }
  .manager .title {
    font-size: 30px;
  }
  .manager .cols-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .banner-index .info {
    padding: 0 5%;
  }
  .banner-index .title, .list-usluga .title, .teams .title, .faq .title, .partners .title, .blogs .info .title {
    font-size: 30px;
  }
  .banner-index .btn {
    font-size: 16px;
  }
  .banner-index .item-list {
    padding: 0 5%;
  }
  .banner-index .item-list .item span {
    font-size: 16px;
  }
  .list-usluga .cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .usluga-banner .content .tags {
    font-size: 12px;
  }
  .partners .partner img {
    width: 100%;
  }
  .forms .special .item .name {
    font-size: 20px;
  }
  .forms .forma .fields .title {
    font-size: 24px;
  }
  .forms .forma img {
    width: 100%;
    height: 70vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
@media (max-width: 980px) {
  header .information .soc, header .button {
    display: none;
  }
  .banner {
    height: auto;
  }
  header .logo {
    font-size: 14px;
  }
  header .information .number {
    font-size: 14px;
  }
  .banner .slogan {
    font-size: 14px;
    position: relative;
    right: 1rem;
    left: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    width: calc(100% - 4rem);
    color: var(--white2);
    border: 2px solid var(--white2);
  }
  .banner .usluga .arrow svg {
    height: 20px;
    width: 20px;
    fill: var(--white);
  }
  .banner .usluga .arrow span {
    height: 40px;
    width: 40px;
  }
  .banner .people {
    width: 100%;
    position: relative;
    padding-top: 4rem;
  }
  .banner .bgwhite {
    position: relative;
    width: calc(100% - 2rem);
    height: auto;
    border-radius: 30px;
    padding: 2rem 1rem;
  }
  .banner .bgwhite:before, .banner .bgwhite:after {
    display: none;
  }
  .infoblock .info span:before, .list-usluga .title span:before, .teams .title span:before, .partners .title span:before, .blogs .info .title span:before {
    height: 4px;
    bottom: 4px;
  }
  .banner .usluga .title {
    margin-bottom: 2rem;
    font-size: 20px;
  }
  .rekvezit {
    font-size: 12px;
  }
  header {
    height: 50px;
  }
  .banner {
    margin-top: 50px;
    padding-top: 1rem;
  }
  .people .btn {
    bottom: 2rem;
    left: 1rem;
    right: 1rem;
  }
  .people .btn a {
    padding: 1rem 1rem;
    font-size: 12px;
  }
  header .logo-menu .menu span {
    height: 3px;
  }
  .mini-banner {
    padding: 2rem 0;
  }
  .mini-banner .mini-banner-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 3%;
    align-items: flex-start;
  }
  .mini-banner .mini-banner-main .mini-banner-title span {
    font-size: 18px;
    padding: 0.9rem 2rem;
  }
  .mini-banner .mini-banner-main p {
    font-size: 15px;
  }
  .mini-banner .mini-banner-badges {
    flex-direction: row;
    width: 100%;
  }
  .mini-banner .mini-banner-badges .badge-item {
    flex: 1;
    font-size: 13px;
    padding: 0.7rem 1.5rem;
  }
  .delivery-seller .delivery, .delivery-seller .seller {
    padding: 2rem 1rem;
  }
  .delivery-seller .delivery .item .bg, .delivery-seller .item .bg {
    width: 50px;
    height: 50px;
  }
  .delivery-seller .delivery .item .bg svg, .delivery-seller .item .bg svg {
    height: 25px;
    width: 25px;
  }
  .delivery-seller .seller .seller-item {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .infoblock .info {
    font-size: 18px;
  }
  .clients .cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .manager .title, .banner-index .title, .list-usluga .title, .teams .title, .faq .title, .partners .title, .blogs .info .title {
    font-size: 24px;
  }
  .manager .cols-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .manager .tovar {
    padding: 1rem;
  }
  .manager .tovar img {
    width: 100%;
  }
  .manager .tovar .name {
    font-size: 12px;
  }
  .manager, .list-usluga, .teams {
    padding: 3rem 0;
  }
  .banner-index {
    padding: 4rem 0;
  }
  .banner-index .text {
    font-size: 16px;
  }
  .banner-index .btn {
    font-size: 14px;
    margin: 2rem 0;
  }
  .banner-index .item-list .item span {
    font-size: 14px;
  }
  .list-usluga .cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .list-usluga .item-usluga .name {
    font-size: 16px;
  }
  .list-usluga .item-usluga .text {
    font-size: 14px;
  }
  .list-usluga .item-usluga {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  body {
    padding: 0 3%;
  }
  .list-usluga .item-usluga .arrow span {
    height: 40px;
    width: 40px;
  }
  .list-usluga .item-usluga .arrow span svg {
    height: 20px;
    width: 20px;
  }
  .teams .company p {
    line-height: 20px;
    font-size: 14px;
  }
  .team .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .teams .team .item .namec {
    padding: 0.5rem;
    width: calc(100% - 3rem);
    margin: 1rem;
    border-radius: 15px;
    font-size: 14px;
  }
  .faq {
    padding: 2rem;
  }
  .faq .faqitem {
    font-size: 14px;
    padding: 1rem;
  }
  .faq .title {
    margin-bottom: 2rem;
  }
  .partners, .blogs {
    padding: 3rem 0;
  }
  .partners .cols-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .forms .cols-1-3 {
    grid-template-columns: 1fr;
  }
  .forms .forma img {
    display: none;
  }
  .banner-index .btn a {
    font-size: 14px;
    padding: 0.8rem 1.5rem;
    max-width: 100%;
  }
  .forms .forma {
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }
  .forms .special .item {
    margin-bottom: 2rem;
  }
  .blogs .cols-1-3 {
    grid-template-columns: 1fr;
  }
  .blogs .info .btn a {
    display: none;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 2rem 3%;
  }
  footer .footlogo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  footer .logo {
    font-size: 24px;
  }
  footer .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  footer .contact-info .number,
  footer .contact-info .address,
  footer .contact-info .email {
    align-items: center;
    text-align: center;
  }
  footer .contact-info .number a {
    font-size: 18px;
  }
  footer .contact-info .address,
  footer .contact-info .email a {
    font-size: 13px;
  }
  .map-section .map-container {
    height: 300px;
    border-radius: 15px;
  }
}
@media (max-width: 480px) {
  .mini-banner {
    padding: 1.5rem 0;
  }
  .mini-banner .mini-banner-content {
    padding: 2rem 2%;
    border-radius: 20px;
    gap: 1.5rem;
  }
  .mini-banner .mini-banner-main .mini-banner-title span {
    font-size: 16px;
    padding: 0.8rem 1.5rem;
  }
  .mini-banner .mini-banner-main p {
    font-size: 14px;
  }
  .mini-banner .mini-banner-badges {
    flex-direction: column;
    width: 100%;
  }
  .mini-banner .mini-banner-badges .badge-item {
    font-size: 12px;
    padding: 0.6rem 1.2rem;
  }
  footer {
    padding: 1.5rem 2%;
    border-radius: 15px;
  }
  footer .logo {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
  footer .contact-info {
    gap: 1rem;
  }
  footer .contact-info .number a {
    font-size: 16px;
  }
  footer .contact-info .address,
  footer .contact-info .email a {
    font-size: 12px;
  }
  .map-section .map-container {
    height: 250px;
    border-radius: 10px;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal.active .modal-content {
  transform: scale(1);
}
.modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.modal .modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  z-index: 10000;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.modal .modal-content h2 {
  font-size: 32px;
  color: #02403D;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: center;
}
.modal .modal-content .modal-subtitle {
  color: #666;
  font-size: 16px;
  text-align: center;
  margin-bottom: 2rem;
}
.modal .modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 32px;
  color: #02403D;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.modal .modal-close:hover {
  background: #f0f0f0;
  transform: rotate(90deg);
}
.modal .modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.modal .modal-form .form-group {
  display: flex;
  flex-direction: column;
}
.modal .modal-form .form-group input {
  padding: 1rem 1.5rem;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}
.modal .modal-form .form-group input:focus {
  outline: none;
  border-color: #D1F811;
  box-shadow: 0 0 0 3px rgba(209, 248, 17, 0.1);
}
.modal .modal-form .form-group input::-moz-placeholder {
  color: #999;
}
.modal .modal-form .form-group input::placeholder {
  color: #999;
}
.modal .modal-form .modal-submit {
  padding: 1.2rem 2rem;
  background: #D1F811;
  color: #02403D;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}
.modal .modal-form .modal-submit:hover {
  background: #02403D;
  color: #D1F811;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(2, 64, 61, 0.2);
}
.modal .modal-form .modal-submit:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .modal .modal-content {
    padding: 2rem;
    width: 95%;
  }
  .modal .modal-content h2 {
    font-size: 26px;
  }
  .modal .modal-content .modal-subtitle {
    font-size: 14px;
  }
  .modal .modal-close {
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    font-size: 28px;
  }
  .modal .modal-form {
    gap: 1rem;
  }
  .modal .modal-form .form-group input {
    padding: 0.9rem 1.2rem;
    font-size: 15px;
  }
  .modal .modal-form .modal-submit {
    padding: 1rem 1.5rem;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .modal .modal-content {
    padding: 1.5rem;
    border-radius: 15px;
  }
  .modal .modal-content h2 {
    font-size: 22px;
  }
  .modal .modal-content .modal-subtitle {
    font-size: 13px;
    margin-bottom: 1.5rem;
  }
  .modal .modal-form .form-group input {
    padding: 0.8rem 1rem;
    font-size: 14px;
  }
  .modal .modal-form .modal-submit {
    padding: 0.9rem 1.2rem;
    font-size: 15px;
  }
}
.grid {
  display: grid;
}

.flex {
  display: flex;
}

.gap {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 2rem;
}

.gap1 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.navbar .cols-3 {
  grid-template-columns: 1fr 65% 1fr;
}

.banner__main .cols-3 {
  grid-template-columns: 49.5% 1fr 1fr;
}

.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pd-2 {
  padding: 0rem 2rem;
}

.p-2 {
  padding: 2rem;
}

.pd-4 {
  padding: 4rem 0;
}

.pd-5 {
  padding: 5rem 0rem;
}

.pd-business {
  padding: 2rem;
  margin-bottom: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.container {
  margin: 0 2%;
  max-width: 96%;
}

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.text-right {
  text-align: right;
}

.relative {
  position: relative;
}

.radius30 {
  border-radius: 30px;
}

.radius60 {
  border-radius: 60px;
}

.w25 {
  width: 25%;
}

.w75 {
  width: 75%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w40 {
  width: 40%;
}

.w15 {
  width: 15%;
}

@media (max-width: 998px) {
  .w25 {
    width: 100%;
  }
  .w75 {
    width: 100%;
  }
  .w50 {
    width: 100%;
  }
  .w60 {
    width: 100%;
  }
  .w40 {
    width: 100%;
  }
  .w15 {
    width: 100%;
  }
  .gap {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 1rem;
  }
  .gap1 {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .item__list .cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .navbar .cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .list .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mobcols .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .banner__main .cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .products .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 2fr));
  }
  footer .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 2fr));
  }
}/*# sourceMappingURL=main.css.map */