/* || Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Rubik:wght@400;700&display=swap");

/* font-family: 'Poppins', sans-serif;
font-family: 'Rubik', sans-serif; */

/* || VARIABLES */
:root {
  /* FONT FAMILY */
  --FF--Headlines: "Poppins", sans-serif;
  --FF--Text: "Rubik", sans-serif;
  /* szerokosc strony */
  --width--Website: 1200px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  /* min-height: 250vh; */
  background: url(/images/background-grey.jpg);
  background-size: cover; /* Dopasowanie obrazu do rozmiaru okna przeglądarki */
  background-repeat: no-repeat;
  background-attachment: fixed; /* Opcjonalne, aby tło nie przewijało się z zawartością strony */
  background-position: center center; /* Opcjonalne, aby obraz był wyśrodkowany */
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7)
    ),
    url(/images/background-grey.jpg);
}
li {
  list-style: none;
}
a,
p {
  text-decoration: none;
  font-size: 14px;
}
p {
  font-family: var(--FF--Text);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--FF--Headlines);
  letter-spacing: 1px;
}
a {
  font-family: var(--FF--Headlines);
  font-weight: bold;
  color: #000e39;
  letter-spacing: 1px;
}

html {
  font-size: 16px;
}

/* Header z Nawigacją i LOGO */
.header {
  height: 10vh;
  width: 100%;
}
.header-container {
  height: 10vh;
  display: flex;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 10px;
}

.header-content-logo {
  position: relative;
  width: 150px;
  margin: 10px;
  padding: 5px;
}
.header-content-logo img {
  position: relative;
  width: 100%;
  padding-top: 10px;
}
.main-menu {
  height: 8vh;
  display: flex;
  gap: 2rem;
}
.main-menu li {
  display: flex;
  align-self: center;
  justify-content: center;
}
.main-menu li a {
  color: #898989;
  display: block;
  height: 100%;
  padding: 10px;
  font-size: 1rem;
  position: relative;
  /* transition: 0.5s; */
}

.menu-item a::after,
.menu-offers a::after {
  content: "";
  position: absolute;
  width: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 5px;
  background: #0f26fa;
  transform-origin: center;
  transition: all ease-in-out 0.5s;
}
li.menu-item .active-link::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 5px;
  background: #0f26fa;
  transform-origin: center;
}
.menu-item a:hover::after {
  left: 0;
  right: 0;
  width: 100%;
}
.header-content-navigation-mobile {
  display: none;
}
#offer {
  position: relative;
}
/* Menu Oferta */
.menu-offers {
  display: block;
  position: absolute;
  overflow: hidden;
  top: 3rem;
  left: 0;
  max-height: 0px;
  z-index: 1500;
  width: 350px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
  justify-content: center;
  text-align: center;
  transition: max-height 0.5s ease;
}

#offer:hover .menu-offers {
  max-height: 350px;
}

/* Main */

/* Section Slider */
.slider {
  margin-top: 10px;
  position: relative;
  background: #eee;
  background-size: cover;
  display: grid;
  grid-template-columns: 4rem 1fr 4rem;
  grid-template-rows: 1fr;
  height: 65vh;
  width: 100%;
  overflow: hidden;
}
.slider-slides {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.slider-slide {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  z-index: 0;
}
.slider-slide.is-active {
  opacity: 1;
  z-index: 1;
}
/* dodatnie zdjęć do slide */
.slide-1 {
  background-image: url(/images/bulitside_1920.jpg);
  background-position: 20% 80%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
}
.slide-2 {
  background-image: url(/images/construction_1280.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
}
.slide-3 {
  background-image: url(/images/lawnmow-1920.jpg);
  background-position: 100% 40%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
}
.slide-4 {
  background-image: url(/images/technicial_1920.jpg);
  background-position: 100% 40%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
}
/* Animacja */
.slider-slide {
  opacity: 0;
  transition: 0.8s ease-in-out;
}
.slider-slide.is-active {
  opacity: 1;
}

/* prev/ next */
.slider-nav {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  display: grid;
  grid-template-columns: 4rem 1fr 4rem;
  grid-template-rows: 1fr;
}
.slider-button-prev,
.slider-button-next {
  cursor: pointer;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.1);
  border: 0;
  text-indent: -999px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
}
.slider-button-prev {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  background-image: url(/images/arrow-left-solid.svg);
  /* background-color: rgba(255, 255, 255, 1) s; */
}
.slider-button-next {
  grid-column: -1 / -2;
  grid-row: 1 / 2;
  background-image: url(/images/arrow-right-solid.svg);
}
.slider-button-prev:hover,
.slider-button-next:hover {
  background-color: #fff;
}
.slider-button-prev:focus,
.slider-button-next:focus {
  outline: none;
}
/* Stronicowanie */

.slider-pagination {
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.slider-pagination-button {
  background: transparent;
  width: 2rem;
  height: 2rem;
  border: 0;
  text-indent: -999px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.slider-pagination-button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  transition: 0.5s all;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.slider-pagination-button.is-active:before {
  background: #fff;
}
.slider-pagination-button:focus {
  outline: none;
}

/* wnętrze slajdów */

.slider-slide-title {
  color: #fff;
  position: relative;
  left: -3rem;
  opacity: 0;
  font-size: 2.3rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 0;
  text-align: center;
  font-family: var(--FF--Headlines);
  text-shadow: 2px 2px 4px #111;
}
.slider-slide-text {
  color: #fff;
  position: relative;
  left: -3rem;
  opacity: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 4rem;
  padding-right: 4rem;
  text-align: center;
  font-family: var(--FF--Text);
  max-width: 60%;
  text-shadow: 2px 2px 4px #111;
}
.slider .slider-slide-title {
  left: -3rem;
  opacity: 0;
  transition: 2s left, 2s opacity;
}
.slider .slider-slide-text {
  left: -3rem;
  opacity: 0;
  transition: 2s 1s left, 2s 1s opacity;
}
.slider-slide.is-active .slider-slide-title {
  left: 0;
  opacity: 1;
}
.slider-slide.is-active .slider-slide-text {
  left: 0;
  opacity: 1;
}

/* Section o Firmie */

.section-aboutCompany {
  max-width: var(--width--Website);
  margin: 0 auto;
  margin-top: 5rem;
}

.container-aboutPine-text {
  display: flex;
  padding: 0 10px;
}
.aboutPine {
  line-height: 2;
  margin-bottom: 3rem;
}
.aboutPine-name {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.aboutPine-icon {
  display: flex;
  align-self: center;
}
.aboutPine-name-inner {
  color: #020774;
  align-self: center;
  font-size: 2rem;
}
.aboutPine-h2 {
  margin-bottom: 1rem;
}
.aboutPine-text {
  font-size: 1rem;
}
.aboutPine-strong {
  font-size: 18px;
  margin: 1rem 0;
}
.container-aboutPine-services {
  clear: both;
}

/* obrazki z usługami */
.container-aboutPine-services {
  max-width: var(--width--Website);
  margin-top: 5vh;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 1rem;
  margin-bottom: 5vh;
}
.service {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  min-height: 300px;
  flex-grow: 1;
  background-color: #fff;
  padding: 15px;
  margin: 25px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  transition: 0.4s ease-in-out;
}
.service-simple {
  display: flex;
  flex-direction: column;
  align-content: center;
  text-align: center;
}
.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6.5rem;
  width: 6.5rem;
  flex-shrink: 0;
  margin: 0 auto;
  border: 5px dotted #0f26fa;
  border-radius: 50%;
}
.service-icon i {
  font-size: 4rem;
  color: #0f26fa;
}
.service-name-button {
  border-radius: 5px;
  padding: 15px;
  cursor: pointer;
}
.service-toOffert {
  border: 3px solid #0f26fa;
  border-radius: 15px;
  padding: 5px;
  color: #020873;
  background-color: #fff;
}

.service-toOffert a {
  color: #020873;
}

.service:hover {
  transform: scaleY(1.15) scaleX(1.15);
  background-color: rgb(90, 106, 252);
  /* background-image: url(/Pine_maintainance/images/service-cleaning.jpg); */
  background-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
#cleaning:hover {
  background-image: url(/images/service-cleaning.jpg);
}
#technical:hover {
  background-image: url(/images/service-technical.jpg);
}
#construction:hover {
  background-image: url(/images/service-construction.jpg);
}
#grass:hover {
  background-image: url(/images/service-grass.jpg);
}

.service:hover .service-icon {
  background-color: #020873;
  border: 5px dotted #fff;
}

.service:hover .service-icon i {
  color: #fff;
}

.service:hover .service-name-tittle {
  color: #fff;
}
.service:hover .service-toOffert:hover {
  transform: scale(1.2);
  background-color: rgb(2, 7, 116);
  transition: 0.5s ease-in-out;
}

.service-toOffert:hover a {
  color: #fff;
}

/* Panel Zapraszamy */
/* 
.aboutPine-panel {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 15vh;
  box-shadow: rgba(2, 7, 116, 0.3) 100px 205px 308px,
    rgba(90, 106, 252, 0.22) 25px 25px 100px;
}

.pine-panel-p {
  max-width: var(--width--Website);
  display: flex;
  align-items: center;
  text-align: center;
}
.pine-panel-p p {
  font-size: 4rem;
} */

/* Footer */

.pine-footer {
  margin: 0;
  width: 100%;
  background-color: #020774;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 28vh;
  max-width: var(--width--Website);
  margin: 0 auto;
}

.footer-container * {
  color: white;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.pine-contact {
  margin-left: 1rem;
}

.footer-contact-details * {
  font-weight: 400;
  font-style: normal;
}
.footer-policy {
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  /* flex-grow: 1; */
  gap: 2rem;
}
.footer-link {
  display: flex;
  align-self: center;
  margin-right: 5px;
}
.footer-link:hover {
  color: rgb(220, 91, 22);
  transition: 0.2s ease-in-out;
}

.footer-copyrights {
  height: 5vh;
  margin: 0 auto;
  width: 100%;
  background-color: #02088b;
  text-align: center;
  line-height: 5vh;
}
.footer-copyrights p {
  color: white;
}

/* Strona Pine Maintainance Wersja Moblina */
@media (min-width: 270px) and (max-width: 1170px) {
  .header-content-navigation,
  .footer-links {
    display: none;
  }
  .header-content-navigation-mobile {
    display: block;
  }
  #burger,
  #close-menu {
    position: fixed;
    font-size: 3rem;
    top: 1rem;
    right: 3rem;
    z-index: 800;
    cursor: pointer;
  }
  #burger:hover,
  #close-menu:hover {
    color: rgb(220, 91, 22);
  }
  .main-navigation-mobile {
    position: fixed;
    top: 3rem;
    right: 3rem;
    display: none;
    max-width: 400px;
    min-width: 250px;
    height: 180px;
    z-index: 900;
    border: 2px solid gray;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
  }
  .main-navigation-mobile .main-menu {
    display: block;
  }
  .main-navigation-mobile .main-menu a {
    color: #020774;
  }
  .activeMenu {
    display: block;
  }
}

@media (min-width: 300px) and (max-width: 1000px) and (orientation: landscape) {
  .header-container {
    display: flex;
    flex-grow: 1;
    background: none;
    height: 20vh;
  }
  .logo img {
    margin-top: 5px;
  }
  .main-navigation-mobile {
    width: 300px;
    height: 150px;
  }
  .main-navigation-mobile .main-menu li a {
    font-size: 16px;
    padding: 5px;
  }
  .main-content {
    margin-top: 12vh;
  }
  .slider {
    height: 75vh;
  }
  .section-aboutCompany {
    margin-top: 2rem;
  }
  .aboutPine {
    margin-bottom: 1rem;
  }
  .aboutPine-name {
    margin-bottom: 0.5rem;
  }
  .aboutPine-name * {
    font-size: 1.5rem;
  }
  .aboutPine-h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .aboutPine p {
    font-size: 16px;
  }
  .service {
    height: 300px;
  }
  .service-name-tittle {
    font-size: 1rem;
  }

  .footer-container {
    padding-left: 2rem;
    height: 35vh;
    display: flex;
  }

  .pine-footer * {
    font-size: 12px;
  }
  .footer-title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .footer-policy {
    margin-top: 5px;
  }
  .footer-copyrights {
    height: 8vh;
    line-height: 8vh;
  }
}

@media (min-width: 300px) and (max-width: 400px) and (orientation: portrait) {
  .header-container {
    display: flex;
    flex-grow: 1;
    background: none;
    height: 12vh;
  }
  .logo img {
    margin-top: 5px;
  }
  .main-navigation-mobile {
    width: 300px;
  }
  .main-content {
    margin-top: 1rem;
  }
  .aboutPine-name * {
    font-size: 1.5rem;
  }
  .aboutPine-h2 {
    font-size: 1.2rem;
  }
  .footer-container {
    height: 28vh;
    display: flex;
  }
  .footer-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .pine-footer * {
    font-size: 16px;
  }
  .footer-policy {
    margin-top: 5px;
  }
  .footer-copyrights {
    height: 5vh;
    line-height: 5vh;
  }
  .footer-copyrights * {
    font-size: 12px;
  }
}

@media (min-width: 400px) and (max-width: 500px) and (orientation: portrait) {
  .section-aboutCompany {
    margin-top: 3rem;
  }
  .footer-copyrights {
    height: 5vh;
    line-height: 5vh;
  }
  .footer-copyrights * {
    font-size: 12px;
  }
}

/* || Strona z ofertą */

.main-offer {
  max-width: var(--width--Website);
  margin: 0 auto;
}

/* || Strona O firmie */

.main-aboutCompany {
  max-width: var(--width--Website);
  margin: 2rem auto;
  padding: 1rem;
}
.aboutCompany-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #020774;
  /* text-align: center; */
}
.aboutCompany-text {
  max-width: 800px;
  line-height: 1.5rem;
}
.aboutCompany-processes-title {
  width: 100%;
  /* text-align: center; */
  margin: 3rem 0;
  color: #020774;
}
.container-processes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
}
.aboutCompany-process {
  position: relative;
  flex: 1 1;
  max-height: 350px;
  background-color: #fff;
  padding: 15px;
  margin: 15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
  /* transition: 0.4s ease-in-out; */
}
#first,
#second {
  min-width: 48%;
  flex: 1 0;
  height: 350px;
}
#third,
#fourth,
#fifth {
  flex: 1 0;
  height: 350px;
}
.process-align {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.process-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.5rem;
  width: 5.5rem;
  flex-shrink: 0;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #0f26fa;
}
.process-icon i {
  font-size: 3rem;
  color: #fff;
}
.process-title {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #0f26fa;
}
.numer-ofProcess {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 3rem;
  font-weight: bold;
  color: rgba(230, 230, 230, 0.8);
}

.process-slide {
  position: absolute;
  bottom: 100%; /* Zaczyna się od dołu kontenera */
  left: 0;
  width: 100%;
  height: 100%;
  border-top: #0f26fa 10px solid;
  background-color: rgba(50, 50, 50, 0.8);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: bottom 0.3s;
}
.aboutCompany-process:hover .process-slide {
  bottom: 0;
}

.process-title-slide {
  position: absolute;
  top: 35%;
  left: 1rem;
  color: #fff;
  font-size: 1.5rem;
}
.process-text-slide {
  position: absolute;
  top: 65%;
  left: 1rem;
  color: #fff;
}
.numer-ofProcess-slide {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 4rem;
  font-weight: bold;
  color: rgba(240, 240, 240, 0.8);
}
#first-slide {
  background-image: url(/images/process-frist.jpg);
}

#second-slide {
  background-image: url(/images/process-second.jpg);
}
#third-slide {
  background-image: url(/images/process-third.jpg);
}
#fourth-slide {
  background-image: url(/images/process-fourth.jpg);
}
#fifth-slide {
  background-image: url(/images/process-fifth.jpg);
}

/* Sekcja O Nas Zmiany  */
.aboutCompany-content {
  display: flex;
  border: 2px solid #898989;
  border-radius: 15px;
  padding: 2rem;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}
.aboutCompany-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.aboutCompany-content-img {
  min-width: 50%;
  max-height: 426px;
  border: 3px solid #0f26fa;
  border-radius: 50px;
  overflow: hidden;
}
.aboutCompany-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

/* || Ustawienia strony O Firmie na mobile */
@media (min-width: 1601px) and (max-width: 1920px) {
  .container-processes {
    display: flex;
    flex-wrap: wrap;
  }
  #first,
  #second,
  #third,
  #fourth,
  #fifth {
    min-width: 45%;
    flex: 1 0;
    min-height: 350px;
  }
}

@media (min-width: 1320px) and (max-width: 1600px) {
  .container-processes {
    display: flex;
    flex-wrap: wrap;
  }
  #first,
  #second {
    min-width: 40%;
    flex: 1 0;
    min-height: 350px;
  }
  #third,
  #fourth,
  #fifth {
    min-width: 30%;
    min-height: 350px;
  }
}

@media (min-width: 1070px) and (max-width: 1320px) {
  .container-processes {
    display: flex;
    flex-wrap: wrap;
  }
  #first,
  #second {
    min-width: 40%;
    flex: 1 0;
    min-height: 380px;
  }
  #third,
  #fourth,
  #fifth {
    min-width: 40%;
    min-height: 380px;
  }
}
@media (min-width: 300px) and (max-width: 1070px) {
  .container-processes {
    display: block;
  }
  /* .process-align {
    height: 100% !important;
    align-content: center;
  } */

  .aboutCompany-process {
    min-height: 450px;
  }
}
@media (min-width: 300px) and (max-width: 960px) and (orientation: landscape) {
  .aboutCompany-process {
    height: 350px;
  }
  .numer-ofProcess-slide {
    top: 0.5rem;
  }
  #first-slide .process-text-slide {
    top: 70%;
  }
}
@media (min-width: 300px) and (max-width: 960px) {
  .aboutCompany-content {
    display: block;
  }
}

@media (min-width: 300px) and (max-width: 500px) and (orientation: portrait) {
  .process-icon {
    height: 4rem;
    width: 4rem;
  }
  .process-icon i {
    font-size: 2rem;
  }
  .process-title {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #0f26fa;
  }
  .process-title-slide {
    position: absolute;
    top: 25%;
    left: 1rem;
    color: #fff;
    font-size: 1.2rem;
  }
  .process-text-slide {
    position: absolute;
    top: 55%;
    left: 1rem;
    color: #fff;
  }
  .numer-ofProcess-slide {
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 3rem;
    font-weight: bold;
  }
}
/* || Strona z Kontaktem */
.main-contact {
  max-width: var(--width--Website);
  text-align: center;
  margin: 5rem auto;
  min-height: 50vh;
}
.contact-writeToUs {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  gap: 2rem;
  margin-left: 1rem;
}
.writetoUs {
  font-size: 2rem;
  font-weight: bold;
  color: #02088b;
}
.contact-title {
  margin: 2rem 0;
  font-size: 2rem;
  font-weight: bold;
}
.contact-container {
  margin: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.contact-box {
  background-color: #fff;
  border-radius: 15px;
  min-height: 200px;
  width: 300px;
  transition: transform 0.5s ease-in-out;
}

.icon-contact {
  font-size: 3.5rem;
  margin: 1rem 0;
  color: #02088b;
}

.contact-box:hover .icon-contact {
  transform: translateY(15%);
}
@media (min-width: 270px) and (max-width: 1024px) {
  .contact-writeToUs {
    display: block;
  }
  .contact-container {
    display: block;
    text-align: center;
  }
  .contact-box {
    margin: 2rem auto;
  }
}

/*  Podstrony z Ofertami */

main.offer-service {
  min-height: 100vh;
  max-width: var(--width--Website);
  margin: 5rem auto;
}
.offer-service-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
}
.offer-text {
  /* display: flex; */
  flex-grow: 2;
}
.offer-txt-title {
  margin: 1.5rem 0;
  font-size: 2rem;
  text-align: center;
  color: #020774;
}
.ofert-txt-p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.offer-txt-scope-of-work {
  margin: 1.5rem 0;
  color: #020774;
}
.scope-list li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: black;
  font-weight: 500;
  font-family: var(--FF--Text);
}
.scope-list li::before {
  content: "✔";
  color: #0f26fa;
  margin-right: 5px;
  font-weight: bold;
  font-size: 1.5rem;
}

.offer-img-container {
  display: flex;
  justify-content: center;
  padding: 2rem;
  max-width: 400px;
}
.offer-img {
  border: solid #020774;
  border-width: 3px 4px 3px 5px;
  border-radius: 95% 4% 92% 5%/4% 95% 6% 95%;
  transform: rotate(2deg);
}
@media (min-width: 270px) and (max-width: 1024px) {
  .offer-service-container {
    display: block;
  }
}
.content {
  transform: translateX(-100vw); /* początkowe przesunięcie zawartości */
  transition: transform 1s; /* animacja trwająca 1 sekundę */
}

.slide-in {
  transform: translateX(0); /* przesuń zawartość z powrotem na ekran */
}
