/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat Alternates", sans-serif;
  --biggest-font-size: 2rem;
  --big-font-size: 1.5rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4rem;
    --big-font-size: 3rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
  }
}

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

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #f5f5f5;
  color: var(--black-color);
}
.nav__logo {
  display: flex;
  align-items: center;
  z-index: 101;
}

.nav__logo img {
  height: auto;        /* ← ВАЖНО: был слишком маленький */
  width: 200px;
}

/* Для больших экранов */
@media screen and (min-width: 1150px) {
  .nav__logo img {
    height: 160px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
background: rgba(0, 0, 0, 0.45);
backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
}
.nav{
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo{
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}
.nav__toogle,
.nav__close{
  font-size: 1.5rem;
  cursor: pointer;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  transition: all 0.3s ease;
  margin-top: 2rem;
  position: center;
}

.btn--primary {
  background-color: #1e5bff; /* синий */
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #1748cc;
  transform: translateY(-2px);
}
/* ===== PRODUCTS ===== */

.products {
  background: #f5f4f2;
}

.products__title {
  color: #000;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product__card {
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}

.product__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.product__img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #eee;
  padding: 2rem;
}

.product__content {
  padding: 1.8rem;
}

.product__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .8rem;
  color: #000;
}

.product__text {
  font-size: .95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.2rem;
}

.product__link {
  font-size: .9rem;
  font-weight: 600;
  color: #c48a5a;
  text-decoration: none;
  transition: color .3s;
}

.product__link:hover {
  color: #000;
}
/* ===== COLLECTIONS ===== */

.collections {
  background: #ffffff;
}

.collections__title {
  color: #000;
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.collection__card {
  background: #f5f4f2;
  transition: transform .3s ease, box-shadow .3s ease;
}

.collection__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.collection__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.collection__content {
  padding: 2rem;
}

.collection__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .8rem;
  color: #000;
}

.collection__text {
  font-size: .95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.4rem;
}

.collection__link {
  font-size: .9rem;
  font-weight: 600;
  color: #c48a5a;
  text-decoration: none;
  transition: color .3s;
}

.collection__link:hover {
  color: #000;
}
/* ===== COMPARE SECTION ===== */

.compare {
  background: #ffffff;
}

.compare__title {
  color: #000;
  margin-bottom: 4rem;
  line-height: 1.3;
}

.compare__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

/* ОБЩИЕ КАРТОЧКИ */
.compare__box {
  background: #f6f6f6;
  padding: 3rem;
}

/* ПРАВАЯ — ПРЕИМУЩЕСТВА */
.compare__box--advantages {
  background: #ffffff;
  border: 6px solid #4f6f9f;
}

/* СПИСКИ */
.compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ЭЛЕМЕНТ */
.compare__item {
  display: flex;
  gap: 1.2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

/* МИНУС */
.compare__item--minus::before {
  content: "–";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-weight: 700;
  flex-shrink: 0;
}

/* ПЛЮС */
.compare__item--plus::before {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4f6f9f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.request {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    background: #fff;
}

/* левая часть */
.request-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.request-left p {
    font-size: 18px;
    color: #3b5ba5;
    line-height: 1.5;
}

/* правая часть */
.request-right {
    width: 460px;
}

.request-form {
    background: #f6f6f6;
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.request-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    background: transparent;
    padding: 12px 5px;
    margin-bottom: 30px;
    font-size: 16px;
}

.request-form input::placeholder {
    color: #777;
}

.request-form input:focus {
    outline: none;
    border-bottom-color: #c89b6d;
}

/* кнопка */
.request-form button {
    width: 100%;
    padding: 15px;
    background: #c89b6d;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.request-form button:hover {
    background: #b4875d;
}
/* ===== PROJECT FILTER LAYOUT ===== */

.projects__wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sidebar */
.projects__filter {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.projects__filter h3 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.projects__filter ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.projects__filter li {
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 8px;
  transition: 0.3s;
}

.projects__filter li:hover {
  background: #f1f1f1;
}

.projects__filter li.active {
  background: #c89b6d;
  color: #fff;
}

/* Адаптив */
@media (max-width: 900px) {
  .projects__wrapper {
    grid-template-columns: 1fr;
  }
}

/* адаптив */
@media (max-width: 900px) {
    .request {
        flex-direction: column;
        gap: 50px;
        padding: 70px 5%;
    }

    .request-right {
        width: 100%;
        max-width: 420px;
    }

    .request-left h2 {
        text-align: center;
    }

    .request-left p {
        text-align: center;
    }
}
.about {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Картинка-фон */
.about__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Белая вуаль поверх фона */
.about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 2;
}

/* Контент */
.about__content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin-left: auto;
  padding: 100px 40px;
  color: #2a2a2a;
}

.about__content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.about__lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.about ul {
  padding-left: 18px;
}

.about li {
  margin-bottom: 8px;
}
/* ===== CONTACTS ===== */
.contacts {
  background: #f5f5f5;
  padding: 80px 0;
}

.contacts__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: stretch;
}

.contacts__info {
  padding: 40px 60px;
}

.contacts__title {
  font-size: 36px;
  font-weight: 700;
  color: #3b5ba5;
  margin-bottom: 40px;
}

.contacts__item {
  font-size: 20px;
  margin-bottom: 18px;
  color: #000;
}

.contacts__company {
  margin-top: 40px;
  font-size: 16px;
  color: #333;
}

.contacts__social {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.contacts__social a {
  font-size: 22px;
  color: #c89b6d;
  transition: 0.3s;
}

.contacts__social a:hover {
  color: #000;
}

/* ===== MAP ===== */
.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ===== ADAPTIVE ===== */
@media (max-width: 900px) {
  .contacts__container {
    grid-template-columns: 1fr;
  }

  .contacts__info {
    padding: 30px;
  }
}
.footer {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  color: #333;
}




/* Navigation for mobile devices */
@media screen and (max-width:1150px) {
  .nav__menu{
    position: fixed;
    top: 0;
    right: -100%;
    background-color: hsla(0, 0%, 100%, .1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 80%;
    height: 100%;
    padding: 6 rem 3 rem 0;
    transition: right .4s;
  }
}
.nav__list{
  display: flex;
  flex-direction: column;
  row-gap: 3 rem;
}
.nav__link{
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}
.nav__link:hover{
  text-decoration: underline;
}
.nav__close{
  position: absolute;
  top: 1rem;
  right: 1.5rem;

}

/* Show menu */
.show-menu{
  right: 0;
}

/*=============== HOME ===============*/
.home__swiper{
  position: relative;
  z-index: var(--z-tooltip);
}
.home__article{
  position: relative;
  padding-top: 13rem;
  width: 100%;
  height: 100vh;
}
.home__img,
.home__shadow,
.home__content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home__img{
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.home__shadow{
  background-color: hsla(0, 0%, 0%, .05);
  z-index: -1;
}
.home__data{
  text-align: center;
}
.home__subtitle{
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
}
.home__subtitle  {
  color: #ffffff !important;
}
.home__title{
  font-size: var(--biggest-font-size);
  margin-bottom: 2.5rem;
  font-weight: var(--font-bold);
}
.home_button{
  color: var(--white-color);
  display: infine-flex;
  justify-content: center;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
}
.home_button i{
font-size: 1.5rem;
font-weight: initial;
transition: transform .4s;
}
.home_button:hover i{
transform: translateX(.5rem);
}
.home__social{
  position: absolute;
  z-index: var(--z-tooltip);
  left: 1.5rem;
  bottom: 4rem;
  display: grid;
  row-gap: 1.5rem;
}
.home__social-link{
  color: var(--white-color);
  font-size: 1.5rem;
}
/* Swiper class */
.swiper{
  height:100vh;
}
.swiper-pagination{
  width: initial;
  height: max-content;
  top: 6rem;
  left: initial;
  right: 4rem;
  font-size: var(--big-font-size);
  font-weight: var(--font-semi-bold);
  display: flex;
  column-gap: .25rem;
  align-items: center;
}
.swiper-pagination-total{
  font-size: var(--normal-font-size);
}
.swiper-button-next::after,
.swiper-button-prev::after
{
  content: '';
}
.swiper-button-next,
.swiper-button-prev
{
  font-size: 2rem;
  color: var(--white-color);
  width: initial;
  height: initial;
  outline: none;
}
.swiper-navigation{
  position: absolute;
  z-index: var(--z-tooltip);
  height: max-content;
  bottom: 4rem;
  right: 1.5rem;
  display: flex;
  column-gap: 2.5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (min-width: 768px){
  .nav__menu{
    width: 50%;
  }
}

/* For large devices */
@media screen and (min-width: 1150px){
  .container{
    margin-inline: auto;
  }
  .nav{
    height:calc(var(--header-height) + 2rem);
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__menu{
    width: initial;
  }
  .nav__list{
    flex-direction: row;
    column-gap: 4rem;
  }
  .home__data{
    text-align: initial;
  }
  .home__subtitle{
    margin-bottom: 1rem;
  }
  .home__title{
    margin-bottom:4.5rem;
  }
  .home__content{
    max-width: 1120px;
    margin-inline: auto;
    left: 0;
    right: 0;  
  }
  .home__social{
    left: 0;
  }
  .swiper-pagination{
    top: 10rem;
  }
  .swiper-pagination-total{
    font-size: 1.5rem;
  }
  .swiper-navigation{
    right: 0;
    column-gap: 3.5rem;
  }
  .swiper-button-next,
  .swiper-button-prev
  {
    font-size: 3rem;
  }
}
/*=============== PROJECTS ===============*/
.section {
  padding: 6rem 0 4rem;
}

.section__title {
  text-align: center;
  font-size: var(--big-font-size);
  margin-bottom: 4rem;
  font-weight: var(--font-bold);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.project__card {
  background-color: #fff;
  color: #000;
  padding-bottom: 1.5rem;
  transition: transform .3s, box-shadow .3s;
}

.project__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.project__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project__title {
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  margin: 1.2rem 1.2rem .6rem;
}

.project__description {
  font-size: .9rem;
  margin: 0 1.2rem 1rem;
  line-height: 1.4;
}
.project__link {
  text-decoration: none;
  color: inherit;
  display: block;
}


.project__date {
  display: block;
  margin: 0 1.2rem;
  font-size: .75rem;
  color: #777;
}
.carousel-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.carousel {
  position: relative;
  width: 90%;
  max-width: 1200px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: transform 0.5s ease;
}

.carousel-item {
  width: 300px;
  opacity: 0.3;
  transform: scale(0.9);
  transition: 0.4s ease;
}

.carousel-item img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.carousel-item.active {
  width: 600px;
  opacity: 1;
  transform: scale(1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4f6fa3;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-btn:hover {
  background: #3c5f98;
}
/* ===== SECTION ===== */
.collections {
  padding: 100px 0;
  background: #fff;
}

.collections__title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
}

.carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.carousel__track {
  display: flex;
  align-items: center;
  transition: transform 0.6s ease;
}

/* ===== ITEMS ===== */
.carousel__item {
  min-width: 70%;
  margin: 0 -130px; /* 🔥 НАЛОЖЕНИЕ */
  opacity: 0.25;
  transform: scale(0.9);
  transition: 0.6s ease;
  z-index: 1;
}

.carousel__item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

/* ACTIVE */
.carousel__item.active {
  opacity: 1;
  transform: scale(1);
  z-index: 5;
}

/* ===== BUTTONS ===== */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.carousel__btn--prev {
  left: -20px;
}

.carousel__btn--next {
  right: -20px;
}
.partners {
    padding: 80px 20px;
    background: #ffffff;
}

.partners-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.partner-card .icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.partner-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.partner-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}



/* For taller devices */
@media screen and (min-width:800px) and (min-height:800px){
  .home__article{
    padding-top: 17rem;
  }
  .swiper-pagination{
    top: 13rem;
  }
}

/* For 2K resolutions (2048 x 1152) */
@media screen and (min-width:2048px){
  .container,
  .home__content{
    max-width: 1550px;
  }
  .home__swiper,
  .home__content,
  .home__img,
  .home__shadow{
    max-height: 1000px;
  }
}
/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.show {
  display: flex;
}

.lightbox__content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
}

.lightbox__img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox__prev { left: 0; }
.lightbox__next { right: 0; }






.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.project-gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.projectModal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.projectModal.active {
  display: block;
}

.projectModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.projectModal__content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: 5% auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}

.projectModal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.projectModal__img {
  width: 100%;
  border-radius: 12px;
}

.projectModal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}
/* ===== MODAL SLIDER ===== */

.projectModal__slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.modal__prev {
  left: 10px;
}

.modal__next {
  right: 10px;
}

.modal__nav:hover {
  background: rgba(0,0,0,0.8);
}

.video {
  padding: 6rem 0;
  background: #111;
}

.video__wrapper {
  width: 100%;
  height: 75vh;
  position: relative;
  overflow: hidden;
}

.video-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* СКРЫТЫ */
}

.video-item.active {
  display: block;
}

/* кнопки */
.video__controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.video__controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
.home__btn{
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: .3s;
}

.home__btn:hover{
    background: #000;
    color: #fff;
}

.home__data{
    text-align: center;
}
html {
    scroll-behavior: smooth;
}