



/* roboto mono */
@font-face {
  font-family: 'Roboto-mono';
  src: url('fonts/roboto-mono/RobotoMono-Regular.ttf');
  src: url('fonts/roboto-mono/RobotoMono-Bold.ttf');
  src: url('fonts/roboto-mono/RobotoMono-VariableFont_wght.ttf');
}

/* roboto slab */
@font-face {
  font-family: 'Roboto-slab';
  src: url('fonts/roboto-slab/RobotoSlab-Regular.ttf');
  src: url('fonts/roboto-slab/RobotoSlab-Bold.ttf');
  src: url('fonts/roboto-slab/RobotoSlab-VariableFont_wght.ttf');
}




/* **************************************** */
/* **************************************** */
/* General styles */
:root {
  --red: #ec6523;
  --lightRed: #ee783e;
  --blue: #00adb8;
  --lightBlue:#c6eff1;
  --lightBlue: rgb(204, 239, 241);
  --black: #231f20;
  --white: #fff;
  --lightGray: #f3f3f3;
  --mediumGray: #ccc;

  /* --nature: #AFA9AB; */
  /* --nature: rgb(175, 169, 171); */
  --nature: rgb(175, 169, 171);
  /* --marine: #031E45; */
  --marine: rgb(3, 30, 69);
  /* --turquoise: #0086C4; */
  --turquoise: rgb(0, 134, 196);
  /* --fuscous-gray: rgb(78, 74, 71); */
  --fuscous-gray: #4e4a47;

}

* {
  font-family: 'Roboto', 'Source Sans Pro', sans-serif;
  /* font-family:  'Roboto-mono', 'Roboto-slab', 'Roboto', 'Source Sans Pro', sans-serif; */
  /* font-family: "DIN", sans-serif; */
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  line-height: 150%;
}

html {
  font-size: 62.5%;
}
body {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 1.6rem;

  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url("../images/A.jpg");
  background-position: top;
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-repeat: repeat-y;

  background-attachment: fixed;
  

}




main {
  margin-top: 30rem;
}

h1 {
  font-size: 4rem;
  line-height: 125%;
  padding-bottom: 1rem;
}

h2 {
  font-size: 3.2rem;
  line-height: 125%;
  padding-bottom: 1rem;
}

h3 {
  font-size: 2.7rem;
  line-height: 125%;
  padding-bottom: 1rem;
}

h4 {
  font-size: 2.4rem;
  line-height: 125%;
  padding-bottom: 1rem;
}

.big-p {
  font-size: 2.4rem;
  line-height: 125%;
}

h5 {
  font-size: 2.2rem;
  line-height: 125%;
  padding-bottom: 0.75rem;
}

h6 {
  font-size: 2rem;
  line-height: 125%;
  padding-bottom: 0.5rem;
}

p,
a,
.box-content {
  font-size: 1.8rem;
}


/* set fontfamily for all heading */
h1, h2, h3, h4, h5 {
  font-family: 'Roboto-slab', 'Source Sans Pro', sans-serif;
  /*letter-spacing: 0.08rem;*/
}



a,
a:visited {
  color: var(--blue);
  text-decoration: none;
}

em,
strong,
label,
input,
::placeholder,
textarea,
select,
option,
ul,
ol,
li,
th,
tr,
td {
  font-size: inherit;
  font-size: 1.6rem;
}


blockquote,
blockquote p,
blockquote a {
  font-weight: 300;
  font-size: 1.6rem;
}

span,
strong,
em {
  font-size: inherit;
  line-height: inherit;
}
main ul,
main ol {
  margin-left: 1.6rem;
}

img {
  max-width: 100%;
  height: auto;
}

input[type="submit"],
button {
  display: block;
  background-color: transparent;
  padding: 1rem 3rem;
  text-decoration: none;
  width: fit-content;
  width: -moz-fit-content;
  color: var(--white) !important;
  background-color: var(--blue);
  font-weight: bold;
  cursor: pointer;
  -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-align: center;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 5px;
}
input[type="submit"]:hover,
form button:hover {
  color: var(--white) !important;
  background-color: var(--black) !important;
}

textarea {
  resize: none;
  width: 100%;
}

iframe {
  border: none !important;
  max-width: 100%;
}

a:focus {
  border: none;
}

body.using-keyboard a:focus,
body.using-keyboard input:focus,
body.using-keyboard textarea:focus,
body.using-keyboard select:focus,
body.using-keyboard button:focus,
body.using-keyboard *:focus {
  border: 4px solid var(--blue) !important;
  outline: var(--blue);
}



table {
  width: 100%;
}
td {
  width: 50%;
}

/* select */

select {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 100%;
  /* padding: 10px 20px; */
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
  border: 1px solid var(--mediumGray) !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.6rem;
}



.select-wrapper {
  position: relative;
}

.select-wrapper:before {
  content: '\f107';
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: inherit;
  color: var(--mediumGray);
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 4px;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

select::-ms-expand {
  display: none;
}







main.modal-open {
  position: relative;
}
main.modal-open::after {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: "";
  background: rgba(0, 0, 0, 0.7);
}

.menu-open {
  overflow: hidden;
}
.bold {
  font-weight: bold;
}
.center {
  text-align: center;
}

.gray-text {
  color:var(--mediumGray);
}


.no-border {
  border: none !important;
}

.border-bottom-1px {
  border: none;
  border-bottom: 1px solid var(--mediumGray) !important;
}


@media all and (min-width: 1200px) {

  #main-menu-inner-wrapper .current-menu-item > a,
  #main-menu-inner-wrapper .current-menu-ancestor > a {
    /* color: rgb(1, 116, 170) !important; */
    color: rgb(19, 180, 255) !important;
  }

  #main-menu-inner-wrapper .current-menu-item > a {
    /* color: rgb(1, 116, 170) !important; */
    color: rgb(19, 180, 255) !important;
  }


  #main-menu-inner-wrapper li .sub-menu .current-menu-item > a {
    /* color: rgb(1, 116, 170) !important; */
    color: rgb(19, 180, 255) !important;
  }

  #main-menu-inner-wrapper ul li {
    position: relative;
  }

  #main-menu-inner-wrapper li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    list-style: none;
    background: var(--white);
    z-index: 10;
    margin: 0;
    padding: 0;
    /* border-top: 3px solid var(--blue); */
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
      0 5px 5px rgba(171, 171, 171, 0.15);
      border-radius: 0 0 5px 5px;
  }

  #main-menu-inner-wrapper li .sub-menu li {
    padding: 1.5rem;
    width: 100%;
    margin-left: 0;

    border: none;

  }

  #main-menu-inner-wrapper li .sub-menu a {
    /* color: var(--black); */
    color: var(--marine) !important;
    transition: all 0.5s ease;
  }

  #main-menu-inner-wrapper li .sub-menu a:hover {
    /* color: var(--marine) !important; */
    color: rgb(19, 180, 255) !important;
    -webkit-transform: scale(0.90);
    -ms-transform: scale(0.90);
    transform: scale(0.90) !important;
  }

  #main-menu-inner-wrapper li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }

  .menu-item-has-children .sub-menu > .menu-item-has-children:hover .sub-menu {
    display: block;
  }

  #main-menu-inner-wrapper li .sub-menu li {
    position: relative;
  }

  #main-menu-inner-wrapper li .sub-menu li .sub-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: max-content;
    transform: translate(-100%, -3px);
  }

  #main-menu-inner-wrapper .mainmenu li a.toggle-icon-holder {
    position: absolute;
    top: 75%;
    left: 40%;
    transform: translate(-50%, 0%);
  }

  #main-menu-inner-wrapper .mainmenu li .sub-menu a.toggle-icon-holder {
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(90deg) translate(-50%, 5px);
  }
}

/* End of eneral styles */
/* **************************************** */
/* **************************************** */

/* **************************************** */
/* **************************************** */
/* Keep footer at bottom */
html,
body {
  width: 100%;
  height: 100%;
}

.content-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

main {
  width: 100%;
  flex-grow: 1;
}

header,
main,
footer {
  flex-shrink: 0;
}
/* End of keep footer at bottom */
/* **************************************** */
/* **************************************** */

/* **************************************** */
/* **************************************** */
/* Header */
header {
  width: 100%;
  /* box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),0 5px 5px rgba(171, 171, 171, 0.15); */
  /* background-color: var(--white); */
  background-color: transparent;
  z-index: 10;
  position: absolute;
}

header .header-container {
  /* height: 10rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center; */

  height: auto;
  padding-top: 6rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;

  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2.5rem;

  padding-top: 2.5rem;
  padding-bottom: 2rem;

}

header.header-no-trans {
  background-color: var(--white);
}

header.sticky {
  z-index: 997;
  -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: fixed;
  /* box-shadow: 0 2px 10px rgba(87, 87, 87, 0.31); */
  top: 0;
  width: 100%;
  /* background-color: transparent; */
  background-color: rgb(0 0 0 / 70%);
}
header.sticky .header-container {
  height: 0;
  -moz-animation: slideDown-sticky 0.2s ease-in forwards;
  -webkit-animation: slideDown-sticky 0.2s ease-in forwards;
  -o-animation: slideDown-sticky 0.2s ease-in forwards;
  animation: slideDown-sticky 0.2s ease-in forwards;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
  margin-top: 4rem;
}

header.sticky .logo-container,
header.sticky .menu-and-icons-wrapper {
  opacity: 0;
  -moz-animation: fadeIn 0.2s ease-in forwards;
  -webkit-animation: fadeIn 0.2s ease-in forwards;
  -o-animation: fadeIn 0.2s ease-in forwards;
  animation: fadeIn 0.2s ease-in forwards;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
header.sticky .logo-container #header-logo {
  /* width: 12.5rem; */
  /* width: 5.5rem; */
  width: 22rem;
}
header.sticky .header-icon-wrapper .header-icon-item .header-icon-text {
  display: none;
}

@keyframes slideDown {
  from {
    height: 0;
  }
  to {
    height: 10rem;
  }
}

@-webkit-keyframes slideDown {
  from {
    height: 0;
  }
  to {
    height: 8rem;
  }
}
@keyframes slideDown-sticky {
  from {
    height: 0;
  }
  to {
    height: 8rem;
  }
}

@-webkit-keyframes slideDown-sticky {
  from {
    height: 0;
  }
  to {
    height: 10rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
  height: 10rem;
}

.logo-container {
  display: flex;
  /* align-items: center; */
  align-items: flex-end;
}

.logo-container #header-logo {
  /* width: 10rem; */
  /* width: 8rem; */
  /* width: 5.5rem; */
  width: 22rem;
  line-height: 0;
}


.logo-container #header-logo-text {
  /* width: 28rem; */
  width: 16rem;
}


header.sticky .logo-container #header-logo-text {
  /* width: 20rem; */
  width: 16rem;
}


.header-icon-wrapper {
  display: flex;
  align-items: center;
}

.header-icon-item {
  display: flex;
  flex-flow: column;
  align-items: center;
  color: var(--red);
  margin-left: 2.5rem;
  cursor: pointer;
  text-decoration: none;
}

.header-icon-item i {
  color: var(--turquoise);
  font-size: 5.5rem;
}

.header-icon-item img {
  width: 4rem;
}

.header-icon-item p {
  margin-top: 0.75rem;
  color: var(--red);
  font-size: 1.6rem;
}
/* End of header */
/* **************************************** */
/* **************************************** */

/* **************************************** */
/* **************************************** */
/* Main menu */

.menu-and-icons-wrapper {
  display: flex;
  justify-content: center;
}

#header-menu-button {
  display: none;
}

#close-menu-button {
  display: none;
}
.mainmenu {
  display: flex;
}
.mainmenu li {
  list-style-type: none;
}
.mainmenu li a {
  text-decoration: none;
  margin: 0 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  font-family: 'Roboto-slab', 'Source Sans Pro', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  transition: all 0.4s ease;
}
.mainmenu li a:hover {
  color: var(--turquoise);
}

.mainmenu li:last-child a {
  margin-right: 0;
}


.mainmenu > li:not(:last-child):after {
  content: '';
    border-right: 0.3rem solid var(--turquoise);
    position: absolute;
    height: 50%;
    right: 0rem;
    top: 25%;
}



/* End of main menu */
/* **************************************** */
/* **************************************** */

/* **************************************** */
/* **************************************** */
/* Footer */
footer {
  height: auto;
  background-color: rgba(0, 134, 196, 0.7);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  width: 100%;
  position: relative;
}
.foooter-inner-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer-logo {
  display: flex;
}
#footer-logo img {
  width: 17.5rem;
}

.footer-main {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 4rem 0;
}


.footer-main p, .footer-main a {
  color: #fff;
  display: block;
}


.footer-social i {
  font-size: 32px;
}

.footer-social-wrapper {
  display: flex;
  margin-top: -5px;
}
.footer-social {
  padding: 10px 0px 10px 0;
  margin-left: 10px;
}



.footer-content-title {
  font-weight: bold;
  font-size: 2.3rem;
  letter-spacing: 0.1rem;
}



.footer-25-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

.footer-25-wrapper .footer-25 {
  width: 23.33%;
  padding: 2.5rem;
  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-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;
}


/* last of .footer-25 */
.footer-25-wrapper .footer-25:last-of-type div {
  display: flex;
  justify-content: flex-end;
}



.footer-33-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

.footer-33-wrapper .footer-33 {
  width: 33.33%;
  padding: 2.5rem;
  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 links */

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  
}

.footer-main .footer-links ul {
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-main .footer-links li {
  text-decoration: none;
  list-style: none;
  margin: 0;
}

.footer-main li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.footer-main li a:hover {
  color: var(--fuscous-gray);
}

.footer-links li {
  position: relative;
}

.footer-links li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  list-style: none;
  background: #dbdbdb;
  z-index: 10;
  color: rgb(53, 53, 53);
  margin: 0;
  padding: 0;
}



.footer-25-wrapper .footer-image {
  width: 16rem;
}
.footer-33-wrapper .footer-image {
  width: 16rem;
}



/* End of footer */
/* **************************************** */
/* **************************************** */

/* **************************************** */
/* **************************************** */
/* News */


.single-news {
  width: 100%;
  width: calc(100% - 3rem);
  max-width: 950px;
  margin: 3rem auto;
}

.single-news h2,
.single-news h3,
.single-news h4,
.single-news h5,
.single-news h6 {
  padding-top: 2.5rem;
}

.single-news p {
  margin: 0 0 2.5rem 0;
}

.single-news-date {
  margin: 1.5rem 0;
  margin: 1.5rem auto;
}
.single-news-headline {
  margin: 1.5rem 0;
  /* margin:1.5rem auto; */
  padding-bottom: 0;
}

.single-news-category {
  margin: 1.5rem 0;
  font-weight: bold;
  color: var(--green);
  font-size: 2.2rem;
}

.single-news-image {
  margin: 1.5rem 0;
  width: 100%;
}

.single-news-content {
  margin: 1.5rem 0;
}

/* End of news */
/* **************************************** */
/* **************************************** */

/* **************************************** */
/* **************************************** */
/* Standard text pages */
.top-img-text-page {
  width: 100%;
}
.text-page-content {
  margin: 1.5rem 0;
  width: 100%;
  width: calc(100% - 3rem);
  max-width: 750px;
  padding: 2.5rem 0;
}

.text-page-content h1,
.text-page-content h2,
.text-page-content h3,
.text-page-content h4,
.text-page-content h5,
.text-page-content h6 {
  padding-top: 2.5rem;
}

.text-page-content p {
  margin-bottom: 2rem;
}

.text-page-content table {
  border-collapse: collapse;
  max-width: 100% !important;
  width: auto !important;
}

.text-page-content table td,
.text-page-content table th {
  /* border: 1px solid var(--lightGray); */
  padding: 0 0 0 2.5rem;
}


.text-page-content table th {
  padding: 0.5rem 0;
  text-align: left;
  color: var(--blue);
}
/* End of standard text pages*/
/* **************************************** */
/* **************************************** */

/* **************************************** */
/* **************************************** */



/* **************************************** */
/* **************************************** */


/* COOKIES */
#cookie-info {
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0px -4px 3px rgba(87, 87, 87, 0.208);
  display: none;
}

#cookie-wrapper {
  position: relative;
}

#cookie-text {
  max-width: 75%;
}

#cookie-text p a {
  font-size: 1.6rem;
}

#cookie-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 1.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-content .btn-black-trans {
  width: -moz-max-content;
  width: max-content;
  margin-left: 2.5rem;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
}

#cookie-info p {
  font-size: 1.6rem;
}

.partner-logos-wrapper {
  width: 100%;
  width: calc(100% - 3rem);
  margin: 1.5rem;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  align-items: center;
}
.box-partner-logo {
  width: 16.66%;
  width: calc(16.66% - 3rem);
  margin: 1.5rem 2.5rem;
}






/********************************/
/********************************/
/* css for contact forms */


.a-link-gdpr {
  color: var(--turquoise) !important;
  font-size: 1.4rem;
}




.input-error-border {
  border: 1px solid var(--red) !important;
}

.error-message {
  font-size: 12px;
  color: var(--red);
  margin-bottom: 25px;
  display: block;
}


.contact-form {
  background-color: var(--white);
  color: var(--marine);
  display: flex;
  justify-content: center;
  flex-flow: column;
  padding: 5% 5%;
  width: 100%;
  min-width: 80rem;
  max-width: 80rem;
  border-radius: 10px;
}
.contact-form-100 {
  width: 100%;
  border-radius: 0;
}

.contact-form h2 {
  padding-bottom: 10px;
}


.contact-form label {
  display: block;
  margin: 5px 0;
  font-size: 14px;
  color: var(--marine);
  font-weight: 600;
}

.contact-form label small {
  opacity: 0.6;
}


.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form input {
  padding: 5px;
  display: block;
  border: none;
  min-width: 200px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--mediumGray);
  border-radius: 0 !important;
}

.contact-form textarea {
  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;
}


.contact-form #contact-form-title {
  padding-bottom: 25px;
  color: #4d4c50;
}
.contact-form .submit-button {
  display: block;
  border: none;
  background-color: var(--turquoise);
  color: var(--marine);
  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;
}
.contact-form .submit-button:disabled {
  background-color: var(--turquoise);
  opacity: 0.7;
  color: var(--white);
  cursor: not-allowed;
}

.contact-form .submit-button:hover {
  background-color: var(--purple);
  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(--lightGray);
  cursor: not-allowed;
  animation: none !important;
  -webkit-animation: none !important;
}
.contact-form .submit-button i {
  color: var(--white);
}




/* End css for contact forms */
/********************************/
/********************************/








/* **************************************** */
/* **************************************** */
/* Responsive */
@media all and (max-width: 1200px) {
  .header-container {
    padding: 0 5rem;
  }
  
  /* **************************************** */
  /* **************************************** */
  /* Main menu */
  #main-menu {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: -100%;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0 ,90%);
    z-index: 998;
    overflow-y: scroll;
    padding-bottom: 200px;

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15),
      0 5px 5px rgba(171, 171, 171, 0.15);
  }

  @keyframes mainmenu {
    0% {
      right: -100%;
      visibility: hidden;
      width: 0;
    }

    1% {
      right: -55rem;
      width: 60%;
      visibility: visible;
    }

    100% {
      right: 0;
      width: 60%;
      visibility: visible;
    }
  }

  @-webkit-keyframes mainmenu {
    0% {
      right: -100%;
      visibility: hidden;
      width: 0;
    }

    1% {
      right: -55rem;
      width: 60%;
      visibility: visible;
    }

    100% {
      right: 0;
      width: 60%;
      visibility: visible;
    }
  }

  .header-icon-wrapper {
    display: flex;
  }
  #header-menu-button {
    display: block;
  }
  #close-menu-button {
    display: block;
  }
  .mainmenu {
    display: block;
  }

  #main-menu::-webkit-scrollbar {
    display: none;
  }

  #main-menu.open {
    animation: mainmenu 0.3s linear forwards;
  }

  @keyframes mainmenuClose {
    0% {
      right: 0;
      visibility: visible;
      width: 60%;
    }

    99% {
      right: -55rem;
      width: 0;
      visibility: visible;
    }

    100% {
      right: -100%;
      width: 0;
      visibility: hidden;
    }
  }

  @-webkit-keyframes mainmenuClose {
    0% {
      right: 0;
      visibility: visible;
      width: 60%;
    }

    99% {
      right: -55rem;
      width: 0;
      visibility: visible;
    }

    100% {
      right: -100%;
      width: 0;
      visibility: hidden;
    }
  }

  #main-menu.closed {
    animation: mainmenuClose 0.3s linear forwards;
    visibility: visible;
  }

  body.menu-open main,
  body.menu-open footer {

    position: relative;
  }

 

  #main-menu #close-menu-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2.5rem;
    cursor: pointer;
  }
  #main-menu #close-menu-button i {
    color: var(--white);
    font-size: 2.5rem;
  }
  #main-menu-inner-wrapper {
    width: 100%;
    height: 100%;
    margin-top: 7.5rem;
    border-top: 0.2rem solid var(--fuscous-gray);
  }



  .mainmenu > li:not(:last-child):after {
    content: '';
      border-right: none;
  }


  #main-menu-inner-wrapper .mainmenu li {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 2px solid var(--fuscous-gray);
  }
  #main-menu-inner-wrapper .mainmenu li a {
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    font-size: 1.8rem;
    padding: 1.5rem 2.5rem;
    -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;
    width: 100%;
  }
  #main-menu-inner-wrapper .mainmenu li.menu-item-has-children a {
    /* width: 80%; */
    width: 60%;
  }

  #main-menu-inner-wrapper .mainmenu li.menu-item-has-children a.toggle-icon-holder {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    margin: 0;
  }

  #main-menu-inner-wrapper .mainmenu li a.toggle-icon-holder {
    padding: 0 2.5rem;
  }


  #main-menu-inner-wrapper .mainmenu li:hover,
  #main-menu-inner-wrapper .mainmenu > li .sub-menu li:hover {
    /* background-color: var(--turquoise); */
    background-color: rgb(12 63 86);
  }

  #main-menu-inner-wrapper .mainmenu > li .sub-menu li {
    background-color: rgba(43, 43, 43, 0.5);
    border-bottom: none;
  }

  #main-menu-inner-wrapper .mainmenu > li .sub-menu li:last-of-type {
    border-bottom: none !important;
  }

  #main-menu-inner-wrapper .mainmenu > li .sub-menu li a {
    padding-left: 4rem;
    font-weight: normal;
  }

  #main-menu-inner-wrapper .mainmenu > li ul {
    -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;
    overflow: hidden;
  }

  #main-menu-inner-wrapper .mainmenu > li ul:not(.show-lis) {
    display: none;
  }

  #main-menu-inner-wrapper .mainmenu > li .sub-menu li .sub-menu a {
    padding-left: 5rem;
  }

  #main-menu-inner-wrapper .mainmenu li ul.show-lis {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* border-top: 0.2rem solid var(--fuscous-gray); */
  }
  #main-menu-inner-wrapper .toggle-icon {
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    -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;
  }
  #main-menu-inner-wrapper .la-arrow-up {
    color: var(--white);
  }
  #main-menu-inner-wrapper .mainmenu li:hover .la-arrow-up,
  #main-menu-inner-wrapper .mainmenu > li .sub-menu li:hover .la-arrow-up {
    color: var(--white);
  }

  #main-menu-inner-wrapper .no-border {
    border: none !important;
  }
  /* End of main menu */
  /* **************************************** */
  /* **************************************** */



  .box-partner-logo {
    width: 20%;
    width: calc(20% - 5rem);
  }
}
@media all and (max-width: 960px) {
  #footer-logo img {
    width: 20rem;
  }






  .box-partner-logo {
    width: 25%;
    width: calc(25% - 5rem);
  }
  .good-example-main {
    width: 100%;
    padding: 0;
}
.good-example-info {
    width: 100%;
    padding:2.5rem 2.5rem 5rem 0;
}



.contact-form {
  min-width: auto;
}


}
@media all and (max-width: 768px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.6rem;
  }

  h4 {
    font-size: 2.3rem;
  }
  h5 {
    font-size: 2.1rem;
  }

  h6 {
    font-size: 1.9rem;
  }

  p,
  a {
    font-size: 1.4rem;
  }

  em,
  strong {
    font-size: inherit;
  }

  label,
  input,
  ::placeholder,
  textarea,
  select,
  option,
  ul,
  ol,
  li,
  th,
  tr,
  td {
    font-size: inherit;
    font-size: 1.4rem;
  }

  blockquote,
  blockquote p,
  blockquote a {
    font-size: 1.8rem;
  }

  .header-container {
    padding: 0 3rem;
    height: 8rem;
  }
  .logo-container #header-logo {
    width: 16rem;
  }

  .logo-container #header-logo-text {
    width: 20rem;
  }

  .header-icon-item {
    margin-left: 2.5rem;
  }

  .header-icon-item i {
    font-size: 4.5rem;
  }
  .header-icon-item p {
    font-size: 1.6rem;
  }

 

  @keyframes mainmenuMobile {
    0% {
      right: -100%;
      visibility: hidden;
      width: 0;
    }

    1% {
      right: -100%;
      width: 80%;
      visibility: visible;
    }

    100% {
      right: 0;
      width: 80%;
      visibility: visible;
    }
  }

  @-webkit-keyframes mainmenuMobile {
    0% {
      right: -100%;
      visibility: hidden;
      width: 0;
    }

    1% {
      right: -100%;
      width: 80%;
      visibility: visible;
    }

    100% {
      right: 0;
      width: 80%;
      visibility: visible;
    }
  }

  #main-menu.open {
    animation: mainmenuMobile 0.3s linear forwards;
  }

  #main-menu-inner-wrapper .mainmenu li a {
    padding: 1.5rem;
    font-size: 1.4rem;
  }

  #main-menu-inner-wrapper .toggle-icon {
    font-size: 2rem;
  }
  #main-menu-inner-wrapper .mainmenu > li .sub-menu li a {
    padding-left: 3rem;
  }

  #main-menu #close-menu-button i {
    font-size: 2rem;
  }
  #main-menu #close-menu-button {
    padding: 2.5rem;
  }



  .box-puff-25 {
    width: 33% !important;
    width: calc(50% - 30px) !important;
  }



  .footer-main .footer-links li {
    padding: 5px 0;
  }

  .text-page-content {
    margin: 1.5rem 0;
    padding: 0;
    width: 100%;
  }

  /* COOKIES */
  #cookie-content {
    padding: 2.5rem 3rem;
    flex-wrap: wrap;
  }
  #cookie-text {
    max-width: unset;
    width: 100%;
  }
  #cookie-content p {
    font-size: 1.4rem;
  }
  #cookie-content .btn-black-trans {
    font-size: 1.4rem;
    margin: 1.5rem auto 0 auto;
  }

  .single-news {
    width: 100%;
    margin: 1.5rem 0;
  }
  .partner-logos-wrapper {
    width: 100%;
    margin: 1.5rem 0;
  }

  .box-partner-logo {
    width: 33.33%;
    width: calc(33.33% - 5rem);
  }

  .box-latest-news {
    width: 100%;
    margin: 1.5rem 0;
    padding: 0;
  }


  .contact-form {
    min-width: auto;
  }


  
  /* footer */
  footer {
    padding: 2.5rem 2rem;
  }

.footer-25-wrapper .footer-25 {
    width: 46.33% !important;
    padding: 0;
    margin-top: 2rem;
}

  /* last of .footer-25 */
.footer-25-wrapper .footer-25:last-of-type div {
  justify-content: center;
}
.footer-25-wrapper .footer-image {
  width: 12rem;
}



}
@media all and (max-width: 550px) {


  h2 {
    font-size: 2.2rem !important;
  }
  h3 {
    font-size: 2.2rem;
  }
  h4 {
    font-size: 2rem;
  }

  main {
    margin-top: 20rem;
  }

  .header-container {
    padding: 0 2rem;
    height: 6rem;
  }
  .logo-container #header-logo {
    width: 10rem;
  }
  header.sticky .logo-container #header-logo {
    width: 16rem;
  }

  header.sticky .header-container {
    margin-top: 1rem;
  }

  .header-icon-item {
    margin-left: 1.75rem;
  }


  .logo-container #header-logo {
    width: 16rem;
  }

  .logo-container #header-logo-text {
    width: 16rem;
  }

  .header-icon-item i {
    font-size: 3.5rem;
  }
  .header-icon-item p {
    font-size: 1.4rem;
  }
 

  .header-icon-item img {
    width: 2.8rem;
  }



  .box-partner-logo {
    width: 50%;
    width: calc(50% - 5rem);
  }



/*  */



  /* footer */
  footer {
    padding: 2.5rem 2rem;
  }

.footer-25-wrapper .footer-25 {
    width: 46.33% !important;
    padding: 0;
    margin-top: 2rem;
}

  /* last of .footer-25 */
.footer-25-wrapper .footer-25:last-of-type div {
  justify-content: flex-start;
}
.footer-25-wrapper .footer-image {
  width: 12rem;
}


  .footer-33-wrapper .footer-33 {
    width: 46.33% !important;
    padding: 0;
  }

  .footer-content-title {
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }

  .footer-main .footer-links li {
    padding: 5px 0;
  }

  .contact-form {
    min-width: 100%;
  }

 
  .footer-33-wrapper .footer-image {
    width: 12rem;
  }
  .footer-social {
    padding: 10px 0px 10px 0;
    margin-left: 10px;
  }


 


}
/* End of responsive */
/* **************************************** */
/* **************************************** */
