@media (max-width: 576px) {}

@media (max-width: 767px) {}

@media (max-width: 992px) {}

@media (max-width: 1025px) {}

@media (max-width: 1290px) {}

@media (max-width: 1450px) {}

:root {
  --black: #000;
  --white: #fff;
  --red: #e43f39;
  --blue: #128fb1;
  --green: #5fa03f;
  --dark-blue: #141415;
  --text: #444446;
}

::-moz-selection {
  background-color: var(--blue);
  color: #fff;
}

::selection {
  background-color: var(--blue);
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--white);
  font-size: 16px;
  line-height: 1.3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  padding-top: 80px;
  font-weight: 400;
  font-family: 'Cabin', sans-serif;
}

@media (max-width: 1023px) {
  body {
    font-size: 14px;
    padding-top: 60px;
  }
}

body.no-scroll,
body.open-review-modal,
body.open-menu,
body.open-header-form {
  overflow: hidden;
}

.main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

strong {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

@media (max-width: 992px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: calc(100% - 40px);
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 1280px;
  }
}

.link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  position: relative;
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

.button {
  background-color: var(--red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 8px;
  height: 48px;
  font-size: 16px;
  border: none;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  line-height: 1;
  font-weight: 400;
  transition: 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
}

.button.white {
  background-color: var(--white);
  color: var(--red);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

@media (max-width: 767px) {
  .button {
    height: 40px;
    padding: 4px 16px;
    font-size: 14px;
  }
}

.button:hover {
  background-position: right center;
}

.button:active {
  transform: scale(0.85);
}

.button .button__icon {
  display: flex;
  align-items: center;
}

.button .button__icon svg {
  stroke: currentColor;
  width: 20px;
}

.input {
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding: 12px 16px;
    border-radius: 4px;
    border: 2px solid transparent;
    outline: none;
    height: 48px;
    width: 100%;
    transition: border-color 0.3s ease;
    color: var(--text);
    border: 1px solid rgba(0,0,0, 0.15);
    font-family: 'Cabin', sans-serif;
}

textarea {
  min-height: 200px;
  max-height: 280px;
  max-width: 100%;
  min-width: 100%;
  resize: none;
}

.input:focus {
    border-color: var(--black);
}

.input::placeholder {
    color: darkgrey;
}

.input:-ms-input-placeholder {
    color: darkgrey;
}

.input::-ms-input-placeholder {
    color: darkgrey;
}

.input::-webkit-input-placeholder {
    color: darkgrey;
}

.bg-grey {
  background-color: var(--lightgrey);
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    height: 80px;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media (max-width: 1023px) {
    .header {
        height: 60px;
    }
}

.header.scrolled,
.header.white {
  background-color: #fff;
  border-bottom: 1px solid var(--lightgrey);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 12px 0;
}

.header-logo {
  width: 140px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .header-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--white);
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    padding-top: 60px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: 0.3s ease;
  }
}

.header-dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  padding: 12px 20px;
  width: 300px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 4px;
  top: calc(100% - 10px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.3s ease;
}

@media (max-width: 1023px) {
  .header-dropdown {
    position: relative;
    left: 0;
    transform: translateX(0);
    margin-top: 12px;
    padding: 0;
    width: 100%;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 0;
    top: auto !important;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    display: none;
  }

  .open-dropdown .header-dropdown {
    display: flex;
  }
}

.header-menu-item.open-dropdown .header-dropdown {
  top: calc(100% + 20px);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.header-dropdown-link {
  padding: 2px 0;
  display: block;
  transition: 0.3s ease;
}

@media (max-width: 1023px) {
.header-dropdown-link {
  padding: 4px 0;
}
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

@media (max-width: 1023px) {
    .header-menu {
        flex-direction: column;
        padding: 0 20px;
        align-items: flex-start;
        padding-bottom: 60px;
        gap: 0;
    }
}

.header-menu-link {
    transition: 0.3s ease;
}
@media (max-width: 1023px) {
  .header-menu-link {
    flex-grow: 1;
  }
}

.header-menu-item {
  display: flex;
  gap: 4px;
  position: relative;
}
@media (max-width: 1023px) {
  .header-menu-item {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0, 0.1);
    flex-wrap: wrap;
  }
}

.header-menu-link:hover,
.header-dropdown-link:hover {
  color: var(--blue);
}

.header-menu-arrow {
  border: none;
  outline: none;
  appearance: none;
  background-color: transparent;
  height: 20px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s ease;
  border-radius: 100%;
}

@keyframes arrow-bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(2px); }
  100% { transform: translateY(0); }
}

.header-menu-item:hover .header-menu-arrow {
  background-color: rgba(0, 0, 0, 0.066);
  animation: arrow-bounce 0.5s ease-in-out;
}
@media (max-width: 1023px) {
  .header-menu-item:hover .header-menu-arrow {
  background-color: transparent;
  animation: none;
}
}

.header-menu-arrow svg {
  transition: 0.3s ease;
}

.header-menu-item.open-dropdown svg {
 transform: scaleY(-1);
}

.hamburger {
  width: 24px;
  height: 24px;
  position: relative;
  outline: none;
  border: none;
  background-color: transparent;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  z-index: 1;
  display: none;
}

@media (max-width: 1023px) {
    .hamburger {
        display: block;
    }
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: var(--dark-blue);
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(even) {
  left: 50%;
}

.hamburger span:nth-child(odd) {
  left: 0px;
}

.hamburger span:nth-child(1), .hamburger span:nth-child(2) {
  top: 2px;
}

.hamburger span:nth-child(3), .hamburger span:nth-child(4) {
  top: 10px;
}

.hamburger span:nth-child(5), .hamburger span:nth-child(6) {
  top: 18px;
}

.hamburger.open span:nth-child(1),.hamburger.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(2),.hamburger.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.open span:nth-child(1) {
  left: 3px;
  top: 7px;
}

.hamburger.open span:nth-child(2) {
  left: calc(50% - 2px);
  top: 7px;
}

.hamburger.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.hamburger.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.hamburger.open span:nth-child(5) {
  left: 3px;
  top: 14px;
}

.hamburger.open span:nth-child(6) {
  left: calc(50% - 2px);
  top: 14px;
}

body.open-menu .header-menu-wrapper {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.footer {
    background-color: var(--dark-blue);
    color: #8d95a0;
    padding: 40px 0;
    font-size: 14px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}

@media (max-width: 992px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px 24px;
  }

  .logo-column  {
    grid-column: 1 / 4; 
  }
}

@media (max-width: 767px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }

  .logo-column  {
    grid-column: 1 / 2; 
  }
}

.footer-logo {
  margin-bottom: 20px;
  max-width: 160px;
}

.footer-title {
  margin-bottom: 20px; 
  font-size: 20px;
  color: var(--white);
}

@media (max-width: 767px) {
  .footer-title {
    margin-bottom: 12px; 
    font-size: 16px;
  }
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255, 0.2);
}

@media (max-width: 767px) {
  .footer-bottom {
    margin-top: 24px;
    padding-top: 24px;
    font-size: 12px;
  }
}

.footer-list,
.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-contact {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
}

.footer-contact img {
  margin-top: 2px;
  width: 100%;
}

.footer a {
  transition: 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

.hero-banner {
  position: relative;
  width: 100%;
  padding: 120px 0;
  min-height: 640px;
}

@media (max-width: 992px) {
  .hero-banner {
    padding: 60px 0;
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    padding: 0;
  }
}

.hero-banner-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top right;
}

@media (max-width: 767px) {
  .hero-banner-img {
    position: relative;
    height: auto;
    width: 100%;
    object-fit: contain;
  }
}

.hero-banner-content {
  position: relative;
  max-width: 528px;
}
@media (max-width: 767px) {
  .hero-banner-content {
    padding: 20px 0;
  }
}

.hero-banner-title {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .hero-banner-title {
    margin-bottom: 20px;
  }
}

.hero-banner-buttons {
  margin-top: 40px;
  display: flex;
  gap: 12px;
}
@media (max-width: 767px) {
.hero-banner-buttons {
  margin-top: 20px;
}
}

.contact {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .contact {
    padding: 60px 0;
  }
}

.contact-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .contact-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.contact-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .contact-title:after {
    height: 2px;
    width: 80px;
  }
}

.contact-text {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 480px;
}
@media (max-width: 992px) {
  .contact-text {
    font-size: 16px;
    max-width: 480px;
  }
}

.contact-content {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
@media (max-width: 992px) {
  .contact-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.contact-left {
  padding: 28px 40px;
  background-color: #ebeff6;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .contact-left {
    padding: 20px;
  }
}

.contact-left-title {
  margin-bottom: 20px;
}

.contact-right {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  padding: 28px 40px;
  background-color: var(--white);
  border-radius: 8px;
}
@media (max-width: 992px) {
  .contact-right {
    padding: 20px;
  }
}

.contact-right-title {
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-size: 14px;
  padding-bottom: 4px;
  display: block;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 16px;
}

.contact-item img {
  width: 100%;
  margin-top: 4px;
}

.contact-item a {
  transition: 0.3s ease;
}

.contact-item a:hover {
  color: var(--red);
}

.contact-socials {
  margin-top: 40px;
}

.contact-socials-items {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-social {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 8px;
  transition: 0.3s ease;
}

.contact-social:hover {
  background-color: transparent;
}

.contact-social img {
  width: 20px;
}

.testimonials {
  padding: 80px 0;
  background-color: #f1f1f1;
}
@media (max-width: 992px) {
  .testimonials {
    padding: 60px 0;
  }
}

.testimonials-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .testimonials-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.testimonials-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .testimonials-title:after {
    height: 2px;
    width: 80px;
  }
}

.testimonials-text {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 480px;
}
@media (max-width: 992px) {
  .testimonials-text {
    font-size: 16px;
    max-width: 480px;
  }
}

.testimonials-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
@media (max-width: 1025px) {
  .testimonials-items {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 992px) {
  .testimonials-items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }
}

.testimonial {
  border-radius: 12px;
  padding: 32px 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  background-color: var(--white);
}

.testimonial-header {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0, 0.05);
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .testimonial-header {
    grid-template-columns: 1fr;
  }
}

.testimonial-header img {
  width: 100%;
  aspect-ratio: 1 / 1;
}
@media (max-width: 767px) {
  .testimonial-header img {
    width: 40px;
  }
}

.testimonial-name {
  font-size: 20px;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .testimonial-name {
    font-size: 16px;
  }
}

.testimonial-extra {
  font-size: 14px;
}

.testimonial-text {
  line-height: 1.7;
  padding-left: 60px;
  color: #686868;
}
@media (max-width: 767px) {
  .testimonial-text {
    padding-left: 0;
  }
}

.benefits {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .benefits {
    padding: 60px 0;
  }
}

.benefits-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .benefits-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.benefits-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .benefits-title:after {
    height: 2px;
    width: 80px;
  }
}

.benefits-text {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 480px;
}
@media (max-width: 992px) {
  .benefits-text {
    font-size: 16px;
    max-width: 480px;
  }
}

.benefits-content {
  border-radius: 20px;
  padding: 40px;
}

.benefits-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  margin-top: 60px;
}
@media (max-width: 1025px) {
  .benefits-items {
    grid-gap: 20px;
  }
}
@media (max-width: 992px) {
  .benefits-items {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    margin: 0 auto;
  }
}

.benefit {
  text-align: center;
}

.benefit-title {
  font-size: 20px;
  margin: 12px 0;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #686868;
  text-align: left;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-gap: 8px;
}

.benefit-list li:before {
  content: '';
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235fa03f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check-circle'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: 100%;
}

.our-activities {
  padding: 80px 0;
  background-color: #f1f1f1;
}
@media (max-width: 992px) {
  .our-activities {
    padding: 60px 0;
  }
}

.our-activities-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .our-activities-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.our-activities-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .our-activities-title:after {
    height: 2px;
    width: 80px;
  }
}

.our-activities-text {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 480px;
}
@media (max-width: 992px) {
  .our-activities-text {
    font-size: 16px;
    max-width: 480px;
  }
}

.our-activities-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
@media (max-width: 1025px) {
  .our-activities-items {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 992px) {
  .our-activities-items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }
}


.activity {
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  background-color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}

.activity-title {
  font-size: 20px;
  margin-bottom: 4px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .activity-title {
    font-size: 16px;
  }
}

.activity-text {
  line-height: 1.7;
  padding: 0 20px;
  color: #686868;
}

.activity-footer {
  border-top: 1px solid rgba(0,0,0, 0.05);
  padding: 0 20px;
  padding-top: 20px;
  margin-top: auto;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  grid-gap: 12px;
}

.activity-footer:before {
  content: '';
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235fa03f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-clock'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
  background-size: 100%;
}

.activity img {
  width: 100%;
  aspect-ratio: 400 / 240;
  object-fit: cover;
}

.results {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .results {
    padding: 60px 0;
  }
}

.results-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .results-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.results-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .results-title:after {
    height: 2px;
    width: 80px;
  }
}

.results-text {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 480px;
}
@media (max-width: 992px) {
  .results-text {
    font-size: 16px;
    max-width: 480px;
  }
}

.results-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 1025px) {
  .results-banners {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .results-banners {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

.results-banner {
  border-radius: 12px;
  padding: 40px 28px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  color: var(--white);
  text-align: center;
  font-weight: 300;
}

.results-banner.red {
  background: linear-gradient(135deg, #f06a64, #e43f39);
}

.results-banner.blue {
  background: linear-gradient(135deg, #4bb7ce, #128fb1);
}

.results-banner.green {
  background: linear-gradient(135deg, #8ccf6f, #5fa03f);
}

.results-nr {
  font-size: 36px;
  font-weight: 600;
}

.about-us {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .about-us {
    padding: 60px 0;
  }
}

.about-us-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .about-us-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.about-us-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .about-us-title:after {
    height: 2px;
    width: 80px;
  }
}

.about-us-text {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 480px;
}
@media (max-width: 992px) {
  .about-us-text {
    font-size: 16px;
    max-width: 480px;
  }
}

.about-us-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 1025px) {
  .about-us-items {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 992px) {
  .about-us-items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }
}

.about-us-item {
  border-radius: 12px;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  background-color: var(--white);
  text-align: center;
}

.about-us-item img {
  max-width: 60px;
  width: 100%;
}

.about-us-item-title {
  margin: 12px 0;
  font-size: 20px;
}

.about-us-item-text {
  line-height: 1.5;
  color: #686868;
}

.latest-news {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .latest-news {
    padding: 60px 0;
  }
}

.latest-news-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .latest-news-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.latest-news-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .latest-news-title:after {
    height: 2px;
    width: 80px;
  }
}

.latest-news-text {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 480px;
}
@media (max-width: 992px) {
  .latest-news-text {
    font-size: 16px;
    max-width: 480px;
  }
}

.latest-news-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
@media (max-width: 1025px) {
  .latest-news-content {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 992px) {
  .latest-news-content {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }
}

.latest-news-item {
  position: relative;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px 28px;
  font-size: 24px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .latest-news-item {
    padding: 12px 20px;
    font-size: 20px;
  }
}

.latest-news-item:hover img {
  transform: scale(1.1);
}

.latest-news-item:hover:after {
  opacity: 0.5;
}

.latest-news-item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: var(--dark-blue);*/
  pointer-events: none;
  z-index: 0;
  opacity: 0.33;
  transition: 0.6s ease;
}

.latest-news img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: 0.6s ease;
}

.latest-news span {
  font-weight: 600;
  position: relative;
  z-index: 2;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.newsletter {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .newsletter {
    padding: 60px 0;
  }
}

.newsletter-title {
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .newsletter-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.newsletter-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .newsletter-title:after {
    height: 2px;
    width: 80px;
  }
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 240px;
  grid-gap: 40px;
  color: #686868;
}
@media (max-width: 992px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.newsletter-text {
  font-size: 18px;
  line-height: 1.5;
}

.newsletter-text strong {
  color: var(--dark-blue);
}

.newsletter-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
@media (max-width: 767px) {
  .newsletter-inputs {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.newsletter .input {
  border: none;
  border-bottom: 1px solid rgba(104, 104, 104, 0.5);
  border-radius: 0;
  background-color: transparent;
}

.newsletter-input label {
  margin-top: 12px;
  display: block;
}

.newsletter-checkbox {
  margin-top: 40px;
  position: relative;
}

.newsletter-checkbox input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.newsletter-checkbox label {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-gap: 20px;

}

.newsletter-checkbox label:before {
  content: '';
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--dark-blue);
  margin-top: -2px;
  transition: 0.3s ease;
}

.newsletter-checkbox input:checked ~ label:before {
  background: var(--dark-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 100%;
}

.newsletter-inner {
  border-radius: 20px;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  background-color: var(--white);
}

@media (max-width: 992px) {
  .newsletter-image {
    max-width: 200px;
    order: -1;
  }
}

.about-project {
  padding: 80px 0;
  background-color: #f1f1f1;
  position: relative;
}
@media (max-width: 992px) {
  .about-project {
    padding: 60px 0;
  }
}

.about-project-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .about-project-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.about-project-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .about-project-title:after {
    height: 2px;
    width: 80px;
  }
}

.about-project-text {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 480px;
}
@media (max-width: 992px) {
  .about-project-text {
    font-size: 16px;
    max-width: 480px;
  }
}

.about-project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}

@media (max-width: 992px) {
  .about-project-content {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }
}

.about-project-right-banner {
  border-radius: 12px;
  padding: 20px 20px 32px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  background-color: var(--white);
}

.about-project-right-banner-title {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0, 0.05);
  padding-bottom: 20px;
  align-items: center;
}
@media (max-width: 767px) {
  .about-project-right-banner-title {
    grid-template-columns: 1fr;
  }
}

.about-project-right-banner img {
  width: 100%;
  aspect-ratio: 1 / 1;
}
@media (max-width: 767px) {
  .about-project-right-banner img {
    width: 40px;
  }
}

.about-project-right-banner-title {
  font-size: 20px;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .about-project-right-banner-title {
    font-size: 16px;
  }
}

.about-project-content-title {
  margin-bottom: 16px;
}

.about-project-content-text {
  line-height: 1.7;
  color: #686868;
  margin-top: 20px;
}

.about-project-right {
  position: relative;
  z-index: 1;
}

.about-project-right-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .about-project-right-banners {
    grid-template-columns: 1fr;
  }
}

.about-project-timeline {
  margin-top: 40px;
  position: relative;
}

.about-project-timeline:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, #f1f1f1);
}

.about-project-timeline-title {
  margin-bottom: 20px;
}

.about-project-timeline-item {
  margin-left: 12px;
  padding-left: 20px;
  border-left: 2px solid rgba(0,0,0, 0.2);
  padding-bottom: 60px;
  position: relative;
}

.about-project-timeline-item:before {
  content: '';
  position: absolute;
  left: -7.5px;
  top: 5px;
  height: 14px;
  width: 14px;
  background-color: var(--red);
  border-radius: 100%;
}

.about-project-timeline-item-title {
  color: var(--red);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.about-project-timeline-item-text {
  color: #686868;
  font-size: 14px;
}

.about-project-left-item {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.about-project-content-text ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-project-content-text li {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-gap: 8px;
}

.about-project-content-text li:before {
  content: '';
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23141415' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check-circle'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  background-size: 100%;
}

.about-project-img {
  position: absolute;
  left: 0;
  z-index: 0;
  bottom: 0;
  max-width: 200px;
  width: 100%;
  transform: translateY(20%);
}
@media (max-width: 767px) {
  .about-project-img {
    display: none;
  }
}


.activities {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .activities {
    padding: 60px 0;
  }
}

.activities-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .activities-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

.activities-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .activities-title:after {
    height: 2px;
    width: 80px;
  }
}

.activities-text {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 480px;
}
@media (max-width: 992px) {
  .activities-text {
    font-size: 16px;
    max-width: 480px;
  }
}

.activities-content {
  display: flex;
  gap: 40px;
}
@media (max-width: 992px) {
  .activities-content {
    flex-direction: column;
    gap: 80px;
    max-width: 640px;
    margin: 0 auto;
  }
}

.activities-right,
.activities-left {
  width: 50%;
}
@media (max-width: 992px) {
  .activities-right,
  .activities-left {
    width: 100%;
  }
}


.activities-calendar {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-gap: 20px;
}
@media (max-width: 992px) {
  .activities-calendar {
    grid-template-columns: 120px 1fr;
    grid-gap: 20px;
  }
}
@media (max-width: 767px) {
  .activities-calendar {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .activities-calendar img {
    max-width: 80px;
  }
}

.activities-calendar-title {
  background-color: var(--red);
  color: var(--white);
  padding: 12px 20px;
}

.activities-calendar-content {
  border: 2px solid var(--red);
}

.activities-calendar-text {
  padding: 20px;
}

.activities-slider {
  position: relative;
}

.activities-slider-prev,
.activities-slider-next,
.main-slider-prev,
.main-slider-next {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--red);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  outline: none;
  border: none;
  border-radius: 100%;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s ease;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23e43f39' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-left'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E") no-repeat center / 28px;
}

.activities-slider-prev:hover,
.activities-slider-next:hover,
.main-slider-prev:hover,
.main-slider-next:hover {
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-left'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E") no-repeat center / 28px;
}

.activities-slider-next,
.main-slider-next {
  right: 20px;
  left: auto;
  transform: scaleX(-1)
}

.activities-slider img {
  aspect-ratio: 2 / 1;
  width: 100%;
  object-fit: cover;
}

.main-slider {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 992px) {
  .main-slider {
    padding: 60px 0;
  }
}

.main-slider-title {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 12px;
  position: relative;
}
@media (max-width: 992px) {
  .main-slider-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}
.main-slider-title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 4px;
  border-radius: 2px;
  width: 100px;
  background-color: var(--red);
}
@media (max-width: 992px) {
  .main-slider-title:after {
    height: 2px;
    width: 80px;
  }
}

.main-slider-slider {
  position: relative;
}

.main-slider img {
  aspect-ratio: 2 / 1;
  width: 100%;
  object-fit: cover;
}

  .calendar {
    width: 100%;
    max-width: 110px;
    aspect-ratio: 1 / 1.1;
    background: #ffffff;
    border-radius: 12%;
    position: relative;
    box-shadow: 0 0 0 1px #ddd inset;
  }

  .calendar::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 28%;
    background: #b7cf6b;
    border-radius: 12% 12% 0 0;
  }

  .ring {
    position: absolute;
    top: -5%;
    width: 10%;
    height: 22%;
    background: #1f2f4a;
    border-radius: 20%;
  }

  .ring.left {
    left: 22%;
  }

  .ring.right {
    right: 22%;
  }
.content {
    position: absolute;
    top: 30%;
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6%;
  }

  .month {
    font-size: 100%;
    font-weight: 600;
    color: #1f2f4a;
    line-height: 1;
  }

  .day {
    font-size: 150%;
    font-weight: 700;
    color: #8fb23f;
    line-height: 1;
  }
  
#dnevni-center-vgc- table td {
  padding: 15px;
}
#dnevni-center-vgc- table tr:nth-child(2n+1) {
  background-color: #f5f5f5;
}
#dnevni-center-vgc- table td:nth-child(1) {
  font-weight: bold;
  background-color: #69AB41;
  color: white;
}


.partners {
    float: left;
    margin-top: 0px;
    margin-left: 20px;
}
.partners img {
    max-height: 40px;
    max-width: 250px;
    float: left;
    display: block;
    margin-left: 20px;
}