@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Manrope:200,300,regular,500,600,700,800");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;
  margin: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.main {
  flex: 1 0 auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #212529;
}
.section__title--light {
  color: #ffffff;
}

/*==========================================================================
  HEADER & NAV
==========================================================================*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.header.scrolled {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .logo {
  position: relative;
  z-index: 10;
}
.nav .logo img {
  height: 42px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__list {
  display: flex;
  gap: 2rem;
}
.nav__link {
  color: #6c757d;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.nav__link:hover {
  color: #3498DB;
}
.nav__toggle {
  position: relative;
  z-index: 1000;
  cursor: pointer;
  display: none;
  background: none;
  border: none;
}
.nav__toggle i {
  color: #212529;
  font-size: 2rem;
  font-weight: 600;
}

.logo {
  position: relative;
  z-index: 10;
}
.logo img {
  height: 42px;
}

/*==========================================================================
  HERO SECTION
==========================================================================*/
.hero {
  position: relative;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1559028006-448665bd7c7f?q=80&w=1374&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center center/cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.hero__container {
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero__subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

/*==========================================================================
  ABOUT SECTION
==========================================================================*/
.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.about__image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.about__content .section__title {
  text-align: left;
}
.about__content p {
  margin-bottom: 1.5rem;
  color: #6c757d;
}
.about__content p:last-child {
  margin-bottom: 0;
}

/*==========================================================================
  CTA SECTION
==========================================================================*/
.cta {
  background-color: #3498DB;
  text-align: center;
}
.cta__container h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta__container p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0 auto 2rem;
}

/*==========================================================================
  FOOTER
==========================================================================*/
.footer {
  flex-shrink: 0;
  background-color: #212529;
  color: #ced4da;
  padding: 2rem 0;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__info .logo {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer__socials {
  display: flex;
  gap: 1.5rem;
}
.footer__socials a {
  color: #ced4da;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.footer__socials a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}
.footer__text {
  font-size: 0.9rem;
  color: #ced4da;
  margin-top: 1rem;
  max-width: 400px;
}
.footer__copy {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #ced4da;
}

/*==========================================================================
  BUTTONS
==========================================================================*/
.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.btn--primary {
  color: #ffffff;
  background-color: #3498DB;
  border-color: #3498DB;
}
.btn--primary:hover {
  background-color: rgb(35.4426778243, 133.8945606695, 199.8573221757);
  border-color: rgb(35.4426778243, 133.8945606695, 199.8573221757);
}
.btn--light {
  color: #3498DB;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn--light:hover {
  background-color: #e9ecef;
  border-color: #e9ecef;
}

/*==========================================================================
  CARDS (Services, News)
==========================================================================*/
.services {
  background-color: #f8f9fa;
}

.services__grid,
.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.service-card__icon {
  font-size: 3rem;
  color: #3498DB;
  margin-bottom: 1.5rem;
}
.service-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-card__text {
  color: #6c757d;
}

.news-card {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.news-card__img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #212529;
}
.news-card__text {
  color: #6c757d;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-card__link {
  color: #3498DB;
  font-weight: 600;
  align-self: flex-start;
  transition: all 0.3s ease-in-out;
}
.news-card__link:hover {
  color: rgb(33.1380753138, 125.1882845188, 186.8619246862);
}

/*==========================================================================
  FAQ ACCORDION
==========================================================================*/
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq__item {
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.faq__item.active .faq__answer {
  max-height: 200px;
}
.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq__question h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  padding: 1rem 0;
}

.faq__icon {
  font-size: 1.25rem;
  transition: transform 0.4s;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq__answer p {
  color: #6c757d;
  line-height: 1.5;
  padding-bottom: 1rem;
}

/*==========================================================================
  АДАПТИВНОСТЬ
==========================================================================*/
@media (max-width: 992px) {
  .about__container {
    grid-template-columns: 1fr;
  }
  .about__content .section__title {
    text-align: center;
  }
  .about__image {
    order: -1;
  }
}
@media (max-width: 768px) {
  .nav {
    height: 4.5rem;
  }
  .nav__toggle {
    display: block;
  }
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 4rem 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: right 0.4s ease-in-out;
  }
  .nav__menu.show-menu {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }
  .nav__link {
    font-size: 1.5rem;
    color: #212529;
    font-weight: 600;
  }
  .section__title {
    font-size: 2rem;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 1.125rem;
  }
  .news-card__img {
    height: 180px;
  }
  .faq__question h3 {
    font-size: 1.125rem;
  }
  .footer__container {
    flex-direction: column;
    text-align: center;
  }
  .footer__info {
    margin-bottom: 1rem;
  }
}
@media (max-width: 375px) {
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=styles.css.map */