
:root{
  --intense_black: #0A0A0A;
  --grey_black: #2e2c2d;
  --dark_grey: #241F20;
  --weak_dark_grey: #3a3737;
  --light_dark: #141112;
  --white: #ffffff;
  --padding10: 10px;
  --lightgrey: #F2F2F2;
  --lightPurple: #D1C7FE;
  --lightred: #FA6F71;
  --lightgreen: #7CB777;
  --lightblue: #57D0E6;
  --orange: #ffa500;
  --greyText: #aaaaaa;
  --SuperLightGrey: #F5F5F5;
  --lightGreenBackground: #F4F4F4;
  --blackRose: #0E100F;
  --elegantSharpFont: 'Oswald';
  --simplePleasentFont: 'Open Sans';
  --cinematicFont: 'Monoton';
  --mainScreenSharpFont: 'Playfair Display';
  --chillSimpleFont: 'Comfortaa';
  --roboto: 'roboto';
  --poopins: 'Poppins';
}

.informationBox{
  position: fixed;
  left: 1%;
  bottom: 25px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px;
}

@media (max-width: 600px) {
  .informationBox{
    display: none;
  }
}

.info_icon{
  color: lightgray;
  box-shadow: 0px 0px 10px hsl(0, 0%, 95%);
  font-size: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.infoBoxTxt{
  position: absolute;
  top: -50px;
  left: 50px;
  width: 250px;
  height: 65px;
  background-color: lightgray;;
  color: white;
  font-family: var(--roboto);
  font-size: 14px;
  display: none;
  border-radius: 16px 16px 16px 3px;
  align-items: center;
  line-height: 18px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 500;

}

.info_icon:hover .infoBoxTxt{
  display: flex;
}


.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
}

/* Dodanie animacji dla klasy show */
.show{
  animation: showElement 1s ease-in-out forwards;
}

/* LOADER */

.preloader{
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10000;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transition: .7s;
}

.figuresContainer{
  width: auto;
  height: auto;
}

.loaderTitleContainer{
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loaderTitle{
  position: relative;
  width: 100%;
  height: auto;
  font-size: 50px;
  font-family: var(--mainScreenSharpFont);
  color: #2F3545;
  
}

.loaderTitle::after{
  content: "";
  position: absolute;
  bottom: -5px; /* Odległość od tekstu */
  left: 0;
  width: 80px; /* Długość kreski */
  height: 2px; /* Grubość kreski */
  background-color: #000000; /* Kolor kreski */
  
}

/* END OF LOADER SECTION */







html, body{
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: white;
}

.c-scrollbar_thumb {

  opacity: 1 !important;
  background: var(--grey_black) !important;
  border-radius: 10px !important;
  width: 8px !important;
}



.callMeBox{
  display: flex;
  position: fixed;
  bottom: 3%;
  right: 2%;
  background-color: black;
  width: auto;
  height: auto;
  padding: 15px;
  border-radius: 20px 20px 20px 8px;
  align-items: center;
  justify-content: center;
  z-index: 9910;
}
.callIcon i{
  font-size: 25px;
}

.callTextContainer{
  display: flex;
  flex-direction: column;
  margin-left: 15px;

}

.callMeText{
  display: flex;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-family: var(--simplePleasentFont);
}

.numberText{
  color: white;
  font-family: var(--simplePleasentFont);
}

.websiteContent{
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 100;
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.3); /* Delikatny cień dla efektu */
  box-sizing: border-box;
}

.taskBar {
  box-sizing: border-box;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 75px;
  padding: 30px;
  border-bottom: 1px solid var(--lightgrey);
}

@media (max-width: 1100px) {
  .taskBar{
      background-color: var(--blackRose);
      position: fixed;
      top: 0;
      left: 0;
      height: 75px;
      z-index: 1000;
      border-bottom: none;
  }
  
}

.taskBar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0px 0px 8px lightgray;

}


@media (max-width: 1100px) {
  .taskBar.scrolled {
      background-color: var(--blackRose);
      box-shadow: none;
      border-bottom: none;
  }
}







.taskBarContentContainer {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: 1px solid blue;
}


.navigationBar {
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 24px;
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: 1px solid blue;

}



.nav-link {
  margin-right: 25px;
  font-family: var(--simplePleasentFont);
  font-size: 20px;
  display: flex;
  color: var(--dark_grey);
  text-decoration: none;
  transition: 200ms;
  box-sizing: border-box;
  flex-wrap: nowrap;
  position: relative;
}

.nav-link i{
  font-size: 15px;
  color: var(--dark_grey);
  margin-left: 8px;
}


.nav-link::after{
  content: '';
  position: absolute;
  bottom: -12.5px;
  left: 50%;
  width: 0px;
  height: 0px;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  transition: 300ms ease-out;
  
}

.nav-link.active::after {
  width: 0.3em;
  height: 0.3em;
}

.sessionsContainer {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background-color: white;
  border: 1px solid lightgray;
  box-shadow: 0px 0px 8px lightgray;
  z-index: 10;
  width: 200px; /* Dostosuj do potrzeb */
  transition: 200ms;
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.sessionsContainer div {
  padding: 12px;
  white-space: nowrap;
}

.sessionsContainer div a{
  font-family: var(--roboto);
  font-size: 15px;
  color: black;
  text-decoration: none;
  font-weight: 400;
}

.sessionsContainer div:hover{
  background-color: var(--lightgrey);

}

.nav-link:hover {
  background-color: var(--lightgrey);
  border-radius: 7px;
  padding: 10px;
}








.hamburgerMenuIconContainer{
  width: fit-content;
  height: 75px;
  display: none;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  z-index: 100000000;
  top: 0;
  right: 0;
}



.menu {
  transform: scale(0.35);
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}
.line {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 5;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line.openedSidebar{
  stroke: black;
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 5;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 5;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 5;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 5;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 5;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 5;
}



.sideBarContainer {
  position: fixed;
  top: 75px;
  right: 0; 
  left: 0;
  width: 100%;
  height: fit-content;
  background-color: var(--blackRose);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
  padding-top: 15px;
}



.sideBarContainer.open {
  display: flex;
}


.navigationSideBar {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 5px;
  align-items: center;
} 


.sideBar-link{
  width: 92%;
  height: 60px;
  margin-bottom: 15px;
  text-decoration: none;
  font-size: 18px;
  font-family: var(--roboto);
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  border: 0.5px solid var(--grey_black);
  box-sizing: border-box;
  padding: 25px;
  font-weight: 400;
  opacity: 0; /* Domyślnie niewidoczne */
  transform: scale(0.9); /* Początkowa skala */
  transition: opacity 500ms ease, transform 500ms ease;
}

.offersContainer{
  width: 92%;
  height: fit-content;
}

.offerRow a{
  width: 100%;
  margin-bottom: 15px;
  padding: 5px;
  text-decoration: none;
  font-size: 16px;
  font-family: var(--roboto);
  color: rgb(255, 255, 255);
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  box-sizing: border-box;
  font-weight: 400;
  opacity: 0;
  display: none;
  transform: scale(0.9); /* Początkowa skala */
  transition: opacity 500ms ease, transform 500ms ease;
}

.offerRow a.animated {
  animation: BoomEffect 0.65s forwards;
}

.offerRow a:hover{
  border: 1px solid rgb(65, 110, 255);
  transition: 150ms;
}

.sideBar-link svg{
  transform: scale(1.2);
}

.offers_menu svg{
  transform: scale(1);
  color: rgb(255, 255, 255);
}

@keyframes BoomEffect {
  0% {
      transform: scale(0.9);
      opacity: 0;
  }
  50% {
      transform: scale(1.1);
      opacity: 1;
  }
  100% {
      transform: scale(1);
      opacity: 1; /* Po zakończeniu animacji element jest widoczny */
  }
}

/* Gdy menu jest otwarte */
.sideBar-link.animated {
  animation: BoomEffect 0.65s forwards;
}


.sideBar-link:hover{
  border: 1px solid rgb(65, 110, 255);
  transition: 150ms;
}






.contactButtonContainer{
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 1100px) {
  .contactButtonContainer{
      display: none;
  }
  .hamburgerMenuIconContainer{
      display: flex;
  }

  .navigationBar{
      display: none;
  }
  .out_in_mobile{
      display: none;
  }

  
  
}

.superLinksSocial{
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.facebook{
  font-size: 22px;
  margin-right: 18px;
  transition: 0.3s;
  color: black;
}
.linkedin{
  font-size: 22px;
  margin-right: 18px;
  transition: 0.3s;
  color: black;
}

.instagram{
  font-size: 22px;
  margin-right: 40px;
  transition: 0.3s;
  color: black;
}

.facebook:hover{
  padding: 12px;
  background-color: var(--lightgrey);
  border-radius: 50%;
}
.linkedin:hover{
  padding: 12px;
  background-color: var(--lightgrey);
  border-radius: 50%;
}

.instagram:hover{
  padding: 12px;
  background-color: var(--lightgrey);
  border-radius: 50%;

}



.contactButton {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 140px;
  padding: 10px;
  border: 0 solid #e5e7eb;
  background-color: var(--dark_grey);
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  transition: transform .1s ease, background-color 0.3s ease-in, color 0.3s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  font-family: var(--chillSimpleFont);
  font-size: 16px;
}

.contactButton::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -40%;
  width: 100%;
  height: 200%;
  background-color: #49ADF4;
  clip-path: circle(0% at 50% 100%);
  transition: clip-path 0.8s ease-in;
  z-index: -1;
}

.contactButton:hover::before {
  clip-path: circle(200% at 50% -50%);
}

.contactButton:hover {
  border: none;
  cursor: pointer;
}

@keyframes throwEffect {
  0% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(-20px); /* Ruch w lewo */
  }
  75% {
      transform: translateX(10px); /* Ruch w prawo */
  }
  100% {
      transform: translateX(0); /* Powrót na miejsce */
  }
}

.throwAnimation {
  animation: throwEffect 0.25s ease-in-out;
}


.contactButton i{
  margin-right: 10px;
  text-decoration: none;
}




.logoContainer_Navigation{
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: auto; /* Upewnij się, że kontener ma odpowiednią szerokość */
}




.websiteLogo{
  margin-right: 12px;
  height: 65px;
  width: 65px;
  border-radius: 24px;
}



.logoText {
  margin-left: 15px;
  flex-wrap: nowrap;
  font-weight: bold;
  font-size: 18px;
  color: var(--light_dark);
  font-family: 'Open Sans';
  margin: 0;
  text-decoration: none;

}


@media (max-width: 1100px) {

  .logoContainer_Navigation{
      width: fit-content;
      height: fit-content;
      display: flex;
      position: fixed;
      z-index: 100000000;
      display: flex;
      top: 15px;
      left: 25px;
  }

  .websiteLogo{
      width: 50px;
      height: 50px;
      margin-right: 0px;
      border: 2.5px solid var(--grey_black);
      border-radius: 50%;
  }
  
  
}

.textSuperLink{
  text-decoration: none;
}
.iconSuperLink img{
  margin-left: 10px;
  width: 35px;
  height: 35px;
}



/* CONTENT SECTION */
/* CONTENT SECTION */
/* CONTENT SECTION */
/* CONTENT SECTION */







.projectSection {
    width: 100%;
    height: 90vh;
    background-color: white;
    display: flex;
    justify-content: start; /* Wyśrodkowanie poziome */
    align-items: center;
    /* border: 1px solid darkblue; */
}


.slidersSectionME{
    width: 57%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

@media (max-width: 1200px) {
  .slidersSectionME{
    margin-top: 35px;
    width: 80%;
    align-items: center;
    justify-content: flex-start;
  }
}


.imagesInformation{
    width: 21%;
    height: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 1100px) {
  .projectSection{
    flex-direction: column;
    height: 100vh;
  }
  .slidersSectionME{
    width: 100%;
    height: 70%;
  }
  .imagesInformation{
    width: 100%;
    height: 30%;
    align-items: flex-end;
  }
}


.infoContainer{
    margin-top: 30px;
    width: 80%;
    height: 300px;

}

.photoshootTitle{
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  color: var(--light_dark);
  font-weight: bold;
  line-height: 25.5px;
}

.photoshootDate{
  margin-top: 8px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: var(--greyInputArea);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


@media (max-width: 1100px) {
  .infoContainer{
    width: auto;
    height: auto;
    flex-direction: column;
    margin-top: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: center;

  }
  .photoshootDate{
    justify-content: flex-start !important;
  
  }
}




.dot{
    margin-right: 5px;
    font-size: 7px;
    color: lightgray;
}


.container {
    width: 100%;
    margin: 0 auto; /* To zapewnia wyśrodkowanie, ale nie jest już potrzebne przy flexboxie */
}


#tranding .tranding-slider {
  height: 18rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tranding-slide {
  width: 16rem !important;
  height: 10rem !important;
  position: relative;
}


.tranding-slide .tranding-slide-img img {
  width: 16rem;
  height: 10rem;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0px 0px 6px lightgray;
}


.selectedImage{
    border-radius: 5px;
    box-shadow: none;
    border: 2px solid rgb(0, 0, 0);
    z-index: 11321321;
    box-sizing: border-box;
}

.SmallImgShowcaseWrapper{
  height: fit-content !important;
}


.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}

.tranding-slider-control {
  transform: translateY(22px);
  display: flex;
  justify-content: center;
  width: 100%;
  height: 3.5rem;
}

@media (max-width: 1200px) {
  #tranding{
    display: none;
  }
}


.slider-arrow-styling-prev {
  position: relative !important;
  top: 0px !important;
  bottom: 0px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;

}

.slider-arrow-styling-next {
  position: relative !important;
  top: 0px !important;
  bottom: 0px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.bigImg-controls-container{
  position: absolute;
  z-index: 213123;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}

.arrow-prev-custom {
  transform: translateX(25%);
  z-index: 213123;
}

.arrow-next-custom {
  transform: translateX(-25%);
  z-index: 213123;
}

@media (max-width: 700px) {
  .arrow-prev-custom {
    transform: translate(50%, 250%);
    z-index: 213123;
  }
  
  .arrow-next-custom {
    transform: translate(-50%, 250%);
    z-index: 213123;
  }
  
}

.slider-arrow{
  background: var(--white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}


.tranding-slider-control .swiper-pagination {
  margin-left: 25px;
  margin-right: 25px;
  position: relative !important;
  width: fit-content !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tranding-slider-control .slider-arrow ion-icon {
  font-size: 1.7rem;
  color: #222224;
}

.tranding-slider-control .slider-arrow::after {
  content: '';
}


.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
  background: #FA6F71;
}



















.containerBigImg{
    transform: translateY(-5%);
    width: 100%;
    margin: 0 auto; /* To zapewnia wyśrodkowanie, ale nie jest już potrzebne przy flexboxie */
    margin-top: 7.5%;
}

#bigImgShowcase .bigImg-slider {
    height: 30rem;
    position: relative;
    background: white !important;
  }
  
  .bigImg-slide {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  
  .bigImg-slide .bigImg-slide-img img {
    width: auto;
    height: auto;
    border-radius: 5px;
    object-fit: cover;  
    padding: 10px;
    max-width: 1000px;
    max-height: 500px;
  }
  
  @media (max-width: 600px) {
    .bigImg-slide .bigImg-slide-img img {
      max-width: 100%;
      max-height: 50%;
      padding: 10px;
      box-sizing: border-box;
    }
    
  }
  
  
  
  /* .tranding-slider-control .swiper-button-next{
    left: 58% !important;
    transform: translateX(-58%) !important;
  }

  
  .tranding-slider-control .slider-arrow {
    background: var(--white);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    left: 42%;
    transform: translateX(-42%);
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
  } */
  

  
  /* @media (max-width:600px) {
    .tranding-slider-control .swiper-button-prev {
      left: 35% !important;
      transform: translate(-35%, 0%) !important;
      box-shadow: 0px 0px 8px rgb(201, 201, 201);
    }
    .tranding-slider-control .swiper-button-next {
      left: 65% !important;
      transform: translate(-65%, 0%) !important;
      box-shadow: 0px 0px 8px rgb(201, 201, 201);
    }
  } */





  
.loader {
  --path: #2F3545;
  --dot: #FA6F71;
  --duration: 3s;
  width: 44px;
  height: 44px;
  position: relative;
}
.loader:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  display: block;
  background: var(--dot);
  top: 37px;
  left: 19px;
  transform: translate(-18px, -18px);
  -webkit-animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.loader svg {
  display: block;
  width: 100%;
  height: 100%;
}
.loader svg rect,
.loader svg polygon,
.loader svg circle {
  fill: none;
  stroke: var(--path);
  stroke-width: 10px;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.loader svg polygon {
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
  -webkit-animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.loader svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.loader svg circle {
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
  -webkit-animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.loader.triangle {
  width: 48px;
}
.loader.triangle:before {
  left: 21px;
  transform: translate(-10px, -18px);
  -webkit-animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
          animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@-webkit-keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}

@keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}
@-webkit-keyframes dotTriangle {
  33% {
    transform: translate(0, 0);
  }
  66% {
    transform: translate(10px, -18px);
  }
  100% {
    transform: translate(-10px, -18px);
  }
}
@keyframes dotTriangle {
  33% {
    transform: translate(0, 0);
  }
  66% {
    transform: translate(10px, -18px);
  }
  100% {
    transform: translate(-10px, -18px);
  }
}
@-webkit-keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}
@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}
@-webkit-keyframes dotRect {
  25% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -18px);
  }
  75% {
    transform: translate(0, -36px);
  }
  100% {
    transform: translate(-18px, -18px);
  }
}
@keyframes dotRect {
  25% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -18px);
  }
  75% {
    transform: translate(0, -36px);
  }
  100% {
    transform: translate(-18px, -18px);
  }
}
@-webkit-keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}
@keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}
.loader {
  display: inline-block;
  margin: 0 16px;
}
