﻿body {
}
header {
    margin-bottom: 15px;
}

.headerColor {
    background-color: rgb(0, 96, 127);
}

.flexBox {
    display: flex;
}

.flexAlignCenter {
    align-items: center;
}

.justifyBetween {
    justify-content: space-between;
}

.justifyAround {
    justify-content: space-around;
}

.gridView {
    display: grid;
    grid-template-columns: 30% 60% 10%;
    padding-right: 2%
}

#navBarBlock {
    align-content: center;
}

#headerLogo {
    margin: 15px 15px 15px 15px;
}

#headerLogo > a > img {
    height: 63px;
    width: 513px;
}

#navList {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

    #navList a {
        text-decoration: none;
        color: white;
    }

    #navList li {
        vertical-align: bottom;
        border-bottom: 2px solid rgb(0, 96, 127);
        margin-bottom: 0px;
    }

        #navList li:hover {
            border-bottom: 2px solid white;
        }

.translate {
    align-content: center;
}

#navCollapseButton {
    display: none;
    border: 2px solid white;
    margin-top: 1px;
}

    #navCollapseButton:hover {
        background: white;
        border: 2px solid white;
        color: rgb(0, 96, 127);
    }

.goog-te-combo {
    background: white !important;
    color: black;
    height: 39px;
    margin-top: 5px;
    margin-left: 15px !important;
    padding: 7px 10px 7px 10px !important;
    text-align: center;
    vertical-align: middle !important;
    width: 100%;
    font-weight: bold;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-logo-link {
    display: none;
}

#navClose {
    display: none;
    margin-left: auto;
    width: 50px;
}

#closeButtonDiv {
    display: flex;
    align-items: end;
}


@media (max-width: 650px) {
    #headerLogo {
        align-content: center;
        margin: 15px auto 15px auto;
    }

    #navCollapseButton {
        display: flex;
    }

    #navBarBlock {
        display: flex;
        height: 100%;
        flex-direction: column;
        width: 0px;
        position: fixed;
        z-index: 1;
        top: 22px;
        right: 0;
        background: rgb(0, 96, 127);
        border-left: 1px solid white;
        overflow-x: hidden;
        transition: 0.2s;
    }

    #navClose {
        display: block;
        align-content: end;
    }

    #navList {
        display: block;
    }

        #navList li {
            margin-bottom: 15px;
        }
}

@media (max-width: 924px){
    #headerLogo > a > img {
        height: 48px;
        width: 413px;
        padding-left: 2%;
        padding-right: 2%;
    }

    .translate {
        display: none;       
    }

    .gridView {
        grid-template-columns: 100%;
        padding-right: 0;
    }

    #navBarBlock {
        align-content: center;
    }

    .menuBtn {
        width: 17%;
        padding: 0% 0%2% 2%;
        margin: 0;
    }

    .breadcrumbs-container{
        font-size: 1.6rem;
    }
}