@import url("https://fonts.googleapis.com/css2?family=Stardos+Stencil:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
@font-face {
  font-family: "headingFont";
  src: url("../src/Cutoutsflf-owxo.ttf") format("truetype");
}

nav {
  width: 90%;
  height: 7vh;
  padding: 0 5%;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

nav .logo {
  height: 100%;
}

nav .logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .logo a img {
  height: 70%;
}

nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav > ul li {
  list-style: none;
}

nav > ul li > a {
  margin: auto 7px;
  color: black;
  text-decoration: none;
  font-size: 1em;
  padding: 5px 2px;
}

nav > ul li > a:hover {
  color: #fbb22e;
}

nav > ul li a.selected {
  border-bottom: 4px solid #fbb22e;
}

nav > ul .langSwitch a.active {
  color: #fbb22e;
}

nav > ul .langSwitch a:first-of-type {
  padding-right: 0px;
}

nav > ul .langSwitch a:last-of-type {
  padding-left: 0px;
}

nav > ul .dropdown {
  float: left;
  overflow: hidden;
  font-family: "Stardos Stencil", cursive;
  margin: 0;
  padding: 0;
  margin: auto 10px;
  color: black;
  text-decoration: none;
}

nav > ul .dropdown .dropbtn {
  font-size: 1em;
  border: none;
  outline: none;
  color: black;
  background-color: inherit;
  margin: 0;
  padding: 0;
  font-weight: bold !important;
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 1px;
}

nav > ul .dropdown .dropdown-content {
  display: none;
  position: absolute;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
  background-color: #f9f9f9;
  min-width: 100px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

nav > ul .dropdown .dropdown-content a {
  float: none;
  color: black;
  padding: 8px 10px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  display: block;
  text-align: left;
}

nav > ul .dropdown .dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #fbb22e;
}

nav > ul .navbar a:hover,
nav > ul .dropdown:hover .dropbtn {
  color: #fbb22e;
}

nav > ul .dropdown:hover .dropdown-content {
  display: block;
}

nav > ul i {
  color: #fbb22e;
}

nav .hamburger-button {
  display: none;
}

.overlay {
  display: none;
}

@media only screen and (max-width: 992px) {
  nav {
    width: 94%;
    height: 7vh;
    padding: 0 3%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 199;
    position: relative;
  }
  nav > ul {
    display: none;
  }
  nav .hamburger-button {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 5vh;
    height: 4vh;
    width: 45px;
    height: 34px;
    display: block;
    z-index: 104;
    position: relative;
  }
  nav .hamburger-button:active, nav .hamburger-button:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  nav .hamburger-button span {
    position: absolute;
    height: 8px;
    border-radius: 4px;
    width: 100%;
    background-color: #000;
    top: 0;
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  nav .hamburger-button span:nth-child(1) {
    top: 0px;
  }
  nav .hamburger-button span:nth-child(2),
  nav .hamburger-button span:nth-child(3) {
    top: 13px;
  }
  nav .hamburger-button span:nth-child(4) {
    top: 26px;
  }
  nav .hamburger-button.active span {
    background-color: #000;
  }
  nav .hamburger-button.active span:nth-child(1),
  nav .hamburger-button.active span:nth-child(4) {
    opacity: 0;
  }
  nav .hamburger-button.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  nav .hamburger-button.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  /*overlay*/
  @-webkit-keyframes fadeInLeft {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-25%, 0, 0);
              transform: translate3d(-25%, 0, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-25%, 0, 0);
              transform: translate3d(-25%, 0, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  .overlay {
    position: fixed;
    background: #fff;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .overlay .menu {
    font-size: 2rem;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .overlay .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .overlay .menu ul li {
    opacity: 0;
    margin: 1rem 0;
  }
  .overlay .menu ul li a {
    margin: auto 10px;
    color: black;
    text-decoration: none;
    font-family: "Stardos Stencil", cursive;
    font-size: 1em;
    padding: 5px 2px;
  }
  .overlay .menu ul li a:hover {
    color: #fbb22e;
    background: none;
    outline: none;
  }
  .overlay .menu ul li a:active, .overlay .menu ul li a:focus {
    color: #fbb22e;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .overlay .menu ul .langSwitch a.active {
    color: #fbb22e;
  }
  .overlay .menu ul .langSwitch a:first-of-type {
    padding-right: 0px;
  }
  .overlay .menu ul .langSwitch a:last-of-type {
    padding-left: 0px;
  }
  .overlay .menu ul .dropdown {
    float: left;
    overflow: hidden;
    font-family: "Stardos Stencil", cursive;
    margin: 0;
    padding: 0;
    margin: auto 10px;
    color: black;
    text-decoration: none;
  }
  .overlay .menu ul .dropdown .dropbtn {
    font-size: 1em;
    border: none;
    outline: none;
    color: black;
    background-color: inherit;
    margin: 0;
    padding: 0;
    padding-left: 27px;
    font-weight: bold !important;
    font-family: "Roboto", sans-serif !important;
    letter-spacing: 1px;
  }
  .overlay .menu ul .dropdown .dropdown-content {
    display: none;
    position: absolute;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
    background-color: #f9f9f9;
    min-width: 100px;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .overlay .menu ul .dropdown .dropdown-content a {
    float: none;
    color: black;
    padding: 8px 10px;
    font-family: "Stardos Stencil", cursive;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  .overlay .menu ul .dropdown .dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #fbb22e;
  }
  .overlay .menu ul .navbar a:hover,
  .overlay .menu ul .dropdown:hover .dropbtn {
    color: #fbb22e;
  }
  .overlay .menu ul .dropdown:hover .dropdown-content {
    display: block;
  }
  .overlay .menu ul i {
    color: #fbb22e;
  }
  /* 3. Style the visible overlay. */
  .overlay.visible {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }
  .overlay.visible li {
    -webkit-animation: fadeInLeft 0.3s ease forwards;
            animation: fadeInLeft 0.3s ease forwards;
  }
  .overlay.visible li:nth-of-type(1) {
    -webkit-animation-delay: 0.23s;
            animation-delay: 0.23s;
  }
  .overlay.visible li:nth-of-type(2) {
    -webkit-animation-delay: 0.26s;
            animation-delay: 0.26s;
  }
  .overlay.visible li:nth-of-type(3) {
    -webkit-animation-delay: 0.29s;
            animation-delay: 0.29s;
  }
  .overlay.visible li:nth-of-type(4) {
    -webkit-animation-delay: 0.32s;
            animation-delay: 0.32s;
  }
  .overlay.visible li:nth-of-type(5) {
    -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
  }
}

a {
  font-weight: bold !important;
  font-family: "Roboto", sans-serif !important;
  letter-spacing: 1px;
}

@font-face {
  font-family: "headingFont";
  src: url("../src/Cutoutsflf-owxo.ttf") format("truetype");
}

* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
}

nav {
  z-index: 199;
  -webkit-box-shadow: 3px 1px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 1px 8px rgba(0, 0, 0, 0.3);
  position: fixed;
  background-color: white;
}

aside {
  height: 93vh;
  width: 19vw;
  margin-top: 7vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  justify-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -webkit-box-shadow: 1px 10px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 10px 8px rgba(0, 0, 0, 0.3);
  position: fixed;
}

aside > ul {
  list-style: none;
  line-height: 1.2em;
  text-align: center;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

aside > ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 0px;
  margin: 7px 0px;
  width: 77%;
  text-align: start;
  background: #fdfdfd;
  -webkit-box-shadow: 1.5px 1.5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 1.5px 1.5px 5px rgba(0, 0, 0, 0.4);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

aside > ul li a {
  padding: 5px 10px;
  color: black;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: block;
}

aside > ul li a:hover {
  cursor: pointer;
  color: #fbb22e;
}

aside > ul li:hover {
  background: #f3f3f3;
  -webkit-transform: translate3d(-2px, -2px, 0);
          transform: translate3d(-2px, -2px, 0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-shadow: 3.5px 3.5px 15px rgba(0, 0, 0, 0.4);
          box-shadow: 3.5px 3.5px 15px rgba(0, 0, 0, 0.4);
}

aside > ul li.selected {
  border-left: 5px solid #fbb22e;
}

aside > ul li.selected a {
  padding: 5px 9px;
}

main {
  height: auto;
  width: 82%;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 8vh 0 5vh;
}

main .img {
  width: 80%;
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../src/header/11.jpg);
  background-size: cover;
  background-position: 50% 50%;
}

main .img h3 {
  text-align: center;
  color: white;
  text-shadow: 1.4px 1.4px 4px rgba(0, 0, 0, 0.4);
  margin: 0;
}

main p {
  width: 80%;
  margin: 0 auto 8px;
  text-align: justify;
}

main ul {
  width: 60%;
  margin: 0 17%;
  line-height: 1.5em;
  text-align: justify;
  list-style: none;
  padding-left: 1%;
}

main ul li::before {
  content: "\2022";
  color: #fbb22e;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -9em;
}

h3 {
  font-weight: bold !important;
  margin-bottom: 10px;
  font-size: 2em !important;
  color: #fbb22e;
}

h4 {
  font-weight: bold;
  font-size: 22px !important;
}

p {
  font-size: 16px !important;
  text-align: justify;
}

@media only screen and (max-width: 992px) {
  nav {
    grid-column: span 2;
  }
  nav .logo img {
    opacity: 1;
  }
  aside {
    height: auto;
    width: 100%;
    overflow: inherit;
    position: relative;
    margin-top: 2vh;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  main {
    width: 100%;
    margin: 8vh 0 0;
  }
  main .img {
    width: 100%;
    height: 30vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: url(../src/header/11.jpg);
    background-size: cover;
    background-position: 50% 50%;
  }
  main .img h3 {
    text-align: center;
    color: white;
    text-shadow: 1.4px 1.4px 4px rgba(0, 0, 0, 0.4);
    margin: 0;
  }
  main p {
    width: 90%;
    margin: 0 auto;
    text-align: justify;
  }
  main ul {
    width: 80%;
    margin: 0 17%;
    line-height: 1.5em;
    text-align: justify;
    list-style: none;
    padding-left: 4%;
  }
  main ul li::before {
    content: "\2022";
    color: #fbb22e;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
}
/*# sourceMappingURL=services.css.map */