@import url('../styles/main.css');
@import url('../styles/contacts.css');
/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  background: #F4EDE5;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.breadcrumbs__link {
  color: #343434;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumbs__link:hover {
  color: #2A5B55;
}

.breadcrumbs__separator {
  color: #343434;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 13px;
}

.breadcrumbs__current {
  color: #343434;
  font-weight: 300;
}

/* About Hero Section */
.about-hero {
  padding: 0 0 60px;
  background: #F4EDE5;
}

.about-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -0.08em;
  color: #343434;
  margin: 0 0 40px 0;
}

.about-hero__content {
  display: grid;
  grid-template-columns: 1fr 660px;
  gap: 80px;
  align-items: stretch;
}

.about-hero__text {
  max-width: 100%;
}

.about-hero__description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.9);
  margin: 0 0 21px 0;
}

.about-hero__description:last-child {
  margin-bottom: 0;
}

.about-hero__btn {
  display: inline-block;
  background: #A0C4C7;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  padding: 14px 32px;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.about-hero__btn:hover {
  background: #8ab5b8;
}

.about-hero__services {
  flex-shrink: 0;
}

.services-wrapper {
  background: #F5F5F5;
  border-radius: 24px;
  padding: 24px;
  width: 815px; /* Изменено с 700px для 2.5 карточек */
  max-width: 815px;
  /* stretch to match left column (video) */
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-cards-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.services-container {
  width: 100%;
  max-width: 100%;
  /* allow inner grid to grow and fill wrapper */
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.service-cards {
  /* right column: 2x2 grid of service cards */
  display: flex;
  gap: 10px;
  /*transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);*/
	
  width: max-content;
  will-change: transform;
	/* Заменяем стандартный transform на версию с 3D-ускорением */

}

.service-card {
  width: 318px;
  min-width: 318px;
  /*max-width: 270px;*/
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0px -6px 24px 0px rgba(59, 61, 78, 0.05);
  /*padding: 10px;*/
  /* allow grid to control card height; prevent content collapse */
  min-height: 0;
  flex-shrink: 0;
}

.service-card__image {
min-width: 298px;
  width: 100%;
  /* allow image to flex inside card and leave space for title */
  height: 298px;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-bottom: 0;
  padding: 0;
}

.service-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #343434;
  text-align: center;
  margin: 0;
  padding-bottom: 16px;
}

/* Responsive styles for about hero */
@media (max-width: 1024px) {
  .about-hero__content {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }
  
  .services-wrapper {
    max-width: 500px;
    padding: 20px;
  }
  
  .services-container {
    max-width: 100%;
  }
  
  .service-card {
    max-width: 230px;
    /*padding: 8px;*/
  }
  
  .service-card__image {
    height: 230px;
    margin-bottom: 12px;
  }
  
  .service-card__title {
    font-size: 16px;
    padding-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .about-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-hero__illustration {
    order: 2;
    margin-top: 20px;
  }

  .about-hero__services {
    order: 3;
  }
  
  .about-hero__services {
    margin-top: 20px;
  }
  
  .services-wrapper {
    max-width: 100%;
    padding: 16px;
  }
  
  .services-container {
    max-width: 100%;
  }
  
  .service-cards {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  
  .service-card {
    max-width: 150px;
    flex: 1;
    /*padding: 10px;*/
  }
  
  .service-card__image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .services-wrapper {
    padding: 12px;
  }
  
  .service-cards {
    gap: 12px;
  }
  
  .service-card {
    max-width: 120px;
    /*padding: 8px;*/
  }
  
  .service-card__image {
    height: 120px;
  }
  
  .service-card__title {
    font-size: 12px;
    padding-bottom: 8px;
  }
}

/* Team Section */
.team {
  padding: 60px 0;
  background: #F5F5F5;
}

.team__header {
  display: flex;
	align-content: center;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.team__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -0.08em;
  color: #343434;
  margin: 0;
}

.team__nav {
  display: flex;
  gap: 10px;
	margin-right: 15px;
}

.team__nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #2A5B55;
  border-radius: 50%;
  background: transparent;
  color: #A35A63;
  pointer-events: auto !important;
  cursor: pointer !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
	opacity: 1 !important;
}

.team__nav-btn:hover {
  background: #2A5B55;
  color: #FFFFFF;
}


.team__members {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.team-member {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0px -6px 24px 0px rgba(59, 61, 78, 0.05);
}

.team-member__avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.team-member__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.092em;
  color: #2A5B55;
  margin: 0 0 10px 0;
}

.team-member__position {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -0.067em;
  color: #343434;
  opacity: 0.75;
  margin: 0;
}

/* Contacts Section */
.contacts {
  padding: 60px 0;
  background: #FFFFFF;
}

.contacts__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -0.08em;
  color: #343434;
  margin: 0 0 60px 0;
}

.contacts__info {
  background: #F5F5F5;
  border-radius: 24px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  min-height: 559px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.contact-info__item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0px -6px 24px 0px rgba(59, 61, 78, 0.05);
}

.contact-info__label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: -0.069em;
  color: #343434;
  margin: 0 0 10px 0;
}

.contact-info__value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: -0.021em;
  color: #4A4A4A;
  margin: 0;
}

.contact-map {
  width: 1304px;
  height: 410px;
  background: #F5EDE6;
  border-radius: 16px;
  margin-top: 109px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: url('../assets/map-background.jpg') center/cover;
  border-radius: 16px;
}

/* Social Media Section */
.social-media {
  padding: 60px 0;
  background: #F4EDE5;
  position: relative;
  overflow: hidden;
}

.social-media__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.social-media__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -0.08em;
  color: #343434;
  margin: 0 0 15px 0;
}

.social-media__description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.9);
  margin: 0 0 50px 0;
  max-width: 444px;
}

.social-media__buttons {
  display: flex;
  gap: 24px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.24;
  letter-spacing: -0.03em;
  transition: all 0.3s ease;
  width: 204px;
  height: 48px;
}

.social-btn--telegram {
  background: #97C7CB;
  color: #2A5B55;
}

.social-btn--instagram {
  background: transparent;
  color: #343434;
  border: 1.5px solid #2A5B55;
  border-radius: 8px;
}

.social-btn__icon {
  width: 21px;
  height: 18px;
}

.social-media__image {
  width: 795px;
  height: 478px;
  position: relative;
}

.social-media__screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 44px;
}



/* Reviews Section */
.reviews {
  padding: 60px 0;
  background: #FFFFFF;
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.reviews__content {
  max-width: 500px;
}

.reviews__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -0.08em;
  color: #343434;
  margin: 0 0 16px 0;
}

.reviews__description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.9);
  margin: 0;
}

.reviews__slider {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: start;
}

.review-card {
  background: #F5F5F5;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0px -6px 24px 0px rgba(59, 61, 78, 0.05);
}

.review-card--main {
  width: 235px;
  height: 257px;
}

.review-card--small {
  width: 209px;
  height: 228px;
  filter: blur(3px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: -0.069em;
  color: #343434;
  margin: 0;
}

.review-card__quote-icon {
  width: 24px;
  height: 15px;
  margin-bottom: 16px;
}

.review-card__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(52, 52, 52, 0.9);
  margin: 0 0 16px 0;
}

.review-card__date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.22;
  letter-spacing: -0.079em;
  color: #343434;
  opacity: 0.5;
  margin: 0;
}

/* Partners Section */
.partners {
  padding: 60px 0;
  background: #F4EDE5;
}

.partners__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #343434;
  margin: 0 0 18px 0;
}

.partners__grid {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  margin-left: -10px;
  margin-right: -10px; /* allow cards to "peek" at the edges */
}

.partner-card {
  flex: 0 0 auto;
  width: 180px;
  height: 120px;
  background: #FFFFFF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0px 6px 20px rgba(59,61,78,0.06);
  scroll-snap-align: center;
}

.partner-card__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Hide native scrollbar for aesthetic match to mockup */
.partners__grid::-webkit-scrollbar {
  display: none;
}
.partners__grid {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

@media (min-width: 1200px) {
  .partner-card {
    width: 200px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .partner-card {
    width: 140px;
    height: 100px;
  }
  .partners__grid {
    gap: 12px;
    margin-left: -6px;
    margin-right: -6px;
  }
}

/* Consistent vertical spacing between sections */
.about-page > section, .about-page > .container {
  margin-bottom: 0px;
}

.about-page > section:last-child, .about-page > .container:last-child {
  margin-bottom: 0;
}

/* Убрать этот отступ у breacrumps, которые тоже заключены в этот контейнер */
.container:not(.breadcrumps) {
  margin-bottom: 0;
}

/* Reduce spacing for info cards and map in contacts section */
.contacts-section__map-container {
  margin-top: 32px;
}

/* Adjust spacing for team intro and team members */
.team-intro {
  margin-bottom: 32px;
}
.team__members {
  margin-bottom: 32px;
}

/* Adjust spacing for reviews and partners */
.reviews-section {
  margin-bottom: 30px;
}
.partners-section {
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-cards {
    justify-content: center;
  }
  
  .team__members {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .contact-map {
    width: 100%;
  }
  
  .social-media__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .partners__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero__title,
  .team__title,
  .contacts__title,
  .social-media__title,
  .reviews__title,
  .partners__title {
    font-size: 24px;
    letter-spacing: -0.048em;
  }
  
  .about-hero {
    padding: 24px 0 40px;
  }
  
  .about-hero__content {
    gap: 24px;
  }
  
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .team__members {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews__header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .social-media__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
	.questions-form__title {
		font-size: 24px !important;
	}
}

/* Mobile Adaptive Styles */
@media (max-width: 480px) {
  .container {
    padding: 0 24px;
  }
  
  /* Hero section mobile */
  .about-hero {
    padding: 24px 0;
  }
  
  .about-hero__title {
    font-size: 21px;
    margin-bottom: 24px;
  }
  
  .about-hero__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-hero__description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  
  /* Services section mobile - horizontal scroll */
  .services-wrapper {
    background: #F5F5F5;
    border-radius: 0px;
    padding: 24px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }
  
  .service-cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 10px 0;
    margin: 0 0 -10px 0;
  }
  
  .service-cards::-webkit-scrollbar {
    height: 4px;
  }
  
  .service-cards::-webkit-scrollbar-track {
    background: rgba(42, 91, 85, 0.1);
    border-radius: 2px;
  }
  
  .service-cards::-webkit-scrollbar-thumb {
    background: #2A5B55;
    border-radius: 2px;
  }
  
  .service-card {
    min-width: 240px;
    max-width: 240px;
    height: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  
  .service-card__image {
    height: 209px;
    border-radius: 12px;
  }
  
  .service-card__title {
    font-size: 21px;
    line-height: 1.22;
    letter-spacing: -0.057em;
    margin-top: 16px;
  }
  
  /* Team section mobile - horizontal scroll */
  .team {
    padding: 50px 0;
  }
  
  .team .container {
    padding: 0;
  }
  
  .team__title {
    font-size: 21px;
	  padding-left: 15px;
    /*margin: 0 24px 50px 24px;*/
  }
  
  .team__members {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px 10px 24px;
    margin: 0 0 -10px 0;
  }
  
  .team__members::-webkit-scrollbar {
    height: 4px;
  }
  
  .team__members::-webkit-scrollbar-track {
    background: rgba(42, 91, 85, 0.1);
    border-radius: 2px;
  }
  
  .team__members::-webkit-scrollbar-thumb {
    background: #2A5B55;
    border-radius: 2px;
  }
  
  .team-member {
    min-width: 240px;
    max-width: 240px;
    height: 280px;
    padding: 24px;
    scroll-snap-align: start;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .team-member__avatar {
    width: 140px;
    height: 140px;
    margin-bottom: 16px;
  }
  
  .team-member__name {
    font-size: 21px;
    line-height: 1.22;
    letter-spacing: -0.069em;
    margin-bottom: 8px;
  }
  
  .team-member__position {
    font-size: 14px;
    line-height: 1.22;
    letter-spacing: -0.086em;
    text-align: center;
  }
  
  /* Contacts section mobile */
  .contacts {
    padding: 50px 0;
  }
  
  .contacts__title {
    font-size: 21px;
    margin-bottom: 50px;
  }
  
  .contacts__info {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
  
  .contact-info__item {
    padding: 16px;
    border-radius: 16px;
  }
  
  .contact-info__label {
    font-size: 14px;
    line-height: 1.22;
    letter-spacing: -0.079em;
    margin-bottom: 8px;
  }
  
  .contact-info__value {
    font-size: 14px;
    line-height: 1.14;
    letter-spacing: -0.021em;
  }
  
  .contact-map {
    height: 190px;
    margin-top: 0;
    border-radius: 16px;
  }
  
  /* Social media section mobile */
  .social-media {
    padding: 50px 0;
  }
  
  .social-media__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .social-media__title {
    font-size: 21px;
    text-align: center;
    margin-bottom: 16px;
  }
  
  .social-media__description {
    text-align: center;
    margin-bottom: 40px;
    max-width: none;
  }
  
  .social-media__buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .social-btn {
    width: 326px;
    height: 48px;
  }
  
  .social-media__image {
    width: 100%;
    height: 319px;
    order: -1;
  }
  
  .social-media__screenshot {
    border-radius: 0 0 24px 24px;
  }
  
  /* Reviews section mobile */
  .reviews {
    padding: 50px 0;
  }
  
  .reviews .container {
    padding: 0;
  }
  
  .reviews__title {
    font-size: 21px;
    margin: 0 24px 16px 24px;
  }
  
  .reviews__description {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 24px 50px 24px;
  }
  
  .reviews__slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px 10px 24px;
    margin: 0 0 -10px 0;
  }
  
  .reviews__slider::-webkit-scrollbar {
    height: 4px;
  }
  
  .reviews__slider::-webkit-scrollbar-track {
    background: rgba(42, 91, 85, 0.1);
    border-radius: 2px;
  }
  
  .reviews__slider::-webkit-scrollbar-thumb {
    background: #2A5B55;
    border-radius: 2px;
  }
  
  .review-card {
    min-width: 235px;
    max-width: 235px;
    height: 257px;
    scroll-snap-align: start;
    flex-shrink: 0;
    padding: 16px;
  }
  
  .review-card--main {
    min-width: 235px;
    max-width: 235px;
  }
  
  .review-card--small {
    min-width: 209px;
    max-width: 209px;
    height: 228px;
  }
}

/* About hero illustration */
.about-hero__illustration {
  max-width: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero__illustration img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0px -6px 24px 0px rgba(59, 61, 78, 0.05);
}

/* Ensure services sit under illustration on smaller screens */
@media (max-width: 1024px) {
  .about-hero__content {
    /*grid-template-columns: 1fr 420px;*/
	  display: flex;
	  flex-direction: column;
  }
}

@media (max-width: 768px) {
  .about-hero__content {
    /*grid-template-columns: 1fr;*/
	  display: flex;
  }

  .about-hero__text {
   /* order: 2;
    margin-top: 20px;*/
  }
  .about-hero__services {
  /*  order: 3;*/
	  display: flex;
	  width: 100%;
	  min-width: 100%;
	  flex-shrink: 1 !important;
	      margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
	
	  .services-wrapper {
    /* Убираем отрицательные margin и устанавливаем ширину 100% */
    margin: 0 !important;
    width: 100% !important;
    /* Убираем внутренние отступы, если они есть */
    padding: 0 !important;
  }
	.services-container {
		padding: 20px;
	}

	
	
	.questions-section.animate-on-scroll.animate-in {
		padding-top: 0px;
	}
	.partners.animate-on-scroll.animate-in {
		margin-bottom 0px;
		}
	}

.about__video {
    position: relative;
    height:470px;
}
.videofon{
    position: absolute;
    border-radius: 16px;
}