/* RESET CSS http://meyerweb.com/eric/tools/css/reset/ */
/*@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');*/
/*@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap");*/

@font-face {
  font-family: "Cairo", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  src: url("Cairo.ttf") format("truetype");
}

body {
  font-family: "Cairo", sans-serif !important;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* NAV */
nav.navigation {
  position: fixed;
  height: 50px;
  top: 0px;
  background-color: #ffffff;
  z-index: 2;
  width: 100%;
}

.nav-logo {
  float: left;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  background-color: #ffffff;
  letter-spacing: normal;
}

ul.nav-menu,
ul.nav-menu li,
ul.nav-menu li a {
  float: left;
  font-size: 0.8rem;
  text-decoration: none;
  border-bottom: 0px;
}

ul.nav-menu {
  padding-left: 10px;
}

ul.nav-menu li a {
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  color: #4f628b !important;
  font-size: 16px;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-weight: 600;
}

ul.nav-menu li a:hover {
  color: #4f628b !important;
}

.nav-toggle {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #4f628b !important;
  cursor: pointer;
}

span.icon-bar {
  position: absolute;
  right: 12px;
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.icon-bar:nth-child(1) {
  top: 17px;
}

.icon-bar:nth-child(2) {
  top: 24px;
}

.icon-bar:nth-child(3) {
  top: 31px;
}

.nav-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ICON BARS ANIMATION */
.nav-toggle.active .icon-bar:nth-child(1) {
  top: 24px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-toggle.active .icon-bar:nth-child(2) {
  width: 0;
}

.nav-toggle.active .icon-bar:nth-child(3) {
  top: 24px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* SITE CONTAINER */
.site-container {
  width: 80%;
  margin: 5%;
  padding: 5%;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
}

.site-container p {
  margin: 10px 0;
}

/* MEDIAQUERIES */
@media screen and (max-width: 1300px) {
  ul.nav-menu {
    position: absolute;
    top: 50px;
    width: 100%;
    height: 0;
    padding: 0;
    overflow: hidden;
  }

  ul.nav-menu.active {
    height: auto;
  }

  ul.nav-menu li {
    width: 100%;
  }

  ul.nav-menu li a {
    width: 100%;
    padding: 0;
    text-align: center;
    background-color: #ffffff;
  }

  ul.nav-menu li a:hover {
    background-color: #4f628b !important;
    color: #ffffff;
  }

  .nav-toggle {
    display: block;
  }
}

@media screen and (min-width: 1300px) {
  .nav-overlay.active {
    visibility: hidden;
    opacity: 0;
  }
}
