:root {
    --darkblue: #00004A;
    --orange: #FF6600;
}
a, a:hover {
    color: currentColor;
    text-decoration: none;
}
.text-primary {
    color: var(--orange) !important;
}
.text-secondary {
    color: var(--darkblue) !important;
}
.bg-cover {
    background-size: cover;
    background-position: center;
}
.button {
    background-color: var(--orange);
    padding: 11px 24px;
    border-radius: 5px;
    color: #FFF;
    font-weight: 600;
}
.button-dark {
    background-color: var(--darkblue);
    padding: 11px 24px;
    border-radius: 5px;
    color: #FFF;
    font-weight: 600;
    display: inline-block;
}

#header {
    height: 150px;
}

#header_menu {
    font-weight: 600;
    color: var(--darkblue);
    border-bottom: 1px solid var(--orange);
    padding-bottom: 6px;
    z-index: 200;
}
#main_content>div {
    padding-right: 400px;
}
main > section:first-child {
    height: calc(100vh - 150px);   
}
#main_footer {
    height: 100px;
    border-bottom: 1px solid var(--orange);
    color: var(--darkblue);
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 480px) {
    #main_footer {
        height: 200px;
    }
}

footer {
    background-image: linear-gradient(
        to right,
        hsl(0, 0%, 0%) 0%,
        hsl(235.86, 60.84%, 3.16%) 8.1%,
        hsl(235.86, 60.84%, 6.18%) 15.5%,
        hsl(235.86, 60.84%, 9.04%) 22.5%,
        hsl(235.86, 60.84%, 11.74%) 29%,
        hsl(235.86, 60.84%, 14.28%) 35.3%,
        hsl(235.86, 60.84%, 16.64%) 41.2%,
        hsl(235.86, 60.84%, 18.81%) 47.1%,
        hsl(235.86, 60.84%, 20.79%) 52.9%,
        hsl(235.86, 60.84%, 22.57%) 58.8%,
        hsl(235.86, 60.84%, 24.13%) 64.7%,
        hsl(235.86, 60.84%, 25.46%) 71%,
        hsl(235.86, 60.84%, 26.54%) 77.5%,
        hsl(235.86, 60.84%, 27.35%) 84.5%,
        hsl(235.86, 60.84%, 27.86%) 91.9%,
        hsl(235.86, 60.84%, 28.04%) 100%
      );
    white-space: nowrap;
}
#footer_maps {
    max-width: 1500px;
}

@media (max-width: 768px) {
    #main_content>div {
        padding-right: 0;
    }
}
@media (max-width: 726px) { 
    #header_menu {
        /* display: none; */
        position: fixed;
        background-color: #FFF;
        top: 0;
        left: 0;
        right: 0;
        bottom: 100%;
        font-size: 24px;
        transition: bottom 0.3s ease-out;
        overflow: hidden;
        border: none;
        padding: 0;
    }
    #header_logo {
        height: 60px;
    }
    #header {
        height: 100px;
    }
    #header_short {
        width: calc(100% - 140px);
    }
    #header_short a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #header_short > div {
        line-height: 2 !important;
    }
    main > section:first-child {
        height: calc(100vh - 100px);
    }
    #header_menu > img {
        top: 0;
    }
}
@media (max-width: 726px) and (orientation: portrait){
    #section_info{
      --ratio: 1.4142;
      width: 100vw !important;
      height: calc(100vw * var(--ratio)) !important;
      min-height: 0 !important;
  
      background-position: top center !important;
      background-size: 100% auto !important;
      background-repeat: no-repeat !important;
      background-color: #fff !important;
    }
  }
  
  @media (max-width: 726px) and (orientation: landscape){
    #section_info{
      width: 100vw !important;
      height: 100svh !important;
      min-height: 0 !important;
  
      background-position: center center !important;
      background-size: contain !important;
      background-repeat: no-repeat !important;
      background-color: #fff !important;
    }
  }