/* dark color candidates */
/* #172a30; */
/* #470101; */

body {
    margin: 0px;
    font-family: Quicksand, sans-serif;
    font-weight: 300;
    background-color: rgb(247, 247, 247);
}

section {
    padding-top: 90px;
    margin-bottom: 200px;
}

section div {
    margin: 30px;
}

.section-header {
    padding: 0;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    width: 80%;
}

.section-header h1{
    font-size: 70px;
    color: #cda377;
    font-weight: 500;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.section-header-line {
    margin: auto;
    margin-top: 10px;
    background-color: #cda377;
    height: 2px;
    width: 90%;
}

@media all and (max-width: 500px) {
    .section-header h1{
        font-size: 45px;
    }

    section {
        margin-bottom: 150px;
    }
}

/* --------------- HEADER --------------- */

#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0, .2);
    background: #cda377;
    padding-bottom: 4px;
    z-index: 10;
    transition: top 0.3s;
}

.header-helper {
    display: flex;
    justify-content: space-between;
    padding-left: 10%;
    padding-right: 7%;
    height: 90px;
    background-color: #172a30;
}

.logo-container {
    padding-left: 1%;
    padding-right: 1%;
    max-width: 500px;
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.logo-container a img {
    height: 70px;
    width: auto;
}

.nav-container {
    margin-top: auto;
    margin-bottom: auto;
    max-width: 750px;
    padding-left: 1%;
    padding-right: 1%;
}

.top-nav {
    margin-left: auto;
    margin-right: auto;
    align-items: right;
    height: 90px;
}

.top-menu {
    height: 90px;
    text-align: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.top-menu li {
    height: 90px;
    text-align: center;
    float: left;
}

.top-menu li a {
    margin: 0;
    margin-left: 2.7px;
    display: block;
    margin-top: auto;
    margin-bottom: auto;
    margin-top: 8px;
    padding: 25px;
    color: white;
    font-size: 19px;
    text-decoration: None;
    transition: background-color 0.4s;
}

.top-menu li a:hover {
    margin-left: 0;
    background-color: #cda377;
    color: #172a30;
    cursor: pointer;
    font-weight: 500;
}

.mobile-nav {
    position: absolute;
    top: 38px;
    right: 10%;
}


.dropdown-menu-container {
    position: relative;
}

.dropdown-menu-icon-container {
    background: rgba(0,0,0,0);
    border: none;
}

.dropdown-menu-icon-container p {
    width: 20px;
    height: 1px;
    background-color: rgb(255, 255, 255);
    margin: 4px 0;
  }

.dropdown-menu-icon-container:hover {
    cursor: pointer;
}

.dropdown-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #172a30;
    border: 0px;
    border-left: 4px #cda377;
    padding: .75rem;
    border-style: solid;
    box-shadow: 0 2px 20px 0 rgba(0,0,0, .7);
    pointer-events: none;
    transform: translateX(250px);
    transition: transform 300ms ease-in-out;
}

.dropdown-menu li {
    text-align: center;
    padding-top: 30px;
}

.dropdown-menu li img {
    position: relative;
    height: 30px;
    transition: opacity 0.2s;
}

.dropdown-menu li img:hover {
    cursor: pointer;
    opacity: 0.85;
}

.dropdown-menu li a {
    display: block;
    color: white;
    padding: 20px;
    width: 140px;
    font-size: 20px;
    text-decoration: None;
    transition: background-color 0.4s;
}

.dropdown-menu li a:hover {
    background-color: #cda377;
    font-weight: 500;
    color: #172a30;
    cursor: pointer;
}

.dropdown-menu-container.active > .dropdown-menu-icon-container + .dropdown-menu {
    transform: translateX(0);
    pointer-events: auto;
}

@media all and (max-width: 981px) {
    .top-menu{
        display: None;
        height: 0;
        width: 0;
    }
}
    
@media all and (min-width: 981px) {
    .mobile-nav{
        height: 0;
        width: 0;
        display: None;
    }
}


@media all and (max-width: 1236px) {
    .top-menu {
        margin-top: 3px;
        width: 360px;
    }

    .top-menu li {
        height: 45px;
    }

    .top-menu li a {
        padding-top: 8px;
        padding-bottom: 8px;
        width: 116px;
        margin-top: 0;
    }
}

@media all and (max-width: 500px) {
    .logo-container a img {
        height: 50px;
        width: auto;
    }

    .dropdown-menu li a {
        font-size: 14px;
        width: 80px;
    }

    .dropdown-menu li img {
        height: 25px;
    }
}


/* --------------- FOOTER --------------- */

footer {
    background-color: #172a30;
    color: white;
    padding: 20px;
    padding-left: 10%;
    padding-right: 10%;
}

.footer-nav-container {
    padding: 15px;
    padding-left: 20%;
    padding-right: 20%;
    justify-content: center;
}

.footer-nav {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

.footer-nav header {
    font-size: 25px;
    color: #cda377;
    margin-bottom: 20px;
}

.footer-nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-nav-menu li {
    margin-bottom: 10px;
}

.footer-nav-menu li a {
    padding: 10px;
    height: 70px;
    width: 180px;
    color: white;
    font-size: 17px;
    transition: color 0.2s;
    text-decoration: None;
}

.footer-nav-menu li a:hover {
    cursor: pointer;
    color: #cda377;
}

.footer-nav-contact {
    font-size: 15px;
}

.footer-nav-contact-data-address div {
    margin: 5px;
}

.footer-nav-contact-data-phone-email {
    margin-top: 20px;
}

.footer-nav-contact-icon-container {
    display: flex;
    margin: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer-nav-contact-icon-container i {
    margin: 0;
    margin-right: 20px;
    width: 20px;
}

.footer-copyright-text {
    font-size: 12px;
    text-align: justify;
}

.footer-copyright-mark {
    margin-top: 30px;
    text-align: center;
    font-size: 11px;
}


@media all and (max-width: 800px) {
    .footer-nav-container {
        padding-left: 10%;
        padding-right: 10%;
    }

    .footer-nav{
        text-align: center;
        display: block;
    }

    .footer-nav-contact-icon-container {
        display: block;
    }

    .footer-nav i {
        display: none;
    }

    .footer-nav-contact {
        margin-top: 20px;
    }
}


@media all and (max-width: 500px) {
    .footer-nav-menu li a {
        font-size: 15px;
    }

    .footer-nav-contact {
        font-size: 14px;
    }

    .footer-copyright-text {
        font-size: 11px;
    }

    .footer-copyright-mark {
        font-size: 10px;
    }
}