/*
 Created on : Sep 16, 2022, 11:35:43 PM
 Author     : AWD
 */
@font-face {
  font-family: Font-04;
  src: url(fonts/AdventPro-Regular.ttf); }
/*
 .cc_banner-wrapper {
 z-index: 9001;
 position: relative;
 }
 .cc_container, .cc_message, .cc_btn {
 animation-duration: 0.8s;
 -webkit-animation-duration: 0.8s;
 -moz-animation-duration: 0.8s;
 -o-animation-duration: 0.8s;
 -webkit-animation-name: slideUp;
 animation-name: slideUp;
 }
 .cc_container {
 background: #222;
 color: #fff;
 font-size: 17px;
 font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
 box-sizing: border-box;
 }
 @media screen and (min-width: 768px){
 .cc_container {
 padding: 15px 30px 15px;
 }
 }
 .cc_container {
 position: fixed;
 left: 0;
 right: 0;
 bottom: 0;
 overflow: hidden;
 padding: 10px;
 }
 */
html {
  scroll-behavior: smooth;
  scrollbar-color: #63aae7 black;
  scrollbar-width: thin; }

body {
  font-family: "Poppins", Sans-serif;
  font-size: 1.2rem; }

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

.blur-img {
  transition: 8s all;
  filter: blur(0px) !important; }

.main-logo {
  transition: all 1s;
  transform: rotate(0deg); }

.main-logo:hover {
  transition: all 1s;
  transform: rotate(360deg); }

.flex-cats {
  display: flex;
  flex-flow: row wrap;
  gap: 0.1em; }

.flex-cats > li {
  flex: 0 0 100%;
  transition: 0.3s all;
  border: 0px solid transparent;
  padding: 1em;
  gap: 2.5em;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1); }
  .flex-cats > li:hover {
    background: #0188fe; }
    .flex-cats > li:hover > a {
      border: solid 2px rgba(6, 29, 71, 1);
      color: rgba(6, 29, 71, 1);
      transition: all 1s; }
    .flex-cats > li:hover > h3 {
      color: rgba(6, 29, 71, 1);
      transition: 1s all; }
  .flex-cats > li > a {
    margin-bottom: 0;
    font-weight: 700;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    margin: auto;
    width: 100%;
    padding: 17px 13px;
    border: solid 2px #0188fe;
    color: white; }

.App-main-menu {
  position: fixed;
  z-index: 11;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  background: transparent;
  padding: 10px;
  /*
   box-shadow: 1px 1px 13px 1px grey;
   */
  transition: all 1s; }
  .App-main-menu.add-back {
    background: rgba(255, 255, 255, 0.95);
    transition: all 1s;
    box-shadow: 3px 3px 5px gray; }
  .App-main-menu > a {
    flex: 50%;
    display: flex; }
  .App-main-menu > a > svg {
    width: 60px;
    height: 60px;
    background: transparent;
    transition: all 1s;
    /*
     box-shadow: 2px 2px 5px 1px $App-main-menu-btn, -2px -2px 5px 1px $App-main-menu-btn;
     */
    border-radius: 2px; }
    .App-main-menu > a > svg > path {
      color: white !important; }
  .App-main-menu > a:nth-child(2) {
    justify-content: right; }
  .App-main-menu > ul {
    flex: 100%;
    background: rgba(0, 0, 0, 0);
    transform: translateX(100%) translateY(-100%);
    transition: 1s all;
    height: 45px; }
  .App-main-menu > ul > li {
    transition: 1s all;
    transform: rotateX(90deg);
    display: flex; }
    .App-main-menu > ul > li > span {
      flex: 0 1 auto; }
    .App-main-menu > ul > li a {
      flex: 1 0 auto;
      display: flex;
      justify-content: center;
      padding: 13px;
      font-size: 1.3em;
      position: relative;
      text-decoration: none;
      transition: all 0.4s;
      color: #0188fe;
      font-family: "Poppins", Sans-serif;
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      line-height: 1em;
      text-shadow: 0.5px 0.5px 1px #061d47; }
    .App-main-menu > ul > li a:before, .App-main-menu > ul > li a:after {
      position: absolute;
      content: ''; }
    .App-main-menu > ul > li a:after {
      height: 5px;
      left: 50%;
      right: 50%;
      transition: all 0.4s;
      bottom: 0;
      z-index: -2;
      transition: all 1s;
      width: 0%; }
    .App-main-menu > ul > li a:hover, .App-main-menu > ul > li > a.active {
      transition: all 0.4s; }
      .App-main-menu > ul > li a:hover:after, .App-main-menu > ul > li > a.active:after {
        width: 100%;
        left: 0;
        right: 0;
        height: 100%;
        transition: all 0.4s;
        z-index: -2;
        border-bottom: 3px solid #0188fe; }
  .App-main-menu.open-main-menu {
    transition: height 1s;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.69) 55%, rgba(255, 255, 255, 0.89)); }
  .App-main-menu.open-main-menu > a > svg {
    transition: all 1s;
    transform: rotateX(180deg) rotateY(180deg); }
  .App-main-menu.open-main-menu > ul {
    transition: all 0.5s;
    transform: translate(0);
    background: white;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    height: 80%;
    padding: 10px;
    border: solid 1px lightgray; }
    .App-main-menu.open-main-menu > ul > li {
      transition: 0.5s 0.5s all;
      transform: rotateX(0deg); }

.App-main-header {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  height: 100vh; }
  .App-main-header > figure, .App-main-header > div {
    grid-column: 1/7;
    grid-row: 1 / 7;
    height: 100vh; }
  .App-main-header > figure > img {
    filter: blur(5px);
    transition: all 2s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left; }
  .App-main-header > div {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 10px; }
  .App-main-header > div > * {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    font-family: Font-04; }
  .App-main-header > div > .mh-left {
    gap: 5px; }
  .App-main-header > div > .mh-right {
    text-align: center;
    width: 100%; }
    .App-main-header > div > .mh-right > div {
      border-left: 8px solid #0188fe;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 3px 3px 5px gray;
      background: linear-gradient(rgba(255, 255, 255, 0.69) 55%, rgba(255, 255, 255, 0.89));
      color: rgba(6, 29, 71, 1); }
    .App-main-header > div > .mh-right > nav > a {
      font-weight: 700;
      text-transform: none;
      font-style: normal;
      text-decoration: none;
      margin: auto;
      width: 213px;
      padding: 17px 13px;
      border: solid 2px #0188fe;
      color: white;
      transition: all 1s;
      box-shadow: 3px 3px 5px gray;
      background: #0188fe;
      text-shadow: 0.5px 0.5px 2px white; }
      .App-main-header > div > .mh-right > nav > a:hover {
        background: #0188fe;
        transition: all 1s;
        border-bottom: 2px solid white;
        color: white; }
    .App-main-header > div > .mh-right p {
      color: #0188fe;
      text-shadow: 0.5px 0.5px black;
      padding: 45px; }
    .App-main-header > div > .mh-right > h1, .App-main-header > div > .mh-right > h2 {
      border-left: 8px solid #0188fe;
      color: #0188fe;
      background: linear-gradient(rgba(255, 255, 255, 0.69) 55%, rgba(255, 255, 255, 0.89));
      box-shadow: 3px 3px 5px gray;
      padding: 45px;
      font-size: 36px;
      font-weight: 600;
      text-transform: none;
      font-style: normal;
      text-decoration: none;
      line-height: 1.2em;
      letter-spacing: -0.5px;
      text-shadow: 2px 2px 2px #061d47; }
      .App-main-header > div > .mh-right > h1 > a, .App-main-header > div > .mh-right > h2 > a {
        color: rgba(6, 29, 71, 1); }
    .App-main-header > div > .mh-right > ul > li > a {
      color: #0188fe;
      line-height: 1.4; }

.App-slave-article {
  background: transparent;
  color: black;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 25px 10px 30px; }
  .App-slave-article > * {
    flex: 1 0 100%;
    height: 100%; }
  .App-slave-article > header {
    font-family: Font-04;
    order: 1;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-bottom: 10px; }
  .App-slave-article > header > h2 {
    color: #03396c; }
  .App-slave-article > header > div {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .App-slave-article > figure {
    order: 2;
    overflow: hidden;
    height: auto; }
  .App-slave-article > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: 0.4s all; }
    .App-slave-article > figure > img:hover {
      transform: scale(1.1) rotateZ(-2deg);
      transition: 1s all; }
  .App-slave-article:nth-child(odd) > figure > img:hover {
    transform: scale(1.1) rotateZ(2deg);
    transition: 1s all; }

.App-main-footer {
  display: flex;
  flex-direction: column;
  background: #0188fe;
  padding-top: 80px;
  padding-bottom: 105px;
  box-shadow: -3px -3px 5px gray; }
  .App-main-footer > div {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 3px;
    color: rgba(6, 29, 71, 1);
    padding: 20px; }
  .App-main-footer > div > nav, .App-main-footer > div > div {
    display: flex;
    justify-content: center; }
  .App-main-footer > div > nav > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px; }
  .App-main-footer > div > div {
    flex-direction: column; }
    .App-main-footer > div > div > figure {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }

.App-btn {
  text-decoration: none;
  padding: 13px;
  color: white;
  background: #03396c;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  display: flex;
  justify-content: center;
  transition: 1s all; }
  .App-btn:hover {
    color: white;
    background: #63aae7;
    transition: 1s all; }

.go-to-top {
  display: flex;
  width: 60px;
  height: 60px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  color: rgba(6, 29, 71, 1);
  background: transparent;
  box-shadow: 0px 0px 0px 0px rgba(6, 29, 71, 1), 0px 0px 0px 0px #63aae7;
  border-radius: 2px;
  opacity: 0;
  transition: all 2s;
  padding: 5px; }
  .go-to-top > svg {
    border-radius: 0.5em;
    width: 100%;
    height: 100%; }
  .go-to-top.show-up {
    transition: all 2s;
    opacity: 1;
    z-index: 1300; }

.App-section-services {
  background: rgba(6, 29, 71, 1);
  color: white;
  padding: 20px;
  padding-top: 75px; }
  .App-section-services > header {
    display: flex;
    flex-direction: column;
    gap: 20px; }
  .App-section-services > header > h2 {
    color: white;
    transition: all 0.5s;
    text-shadow: 2px 2px #0188fe; }
    .App-section-services > header > h2 > a {
      color: white;
      transition: all 0.5s;
      text-shadow: 2px 2px #0188fe;
      text-decoration: none; }
      .App-section-services > header > h2 > a:hover {
        color: #0188fe;
        transition: all 0.5s;
        text-shadow: 0 0; }
  .App-section-services > header > p {
    color: white;
    padding: 20px 0; }

@media all and (min-width: 800px) {
  .flex-cats > li {
    flex: 0 0 calc(50% - .1em); }

  .App-main-header > div {
    flex-direction: row; }
    .App-main-header > div > * {
      height: 100%; }
      .App-main-header > div > * > * {
        padding-top: 10px;
        padding-bottom: 10px; }
    .App-main-header > div > :nth-child(1) {
      border-bottom: none; }
      .App-main-header > div > :nth-child(1) > figure {
        display: initial; }
    .App-main-header > div > .mh-left {
      flex: 0 0 20%; }
    .App-main-header > div > .mh-right {
      flex: 1 0 80%; }
      .App-main-header > div > .mh-right > h1 {
        font-size: 65px; }

  .App-slave-article {
    padding-left: 100px;
    padding-right: 100px; }
    .App-slave-article > header {
      padding: 10px;
      height: auto; }
    .App-slave-article > * {
      flex: 1 0 50%; }
    .App-slave-article:nth-child(odd) > header {
      order: 2;
      text-align: left; }
    .App-slave-article:nth-child(odd) > figure {
      order: 1; }

  .App-main-footer {
    flex-direction: row; }
    .App-main-footer > div {
      flex: 50%; } }

@media all and (min-width: 1024px) {
  .flex-cats > li {
    flex: 0 0 calc(33.333% - .2em); }

  .App-main-menu {
    padding-left: 100px;
    padding-right: 100px; }
    .App-main-menu > a {
      flex: 0 1 auto; }
      .App-main-menu > a:nth-child(2) {
        display: none; }
    .App-main-menu > ul {
      flex: 1 0 auto;
      transform: translateX(0);
      transition: 1s all;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      gap: 3px; }
      .App-main-menu > ul > li {
        transform: rotateX(0deg); }

  .App-main-header > div {
    padding-left: 100px;
    padding-right: 100px; }

  .App-section-services {
    padding-left: 100px;
    padding-right: 100px; }

  .App-main-footer {
    padding-left: 100px;
    padding-right: 100px; }

  .App-slave-article {
    padding-left: 100px;
    padding-right: 100px; } }

@media all and (min-width: 1324px) {
  body {
    font-size: 1.4rem; }

  .App-main-menu {
    padding-left: 200px;
    padding-right: 200px; }

  .App-main-header > div {
    padding-left: 200px;
    padding-right: 200px; }

  .App-section-services {
    padding-left: 200px;
    padding-right: 200px; }

  .App-slave-article {
    padding-left: 200px;
    padding-right: 200px; }

  .App-main-footer {
    padding-left: 200px;
    padding-right: 200px; } }
