* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  scroll-behavior: smooth;
  overflow: none;
}
:root {
  --textcol: #002259;
}

header {
  display: none;
}

.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;
 margin-top: 80px;
  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;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.album {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  overflow: hidden;
  width: 100%;
}

h1 {
  color: var(--textcol);
  padding-bottom: 30px;
}

.text {
  height: 10%;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 10px;
}
.title {
  color: var(--textcol);
  font-size: 1.5em;
  padding-bottom: 10px;
  text-transform: uppercase;
  align-self: center;
}

.slika1,
.slika2,
.slika3,
.slika4,
.slika5 {
  height: 270px;
  width: 80%;
}

.slika1 {
  background: url("../img/wed/8.jpg") no-repeat;
  background-size: 100% 100%;
}
.slika2 {
  background: url("../img/bus/27.jpg") no-repeat;
  background-size: 100% 100%;
}
.slika3 {
  background: url("../img/sp/1.jpg") no-repeat;
  background-size: 100% 100%;
}
.slika4 {
  background: url("../img/fsh/23.jpg") no-repeat;
  background-size: 100% 100%;
}
.slika5 {
  background: url("../img/int/1.jpg") no-repeat;
  background-size: 100% 100%;
}

.h a {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-family: "Dancing Script", cursive;
  font-size: 30px;
}

.h 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;
}

.footer {
  height: 10vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(206, 206, 206);
}

@media screen and (min-width: 576px) and (max-width: 849.98px) {
  .content {
    margin-top: 5%;
  }

  .album {
    flex-direction: row;
    width: 90%;
    height: 300px;
    justify-content: center;
    align-items: center;
    border-bottom: black 1px solid;
  }

  .slika1,
  .slika2,
  .slika3,
  .slika4,
  .slika5 {
    height: 270px;
    width: 70%;
  }
  .text {
    height: 100%;
  }
  .title {
    position: relative;
    
  }

  .split {
    display: flex;
    flex-flow: row;
  }
  .r {
    order: 2;
    text-align: right;
  }

  .slika2,
  .slika4 {
    order: 1;
  }
}

@media screen and (min-width: 850px) and (max-width: 1023.98px) {
  header {
    height: 15vh;
  }
  .burger {
    height: 120px;
  }

  .logomobile {
    height: 90px;
  }
  .logomobile img {
    height: 90px;
  }
  svg {
    height: 70px;
    width: 70px;
  }
.active1 {
  margin-top: 14vh;
}
  .content {
    margin-top: 1%;
  }

  .album {
    flex-direction: row;
    width: 90%;
    height: 310px;
    justify-content: center;
    align-items: center;
    border-bottom: black 1px solid;
  }

  .l {
    border-bottom: none;
  }

  .slika1,
  .slika2,
  .slika3,
  .slika4,
  .slika5 {
    height: 300px;
    width: 70%;
  }
  .text {
    height: 100%;
  }
  .title {
    position: relative;
    
  }

  .split {
    display: flex;
    flex-flow: row;
  }
  .r {
    order: 2;
    text-align: right;
  }

  .slika2,
  .slika4 {
    order: 1;
  }
}

@media screen and (min-width: 1024px) {
  .burger,
  .dropbtn,
  .active1,
  .active1-open {
    display: none;
  }

  header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
    width: 100%;
  }
  .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;
  }
  .content {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  h1 {
    padding-bottom: 0%;
    font-size: 2em;
    display: none;
  }
  .album {
    flex-direction: row;
    width: 90%;
    height: 40vh;
    justify-content: center;
    align-items: center;
    margin: 0;
    border-bottom: black 1px solid;
  }
  .l {
    border-bottom: none;
  }

  .slika1,
  .slika2,
  .slika3,
  .slika4,
  .slika5 {
    height: 90%;
    width: 60%;
  }
  .text {
    height: 100%;
  }
  .title {
    font-size: 1.5em;
    position: relative;
    
  }

  .split {
    display: flex;
    flex-flow: row;
  }
  .r {
    order: 2;
    text-align: right;
  }

  .slika2,
  .slika4 {
    order: 1;
  }
}

@media screen and (min-width: 1200px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .content {
    width: 1200px;
    max-width: 1300px;
  }
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15vh;
    min-width: 1200px;
    max-width: 1500px;
  }

  .logo {
    padding: 5px 10px;
    height: 90px;
  }
  .content {
    padding: 0;
    margin: 0;
  }
  h1 {
    margin-top: 2%;
    padding-bottom: 5%;
    font-size: 1.8em;
  }
  .album {
    flex-direction: row;
    width: 100%;
    height: 40vh;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .slika1,
  .slika2,
  .slika3,
  .slika4,
  .slika5 {
    height: 90%;
    width: 50%;
  }
  .text {
    height: 100%;
  }
  .title {
    font-size: 1.7em;
    position: relative;
    
  }

  .text:nth-last-child(2) {
    font-size: 1.2em;
  }

  .split {
    display: flex;
    flex-flow: row;
  }
  .r {
    order: 2;
    text-align: right;
  }

  .slika2,
  .slika4 {
    order: 1;
  }
}
