:root {
  --main: #131111;
  --accent: #F26321;
  --light: white;

}

body {
  font-size: small;
  background-color: #EDEEF0;
  font-family: 'Roboto', sans-serif;
}

.section {
  height: 100vh;
}

.mozaicbox {
  flex-direction: column;
}

.contentsection {
  min-height: 100vh;
}

.contentbox {
  border: transparent;
  border-radius: 1em;
  background-color: transparent;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.longbox {
  flex-grow: 1;
}

.midbox {
  min-height: 30vh;
}

.shortbox {
  min-height: 15vh;
}

.standardimage {
  width: 100%;
  height: auto;
}

.iconimg {
  width: 50px;
  height: auto;
}

.mainimage {
  max-width: 300px;
}

.anchor {
  position: relative;
}

.noticemepin {
  position: absolute;
  bottom: 0;
  right: 40%;
}

.maxall {
  height: 100%;
  width: 100%;
}

.imgbg1 {
  background-image: url("../img/Background/b1.jpg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
}

.imgbg2 {
  background-image: url("../img/Background/b2.jpg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
}

.imgbg3 {
  background-image: url("../img/Background/b3.jpg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}

.imgbg5 {
  background-image: url("../img/Background/b5.jpg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
}

.imgbg6 {
  background-image: url("../img/Background/b7.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.imgbg7 {
  background-image: url("../img/Background/b8.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.buttonstyle1 {
  border: 1px solid transparent;
  border-radius: 1em;
  background-color: var(--light);
  color: var(--main);
  font-weight: bold;
}



.xlfont {
  font-weight: 900;
  font-size: calc(1.375rem + 2vw);
}

.clickable {
  transition: 0.5s;
  cursor: pointer;
}

.clickable:hover {
  transition: 0.5s;
  transform: scale(1.2);
}


.test {
  box-sizing: border-box;
  border: 1px solid yellow;
}

.orangebox {
  color: var(--light);
  background-color: var(--accent);
}

.blackbox {
  color: var(--light);
  background-color: var(--main);
}

.whitebox {
  color: var(--main);
  background-color: var(--light);
}

.maxwhensmall {
  width: 70%;
}

.nostyle{
  text-decoration: none;
}

.nostyle:hover{
  text-decoration: none;
}


.hideori {
  opacity: 0;
}

.hidetillscroll {
  opacity: 0;
}


.fadefromleft1 {
  animation: 1s ease-in-out 0s 1 forwards slideInFromLeft;
}

.fadefromleft2 {
  animation: 1s ease-in-out 0.2s 1 forwards slideInFromLeft;
}

.fadefromleft3 {
  animation: 1s ease-in-out 0.4s 1 forwards slideInFromLeft;
}

.fadefromleft4 {
  animation: 1s ease-in-out 0.6s 1 forwards slideInFromLeft;
}

.fadefromtop1 {
  animation: 1s ease-in-out 0s 1 forwards slideInFromTop;
}

.fadefromtop2 {
  animation: 1s ease-in-out 0.2s 1 forwards slideInFromTop;
}

.fadefromtop3 {
  animation: 1s ease-in-out 0.4s 1 forwards slideInFromTop;
}

.fadefromtop4 {
  animation: 1s ease-in-out 0.6s 1 forwards slideInFromTop;
}

.fadein {
  animation: 1s ease-in-out 0s 1 forwards FadeIn;
}

.fadein2 {
  animation: 1s ease-in-out 0.2s 1 forwards FadeIn;
}

.fadein3 {
  animation: 1s ease-in-out 0.4s 1 forwards FadeIn;
}

.fadein4 {
  animation: 1s ease-in-out 0.6s 1 forwards FadeIn;
}

.fadeout {
  animation: 1s ease-in-out 0s 1 forwards FadeOut;
}

.fadefromright2 {
  animation: 1s ease-in-out 0s 1 forwards SlidetoRight;
}

.noticemeeffect {
  animation: 1s ease-in-out 0s infinite forwards slideInFromTop;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes SlidetoRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes FadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes FadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media only screen and (max-width: 768px) {

  .maxwhensmall {
    width: 100%;
  }

  .longbox {
    flex-grow: 0;
    min-height: 30vh;
  }

  .section {
    height: auto;
  }

  .contentbox {
    height: 100%;
    min-height: 30vh;
  }

  .overscreen {
    background-color: #F26321;
  }

  .imgbg5 {
    background-image: url("assets/img/Background/b6.jpg");
  }

}