:root {
  --textcol: #002259;
}

@font-face {
  font-family: "Almondita";
  src: url("data/Almondita.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: sans-serif;
}

.formdisap {
  display: none;
}

.counter {
  display: none;
  opacity: 0;
}

.slika {
  height: 160px;
  position: absolute;
  opacity: 0;
}

.slika img {
  height: 100%;
}

.display {
  opacity: 1;
  transition: all 2s ease;
}

html {
  background-color: white;
  background-position: cover;
  scroll-snap-type: y proximity;
}

body::-webkit-scrollbar {
  display: none;
  width: 0px;
}

#home,
#album,
#social {

  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#contact {

  height: 90vh;
  width: 100%;
}

.footer {
  height: 10vh;
  width: 100%;
}

#home {
  z-index: -1;
  overflow: hidden;
}

header,
#gallery-links,
.contactform h3 {
  display: none;
  color: var(--textcol);
}

.homecont {
  height: 90vh;
  width: 100%;
}

.burger {
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logomobile {
  height: 60px;
  width: auto;
  margin-left: 10%;
}

.logomobile img {
  height: 60px;
}

.burgericon {
  display: block;
  margin-right: 10%;
}

.active1 {
  opacity: 1;
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  z-index: 10;
  text-align: center;
  transform: translateX(100vw);
  transition: 0.2s ease-in-out;
}

.active1-open {
  opacity: 1;
  transform: translateX(0);
}

.active1 ul {
  list-style: none;
  padding: 10px;
}

.active1 ul li {
  list-style: none;
  height: 10vh;
  border-bottom: #002259 1px solid;
  text-align: center;
  align-items: center;
  display: flex;
}

.active1 ul li a {
  color: #002259;
  font-size: 1.5em;
  margin: auto auto;
  text-decoration: none;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #002259;
  stroke-width: 4;
  stroke-linecap: round;
}

.ham .top {
  stroke-dasharray: 20 160;
}

.ham .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

.ham .bottom {
  stroke-dasharray: 20 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

.ham.active .top {
  stroke-dashoffset: -64px;
}

.ham.active .middle {
  transform: rotate(90deg);
}

.ham.active .bottom {
  stroke-dashoffset: -64px;
}

.homepicparent {
  width: 100%;
  height: 100%;
}

.homepic {
  display: block;
  height: 55%;
  animation: chwidth 1s;
  background: url("img/yoga3.jpg");
  background-size: 100% 100%;
}

.homepic img {
  height: 100%;
  width: 100%;
}

@keyframes chwidth {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.isbj {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  top: 25%;
  font-size: 4.5em;
  color: white;
  opacity: 0.3;
}

.phtxtparent {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  top: 35%;
}

.phtxt {
  font-size: 7em;
  color: white;
  font-family: Almondita;
  transform: rotate(-15deg);
}

.bebaparent {
  width: 100%;
  height: 250px;
  display: flex;
  position: absolute;
  top: 45%;
  justify-content: center;
}

.beba {
  position: absolute;
  width: 50%;
  height: 250px;
  display: flex;
  background: url("img/beba.jpg") no-repeat;
  background-size: 100% 100%;
}

.ball1 {
  height: 30px;
  position: absolute;
  left: 45%;
  bottom: 17%;
}

.ball2 {
  height: 40px;
  position: absolute;
  left: 20%;
}

#album {
  background-color: rgb(230, 230, 230);
}

.title {
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title h1 {
  color: var(--textcol);
}

.albmenu {
  width: 100%;
  height: 7%;
  display: block;
  z-index: 15;
  text-align: center;
  padding-bottom: 10px;
}

.dropbtn {
  background-color: #bbbbbb;
  color: var(--textcol);
  height: 25px;
  font-size: 16px;
  border: none;
  width: 120px;
  cursor: pointer;
  z-index: 5;
  display: block;
  margin: auto auto;
}

.dropbtn::after {
  content: "";
  border: 4px solid transparent;
  border-top: 4px solid rgb(110, 110, 110);
  margin-left: 9px;
  margin-bottom: 3px;
  display: inline-block;
  vertical-align: bottom;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: #2980b9;
}

.dropdown {
  display: inline-block;
  z-index: 15;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 120px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 15;
  text-align: center;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  z-index: 5;
}

.dropdown a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

.albcont {
  height: 80vh;
  display: block;
  width: 100%;
}

.gallery-chng {
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes FadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

div.grid,
div.grid2,
div.grid3,
div.grid4,
div.grid5,
div.grid6 {
  width: 65%;
  height: 80%;
  display: grid;
  position: absolute;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  row-gap: 3%;
  opacity: 0;
  pointer-events: none;
}

div.current {
  animation: FadeIn linear 1.5s 1 forwards;
  z-index: 10;
  pointer-events: inherit;
}

.slika1 {
  grid-row: 1/2;
  grid-column: 1/3;
  background: url("img/svd1.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika2 {
  grid-row: 2/3;
  grid-column: 1/3;
  background: url("img/trotinet.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika3 {
  grid-row: 3/4;
  grid-column: 1/3;
  background: url("img/gad.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika1-1 {
  grid-row: 1/2;
  grid-column: 1/3;
  background: url("img/wed/8.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika2-1 {
  grid-row: 2/3;
  grid-column: 1/3;
  background: url("img/wed/29.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika3-1 {
  grid-row: 3/4;
  grid-column: 1/3;
  background: url("img/wed/5.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika1-2 {
  grid-row: 1/2;
  grid-column: 1/3;
  background: url("img/bus/13-600.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika2-2 {
  grid-row: 2/3;
  grid-column: 1/3;
  background: url("img/bus/27.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika3-2 {
  grid-row: 3/4;
  grid-column: 1/3;
  background: url("img/bus/41.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika1-3 {
  grid-row: 1/2;
  grid-column: 1/3;
  background: url("img/sp/1.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika2-3 {
  grid-row: 2/3;
  grid-column: 1/3;
  background: url("img/sp/DSC_7051.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika3-3 {
  grid-row: 3/4;
  grid-column: 1/3;
  background: url("img/sp/DSC_6378.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika1-4 {
  grid-row: 1/2;
  grid-column: 1/3;
  background: url("img/fsh/1.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika2-4 {
  grid-row: 2/3;
  grid-column: 1/3;
  background: url("img/fsh/2.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika3-4 {
  grid-row: 3/4;
  grid-column: 1/3;
  background: url("img/fsh/23.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika1-5 {
  grid-row: 1/2;
  grid-column: 1/3;
  background: url("img/int/1.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika2-5 {
  grid-row: 2/3;
  grid-column: 1/3;
  background: url("img/int/2.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika3-5 {
  grid-row: 3/4;
  grid-column: 1/3;
  background: url("img/int/3.jpg") no-repeat;
  background-size: 100% 100%;
}

.slika4,
.slika4-1,
.slika4-2,
.slika4-3,
.slika4-4,
.slika4-5,
.lineparent,
.currentline {
  display: none;
}

.sl {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: all 1s;
  color: black;
}

.sl1 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: all 1s;
  color: black;
}

.sl a,
.face a,
.insta a {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;

  font-family: "Dancing Script", cursive;
  font-size: 30px;
}

.sl a:hover:after {
  content: "Full Gallery";
  height: 100%;
  width: 100%;
  background-color: rgba(105, 95, 95, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  transition: all 5s ease;
}

.sl1 a:hover:after {
  content: "Full Gallery";
  height: 100%;
  width: 100%;
  background-color: rgba(105, 95, 95, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  transition: all 5s ease;
}

.socimg {
  height: 60vh;
  width: 100%;
  background: url("img/run-1.jpg") no-repeat;
  background-size: 100% 100%;
  opacity: 0.8;
}



@media (prefers-reduced-motion: no-preference) {
  .imganim {
    animation: socimganim 0.5s;
  }
}

@keyframes socimganim {
  from {
    height: 0;
  }

  to {
    height: 60vh;
  }
}

.soctext {
  width: 100%;
  height: 50vh;
  display: block;
  position: relative;
  right: 0px;
  top: -15%;
  background: linear-gradient(rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 1));
  text-align: center;
}

.soctext h1 {
  font-size: 1.1em;
  font-weight: 200;
  width: 90%;
  height: 100%;
  position: relative;
  margin: auto auto;
  text-align: center;
  color: var(--textcol);
  right: 0px;
  top: 0px;
}

.soclogo {
  height: 20vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;


}

.insta {
  margin-top: 15px;
  height: 6vh;
}

.face {
  margin-top: 7px;
  padding-left: 25px;
  height: 7vh;
}

.contactform {
  display: flex;
  height: 45vh;
  width: 100%;
  justify-content: center;
  align-items: center;
}

input,
textarea {
  border: none;
  border-bottom: 1px rgb(0, 157, 249) solid;
  height: 2em;
  width: 100%;
  font-size: 13px;
}

input:focus,
textarea:focus {
  outline: none;
  overflow-wrap: break-word;
  color: red;

}

textarea {
  padding-top: 2%;
  height: 4.5em;
  word-wrap: break-word;
  z-index: 3;
}

.form {
  width: 70%;
  position: relative;
  top: 7%;
  height: 93%;

}

.contactdetails {

  margin-top: 1.5rem;
}



.contactdetails p {
  font-family: Almondita;
  font-size: 14vw;
  font-style: bold;
  color: var(--textcol);
  position: absolute;
  right: 0px;
  top: 70%;
}

.fa-envelope,
.fa-phone,
.fa-location-dot,
.fa-linkedin {
  color: blue;
  margin-right: 0.5rem;
  height: 1rem;
}

.email,
.phone,
.location,
.linkedin {
  display: flex;
  margin-top: 1.5rem;
  height: 20px;
  padding: 10px;
}

.linkedin a:link {
  text-decoration: none;
  color: inherit;
}

.linkedin a:visited {
  text-decoration: none;
  color: inherit;

}



.contimg {
  height: 45vh;
  width: 100%;
  background: url("img/contactmob.jpg") no-repeat;
  background-size: 100% 100%;
}

.footer {
  height: 10vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(206, 206, 206);
}

@media screen and (min-width: 321px) and (max-width: 575.98px) {
  .bebaparent {
    top: 45%;
    height: 300px;
  }

  .beba {
    width: 55%;
    height: 300px;
  }

  .homepic {
    background: url("img/yogamid.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .isbj {
    font-size: 6em;
  }

  .phtxt {
    font-size: 7em;
  }

  div.grid,
  div.grid2,
  div.grid3,
  div.grid4,
  div.grid5,
  div.grid6 {
    width: 70%;
  }

  .slika1-1 {
    background: url("img/wed/8-600.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika2-1 {
    background: url("img/wed/29.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3-1 {
    background: url("img/wed/5-600.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika2-2 {
    background: url("img/bus/27-600.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3-2 {
    background: url("img/bus/41.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika1-3 {
    background: url("img/sp/1-600.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika2-3 {
    background: url("img/sp/DSC_7051-600.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3-3 {
    background: url("img/sp/DSC_6378.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika1-4 {
    grid-row: 1/2;
    grid-column: 1/3;
    background: url("img/fsh/1-600.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3-4 {
    grid-row: 3/4;
    grid-column: 1/3;
    background: url("img/fsh/23.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika1-5 {
    grid-row: 1/2;
    grid-column: 1/3;
    background: url("img/int/1-600.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3-5 {
    grid-row: 3/4;
    grid-column: 1/3;
    background: url("img/int/3-600.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .dropbtn {
    width: 150px;
    height: 27px;
  }

  .dropdown-content {
    width: 150px;
  }

  .dropbtn::after {
    content: "";
    border: 5.5px solid transparent;
    border-top: 5.5px solid rgb(110, 110, 110);
    margin-left: 9px;
    margin-bottom: 1px;
  }

  .socimg {
    background: url("img/run-12.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .soctext h1 {
    font-size: 1.3em;
    font-weight: 200;
  }


  .insta {
    margin-top: 45%;
  }

  .contactform {
    align-items: none;
    justify-content: none;
  }

  .contimg {
    background: url("img/contactmob2.jpg") no-repeat;
    background-size: 100% 100%;
  }

  input,
  textarea {
    height: 3.2em;
    font-size: 13px;
  }

  textarea {
    padding-top: 15px;
    height: 6em;

    word-wrap: break-word;
  }

  .form h3 {

    display: block;
  }

  .form p {
    font-size: 3em;
    top: 74%;
  }

  .confbtn {
    top: 79%;
  }


}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .homepic {
    background: url("img/yogamid.jpg") no-repeat;
    background-size: 100% 100%;
    height: 70%;
  }

  .isbj {
    font-size: 9em;
    top: 35%;
  }

  .phtxtparent {
    height: 200px;
    top: 60%;
  }

  .phtxt {
    font-size: 8em;
    color: var(--textcol);
    text-shadow: azure 1px 1px;
    transform: rotate(-20deg);
    position: absolute;
    right: 5%;
  }

  .bebaparent {
    top: 57%;
    height: 320px;
  }

  .beba {
    width: 35%;
    left: 10%;
    height: 320px;
  }

  .title {
    font-size: 1.5em;
    height: 80px;
  }

  .dropbtn {
    height: 33px;
    width: 150px;
    font-size: 1.2em;
  }

  .dropdown-content {
    width: 150px;
  }

  .dropbtn::after {
    content: "";
    border: 6px solid transparent;
    border-top: 6px solid rgb(110, 110, 110);
    margin-left: 9px;
    margin-bottom: 2px;
  }

  .dropdown-content a {
    font-size: 1.2em;
  }

  div.grid,
  div.grid2,
  div.grid3,
  div.grid4,
  div.grid5,
  div.grid6 {
    width: 75%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 3%;
    column-gap: 3%;
  }

  .slika1,
  .slika2-1,
  .slika3-2,
  .slika3-3,
  .slika2-4,
  .slika2-5 {
    grid-row: 1/2;
    grid-column: 1/5;
  }

  .slika2,
  .slika1-1,
  .slika2-2,
  .slika2-3,
  .slika1-4,
  .slika1-5 {
    grid-row: 2/3;
    grid-column: 1/3;
  }

  .slika3,
  .slika3-1,
  .slika1-2,
  .slika1-3,
  .slika3-4,
  .slika3-5 {
    grid-row: 2/3;
    grid-column: 3/5;
  }

  .slika1 {

    background: url("img/trotinet.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika2 {

    background: url("img/svd2.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .soctext h1 {
    font-size: 1.5em;
    font-weight: 400;
  }

  .contactform {
    align-items: unset;
  }

  input,
  textarea {
    height: 3.2em;
    font-size: 17px;
  }

  textarea {
    padding-top: 15px;
    height: 6em;
    word-wrap: break-word;
  }

  .contimg {
    background: url("img/contactmob2.jpg") no-repeat;
    background-size: 100% 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .burger {
    height: 120px;
  }

  .logomobile {
    height: 90px;
  }

  .logomobile img {
    height: 90px;
  }

  svg {
    height: 80px;
    width: 80px;
  }

  .homepic {
    background: url("img/yogamid.jpg") no-repeat;
    background-size: 100% 100%;
    height: 70%;
  }

  .isbj {
    font-size: 29vw;
    top: 15%;
  }

  .phtxtparent {
    height: 200px;
    top: 63%;
  }

  .phtxt {
    font-size: 8em;
    color: var(--textcol);
    text-shadow: azure 1px 1px;
    transform: rotate(-20deg);
    position: absolute;
    right: 5%;
  }

  .bebaparent {
    bottom: 10%;
    height: 47%;
  }

  .beba {
    height: 100%;
    width: 35%;
    left: 10%;
  }

  .ball1 {
    height: 40px;
  }

  .ball2 {
    height: 50px;
  }

  .title {
    font-size: 3vw;
    height: 100px;
  }

  .dropbtn {
    height: 30px;
    width: 170px;
    font-size: 2.2vw;
  }

  .dropbtn::after {
    border: 7px solid transparent;
    border-top: 7px solid rgb(110, 110, 110);
    margin-bottom: 0px;
  }

  .dropdown-content {
    width: 170px;
  }

  .dropdown-content a {
    font-size: 2.2vw;
  }

  div.grid,
  div.grid2,
  div.grid3,
  div.grid4,
  div.grid5,
  div.grid6 {
    width: 80%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 3%;
    column-gap: 3%;
  }

  .slika1,
  .slika2-1,
  .slika3-2,
  .slika3-3,
  .slika2-4,
  .slika2-5 {
    grid-row: 1/2;
    grid-column: 1/5;
  }

  .slika2,
  .slika1-1,
  .slika2-2,
  .slika2-3,
  .slika1-4,
  .slika1-5 {
    grid-row: 2/3;
    grid-column: 1/3;
  }

  .slika3,
  .slika3-1,
  .slika1-2,
  .slika1-3,
  .slika3-4,
  .slika3-5 {
    grid-row: 2/3;
    grid-column: 3/5;
  }

  .socimg {
    background: url("img/run-13.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .soctext {
    margin-top: 0%;
  }

  .soctext h1 {
    font-size: 1.9em;
    font-weight: 500;
  }

  input,
  textarea {
    height: 3em;
    font-size: 2vw;
  }

  textarea {
    padding-top: 15px;
    height: 7em;
    word-wrap: break-word;
  }

  .contactform {
    align-items: unset;
  }

  .form p {
    font-size: 5em;
  }

  .form {
    width: 70%;
    height: 90%;
    margin-top: 1%;
  }

  .confbtn {
    height: 2em;
    font-size: 2.5vw;
  }

  .contimg {
    background: url("img/contactmob2.jpg") no-repeat;
    background-size: 100% 100%;
  }
}

@media screen and (min-width: 850px) and (max-width: 1023.98px) {

  #home,
  #album,
  #social,
  #contact {
    scroll-snap-align: start;
  }

  .beba {
    width: 30%;
  }

  .ball1 {
    height: 45px;
  }

  .ball2 {
    height: 60px;
  }

  .isbj {
    font-size: 15em;
  }

  .phtxt {
    font-size: 13em;
  }

  .form {
    height: 40vh;
    margin-top: 40px;
  }

  .soctext {
    margin-top: 0%;
  }

  .soctext h1 {
    font-size: 1.9em;
    font-weight: 500;
  }
}

@media screen and (min-width: 1024px) {

  #home,
  #album,
  #social,
  #contact {
    scroll-snap-align: start;
  }

  .burger,
  .dropbtn,
  .active1,
  .active1-open {
    display: none;
  }

  header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
    width: 100%;
  }

  .homecont {
    height: 85vh;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .navul {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navul li {
    list-style: none;
    padding: 0 30px;
  }

  .navul li a {
    text-decoration: none;
    pointer-events: all;
    color: var(--textcol);
    font-size: 1.5em;
  }

  .logo {
    padding: 5px 10px;
    height: 80px;
  }

  .homepicparent {
    width: 70%;
    height: 70%;
    position: absolute;
    display: flex;
    top: 15%;
  }

  .homepic {
    width: 100%;
    height: 100%;
    display: flex;
    background: url("img/yogamid.jpg");
    background-size: 100% 100%;
  }

  .bebaparent {
    height: 45%;
    top: 47%;
  }

  .beba {
    width: 25%;
    height: 100%;
    left: 25%;
  }

  .ball1 {
    bottom: 10%;
    height: 65px;
    left: 20%;
  }

  .ball2 {
    bottom: 50%;
    left: 12%;
    height: 45px;
  }

  .isbj {
    top: 5%;
    font-size: 21vw;
  }

  .phtxtparent {
    top: 78%;
  }

  .phtxt {
    position: absolute;
    right: 5%;
    font-size: 12em;
    color: var(--textcol);
    text-shadow: white 1px 1px;
  }

  .title {
    height: 15vh;
    font-size: 1.5em;
  }

  .albcont {
    height: 85vh;
    display: flex;
    width: 100%;
  }

  #gallery-links {
    height: 85%;
    padding: none;
    display: block;
  }

  .albmenu {
    width: 25%;
    padding: unset;
    height: 85vh;
  }

  .albmenu ul {
    margin: 20% 10% 0 10%;
    list-style: none;
    height: 100%;
  }

  .albmenu ul li {
    margin-top: 10%;
    display: flex;
    align-items: center;
  }

  .albmenu ul li a {
    font-size: 0.8em;
    text-decoration: none;
    text-transform: uppercase;
    padding-left: 5%;

    color: var(--textcol);
  }

  #gallery-links li:nth-child(7) {
    padding-top: 20%;
  }

  .lineparent {
    width: 35%;
    height: 2px;
    display: block;
  }

  .line1,
  .line2,
  .line3,
  .line4,
  .line5,
  .line6 {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--textcol);
    opacity: 0;
  }

  .currentline {
    opacity: 1;
    animation: linewidth 0.5s;
  }

  @keyframes linewidth {
    from {
      width: 0;
    }

    to {
      width: 100%;
    }
  }

  .gallery-chng {
    width: 75%;
    height: 85vh;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    right: 1%;
  }

  div.grid,
  div.grid2,
  div.grid3,
  div.grid4,
  div.grid5,
  div.grid6 {
    width: 95%;
    height: 85%;
    display: grid;
    position: absolute;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 5%;
    column-gap: 2%;
    opacity: 0;
  }

  .slika1 {
    grid-row: 1/3;
    grid-column: 1/3;
    background: url("img/svd.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika2 {
    grid-row: 1/2;
    grid-column: 3/5;
    background: url("img/trotinet.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3 {
    grid-row: 2/3;
    grid-column: 3/4;
    background: url("img/gadfull.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika4 {
    display: block;
    grid-row: 2/3;
    grid-column: 4/5;
    background: url("img/run2.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika1-1 {
    grid-row: 1/3;
    grid-column: 1/3;
    background: url("img/wed/8.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika2-1 {
    grid-row: 1/2;
    grid-column: 3/5;
    background: url("img/wed/29.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3-1 {
    grid-row: 2/3;
    grid-column: 3/4;
    background: url("img/wed/18.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika4-1 {
    display: block;
    grid-row: 2/3;
    grid-column: 4/5;
    background: url("img/wed/5.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika1-2 {
    grid-row: 1/3;
    grid-column: 1/3;
    background: url("img/bus/DSC_1233.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika2-2 {
    grid-row: 1/2;
    grid-column: 3/5;
    background: url("img/bus/41.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3-2 {
    grid-row: 2/3;
    grid-column: 3/4;
    background: url("img/bus/13.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika4-2 {
    display: block;
    grid-row: 2/3;
    grid-column: 4/5;
    background: url("img/bus/27.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika1-3 {
    grid-row: 1/3;
    grid-column: 1/3;
    background: url("img/sp/1.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika2-3 {
    grid-row: 1/2;
    grid-column: 3/5;
    background: url("img/sp/DSC_6378.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3-3 {
    grid-row: 2/3;
    grid-column: 3/4;
    background: url("img/sp/DSC_7051.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika4-3 {
    display: block;
    grid-row: 2/3;
    grid-column: 4/5;
    background: url("img/sp/18.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika1-4 {
    grid-row: 1/3;
    grid-column: 1/3;
    background: url("img/fsh/1.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika2-4 {
    grid-row: 1/2;
    grid-column: 3/5;
    background: url("img/fsh/2.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3-4 {
    grid-row: 2/3;
    grid-column: 3/4;
    background: url("img/fsh/23-1.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika4-4 {
    display: block;
    grid-row: 2/3;
    grid-column: 4/5;
    background: url("img/fsh/4.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika1-5 {
    grid-row: 1/3;
    grid-column: 1/3;
    background: url("img/int/1.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika2-5 {
    grid-row: 1/2;
    grid-column: 3/5;
    background: url("img/int/2.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika3-5 {
    grid-row: 2/3;
    grid-column: 3/4;
    background: url("img/int/3.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .slika4-5 {
    display: block;
    grid-row: 2/3;
    grid-column: 4/5;
    background: url("img/int/4.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .sl {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: all 1s;
    color: black;
  }

  .sl1 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: all 1s;
    color: black;
  }

  .sl a,
  .face a,
  .insta a {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-family: "Dancing Script", cursive;
    font-size: 30px;
  }

  .sl a:hover:after {
    content: "Full Gallery";
    height: 100%;
    width: 100%;
    background-color: rgba(105, 95, 95, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    transition: all 5s ease;
  }

  #social {
    display: flex;
  }

  .socimgparent {
    height: 100vh;
    width: 65%;
  }

  .socimg {
    height: 100%;
    width: 100%;
    opacity: 0.7;
    background: url("img/run-13.jpg") no-repeat;
    background-size: 100% 100%;
  }

  @keyframes socimganim {
    from {
      width: 0;
    }

    to {
      width: 100%;
    }
  }

  .soctext {
    height: 100vh;
    width: 35%;
    top: 0;
    z-index: 3;
    display: flex;

    flex-direction: column;
    background: none;
  }

  .h1tekst {
    position: absolute;
    display: flex;
    justify-content: center;

    width: 140%;
    height: 100vh;
    right: 15%;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 1));
  }

  .soctext h1 {
    font-size: 1.8em;
    margin: unset;
    height: unset;
    text-align: right;
    width: 100%;
    right: 0;
    top: 100px;
  }

  .soclogo {
    z-index: 3;
    position: absolute;
    bottom: 5%;
    right: -15%;
  }

  .insta {
    margin-top: 20%;
    height: 7vh;
  }

  #contact {
    display: flex;
  }

  .contactform {
    height: 90vh;
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form {
    height: 45vh;
    position: relative;
    top: -10%;
    margin-left: -100px;
    width: 35vw;
  }

  .form h3 {
    display: flex;
    position: relative;
    width: 100%;
    bottom: 7%;
    color: var(--textcol);
  }

  input,
  textarea {
    font-size: 1.2vw;
    height: 3.6em;
  }

  textarea {
    padding-top: 10px;
    height: 6.8em;
    word-wrap: break-word;
  }

  .form p {
    font-size: 5vw;
    top: 75%;
  }

  .confbtn {
    font-size: 1em;
    top: 80%;
  }

  .contimgparent {
    width: 35%;
    height: 90vh;
  }

  .contimg {
    height: 100%;
    background: url("img/contactfull.jpg") no-repeat;
    background-size: 100% 100%;
  }
}

@media screen and (min-width: 1200px) {

  #home,
  #album,
  #social,
  #contact {
    scroll-snap-align: start;
  }

  .logo {
    height: 90px;
  }

  .bebaparent {
    height: 55%;
    top: 37%;
  }

  .beba {
    width: 21%;
    height: 100%;
    left: 22%;
  }

  .homepic {
    background: url("img/yoga2.jpg") no-repeat;
    background-size: 100% 100%;
  }

  .isbj {
    font-size: 20vw;
    top: -5%;
  }

  .phtxtparent {
    top: 77%;
  }

  .phtxt {
    font-size: 18vw;
    right: 5%;
  }

  .gallery-chng {
    right: 3%;
  }

  .albmenu ul li a {
    font-size: 1vw;
  }

  #gallery-links li:nth-child(7) {
    padding-top: 20%;
  }

  .soctext h1 {
    font-size: 2.5vw;
    margin: unset;
    height: unset;
    text-align: right;
    width: 90%;
    right: 0;
    top: 10%;
  }


  .contactform {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form {
    width: 40vw;
    height: 50vh;
    top: 0;
  }

  input,
  textarea {
    font-size: 1em;
    height: 3em;
  }

  textarea {
    padding-top: 10px;
    height: 6em;
    word-wrap: break-word;
  }

  .form p {
    font-size: 5vw;
    top: 85%;
  }

  .form h3 {
    font-size: 1.5vw;
    bottom: 10%;
  }

  .confbtn {
    width: 30%;
    height: 2vw;

    background-color: rgb(0, 157, 249);
    border: none;
    color: aliceblue;
    font-size: 0.8em;
    top: 90%;
  }

  .all {
    min-width: 1200px;
  }

  .slika {
    height: 500px;
    position: absolute;
    opacity: 0;
    z-index: -4;
  }

  .display {
    opacity: 1;
    transition: all 2s ease;
  }
}