html, body{
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  cursor: default;
  background-color: white;
  box-sizing: border-box;

  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

hr{
  margin: 8rem 0 8rem 0;
}

body::-webkit-scrollbar {
  display: none !important;
}

.color0 {
  color: #9d5536;
}

.color1 {
  color: #00AB78;
}


/* ---------- NAV ---------- */
.dropdown-menu {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
}
  
.dropdown-item {
  color: #212529;
}

.navbar-logo {
  letter-spacing: .05rem;
}

.img-flag {
  width: 30px;
  height: 1.2rem;
}

.nav-link {
  font-size: 1rem;
}

/* ---------- LINES ANIMATION ---------- */
.line-container {
  position: relative;
  width: 100%;
  height: 40vh;
}
.line {
  position: absolute;
  height: 0.25rem;
  width: 0;
  background-color: #00AB78;
  transition: width 2s ease, opacity 3s ease, transform 3s ease;
  opacity: 0;
  border-radius: 2px;
}
.left-to-right {
  left: 0;
  transform-origin: left;
  top: 46%; 
  background-color: #00AB78;
}
.right-to-left {
  right: 0;
  transform-origin: right;
  top: 54%; 
  background-color: #9d5536;
}


/* ---------- MAIN CONTENT ---------- */
.img-main {
  display: block;
  width: 100vw;
  height: 100vh;
  background-image: url('/img/main_image_phone.JPG');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.Img-face {
  padding-left: auto;
  padding-right: auto;
  float: center;
  display: block;
}


/* -----> Sections <----- */
@media (max-width: 992px){
  .section-content {
    min-width: 80%;
    max-width: 90%;
    padding: 1rem;
    border-radius: 2rem;
    box-shadow: 10px 10px 40px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 40px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 40px 0px rgba(0,0,0,0.75);
  }
}
@media (min-width: 992px){
  .section-content {
    width: auto;
    padding: 1rem;
    border-radius: 2rem;
    box-shadow: 10px 10px 40px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 40px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 40px 0px rgba(0,0,0,0.75);
  }
}

@media (max-width: 992px){
  .small-img-box{
    width: 60%; 
    height: auto; 
    margin: 0 auto 0 auto;
  }
}

.lead {
  padding: 0 1rem 0 1rem;
}

.li-icons {
  font-size: 1.25rem;
  color:  #9d5536;
  margin: 1rem 0.5rem 1rem 0.2rem;
}

/* Definicja animacji fade-in */
@keyframes fadeIn {
  0% {
      opacity: 0;
      transform: translateY(1rem);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Klasa dla animacji fade-in */
.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

/* -----> 2nd section <----- */
.list-unstyled li {
  font-size: 1.25rem;
  margin: .5rem 0 .5rem 0;
}

.onedoc-link {
    display: inline-block;
    background-color: #00AB78;
    color: #fff !important;
    font-weight: 500;
    padding: 0.4rem 1.4rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.onedoc-link:hover {
    background-color: #037150;
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 4px 12px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 4px 12px 0px rgba(0, 0, 0, 0.25);
}

/* -----> Footer <----- */
.footer-text, .section2-text{
  font-size: 1.1rem;
}