.selected {
  background-color: #09162e !important;
  border-color: #09162e !important;
}

/*Fonts*/
@font-face {
  src: url(fonts/Gotham-Thin.otf);
  font-family: Gotham;
  font-weight: 100;
}
@font-face {
  src: url(fonts/Gotham-Light.otf);
  font-family: Gotham;
  font-weight: 300;
}
@font-face {
  src: url(fonts/Gotham-Book.otf);
  font-family: Gotham;
  font-weight: 400;
}
@font-face {
  src: url(fonts/Gotham-Medium.otf);
  font-family: Gotham;
  font-weight: 500;
}
@font-face {
  src: url(fonts/Gotham-Bold.otf);
  font-family: Gotham;
  font-weight: 700;
}
@font-face {
  src: url(fonts/Gotham-Black.otf);
  font-family: Gotham;
  font-weight: 900;
}
/*Basic*/
* {
  box-sizing: border-box;
  font-family: Gotham;
  margin: 0;
}

body {
  background-color: white;
}

.scroll-none {
  overflow: hidden;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

a {
  color: inherit;
  text-decoration: none;
}
pre{
    white-space: pre-wrap;
}

picture {
  position: absolute;
  bottom: 0;
  z-index: 1;
  right: 0;
  left: 0;
  top: 0;
  overflow: hidden;
}

picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

section,
header {
  width: 100%;
  height: auto;
  background-color: white;
}

section {
  padding-top: 120px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.container {
  padding: 0 50px;
  margin: 0 auto;
}

.maxw {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

button {
  padding: 24px 35px;
  background-color: #09162e;
  font-size: 15px;
  color: white;
  border: none;
  border-radius: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s;
}

button:hover {
  scale: 1.05;
  background-color: #c6783e;
  color: white;
}

/*Typography*/
h1 {
  font-size: 65px;
  font-weight: 300;
  line-height: 1.2;
  color: black;
}

h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.4;
  color: black;
}

h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  color: black;
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: black;
}

h5 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  color: black;
}

p {
  font-weight: 300;
  line-height: 1.6;
  font-size: 18px;
  color: black;
}

/*Aditional styling*/
.uppercase {
  text-transform: uppercase;
}

.color-white {
  color: white;
}

.color-grey {
  color: rgb(85, 85, 85);
}

.color-secondary {
  color: #c6783e;
}

.grid-12 {
  grid-column: span 12;
}

.grid-6 {
  grid-column: span 6;
}

.grid-4 {
  grid-column: span 4;
}

.grid-3 {
  grid-column: span 3;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.text-center {
  text-align: center;
}

.font-14 {
  font-size: 14px;
}

.color-light-grey {
  color: rgb(153, 153, 153);
}

.align-center {
  align-items: center;
}

.relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.font-16 {
  font-size: 16px;
}

.font-w-300 {
  font-weight: 300;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1%;
}

nav {
  z-index: 80;
  position: fixed;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  transition: 0.6s;
  top: 0;
}

nav .mobile-nav {
  display: none;
}

.meni-mobile-active .mobile-meni {
  height: 100vh;
}

.meni-mobile-active .mobile-meni li {
  transition-duration: 1.5s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.2s;
  margin-top: 24px;
  opacity: 1;
  cursor: pointer;
}

.hamburger-lines {
  cursor: pointer;
  height: 14px;
  width: 30px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines .line {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 10px;
  background: white;
}

.hamburger-lines .line1 {
  transition: transform 0.4s ease-in-out;
}

.hamburger-lines .line2 {
  transition: transform 0.4s ease-in-out;
}

.meni-mobile-active .hamburger-lines .line1,
.meni-mobile-active-clicked .hamburger-lines .line1 {
  transform: translateY(6px) rotate(45deg);
}

.meni-mobile-active .hamburger-lines .line2,
.meni-mobile-active-clicked .hamburger-lines .line2 {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-right,
.nav-left {
  display: flex;
  -moz-column-gap: 10px;
  column-gap: 10px;
  list-style-type: none;
  width: 40%;
  justify-content: space-between;
  padding: 0;
  align-items: center;
}

.nav-right li,
.nav-left li {
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 19.5px;
  font-size: 13px;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.8;
  transition: 0.3s;
}

.nav-right li a,
.nav-left li a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

.nav-right li:hover,
.nav-left li:hover {
  opacity: 1;
}

.nav-right .navigation-button-active,
.nav-left .navigation-button-active {
  opacity: 1;
}

.nav-logo {
  width: 18%;
  display: flex;
  justify-content: center;
  box-sizing: content-box;
  padding: 0 3%;
  z-index: 2;
  max-height: 100px;
}

.nav-logo img {
  max-width: 200px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.nav-white {
  background-color: #FFFFFF;
}
.nav-white .nav-right li,
.nav-white .nav-left li {
  color: #000000;
}
.nav-white .hamburger-lines .line {
  background: black;
}

.nav-white.meni-mobile-active .nav-right li,
.nav-white.meni-mobile-active .nav-left li {
  color: white;
}
.nav-white.meni-mobile-active .hamburger-lines .line {
  background: white;
}

footer {
  padding-top: 100px;
  margin-top: 120px;
  background-color: #09162e;
}

.footer-top-element {
  display: flex;
  flex-direction: column;
}

.footer-top-element:nth-child(1) {
  grid-column: span 4;
  justify-content: center;
}
.footer-top-element:nth-child(1) img {
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-top-element:nth-child(2) {
  grid-column: 6/span 4;
}

.footer-top-element:nth-child(3) {
  grid-column: span 3;
}

.footer-top-links {
  margin-top: 28px;
  display: flex;
  width: 100%;
}
.footer-top-links div {
  width: 100%;
  display: grid;
  row-gap: 16px;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.footer-link {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.footer-link:hover {
  color: white;
}

.footer-p {
  margin-top: 28px;
  font-size: 16px;
  margin-bottom: 22px;
  line-height: 1.5;
}

.footer-email {
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
}

.footer-tel {
  font-size: 25px;
  color: #c6783e !important;
}

.footer-bottom {
  grid-column: span 12;
  margin-top: 110px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
}
.footer-bottom div {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.footer-bottom .footer-link {
  font-size: 14px;
}

.footer-bottom-text {
  font-size: 14px;
  color: rgb(170, 170, 170);
}

.pragmatic-logo {
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-social {
  margin-top: 22px;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.footer-social svg {
  fill: rgb(153, 153, 153);
  transition: 0.3s;
}
.footer-social svg:hover {
  opacity: 1;
  fill: white;
}

@media only screen and (max-width: 1150px) {
  /*Typogtraphy*/
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 20px;
  }
  p {
    font-size: 18px;
  }
  /*Navigation*/
  nav .mobile-nav {
    display: flex;
  }
	.nav-logo img {
  max-width: none;
  width: auto;
  height: 100%;
}
  nav .mobile-meni {
    position: absolute;
    top: 0;
    height: 0;
    width: 100%;
    overflow: hidden;
    left: 0;
    background-color: rgb(6, 24, 52);
    justify-content: center;
    gap: 0;
    flex-direction: column;
    align-items: start;
    transition: 1s;
    transition-timing-function: cubic-bezier(0.77, 0.16, 0.09, 0.94);
  }
  nav .mobile-meni li {
    z-index: 2;
    opacity: 0;
    margin-top: 60px;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.77, 0.16, 0.09, 0.94);
    transition-delay: 0s;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.03em;
  }
  nav .mobile-meni .nav-logo {
    display: none;
  }
  nav .mobile-meni .nav-right,
  nav .mobile-meni .nav-left {
    justify-content: start;
    padding: 0;
    align-items: start;
    flex-direction: column;
    width: 90%;
  }
  nav .mobile-nav {
    justify-content: space-between;
  }
  nav .nav-logo {
    height: 100px;
    width: auto;
  }
  .nav-full .nav-logo {
    width: auto;
    height: 50px;
  }
  .nav-full .hamburger-lines .line {
    background-color: #000;
  }
  .lng img {
    width: 18px;
  }
  .lng {
    font-weight: 500;
    font-size: 20px;
    opacity: 1;
  }
  .lng-mobile {
    display: flex;
  }
  .acordation-grid {
    font-size: 30px;
  }
  .acordation-grids span {
    font-size: 60px;
  }
  .nav-left .navigation-button-active {
    opacity: 0;
  }
  .acordation-grid {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .navigation .maxw {
    overflow: scroll;
  }
  .nav-text {
    display: none;
  }
}
@media only screen and (max-width: 850px) {
  section {
    padding-top: 100px;
  }
  body section:first-of-type {
    padding-top: 60px;
  }
  nav .nav-logo {
    height: 60px;
    width: auto;
  }
  footer {
    margin-top: 100px;
  }
  .footer-top-element:nth-child(1) {
    grid-column: span 12;
    justify-content: start;
    height: -moz-fit-content;
    height: fit-content;
  }
  .footer-top-element:nth-child(1) img {
    height: 110px;
    -o-object-fit: contain;
    object-fit: contain;
    width: -moz-fit-content;
    width: fit-content;
  }
  .footer-top-element:nth-child(2) {
    grid-column: span 12;
  }
  .footer-top-element:nth-child(3) {
    grid-column: span 12;
  }
  .footer-top-element {
    margin-bottom: 40px;
  }
  .footer-bottom {
    margin-top: 0;
    flex-direction: column;
    row-gap: 20px;
  }
  footer {
    padding-top: 70px;
  }
	.footer-bottom div {

  flex-wrap: wrap;
  row-gap: 18px;
}
}
@media only screen and (max-width: 650px) {
  /*Basic*/
  .grid {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .maxw {
    max-width: 1800px;
  }
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  /*Typography*/
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 15px;
  }
  p {
    font-size: 15px;
  }
  section {
    padding-top: 80px;
  }
  body section:first-of-type {
    padding-top: 50px;
  }
  button {
    padding: 20px 28px;
    background-color: #09162e;
    font-size: 13px;
  }
  /*Navigation*/
  .nav-logo {
    padding: 0;
  }
  .acordation-grid h5,
  .acordation-grid a {
    font-size: 24px;
    line-height: 1.6;
  }
  .acordation-grid span {
    font-size: 48px;
    text-align: center;
  }
}/*# sourceMappingURL=general.css.map */