:root {
  --black: #000000;
  --orange: #ffc02e;
  --blue: #3e96bf;
  --bluegreen: #215973;
  --white: #ffffff;
  --lightGray: #f3f3f3;
  --mediumGray: #ccc;
  --headertext: #ffffff;
  --paragraphtext: #ffffff;
}






@font-face {
    font-family: 'avenir';
    src: url('font/AN-BoldItalic.eot');
    src: url('font/AN-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('font/AN-BoldItalic.woff2') format('woff2'),
        url('font/AN-BoldItalic.woff') format('woff'),
        url('font/AN-BoldItalic.ttf') format('truetype'),
        url('font/AN-BoldItalic.svg#AN-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'avenir';
    src: url('font/AN-Bold.eot');
    src: url('font/AN-Bold.eot?#iefix') format('embedded-opentype'),
        url('font/AN-Bold.woff2') format('woff2'),
        url('font/AN-Bold.woff') format('woff'),
        url('font/AN-Bold.ttf') format('truetype'),
        url('font/AN-Bold.svg#AN-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'avenir';
    src: url('font/AN-Italic.eot');
    src: url('font/AN-Italic.eot?#iefix') format('embedded-opentype'),
        url('font/AN-Italic.woff2') format('woff2'),
        url('font/AN-Italic.woff') format('woff'),
        url('font/AN-Italic.ttf') format('truetype'),
        url('font/AN-Italic.svg#AN-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'avenir';
    src: url('font/AN-Regular.eot');
    src: url('font/AN-Regular.eot?#iefix') format('embedded-opentype'),
        url('font/AN-Regular.woff2') format('woff2'),
        url('font/AN-Regular.woff') format('woff'),
        url('font/AN-Regular.ttf') format('truetype'),
        url('font/AN-Regular.svg#AN-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "avenir", sans-serif; 

  scroll-behavior: smooth; 
  word-break: break-word;
}

body {
  background-color: #fff;
  -webkit-text-size-adjust: none;
}

a,
a:visited {
  text-decoration: none;
  color: var(--white);
}

p {
  color: var(--black);
  word-wrap: break-word;
  /* color: var(--paragraphtext); */
}

h1 {
  font-size: 32px;
  color: var(--headertext);
  padding-bottom: 0;
  font-family: 'avenir', sans-serif;
}

h2 {
  font-size: 24px;
  /* color: var(--headertext); */
  color: var(--black);
  padding-bottom: 0;
  font-family: 'avenir', sans-serif;
}

.section-text-wrapper h1,
.section-text-wrapper h2 {
  padding: 10px 0;
}

a,
p,
label,
li {
  font-size: 16px;
  line-height: 1.75rem;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  border: 1px solid #f3f3f3;
}

/* ul,
ol {
    list-style-type: none;
} */

html,
body {
  width: 100%;
  height: 100%;
}

#content-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

main {
  flex-grow: 1;
  padding-top: 100px;
}
body.main-page main{
  padding-top: 0;
}
header,
main,
footer {
  flex-shrink: 0;
}

.onepage-container{
  padding-top: 100px;
  margin-top: -100px;
}

/* Header */

header {
  position: relative;
  z-index: 1;
}

.other-page header{
  position: fixed;
  display: flex;
  width: 100%;
}

.other-page header .header-holder {
  width: 100%;
  background-color: #215973ad;
}

.header_wrapper {
  padding: 0 5%;
  min-height: 60px;

  display: flex;
  justify-content: space-between;
}

.hide {
  display: none;
}

.app-menu {
  display: none;
  width: 42px;
  height: 42px;
  background-color: inherit;
  position: absolute;
  top: 27px;
  right: 20px;
  cursor: pointer;
}

.app-menu div {
  width: 25px;
  height: 3px;
  background-color: var(--orange);
  
  left: 8px;
  position: absolute;
  transition: all 0.3s ease;
}

@keyframes appOne {
  0% {
    opacity: 1;
    margin-top: 10px;
  }
  50% {
  }
  75% {
    transform: rotate(0deg);
  }
  100% {
    margin-top: 20px;
    transform: rotate(45deg);
  }
}

@keyframes appTwo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    margin-top: 0;
    opacity: 0;
  }
}

@keyframes appThree {
  0% {
    margin-top: 0;
  }
  50% {
  }
  75% {
    transform: rotate(0deg);
  }
  100% {
    margin-top: -6px;
    transform: rotate(-45deg);
  }
}

@keyframes appOneClose {
  0% {
    margin-top: 20px;
    transform: rotate(45deg);
  }
  25% {
    transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    margin-top: 10px;
  }
}

@keyframes appTwoClose {
  0% {
    margin-top: 0;
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    margin-top: 5px;
  }
}

@keyframes appThreeClose {
  0% {
    margin-top: -6px;
    transform: rotate(-45deg);
  }
  25% {
    transform: rotate(0deg);
  }
  100% {
    margin-top: 5px;
  }
}

.app-menu div:nth-child(1) {
  top: 10px;
}

.app-menu div:nth-child(2) {
  top: 17px;
}

.app-menu div:nth-child(3) {
  top: 24px;
}

.app-menu.open div:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.app-menu.open div:nth-child(2) {
  opacity: 0;
}

.app-menu.open div:nth-child(3) {
  top: 20px;
  transform: rotate(135deg);
}

/* ############### */

.class-header {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.show-as-fixed {
  position: fixed;
  /* background-color: #21597380; */
  background-color: #215973ad;
}


.header-holder {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  background-color: transparent;
  
}
.main-page header{
	/* position: absolute; */
	position: fixed;
	width: 100%;
}
.main-page header .header-holder{
	background: none !important;
}

#logo img {
  width: auto;
  height: 70px;
  padding: 0;
  z-index: 2;
  display: block;
}

header nav {
  flex: 1;
  height: 100%;
}

.mainmenu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
  justify-content: flex-end;
  height: 100%;
}

.mainmenu.open {
  border-top: 1px solid #f3f3f3;
}

.mainmenu li {
  position: relative;
  padding: 0 20px;
}

.mainmenu li:hover {
  /* background-color: rgb(248, 248, 248); */
  background-color: transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.mainmenu li > ul li {
  padding: 0;
}

.mainmenu li > ul {
	position: absolute;
	display: none;
	/* background-color: #fff; */
	background-color: #3e96bf;
	padding: 5px 0;
	list-style-type: none;
	margin: 0;
	top: 100px;
	z-index: 200;
	min-width: 260px;
	box-shadow: 0 7px 14px rgba(0, 0, 0, 0.12), 0 5px 5px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	right: 0;
}
.mainmenu li.sub:hover > ul{
	display: block;
}



.mainmenu li > ul li:hover {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.mainmenu li > ul li a {
	padding: 20px 20px 20px 30px;
	font-size: 18px;
}

.mainmenu li > ul > li > ul {
	display: none;
	right: calc(100% + -20px);
	top: -5px;
	z-index: 300;
	right: 100%;
	/* background-color: #fff; */
	background-color: #3e96bf;
}

.mainmenu li > ul > li > ul li:hover {
  /* background-color: #dfdfdf; */
  background-color: transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.mainmenu a.showsub {
	display: block;
	height: 20px;
	position: absolute;
	bottom: 15px;
	left: 50%;
	width: 20px;
	margin-left: -10px;
	color: var(--orange);
	font-size: 18px;
}
.mainmenu li ul li a.showsub {
	display: flex;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 18px;
	width: 20px;
	margin-top: -10px;
	color: var(--orange);
	font-size: 18px;
	padding: 0;
}
.mainmenu li ul li a.showsub i{
	transform: rotate(90deg);
}

.mainmenu a {
  color: var(--paragraphtext);
  font-size: 22px;
  font-weight: 600;
  display: flex;
  height: 100%;
  align-items: center;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

.mainmenu a:hover {
  color: var(--orange);
}


.mainmenu li a.active {
  color: var(--orange);
  font-weight: bold;
}

.menu-container {
  height: 100%;
}

.mainmenu > li .desktop-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 15px;
  left: calc(50% - 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 400;
  /* color: #333; */
  color: #ffb100;
}

.mainmenu .desktop-arrow i {
  position: absolute;
  font-size: 18px;
}

.mainmenu > li > ul > li > .desktop-arrow {
  transform: rotate(90deg);
  left: 0;
  top: 20px;
}

.search-box {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  background-color: #9ea2a9;
  background-color: #aad400;
  overflow-x: hidden;
  padding-top: 60px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  box-shadow: 0 7px 14px rgba(171, 171, 171, 0.25),
    0 5px 5px rgba(171, 171, 171, 0.22);
}

.search-box .search-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  list-style-type: none;
}

.search-box .search-wrapper label {
  color: white;
  font-size: 30px;
  display: block;
}

.search-box .search-wrapper input,
.search-box .search-wrapper button {
  border: none;
  padding: 20px;
  display: block;
  margin-top: 10px;
}

.search-box .search-wrapper input[type="text"] {
  min-width: 100px;
  max-width: 75%;
  border-radius: 10px 0 0 10px;
  display: inline-block;
}

.search-box .search-wrapper input[type="text"]:focus {
  border: none;
  outline: 0;
}

.search-box .search-wrapper input[type="submit"],
.search-box .search-wrapper button {
  border-radius: 0 10px 10px 0;
  display: inline-block;
  margin-left: -5px;
  background-color: #aad400;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  -webkit-appearance: none;
  max-width: 25%;
}

.search-box .search-wrapper button i {
  color: #fff;
}

.search-box .search-wrapper input[type="submit"]:hover,
.search-box .search-wrapper button:hover {
  background-color: #805180;
}

#close-search-button {
  position: absolute;
  top: 20px;
  right: 50px;
  font-size: 30px;
  color: #fff;
}

.search-result-title {
  padding: 50px 25px 0 25px;
  text-align: center;
  position: relative;
}

.flex-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}


/* landinpage */
#id-landing-page-full {
  position: relative;
  background-image: url(../images/Fiskariakvarium.png);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  scroll-snap-align: start;
}

#landing-page-full-image-center {
  /* position: absolute; */
  /* top: 50%; */
  /* left: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-image: url(../images/LOGOTYP_ZOO_Vit.png);
  background-position: center;
  padding-top: 50%; */
}


/*  */


footer {
  width: 100%;
}


.footer-main {
  background-color: #959d72;
  width: 100%;
  padding: 75px 50px;
}

.footer-33-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-33-wrapper .footer-33 {
  width: 31.33%;
  margin: 1%;
  padding: 25px;
  color: #fff;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.footer-33-wrapper .footer-33 a {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.footer-main .footer-33 a:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.footer-main .icons-wrapper {
  display: flex;
  justify-content: center;
}

.footer-main .icons-wrapper i {
  font-size: 32px;
  padding: 16px;
  color: #fff;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.footer-main a:hover > i {
  color: #f3f3f3;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.footer-main p,
.footer-main a {
  color: #fff;
  display: block;
}

ul.footer-menu,
ul.footer-menu li {
  list-style-type: none;
}
/* ul.footer-menu li ul {
  padding-left: 5px;
} */
ul.footer-menu li ul li {
  display: flex;
}
ul.footer-menu li ul li::before {
  content: '-';
  padding-right:10px;
}

ul.footer-menu .showsub {
  display: none;
}

.footer-social-wrapper {
  display: flex;
  /* margin-top: 10px; */
  margin-top: -5px;
}

.footer-social {
  padding: 10px 10px 10px 0;
  margin-right: 10px;
}
.footer-social i {
  font-size: 32px;
}

.footer-copy {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 10px 25px;
  background-color: #2d495e;
}

.footer-copy p,
.footer-copy a {
  color: #fff;
  font-size: 12px;
}

.fat {
  font-weight: bold;
  padding-bottom: 2.5px;
}

.bold {
  font-weight: bold;
}

.tiny {
  font-size: 8px;
}

.inline-wrapper a {
  display: inline;
}

.scale-box {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scale-box:hover {
  text-decoration: none;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.loader {
  align-items: center;
  justify-content: center;
  display: none;
  padding-top: 25px;
}

.circle {
  background-color: #aad400;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 4px;
  animation: bounce 0.5s ease-in infinite;
}

.circle:nth-of-type(2) {
  animation-delay: 0.1s;
}

.circle:nth-of-type(3) {
  animation-delay: 0.2s;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* KONTAKTFORMULÄR */
/* KONTAKTFORMULÄR */

.form-wrapper {
  max-width: 1200px;
  width: 98%;
  margin: 25px 1%;
  display: flex;
  justify-content: center;
  /* flex-flow:row-reverse; */
  /* box-shadow: 0 7px 14px rgba(171, 171, 171, 0.25), 0 5px 5px rgba(171, 171, 171, 0.25); */
  /* border-radius: 2.5px;   */
}

.contact-form {
     
     color: #333;
     display: flex;
     justify-content: center;
     flex-flow: column;
     padding: 25px 50px;
     width: 100%;
     
}
.contact-form-100 {
  width:100%;
  border-radius:0;
}

.contact-form h2 {
  padding-bottom: 10px;
}

.contact-form .form-content-wrapper {
  padding: 0 4rem;
  width: 100%;
}

.contact-form .form-extra-info-address {
width: 50%;
padding: 2rem;
}






.contact-info {
  color: #fff;
  width: 30%;
  background-color: #aad400;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 2.5px 0 0 2.5px;  
}

.contact-form label {
  display: block;
  margin: 5px 0;
  font-size: 16px;
  color: rgb(116, 116, 116);
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  width: 100%;
  /* padding: 5px; */
  padding: 10px;
  display: block;
  border: none;
  min-width: 200px;
  margin-top: 20px;
  /* border-bottom: 1px solid rgb(221, 221, 221); */
  border-radius: 10px !important;
  outline: 0;
  border: 0;
  outline-offset: 0;
  font-size: 16px;
}

.contact-form textarea {
  width: 100%;
  /* padding: 5px; */
  padding: 10px;
  display: block;
  /* border: none; */
  min-width: 200px;
  min-height: 100px;
  margin-top: 20px;
  resize: vertical;
  /* border-bottom: 1px solid rgb(221, 221, 221); */
  outline: 0;
  border-radius: 10px !important;
  border: 0;
  font-size: 16px;
}

::placeholder {
  color: var(--bluegreen);
  opacity: 1; /* Firefox */
}

textarea:focus,
input:focus,
button:focus {
  outline: none;
}
.contact-form #contact-form-title {
  padding-bottom:25px;
}
.contact-form #submit-button {
  display: block;
  border: none;
  background-color: #ffb60b;
  color: #fff;
  margin-top: 25px;
  cursor: pointer;
  padding:15px 30px;
  border-radius:10px;
  width:fit-content;
  display: table;
  font-weight: bold;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-transform: uppercase;
  font-size:16px;
}
.contact-form #submit-button:disabled {
  background-color: var(--orange);
  cursor: not-allowed;

}

.contact-form #submit-button:hover {
  background-color: #ffb60b;

}
.contact-form #submit-button:disabled:hover {
  background-color: #ffd77a;
  cursor: not-allowed;

}
.contact-form #submit-button i {
  color: rgb(255, 255, 255);
}

.contact-info .big-icon-wrapper .big-icon {
  font-size:100px;
  color:#fff;
}

.contact-info .big-icon-wrapper .big-icon i {
  /* animation: twiggle  2s  ease forwards; */
  animation-name: twiggle;
  animation-duration: 2s;
  animation-delay: 5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

/* .contact-info .big-icon-wrapper .big-icon i:hover {
  animation: twiggle  2s  ease forwards; 
} */



@keyframes twiggle {
  0% {
    transform: scale(1);
    transform: rotate(180deg);
    
  }
  10% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.25);
  }
  90% {
    transform: rotate(180deg);
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  
  }
}





/* Felmeddelanden i formuläret */

.subject_error_message,
.name_error_message,
.email_error_message,
.message_error_message {
	font-style: italic;
	font-size: 12px;
	color: #000;
	background-color: var(--orange);
	margin-top: 5px;
	text-align: center;
	border-radius: 5px;
  
}


/* Meddelande-notifiering vid skickat kontaktformulär */

#message-box {
  height: 50px;
  width: 100%;
  /* overflow: hidden; */
  position: fixed;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  background-color: #ffc87b;
  animation-name: popUp;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
}

#message-box p {
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  color:  #007e00;
}

@keyframes popUp {
  0% {
    bottom: -50px;
    opacity: 1;
  }
  10% {
    bottom: -5px;
    opacity: 1;
  }
  20% {
    bottom: 50px;
    opacity: 1;
  }
  79% {
    bottom: 50px;
    opacity: 1;
  }
  90% {
    bottom: 50px;
    opacity: 1;
  }
  99% {
    bottom: -50px;
    opacity: 1;
  }
  100% {
    bottom: -50px;
    opacity: 0;
  }
}

/** Gallery **/

.gallery-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 98%;
  margin: 0 1%;
  margin: 0 auto;
  box-shadow: 0 7px 14px rgba(171, 171, 171, 0.05),
    0 5px 5px rgba(171, 171, 171, 0.05);
  border-radius: 5px;
  padding: 25px 0;
}

.gallery-item {
  width: 23%;
  display: flex;
  margin: 1%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.gallery-item.slide-in.is-visible:hover {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -o-transform: scale(1.15);
  -ms-transform: scale(1.15);
}

.gallery-item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #9ea2a9;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
    0 5px 5px rgba(171, 171, 171, 0.15);
}

.gallery-item .box-image-container,
.gallery-item-100 .box-image-container {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.gallery-item .box-image-container {
  padding-top: 70%;
  width: 100%;
}

.gallery-item .box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  flex-grow: 1;
}

.gallery-item-100 .box-image-container {
  padding-top: 50%;
}

.gallery-item-100 {
  width: 100%;
  display: flex;
  margin: 20px;
}


@media all and (min-width:1200px) {
  .footer-33-wrapper {
    width:98%;
    padding: 0 25px;
  }

}

@media all and (max-width:1200px) {
  .footer-33-wrapper .footer-33:nth-child(1) {
    margin-left:0;
    padding-left:0;
  } 
}

.mainmenu li ul {
	display: none;
}

@media all and (max-width: 1100px) {
	.parent-open {
		display:block !important;
	}
	.header-holder {
		padding: 0 20px;
	}
	#close-search-button {
		top: 20px;
		right: 20px;
		font-size: 24px;
	}
	.menu-open {
		overflow: hidden;
	}
	.app-menu {
		display: block;
		z-index: 600;
	}
	.mainmenu.open {
		left: 0;
	}
	.mainmenu > li {
		font-size: 20px;
		margin: 0 !important;
		padding: 10px 20px;
	}
	.mainmenu li ul {
		padding: 0;
		background-color: unset !important;
		position: relative;
		box-shadow: none;
		border: none;
		right: unset !important;
		top: unset !important;

	}
	.mainmenu > li > ul li {
		font-size: 16px;
		position: relative;
		/* padding: 0 20px; */
		border: none;
	}
	.mainmenu > li > ul > li > ul > li {
		font-size: 15px;
	}
	.mainmenu > li > ul > li a {
		font-weight: normal;
		padding: 15px 20px 15px 30px;
	}
	.mainmenu > li > ul > li > ul > li a {
		font-weight: normal;
		padding: 15px 20px 15px 40px;
		font-size: 16px;
	}
	.mainmenu {
		display: block;
		position: fixed;
		top: 100px;
		left: -100%;
		width: 100%;
		height: 100%;
		background-color: #ffffff;
		z-index: 998;
		overflow: scroll;
		padding-bottom: 200px;
		transition: all 0.3s ease;
	}
	.mainmenu li {
		width: 100%;
		margin: 0;
		padding: 0;
		border-bottom: 1px solid #f3f3f3;
	}
	.mainmenu li a{
		padding: 20px 20px;
	}
	.mainmenu li.sub > a{
		width: 80%;
		width: calc(100% - 55px);
	}
	.mainmenu a.showsub, .mainmenu li ul li a.showsub {
		position: absolute;
		top: 0;
		bottom: unset;
		width: 20% !important;
		width: calc(55px) !important;
		margin-top: unset;
		height: 69px;
		right: 0;
		left: unset;
		color: var(--orange);
		font-size: 18px;
		display: flex;
		justify-content: center;
	}
	.mainmenu li ul li a.showsub {
		height: 59px;
	}
	.showsub:hover {
		text-decoration: none;
	}
	.mainmenu a.showsub i {
		font-size: 16px;
	}
	.mainmenu a.showsub i.hide {
		display: none;
	}
	.mainmenu li ul li a.showsub i{
		transform: unset;
	}
  
	.mainmenu li.sub:hover > ul {
		display: none;
	}
	.mainmenu li a:hover{
		background-color: var(--blue);
	}

}

@media all and (max-width: 960px) {
  .onepage-container{
    padding-top: 70px;
    margin-top: -70px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  p,
  a,
  label {
    font-size: 15px;
  }
  .header-holder {
    height: 70px;
    padding: 0 20px;
  }
  header img {
    width: 140px;
    padding: 19px 0;
  }
  
	#logo img {
		height: 60px;
	}
  .mainmenu  {
    top:70px;
  }
  .app-menu {

    top: 14.5px;

  }
  .gallery-wrapper {
    justify-content: space-around;
  }
  .gallery-item {
    width: 23%;
    margin: 1%;
  }
  .gallery-item-100 {
    width: 100%;
    display: flex;
    margin: 1% 0;
  }
  .search-box .search-wrapper label {
    font-size: 24px;
  }
  .search-box .search-wrapper input,
  .search-box .search-wrapper button {
    padding: 15px;
  }
  .search-box .search-wrapper input[type="text"] {
    border-radius: 7.5px 0 0 7.5px;
  }
  .search-box .search-wrapper input[type="submit"],
  .search-box .search-wrapper button {
    border-radius: 0 7.5px 7.5px 0;
  }
  .footer-main .icons-wrapper i {
    font-size: 24px;
    padding: 12px;
  }


  .mainmenu a {
    color: var(--orange);
  }

  .included-box-50 {
    width: 100%;
  }

  .contact-form {
    padding: 2rem 0;
  }
  .contact-form .form-content-wrapper {
    padding: 0;
    width: 100%;
  }

  .contact-form #submit-button {
    padding: 10px 25px;
    font-size: 14px;
  }


}

@media all and (max-width: 768px) {
  .gallery-wrapper {
    columns: 2;
  }
  .gallery-item {
    width: 31.33%;
  }
  .footer-main .footer-33 {
    width: 100%;
    margin: 0;
  }
  .footer-33-wrapper .footer-33:nth-child(2),
  .footer-33-wrapper .footer-33:nth-child(3) {
    text-align: left;
  }
  .form-wrapper {
    flex-flow: column-reverse;
    width: 100%;
    margin: 0;
  }
  .contact-form {
    width: 100%;
    border-radius: 0;
    padding: 50px;
  }
  .contact-info {
    width: 100%;
    border-radius: 0;
    padding: 100px 25px;
  }
  .footer-main .footer-33 {
      margin-left:0;
      padding-left:0;
  }

  .mainmenu a {
    color: var(--orange);
  }

}

@media all and (max-width: 550px) {
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 18px;
  }
  p,
  a,
  label,
  li {
    font-size: 14px;
  }

  .mainmenu a {
    color: var(--orange);
  }

  .search-box .search-wrapper label {
    font-size: 16px;
  }
  header img {
    width: 120px;
    padding: 21px 0;
  }
  .gallery-wrapper {
    columns: 1;
  }
  .gallery-item {
    width: 46%;
    margin: 2%;
  }
  .footer-33-wrapper p,
  .footer-33-wrapper a,
  .footer-33-wrapper div {
      font-size:12px !important;
  }
  .footer-33-wrapper .tiny {
    font-size:6px !important;
  }

  .footer-main {
    padding: 50px 0;
  }

  .footer-copy p,
  .footer-copy a {
    font-size: 8px;
  }
  .footer-main .icons-wrapper i {
    font-size: 20px;
    padding: 10px;
  }
  .footer-main .footer-33 {
    width: 100%;
    margin: 0;
    padding: 10px 25px;
  }
  .footer-33-wrapper .footer-33:nth-child(1) {
    margin: 0;
    padding: 10px 25px;
  } 

  .included-box-50 {
    width: 100%;
  }

  .contact-form {
    padding: 2rem 0;
  }
  .contact-form .form-content-wrapper {
    padding: 0;
    width: 100%;
  }

  .contact-form #submit-button {
    padding: 10px 25px;
    font-size: 14px;
  }


 

}
