/* COLORS  Variables*/
/*      Nav       */
/*      Hero       */
/*     USLUGI        */
/*      jak dzialamy         */
/*          Kontakt      */
/*                     */
p {
    color: #7f7f7f;
    line-height: 30px;
  }
  
  h1 {
    color: #ffffff;
    font-size: 55px;
    font-weight: 900;
  }
  
  h2 {
    color: #1f2732;
    font-size: 31px;
  }
  
  h3 {
    color: #1f2732;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
  }
  
  .text-title {
    padding: 15px 0px;
  }
  
  .container-padding {
    padding: 150px 0px;
  }
  @media (max-width: 991.98px) {
    .container-padding {
      padding: 10% 0px;
    }
  }
  
  .vl {
    border: 1.8px solid #ff497c;
    border-image: linear-gradient(to bottom, #ff497c, rgba(0, 0, 0, 0)) 1 100%;
    border-radius: 50%;
    height: 100px;
    width: 0px;
    margin: 40px auto;
  }
  
  .vl-big {
    position: absolute;
    left: 50%;
    bottom: 300/3;
    height: 300px;
    border: 1.9 solid #ff497c;
    border-image: linear-gradient(to bottom, #ff497c, rgba(0, 0, 0, 0)) 50 100%;
  }
  
  .button-primary {
    width: 100%;
    height: 75px;
    border: 4px solid #ff497c;
    background-color: #ffffff;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.1rem;
    font-size: 1rem;
    color: #1f2732;
  }
  .button-primary:hover {
    transition: all 0.5s;
    background-color: #ff497c;
    color: #ffffff;
  }
  
  .small-btn {
    text-align: center;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    margin: 5px;
  }
  .small-btn a {
    text-decoration: none;
    color: white;
  }
  .small-btn:hover {
    background-color: #1f2732;
    border: 1px solid #1f2732;
  }
  
  /*              Main               */
  html {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    word-wrap: break-word;
  }
  
  html,
  body {
    height: 100%;
  }
  
  body {
    background-color: #ffffff;
  }
  
  /*              NAVIGATION               */
  .open {
    height: 100%;
    overflow-y: auto;
  }
  .open ul li {
    visibility: visible;
    transition: opacity 800ms linear;
    opacity: 1 !important;
  }
  
  nav {
    width: 100%;
    height: 80px;
    z-index: 5;
    position: fixed;
    background: #1f2737;
    color: #ffffff;
    box-shadow: 0px 0px 44px 0px rgba(255, 139, 139, 0.3);
    transition: height 600ms linear;
  }
  nav .nav-mobile-container {
    display: flex;
    align-items: center;
    height: 80px;
  }
  nav .nav-mobile-container .nav-mobile-button {
    padding: 10px 0px;
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: 2rem;
    position: relative;
    cursor: pointer;
    opacity: 1;
    transition: opacity 600ms ease-in-out;
  }
  nav .nav-mobile-container .nav-mobile-button .line {
    background-color: white;
    height: 5px;
    width: 100%;
    margin-bottom: 8px;
    border-radius: 20px;
    transition: all 400ms ease-in-out;
  }
  nav .nav-mobile-container .nav-mobile-button-open .line {
    position: absolute;
    top: 50%;
    transition: all 400ms ease-in-out;
  }
  nav .nav-mobile-container .nav-mobile-button-open .line:nth-child(2) {
    transform: rotate(360deg);
    opacity: 0;
  }
  nav .nav-mobile-container .nav-mobile-button-open .line:nth-child(1) {
    transform: rotate(220deg);
  }
  nav .nav-mobile-container .nav-mobile-button-open .line:nth-child(3) {
    transform: rotate(315deg);
  }
  nav ul {
    margin-bottom: 0px;
    padding: 0rem 2rem;
    cursor: pointer;
    list-style: none;
    transition: height 600ms linear;
  }
  @media (max-width: 991.98px) {
    nav ul {
      max-height: 0px;
    }
  }
  nav ul li {
    padding: 1rem 0rem;
    visibility: hidden;
    border-bottom: 1px solid #ff497c;
    opacity: 0;
    text-align: center;
  }
  nav ul li a {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    user-select: none;
  }
  @media (max-width: 991.98px) {
    nav ul li:hover {
      transition: all linear 0.3s;
      border-bottom: 1px solid #ffff;
    }
    nav ul li:hover a {
      color: #ff497c;
      transition: all linear 0.3s;
    }
  }
  nav .img-logo {
    height: 60px;
    padding-left: 35px;
  }
  
  @media (min-width: 992px) {
    .open {
      height: 80px;
    }
  
    nav {
      display: flex;
      justify-content: space-between;
    }
    nav .nav-mobile-button {
      display: none;
    }
    nav ul {
      display: flex;
      align-items: center;
      padding: 0px 10%;
    }
    nav ul li {
      padding: 0px 1.25rem;
      display: inline-block;
      visibility: visible;
      opacity: 1;
      border-bottom: none;
    }
    nav ul li a {
      font-size: 1.1rem;
    }
    nav ul li:hover a {
      color: #ff497c;
      transition: all linear 0.3s;
    }
  }
  /*              HOMEPAGE!            */
  #homepage .hero {
    width: 100%;
    min-height: 900px;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-image: url("/img/slider/antimepl-hero-image.jpg");
    position: relative;
    display: flex;
    align-items: center;
  }
  @media (min-width: 991.98px) {
    #homepage .hero {
      background-size: contain;
    }
  }
  #homepage .hero::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(155, 65, 90, 0.5);
  }
  #homepage .hero .bg-filter {
    background-color: rgba(83, 88, 95, 0.452);
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    display: block;
  }
  #homepage .hero .box-text {
    position: relative;
    z-index: 2;
  }
  #homepage .hero .box-text h1 {
    font-size: 5.625rem;
  }
  #homepage .hero .box-text .hero-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
  }
  #homepage .hero svg {
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 25%;
    z-index: 1;
  }
  #homepage .hero svg path {
    fill: #ffff !important;
  }
  
  @media (max-width: 991.98px) {
    #homepage .hero {
      min-height: 70vh;
      background-position: 60% 50%;
    }
    #homepage .hero .box-text {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    #homepage .hero .box-text h1 {
      font-size: 2.75rem;
    }
  }
  /*                O NAS   \           */
  #o-nas {
    display: flex;
    align-content: center;
    text-align: center;
  }
  #o-nas p {
    padding: 0px 5%;
  }
  #o-nas .vl:last-child {
    margin-bottom: 0px;
  }
  
  /*                USLUGI           */
  #nasze-uslugi {
    margin: 0 auto;
    display: block;
    padding: 150px 0px;
  }
  #nasze-uslugi .mini-box-container {
    text-align: center;
    padding: 15px 50px;
  }
  #nasze-uslugi .mini-box-container .text-title {
    font-size: 23px;
    text-transform: capitalize;
  }
  #nasze-uslugi .mini-box-container .circle-big-container {
    margin: 0 auto;
    background-color: #e2e4e5;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  #nasze-uslugi .mini-box-container .circle-big-container .circle-small-container {
    width: 110px;
    height: 110px;
    background-color: #e2e4e5;
    border: 5px solid #ffff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #nasze-uslugi .mini-box-container .circle-big-container .circle-small-container .img-circle {
    width: 100%;
    height: auto;
    max-width: 70px;
    max-height: 70px;
  }
  
  @media (max-width: 991.98px) {
    #nasze-uslugi {
      padding: 80px 0px 0px 0px;
    }
  }
  #jakdzialamy {
    color: #ffff;
    padding: 100px 0px 225px 0px;
    position: relative;
    margin-top: 8rem;
    background-color: #1f2732;
  }
  #jakdzialamy .section-header-shape svg {
    position: absolute;
    top: -125px;
    width: 100%;
    height: 125px;
    transform: rotateY(180deg);
  }
  #jakdzialamy .section-header-shape svg polygon {
    fill: #1f2732 !important;
  }
  #jakdzialamy .section-bottom-shape svg {
    position: absolute;
    width: 100%;
    height: 125px;
    bottom: 0px;
    transform: rotateY(180deg);
  }
  #jakdzialamy .section-bottom-shape svg polygon {
    fill: #ffff !important;
  }
  #jakdzialamy .box-container {
    padding: 50px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #jakdzialamy .box-container .box-big-text {
    font-size: 3.6rem;
    font-weight: 900;
  }
  #jakdzialamy .box-container .box-big-text .big-letter {
    color: #ff497c;
    font-size: 8rem;
    line-height: 8rem;
  }
  #jakdzialamy .box-container:nth-child(1) .bigcircle {
    background-image: url("/img/images/analize.jpg");
  }
  #jakdzialamy .box-container:nth-child(2) .bigcircle {
    background-image: url("/img/images/strategy.jpg");
  }
  #jakdzialamy .box-container:nth-child(3) .bigcircle {
    background-image: url("/img/images/project.jpg");
  }
  #jakdzialamy .box-container:nth-child(4) .bigcircle {
    background-image: url("/img/images/service.jpg");
  }
  #jakdzialamy .box-container .bigcircle {
    margin: 0 auto;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 12px solid #383f49;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #jakdzialamy .box-container .box-descryption {
    line-height: 28px;
    font-size: 18px;
  }
  
  @media (max-width: 991.98px) {
    #jakdzialamy .box-container .box-big-text {
      text-align: center;
      padding-bottom: 10%;
      font-size: 2.8rem;
    }
    #jakdzialamy .box-container .box-descryption {
      text-align: center;
      padding-top: 10%;
    }
  }
  /*          Projekty             */
  #project {
    padding: 150px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #project .box-title {
    padding-bottom: 30px;
  }
  #project .box-title h2::first-letter {
    color: #ff497c;
    font-size: 300%;
    text-decoration: underline;
  }
  #project .box {
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 0;
    display: block;
    cursor: pointer;
  }
  #project .box .project-cart {
    width: 100%;
    height: 100%;
    color: white;
    background-color: rgba(47, 42, 42, 0.78);
    padding: 20px 20px;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #project .box .project-cart .box-buttons .small-btn {
    text-align: center;
    background-color: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    margin: 5px;
    opacity: 0;
  }
  #project .box .project-cart .box-buttons .small-btn > a {
    text-decoration: none;
    color: white;
  }
  #project .box .project-cart .box-buttons .small-btn:hover {
    background-color: #1f2732;
    border: 1px solid #1f2732;
  }
  #project .box:hover .project-cart {
    opacity: 1;
    transition: opacity 400ms ease-in-out;
  }
  #project .box:hover .project-cart p {
    color: #ffff;
    text-align: center;
    user-select: none;
  }
  #project .box:hover .box-buttons .small-btn {
    opacity: 1;
    transition: opacity 1s ease-in-out;
  }
  
  #project #projectpopup {
    position: fixed;
    display: none;
    z-index: 11;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.4);
  }
  #project #projectpopup .content-popup .box-title h2 {
    color: white;
    font-size: 1.255rem;
    padding-bottom: 0px !important;
  }
  #project #projectpopup .content-popup .popup-header {
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center;
  }
  #project #projectpopup .content-popup .popup-header .popup-close {
    font-size: 2rem;
    cursor: pointer;
  }
  #project #projectpopup .tag {
    padding: 5px;
    color: white;
    border-radius: 10px;
    display: inline;
    font-weight: bold;
    margin: 0.25rem;
  }
  #project #projectpopup .technology {
    padding: 1rem 0rem;
  }
  #project #projectpopup .wordpress {
    background-color: gray;
  }
  #project #projectpopup .oxygen {
    background-color: #432EA7;
  }
  #project #projectpopup .bootstrap {
    background-color: purple;
  }
  #project #projectpopup .javascript {
    background-color: #EFD81D;
    color: black;
  }
  #project #projectpopup .elementor {
    background-color: #8d0039;
  }
  #project #projectpopup .vue {
    background-color: green;
  }
  
  @media (max-width: 991.98px) {
    #project #projectpopup .content-popup {
      width: 80%;
      margin: 10% auto;
      min-height: 50vh;
    }
  }
  #project #projectpopup .content-popup {
    background-color: #1F2732;
    color: #7f7f7f;
    width: 100%;
    margin-top: 120px;
    padding: 1rem;
    padding-bottom: 30px;
  }
  
  #projectpopup .content-popup .text-title {
    color: white;
    padding: 0px;
  }
  #projectpopup .content-popup .box-title {
    padding-bottom: 0px !important;
  }
  
  @media (max-width: 991.98px) {
    #project {
      padding: 50px 0px;
    }
  }
  /*            KONTAKT             */
  #kontakt {
    background-color: #f2f2f3;
  }
  #kontakt .svg-waves-header {
    height: 100px;
    width: 100%;
  }
  #kontakt .svg-waves-header path {
    fill: #ffff;
  }
  #kontakt .box-container-contact {
    padding: 20px 0px;
  }
  #kontakt .box-container-contact .circle-big-container {
    margin: 0 auto;
    background-color: #e2e4e5;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  #kontakt .box-container-contact .circle-big-container .circle-small-container {
    width: 140px;
    height: 140px;
    background-color: #e2e4e5;
    border: 5px solid #ffff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #kontakt .box-container-contact .circle-big-container .circle-small-container:hover {
    transition: all 0.5s ease-in-out;
    border-color: #ff497c;
    background-color: #ff497c;
  }
  #kontakt .box-container-contact .circle-big-container .circle-small-container .img-circle {
    width: 100%;
    height: auto;
    max-width: 50%;
  }
  #kontakt .box-container-contact .contact-box-text {
    text-align: center;
  }
  #kontakt .box-container-contact .contact-box-text h3 {
    padding: 20px 0px;
  }
  #kontakt .box-container-contact .contact-box-text p a {
    color: #7f7f7f;
    text-decoration: none;
  }
  #kontakt .svg-waves-bottom {
    position: absolute;
    height: 100px;
    width: 100%;
  }
  #kontakt .svg-waves-bottom path {
    fill: #f2f2f3;
  }
  
  #bottom {
    background-color: #1f2732;
    padding: 100px 0px 100px 0px;
  }
  #bottom .Bigcircle-bottom-container {
    margin: 0 auto;
    width: 120px;
    height: 120px;
    position: relative;
  }
  #bottom .Bigcircle-bottom-container .Smallcircle-bottom-container {
    width: 110px;
    height: 110px;
    background-color: #1f2732;
    border-bottom: 5px solid #ff497c;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -63px;
  }
  #bottom .Bigcircle-bottom-container .Smallcircle-bottom-container .img-circle {
    width: 70px;
    height: auto;
  }
  #bottom .bottom-container {
    color: #ffffff;
    text-align: center;
  }
  
  footer {
    padding: 30px 0px;
    background-color: #ff497c;
    text-align: center;
    color: #ffffff;
  }
  
  .up-btn {
    cursor: pointer;
    display: none;
    position: fixed;
    background-color: white;
    width: 50px;
    height: 50px;
    right: 2rem;
    bottom: 2rem;
    border-radius: 5px;
    z-index: 999;
    justify-content: center;
    -webkit-box-shadow: 8px 8px 9px 0px black;
    -moz-box-shadow: 8px 8px 9px 0px black;
    box-shadow: 8px 8px 9px 0px black;
    transform: rotate(-15deg);
  }
  .up-btn svg {
    width: 30px;
    transform: rotate(10deg);
  }
  .up-btn:hover svg {
    transform: rotate(-10deg);
    transition: all 250ms ease-in-out;
    color: #ff497c;
    margin-top: -10px;
  }
  
  @media (max-width: 767.98px) {
    .up-btn {
      right: -15px;
    }
  }
  .blinking-cursor {
    user-select: none;
    animation: blink 1s steps(2, start) infinite;
  }
  
  @keyframes blink {
    to {
      visibility: hidden;
    }
  }