@font-face {
  font-family: "TT Mussels";
  src: url("fonts/hinted-subset-TTMussels-Italic.woff2") format("woff2"),
    url("fonts/hinted-subset-TTMussels-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "TT Mussels";
  src: url("fonts/hinted-subset-TTMussels-DemiBold.woff2") format("woff2"),
    url("fonts/hinted-subset-TTMussels-DemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "TT Mussels";
  src: url("fonts/hinted-subset-TTMussels-MediumItalic.woff2") format("woff2"),
    url("fonts/hinted-subset-TTMussels-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "TT Mussels";
  src: url("fonts/hinted-subset-TTMussels-Regular.woff2") format("woff2"),
    url("fonts/hinted-subset-TTMussels-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "TT Mussels";
  src: url("fonts/hinted-subset-TTMussels-BoldItalic.woff2") format("woff2"),
    url("fonts/hinted-subset-TTMussels-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "TT Mussels";
  src: url("fonts/hinted-subset-TTMussels-DemiBoldItalic.woff2") format("woff2"),
    url("fonts/hinted-subset-TTMussels-DemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "TT Mussels";
  src: url("fonts/hinted-subset-TTMussels-BlackItalic.woff2") format("woff2"),
    url("fonts/hinted-subset-TTMussels-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "TT Mussels";
  src: url("fonts/hinted-subset-TTMussels-Black.woff2") format("woff2"),
    url("fonts/hinted-subset-TTMussels-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "TT Mussels";
  src: url("fonts/hinted-subset-TTMussels-Medium.woff2") format("woff2"),
    url("fonts/hinted-subset-TTMussels-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "TT Mussels";
  src: url("fonts/hinted-subset-TTMussels-Bold.woff2") format("woff2"),
    url("fonts/hinted-subset-TTMussels-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

:root {
  --white: #fff;
  --lightGray: #f8f8f8;
  --mediumGray: #ccc;
  --darkGray: #2f2d2d;
  --black: rgb(0, 0, 0);
  --red: #950909;
  --lightBlue: #d6e8f5;
  --arsenalenGreen: #394332;
  --arsenalenYellow: #d8c57d;
  --arsenalenOrange: #cb5c41;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  scroll-behavior: smooth;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  line-height: 150%;
}

html {
  font-size: 62.5%;
}

body {
  background-color: var(--white);
}

body.loaded {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

a,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "TT Mussels", "Roboto Condensed" !important;
  color: var(--arsenalenGreen);
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-family: "TT Mussels", "Roboto Condensed" !important;
  color: var(--arsenalenGreen);
}
h1 {
  font-size: 32px;
  padding-bottom: 10px;
  line-height: 125%;
}

h2 {
  font-size: 26px;
  padding-bottom: 10px;
  line-height: 125%;
}

h3 {
  font-size: 24px;
  padding-bottom: 10px;
  line-height: 125%;
}

h4 {
  font-size: 20px;
  padding-bottom: 10px;
  line-height: 125%;
}

span {
  font-size: inherit;
  line-height: inherit;
}

.section-text-wrapper h1,
.section-text-wrapper h2 {
  padding: 10px 0;
}

a {
  color: var(--arsenalenGreen);
}

a,
p,
label,
li,
button {
  font-size: 18px;
  /* line-height: 1.75rem; */
  padding-bottom: 10px;
}

span {
  font-size: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  border: 1px solid var(--lightGray);
}

.logo-wrapper {
  width: 50%;
}

input:focus,
input:active,
textarea:focus,
textarea:active {
  border-bottom: 2px solid var(--lightGray) !important;
}
input[type="text"],
input[type="email"],
input[type="number"],
textarea,
select {
  width: 90%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  padding-left: 10px;
  margin-top: 5px;
  font-size: 17px;
  background-color: white;
}

html,
body {
  width: 100%;
  height: 100%;
}

#content-wrapper {
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

main {
  width: 100%;
  transition: all 0.4s ease;
  flex-grow: 1;
}

footer {
  transition: all 0.4s ease;
}

header,
main,
footer {
  flex-shrink: 0;
}

/* Header */
#header-equalizer {
  position: relative;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  z-index: -1;
}

body.sticky-body #header-equalizer {
  height: 11rem;
}

header {
  position: relative;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.05), 0 5px 5px rgba(0, 0, 0, 0.05);
  background-image: url(https://arsenalen.se/images/green.jpg);

  width: 100%;
}

.hide {
  display: none !important;
}
.show {
  display: flex !important;
}

.shadow {
  box-shadow: 0 7px 14px rgba(171, 171, 171, 0.2),
    0 5px 5px rgba(171, 171, 171, 0.2);
}

.app-menu {
  display: none;
  background-color: transparent;
  cursor: pointer;
}

.app-menu i {
  color: var(--arsenalenYellow);
  font-size: 28px;
}

#open-menu-button {
  display: none;
}

#open-menu-button.open {
  display: block;
}

#close-menu-button {
  display: none;
}

#close-menu-button.open {
  display: block;
}

/* ############### */
.header-holder {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

header.sticky {
  z-index: 998;
}

header.sticky {
  transition: all 0.4s ease;
  position: fixed;
  box-shadow: 0 2px 10px rgba(87, 87, 87, 0.31);
  top: 0;
  width: 100%;
}

header.sticky .app-menu {
  top: 20px;
}

header.sticky .header-holder {
  opacity: 0;
  height: 80px;
  -moz-animation: fadeIn 0.4s ease-in forwards;
  -webkit-animation: fadeIn 0.4s ease-in forwards;
  -o-animation: fadeIn 0.4s ease-in forwards;
  animation: fadeIn 0.4s ease-in forwards;
}

header.sticky .mainmenu li > ul {
  top: 80px;
}

header.sticky .mainmenu li > ul > li > ul {
  top: 0;
}

header.sticky .mainmenu a {
  font-size: 1.4rem;
}

header.sticky .mainmenu > li .desktop-arrow {
  bottom: 13px;
}

header.sticky img {
  opacity: 0;
  width: 100%;
  max-width: 7rem;
  position: relative;
  left: 0;
  -moz-animation: fadeIn 0.4s ease-in forwards;
  -webkit-animation: fadeIn 0.4s ease-in forwards;
  -o-animation: fadeIn 0.4s ease-in forwards;
  animation: fadeIn 0.4s ease-in forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

header img {
  width: 105px;
  padding: 16px 0;
  z-index: 2;
  display: block;
}
header .language-wrapper {
  cursor: pointer;
  margin-left: 20px;
}
header .language-wrapper div img {
  width: 18px;
  padding: 0;
}

header nav {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.mainmenu {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
  justify-content: flex-end;
  height: 100%;
}

.mainmenu li {
  position: relative;
  padding: 0;
}

.mainmenu li > ul li {
  padding: 0;
}

.mainmenu li > ul {
  position: absolute;
  display: none;
  padding: 0;
  list-style-type: none;
  margin: 0;
  top: 110px;
  z-index: 200;
  min-width: 200px;
  box-shadow: 0 7px 14px rgba(171, 171, 171, 0.05),
    0 5px 5px rgba(171, 171, 171, 0.05);
  border-top: 0;
  right: 0;
  background-image: url(https://arsenalen.se/images/green.jpg);
  background-size: cover;
}

header.sticky .mainmenu li > ul {
  background-image: url(https://arsenalen.se/images/green.jpg);
  background-size: cover;
}

.mainmenu li > ul li a {
  padding: 10px;
  width: 100%;
  text-align: center;
  display: block;
}

.mainmenu li > ul > li > ul {
  display: none;
  right: calc(100% + -20px);
  top: 0;
  z-index: 300;
  right: 100%;
  background-color: var(--white);
}

header.sticky .mainmenu li > ul > li > ul {
  background-color: var(--white);
}

.mainmenu a.showsub {
  display: none;
}

.mainmenu a {
  color: var(--arsenalenYellow);

  font-size: 1.6rem;
  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;
  padding: 0 1.5rem;
}

.mainmenu a:hover {
  background-color: var(--lightGray);
}

.mainmenu li.active {
  background-color: var(--lightGray);
}

.mainmenu li.active .desktop-arrow i,
.mainmenu li.active .showsub i {
  color: var(--white) !important;
}

.mainmenu li a.active {
  font-weight: normal;
}

.mainmenu a:hover {
  color: var(--arsenalenGreen) !important;
}

.menu-container {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

header.sticky .menu-container {
  opacity: 0;
  -moz-animation: fadeIn 0.4s ease-in forwards;
  -webkit-animation: fadeIn 0.4s ease-in forwards;
  -o-animation: fadeIn 0.4s ease-in forwards;
  animation: fadeIn 0.4s ease-in forwards;
}

.mainmenu > li .desktop-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 400;
  color: var(--arsenalenYellow);
}

.mainmenu .desktop-arrow i {
  position: absolute;
  font-size: 11px;
}

.mainmenu > li > ul > li > .desktop-arrow {
  transform: rotate(90deg);
  left: 0;
  top: 24px;
}

.flex-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer {
  width: 100%;
  background-color: var(--lightGray);
}

.footer-main {
  width: 100%;
  padding: 5rem 4rem 10rem 4rem;

  margin: 0 auto;
  background-image: url(https://arsenalen.se/images/yellow.jpg);
}
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-image: url(https://arsenalen.se/images/green.jpg);
  background-size: cover;
}
.footer-top-wrapper {
  width: 100%;
  padding: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: revert;
  justify-content: space-between;
  align-items: center;
}

.footer-25-wrapper {
  width: 100%;
  display: flex;
  max-width: 1400px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

.footer-25-wrapper .footer-25 {
  width: calc(25%);
  margin: 1.5rem 0;
  color: var(--darkGray);
  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;
  display: flex;
}

.footer-25-wrapper .footer-25 h2 {
  color: var(--arsenalenGreen);
}

.footer-25-wrapper .footer-25:first-of-type {
  justify-content: center;
}

.footer-25-wrapper .footer-25 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-25 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);
  color: var(--arsenalenGreen);
}

#footer-25-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.opening-hours {
  font-size: 16px;
  padding-bottom: 10px;
  /* color: var(--arsenalenGreen); */
}
.opening-hours > div {
  display: flex;
}
.opening-hours .day {
  font-weight: bold;
}
.opening-hours > div > div {
  min-width: 60px;
}
#footer-25-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer-25-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer-25-2 .partner-logo {
  max-width: 15rem;
  padding: 1rem;
}

.footer-logo {
  max-width: 200px;
  min-width: 200px;
}

.footer-logos {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-main .footer-25 a.footer-social:hover {
  color: var(--arsenalenGreen);
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.footer-main p,
.footer-main a {
  color: var(--darkGray);
}

ul.footer-menu,
ul.footer-menu li {
  list-style-type: none;
  padding: 0;
}

ul.footer-menu li ul {
  padding-left: 5px;
}

ul.footer-menu li ul li {
  display: flex;
  display: none;
}

ul.footer-menu li ul li::before {
  content: "-";
  padding-right: 10px;
  color: var(--darkGray);
}

ul.footer-menu .sub ul ul {
  display: none;
}

ul.footer-menu .showsub {
  display: none;
}

#footer-logo img {
  max-width: 15rem;
  height: auto;
  margin: 0 auto;
}
.footer-top #footer-logo img {
  max-width: 18rem;
  height: auto;
  margin: 0 auto;
}

.footer-social-wrapper {
  display: flex;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-wrapper a {
  color: var(--darkGray);
  margin-bottom: 1rem;
}

.social-link-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.social-link-wrapper i {
  font-size: 4rem;
}

.footer-social {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer-social i {
  font-size: 30px;
  margin-right: 0.75rem;
}

.footer-copy {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 10px 25px;
  background-color: var(--darkGray);
}

.footer-copy p,
.footer-copy a {
  color: var(--lightGray);
  font-size: 12px;
  padding-bottom: 0;
}

.footer-icons {
  text-align: center;
}

.footer-icons a,
.footer-icons div {
  color: var(--darkGray);
  font-size: 9px;
}

.footer-icons a {
  font-weight: bold;
}

.center {
  text-align: center;
}

.fat {
  font-weight: bold;
  padding-bottom: 2.5px;
}

.bold {
  font-weight: bold;
}

.tiny {
  font-size: 4px;
  line-height: 100%;
}

.loader {
  align-items: center;
  justify-content: center;
  display: none;
  padding-top: 25px;
}

.circle {
  background-color: var(--mediumGray);
  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);
  }
}

.loader-wrapper {
  width: 100%;
  display: none;
}

#message-confirm {
  display: flex;
}

.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: var(--mediumGray);
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

.form-wrapper {
  max-width: 1000px;
  width: 100%;
  width: calc(100% - 3rem);
  margin: 2rem 1.5rem;
  display: flex;
  flex-flow: column-reverse;
  border-radius: 5px;
  background-image: url(https://arsenalen.se/images/green.jpg);
  background-size: cover;
  padding: 4rem 0;
}
.small-form-wrapper {
  width: 100%;
  width: calc(100% - 3rem);
  margin: 2rem 1.5rem;
  display: flex;
  flex-flow: column-reverse;
  border-radius: 5px;
  background-image: url(https://arsenalen.se/images/yellow.jpg);
  background-size: cover;
  padding: 4rem 0;
}

.contact-form {
  /* background-color: var(--lightGray); */
  color: var(--darkGray);
  display: flex;
  justify-content: center;
  flex-flow: column;
  width: 100%;
  padding: 0rem 10rem;

  border-radius: 0 0 5px 5px;
}
.small-contact-form {
  /* background-color: var(--lightGray); */
  color: var(--darkGray);
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 0rem 10rem;
  width: 100%;
  border-radius: 0 0 5px 5px;
}

.contact-form-100 {
  width: 100%;
  border-radius: 0;
}

.contact-form h2 {
  padding-bottom: 10px;
}

.contact-info {
  color: var(--arsenalenYellow);
  /* background-color: var(--arsenalenYellow); */
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 25px; */
  /* min-height: 35rem; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 5px 5px 0 0;
  position: relative;
  padding-bottom: 2rem;
}
.small-contact-info {
  color: var(--white);
  /* background-color: var(--arsenalenYellow); */
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 25px;
  /* min-height: 35rem; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 5px 5px 0 0;
  position: relative;
  padding-bottom: 2rem;
}

.contact-info-content {
  z-index: 1;
  text-align: center;
}
.small-form-wrapper .contact-info-content h2 {
  color: var(--arsenalenGreen);
}
.contact-info-content h2 {
  color: var(--arsenalenYellow);
}

.contact-form label {
  display: block;
  margin: 5px 0;
  color: var(--arsenalenYellow);
  font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  background-color: var(--lightGray);
  padding: 5px;
  display: block;
  border: none;
  min-width: 200px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--mediumGray);
  border-radius: 0 !important;
}
.small-contact-form input[type="text"],
.small-contact-form input[type="email"] {
  background-color: var(--lightGray);
  padding: 10px 10px;
  display: block;
  border: none;
  min-width: 200px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--mediumGray);
  border-radius: 0 !important;
  font-size: 16px;
}

.contact-form textarea {
  background-color: var(--lightGray);
  padding: 5px;
  display: block;
  border: none;
  min-width: 200px;
  min-height: 100px;
  margin-bottom: 20px;
  resize: vertical;
  border-bottom: 1px solid var(--mediumGray);
  outline: 0;
  border-radius: 0 !important;
}
.small-contact-form textarea {
  background-color: var(--lightGray);
  padding: 5px;
  display: block;
  border: none;
  min-width: 200px;
  min-height: 100px;
  margin-bottom: 20px;
  font-size: 16px;
  resize: vertical;
  border-bottom: 1px solid var(--mediumGray);
  outline: 0;
  border-radius: 0 !important;
}

textarea:focus,
input:focus,
button:focus {
  outline: none;
}

.contact-form #contact-form-title {
  padding-bottom: 25px;
  color: #4d4c50;
}
.small-contact-form #contact-form-title {
  padding-bottom: 25px;
  color: #4d4c50;
}

.contact-form #submit-button {
  display: block;
  border: none;
  background-color: var(--arsenalenYellow);
  color: var(--arsenalenGreen);
  margin-top: 25px;
  cursor: pointer;
  padding: 10px 30px;
  border-radius: 3px;
  width: fit-content;
  width: -moz-fit-content;
  display: table;
  cursor: pointer;
  font-weight: bold;
  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;
  position: relative;
  transition: all 0.4s ease;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  appearance: none;
  -webkit-appearance: none;
}
.small-contact-form #submit-button {
  display: block;
  border: none;
  background-color: var(--arsenalenGreen);
  color: var(--white);
  cursor: pointer;
  padding: 10px 30px;
  border-radius: 3px;
  width: fit-content;
  width: -moz-fit-content;
  display: table;
  cursor: pointer;
  font-weight: bold;
  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;
  position: relative;
  transition: all 0.4s ease;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form #submit-button:disabled {
  background-color: var(--mediumGray);
  opacity: 0.7;
  color: var(--white);
  cursor: not-allowed;
}
.small-contact-form #submit-button:disabled {
  background-color: var(--mediumGray);
  opacity: 0.7;
  color: var(--white);
  cursor: not-allowed;
}

.contact-form #submit-button:hover {
  background-color: var(--arsenalenGreen);
  color: var(--white);
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.small-contact-form #submit-button:hover {
  background-color: var(--arsenalenGreen);
  color: var(--white);
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.contact-form #submit-button:disabled:hover {
  background-color: var(--mediumGray);
  cursor: not-allowed;
  animation: none !important;
  -webkit-animation: none !important;
}
.small-contact-form #submit-button:disabled:hover {
  background-color: var(--mediumGray);
  cursor: not-allowed;
  animation: none !important;
  -webkit-animation: none !important;
}

.contact-form #submit-button i {
  color: var(--white);
}
.small-contact-form #submit-button i {
  color: var(--white);
}

.contact-info .big-icon-wrapper .big-icon {
  font-size: 100px;
  color: var(--white);
}
.small-contact-info .big-icon-wrapper .big-icon {
  font-size: 100px;
  color: var(--white);
}

.contact-info .big-icon-wrapper .big-icon i {
  animation: twiggle 5s 3s ease forwards infinite;
}
.small-contact-info .big-icon-wrapper .big-icon i {
  animation: twiggle 5s 3s ease forwards infinite;
}

@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);
  }
}

.error-message {
  font-size: 12px;
  color: var(--red);
  /* margin-bottom: 25px; */
}

#message-box {
  height: 50px;
  width: 100%;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  background-color: var(--arsenalenGreen);
  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;
  font-size: 120%;
  color: var(--white);
}

@keyframes popUp {
  0% {
    bottom: -50px;
    opacity: 1;
  }
  10% {
    bottom: -25px;
    opacity: 1;
  }
  20% {
    bottom: 0px;
    opacity: 1;
  }
  79% {
    bottom: 0px;
    opacity: 1;
  }
  90% {
    bottom: -25px;
    opacity: 1;
  }
  99% {
    bottom: -50px;
    opacity: 1;
  }
  100% {
    bottom: -50px;
    opacity: 0;
  }
}

/* News */

.box-50-news,
.box-50-news:visited {
  width: 100%;
  width: calc(100% - 3rem);
  margin: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  color: var(--darkGray);
  border-radius: 0.3rem;
}

.box-50-news .box-date {
  background-color: var(--arsenalenGreen);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-flow: column;
  padding: 2.5rem;
  color: var(--darkGray);
  border-radius: 3px 3px 0 0;
}

.box-date-text-date {
  color: var(--darkGray);
  font-weight: bold;
  font-size: 16px;
}

.box-date-text-year {
  color: var(--darkGray);
  font-weight: bold;
  font-size: 14px;
}

.box-50-news .box-content {
  width: 100%;
  padding: 2rem 5rem;
  border-radius: 0 0 3px 3px;
  background-image: url(https://arsenalen.se/images/green.jpg);
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  color: white;
}

.box-50-news .box-content h4 {
  color: var(--arsenalenYellow);
}

.box-50-news .box-content .box-content-date {
  font-size: 12px;
  padding-top: 10px;
  color: var(--lightGray);
}

.news-link {
  color: var(--mediumGray);
  font-weight: bold;
}

.single-news-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
}

.latest-news-outer-wrapper {
  /* background-image: url(https://arsenalen.se/images/green.jpg); */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.single-news {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
  margin: 50px auto;
  padding: 25px 50px;
}

.single-news h1 {
  position: relative;
  padding-bottom: 10px;
}

.single-news img {
  margin: 15px 0;
}

#news-wrapper {
  width: 100%;
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

.latest-news-wrapper {
  padding: 0rem 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 1rem;
}

.box-33-news {
  width: 33%;
  width: calc(33% - 3rem);
  margin: 1.5rem;
  background-color: var(--white);
  background-color: var(--lightGray);
  border-radius: 0.3rem;
}

.box-33-news .box-image-container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 55%;
  width: 100%;
}
.event-wrapper .splide-event {
  padding-bottom: 1rem;
}
.event-outer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.event-wrapper {
  width: 100%;
  /* padding: 0 15px; */
  display: flex;
  flex-direction: row;
  padding-bottom: 3rem;
  justify-content: center;
}
.event-wrapper a.btn-green {
  margin: 0 auto;
}
.box-33-news .box-content {
  padding: 30px;
  min-height: 270px;
  width: 100%;
  padding: 2rem 5rem;
  border-radius: 0 0 3px 3px;
  background-image: url(https://arsenalen.se/images/green.jpg);
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  color: white;
  min-height: 30rem;
}
.box-33-news .box-content h4 {
  color: var(--arsenalenYellow);
}

.box-33-news .item-action {
  margin-bottom: 0 !important;
}

#more-news-wrapper {
  width: 100%;
  padding: 0 1.5rem;
}

#more-news {
  margin: 50px auto;
  display: table;
}

.news-loader-wrapper {
  width: 100%;
  position: relative;
}

.news-loader {
  align-items: center;
  justify-content: center;
  display: none;
  padding-top: 25px;
}

/* SLideshows */

.box-slider-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* height: 75vh; */
  height: 60vh;
  min-height: 300px;
  width: 100%;
  position: relative;
}

.slider-text-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  width: calc(100% - 30px);
  max-width: 1100px;
}

.slider-text-holder h1 {
  color: var(--white);
  font-size: 44px;
  padding-bottom: 15px;
}

.slider-text-holder p {
  color: var(--white);
  font-size: 22px;
  line-height: 175%;
}

.slider-text {
  padding: 20px 50px;
}

/** Gallery **/

.gallery-modal-layer {
  transform: translateZ(0);
  transform: translateX(-200%);
  transition: transform 0.5s cubic-bezier(0.07, 0.23, 0.34, 1);
  position: fixed;
  overflow: visible;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-modal {
  background-color: var(--white);
  width: 80%;
  height: 80%;
  margin: auto;
  padding: 25px;
  position: relative;
  box-shadow: 0 7px 14px rgba(87, 87, 87, 0.12),
    0 5px 5px rgba(88, 88, 88, 0.12);
}

.close-gallery-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  padding: 15px;
  background-color: var(--arsenalenGreen);
}

.close-gallery-modal i {
  font-size: 25px;
  color: var(--white);
}

.gallery-modal-image {
  width: 100%;
  height: calc(100% - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-modal-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.gallery-modal-inner {
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}

.gallery-modal-inner .prev,
.gallery-modal-inner .next {
  cursor: pointer;
}

.gallery-modal-inner .prev i,
.gallery-modal-inner .next i {
  color: var(--mediumGray);
  font-size: 50px;
}

.gallery-modal-content {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-flow: column;
  padding-top: 25px;
}

body.gallery-modal-open .gallery-modal-layer {
  transform: translateX(0);
  transform: translateY(0);
  position: fixed;
}

body.gallery-modal-open .gallery-modal {
  filter: drop-shadow(0 7px 14px rgba(87, 87, 87, 0.308));
}

.gallery-wrapper {
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
}

.gallery-item {
  margin: 1.5rem;
  width: 100%;
  width: calc(20% - 3rem);
  cursor: pointer;
  background-color: var(--white);
  border-radius: 0.3rem;
  /* padding: 2.5rem; */
  /* padding: .5rem; */
}

.gallery-item img {
  max-width: 100%;
}
/* Newsletter form */

.newsletter-form-wrapper {
  width: 100%;
  background-color: var(--blue);
}

.newsletter-success {
  display: none;
  color: white;
  text-decoration: none;
  background-color: #3e3e3e;
  color: #fff;
  padding: 10px 40px;
  width: fit-content;
  margin: 25px 0;
  font-weight: bold;

  margin: 0;
  margin-left: 0px;
  margin-left: 25px;
  border: 0;
  border-radius: 5px;
}

.subscribe-errormessage {
  display: none;
  color: rgb(191, 55, 55);

  width: 100%;
  font-size: 14px;
}

.newsletter-form-wrapper > div {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  /* padding: 5rem 2.5rem; */
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-form-wrapper > div img {
  max-width: 300px;
  width: 100%;
  height: max-content;
  padding-top: 25px;
}

.newsletter-form {
  padding: 10px 0 40px 0;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  width: 100%;
  max-width: 70%;
  max-width: 1400px;
}
.newsletter-form-inner-wrapper {
  width: 100%;
}
.newsletter-form .btn {
  margin: 0;
  margin-left: 25px;
  border: 0;
}

.newsletter-input-wrapper {
  /* display: grid; */
  display: flex;
  flex-direction: column;
  position: relative;
}

.newsletter-form input {
  /* max-width: 30rem; */
  width: 300px;
  border: 2px solid var(--white);
  font-style: italic;
  color: gray;
  padding-left: 20px;
}

.newsletter-form label {
  color: var(--white);
  font-size: 14px;
}

.newsletter-form button {
  max-width: 240px;
  margin-left: 25px;
  padding: 17px !important;
}

.newsletter-form-wrapper > div {
  /* padding: 5rem 3rem; */
  padding: 50px 65px;
  justify-content: center;
}

.newsletter-form-wrapper > div {
  /* flex-wrap: wrap; */
}

.newsletter-form-wrapper > div img {
  /* max-width: 20rem; */
  height: max-content;
  padding: 0;
}

.newsletter-form input {
  max-width: 250px;
}

.adress-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.la-tripadvisor::before {
  padding: 5px;
}
.la-youtube::before {
  padding: 5px;
}
.map {
  width: 100%;
  height: 100%;
}
.latest-news-title,
.event-wrapper-title {
  color: var(--arsenalenGreen);
  padding: 3rem 0 2rem 0;
  text-align: center;
}

.litepicker {
  font-size: 1.5em;
}

#avaliable-dates .ui-datepicker {
  min-width: 34rem !important;
  font-size: 16px;
}
#avaliable-dates .ui-datepicker .ui-datepicker-prev,
#avaliable-dates .ui-datepicker .ui-datepicker-next {
  top: -4px !important;
}
#avaliable-dates .ui-state-default,
.ui-widget-content .ui-state-default {
  display: flex;
  justify-content: center;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  background: var(--arsenalenYellow) !important;
}

/* Barcode */

.ticket-outer-wrapper {
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 50rem;
  padding-top: 4rem;
}
.ticket {
  width: 100%;
  border-top: 1px solid #fff;
  padding: 10px;
  position: relative;
  font-size: 16px;
}
.ticket-green {
  background-color: #294635;
  color: #d8c57d;
}
.ticket-red {
  background-color: #c00;
  color: #fff;
}
.ticket-red span {
  /* font-size: 16px; */
}
.ticket-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.ticket-scanning {
  background-color: #d8c57d;
  color: #000;
}
.ticket-scanning i {
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ticket-outer-wrapper h1 {
  width: 100%;
  text-align: center;
  font-size: 20px;
}
.ticket-outer-wrapper form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#barcode {
  /* width: 1px; */
  /* height: 1px; */
  width: 300px;
  height: 30px;

  border: 1px solid black;
  outline: none;
  /* border: 0; */
  /* opacity: .1; */
  opacity: 1;
}


@media all and (max-width: 1250px) {
  body.sticky-body #header-equalizer {
    height: 7rem;
  }
  header .language-wrapper {
    padding-left: 0;
    margin-right: 18px;
  }
  body.menu-open main,
  body.menu-open footer {
    margin-left: 300px;
    position: relative;
    overflow: hidden;
  }
  body.menu-open main::after,
  body.menu-open footer::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    overflow: hidden;
    z-index: 2;
  }
  .header-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0px;
  }
  .mainmenu.open {
    border-top: 1px solid var(--arsenalenYellow);
  }
  header.sticky img {
    /* width: 50px; */
    /* width: 32px; */
    width: 100%;
    max-width: 10rem;
    position: relative;
    left: 0;
    top: 0;
  }

  .header-content #logo {
    padding-bottom: 0;
  }

  header img {
    width: 100%;
    max-width: 10rem;
    padding: 0.3rem;
  }
  header.sticky .header-holder {
    height: 70px;
    -moz-animation: fadeIn 0.4s ease-in forwards;
    -webkit-animation: fadeIn 0.4s ease-in forwards;
    -o-animation: fadeIn 0.4s ease-in forwards;
    animation: fadeIn 0.4s ease-in forwards;
  }
  header.sticky .mainmenu li > ul {
    top: 0;
  }
  header.sticky .mainmenu li > ul > li > ul {
    top: 10px;
  }
  .header-holder {
    height: 70px;
    padding: 0;
  }
  header.sticky header-holder {
    height: 70px;
  }
  .menu-open {
    overflow: hidden;
  }
  .app-menu {
    display: block;
    z-index: 600;
    padding: 13px;
  }
  header.sticky .app-menu {
    position: relative;
    left: 0;
    top: 0;
  }
  .mainmenu.open {
    top: 70px;
    left: 0;
    background-image: url(https://arsenalen.se/images/green.jpg);
  }
  .mainmenu > li {
    font-size: 20px;
    margin: 20px 0 !important;
    margin: 0 !important;
    padding: 0;
    /* border-bottom: 1px solid #f3f3f3; */
  }
  .mainmenu li > ul {
    background-color: var(--white);
  }
  .mainmenu li > ul > li > ul {
    background-color: var(--white);
  }
  .mainmenu > li > ul > li {
    font-size: 16px;
  }
  .mainmenu > li > ul > li a {
    font-weight: normal !important;
    padding: 1rem 2.5rem;
  }
  .mainmenu > li > ul > li > ul > li {
    font-size: 15px;
  }
  .mainmenu > li > ul > li > ul > li a {
    font-weight: normal;
    margin-bottom: 10px;
    margin-top: -10px;
    margin-left: 5px;
  }
  .mainmenu {
    display: block;
    position: fixed;
    top: 70px;
    left: -100%;
    width: 300px;
    max-width: 300px;
    height: 100%;
    background-color: var(--white);
    z-index: 998;
    /* overflow: scroll; */
    padding-bottom: 200px;
    transition: all 0.4s ease;
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
      0 5px 5px rgba(171, 171, 171, 0.15);
  }
  .mainmenu a {
    padding: 1.5rem 2rem;
  }
  .mainmenu li > ul li a {
    text-align: left;
  }
  .mainmenu li {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .mainmenu > li .desktop-arrow {
    display: none;
  }
  .mainmenu a:after {
    display: none;
  }
  .mainmenu li a.active:after {
    display: none;
  }
  .mainmenu a.showsub {
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 40px;
    right: 10px;
    top: 6px;
    display: flex;
    justify-content: center;
  }
  .showsub:hover {
    text-decoration: none;
    background-color: transparent !important;
  }
  .mainmenu > li > ul > li > a.showsub {
    right: 10px;
    top: 4px;
  }
  .mainmenu a.showsub i {
    color: var(--mediumGray);
    font-size: 16px;
  }
  .mainmenu li.sub a.showsub i {
    color: var(--arsenalenYellow);
    font-size: 16px;
  }
  .mainmenu a.showsub i.hide {
    display: none;
  }
  .mainmenu li > ul {
    position: relative;
    top: 11px;
    box-shadow: none;
    border: none;
    background-color: var(--white);
    background-image: none;
    margin-top: -1.5rem;
    background-image: url(https://arsenalen.se/images/green.jpg);
  }
  .mainmenu li > ul > li > ul {
    top: 10px;
    right: 0;
    background-color: var(--white);
    background-image: none;
  }
  header.sticky .mainmenu li > ul > li > ul {
    background-color: var(--white);
    background-image: none;
  }
  .slider-text {
    padding: 20px;
  }
  .gallery-item {
    width: calc(25% - 3rem);
  }
}

@media all and (max-width: 960px) {
  /* header img {
    width: 90px;
    padding: 19px 0;
  } */
  .single-news-header {
    min-height: 500px;
  }
  .footer-triangle {
    clip-path: polygon(50% 65%, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(50% 65%, 0% 100%, 100% 100%);
  }
  .footer-main .icons-wrapper i {
    font-size: 24px;
    padding: 12px;
  }
  .footer-top:after {
    background-color: transparent;
  }
  .gallery-item {
    width: calc(33.33% - 3rem);
  }
  .single-news {
    padding: 25px 20px;
  }
  .box-33-news .box-content {
    padding: 3.5rem;
  }
  .form-wrapper {
    margin: 2rem 1.5rem;
  }
  .footer-logo {
    width: 100%;
    max-width: 200px;
    min-width: 200px;
    padding: 30px;
  }

  .footer-logos {
    flex-wrap: wrap;
  }
}

@media all and (max-width: 768px) {
  h1,
  section.section-header > div .section-text-wrapper h1,
  section.section-header > div .section-text-wrapper h1 > span {
    font-size: 24px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  p,
  a,
  label,
  li {
    font-size: 18px;
  }
  .slider-text-holder h1 {
    font-size: 24px;
  }
  .slider-text-holder p {
    font-size: 16px;
    line-height: 150%;
  }

  .box-slider-image {
    height: 50vh;
  }

  .gallery-wrapper {
    columns: 2;
  }

  .single-news-header {
    min-height: 400px;
  }
  .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: 25px;
    background-attachment: unset !important;
  }
  .contact-info .big-icon-wrapper {
    padding: 25px;
  }
  .contact-info .big-icon-wrapper .big-icon {
    font-size: 50px;
    color: var(--white);
  }
  .contact-info .big-icon-wrapper .big-icon i {
    font-size: 50px;
    color: var(--white);
  }
  .gallery-item {
    width: calc(50% - 3rem);
  }

  .box-33-news {
    flex-flow: column;
    width: calc(100% - 4rem);
    margin: 1.5rem 2rem;
  }
  .box-33-news .box-date {
    width: 100%;
    padding: 25px 0;
  }
  .box-33-news {
    width: calc(100% - 4rem);
    margin: 1.5rem 2rem;
  }
  .contact-info .big-icon-wrapper .big-icon {
    font-size: 50px;
    color: var(--white);
  }
  .contact-form {
    padding: 50px 20px;
    border-radius: 0;
  }
  .form-wrapper,
  .contact-info,
  .contact-info::after {
    border-radius: 0;
  }

  .footer-main .footer-25 {
    width: 100%;
    width: calc(50% - 3rem);
    margin: 0;
  }

  .footer-main {
    padding: 5rem 2rem;
  }
  .footer-25-wrapper .footer-25 {
    padding: 1.5rem 0;
  }
  #footer-25-2 {
    border: none;
  }
  #footer-25-2 .partner-logo {
    max-width: 10rem;
    padding: 1rem;
  }

  .footer-25 .footer-contact-info {
    text-align: center;
  }

  #footer-25-3 {
    justify-content: center;
    display: flex;
  }
  #footer-25-3 .footer-social {
    display: flex;
    justify-content: center;
  }
  .footer-menu {
    /* text-align: center; */
  }

  .footer-social-wrapper {
    align-items: center;
  }
  .latest-news-title,
  .event-wrapper-title {
    padding: 1rem 0 2rem 0;
  }
  .event-wrapper {
    padding-bottom: 2rem;
    flex-direction: column;
  }
  .event-wrapper a.btn-green {
    margin-top: 1rem;
  }
  .footer-top-wrapper {
    flex-direction: column;
  }
}

@media all and (max-width: 550px) {
  p,
  a,
  label,
  li {
    font-size: 18px;
  }
  .gallery-wrapper {
    columns: 1;
  }
  .gallery-item {
    width: 100%;
    margin: 1rem 0;
    padding: 0 2rem;
  }
  .single-news-header {
    min-height: 350px;
  }
  .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-25 {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  .gallery-modal-inner {
    padding: 10px;
  }
  .gallery-modal-inner .next i,
  .gallery-modal-inner .prev i {
    font-size: 20px;
  }
  .gallery-modal {
    padding: 25px;
  }
  .close-gallery-modal {
    padding: 10px;
  }
  .close-gallery-modal i {
    font-size: 20px;
  }
  .newsletter-form {
    flex-direction: column;
    padding-bottom: 0;
  }
  .newsletter-input-wrapper {
    padding-bottom: 2rem;
  }
}
