@charset "utf-8";

body{
    height: 100%;
    width: 100%;
    font-family: Catamaran, sans-serif;
    background-color: white;
    position: relative;
    margin: 0;
}

.div_logo{
    height: 40vh;
    width: 60vw;
    position: absolute;
    float: right;
    left: 35vw;
}

.img_logo {
    right: 3vw;
    top: -12.5vh;
    float: right;
    height: 40vh;
    width: 60vw;
    position: absolute;
    object-fit: contain;
}

#div_menu
{
    display: block;
    position: relative;
    top: 50px;
    left: 50px;
    width: 70%;
    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
}

#div_menu a
{
    text-decoration: none;
    color: #ffffff;

    transition: color 0.3s ease;
}

#div_menu a:hover
{
    color: #f18b7c;
}


#div_menu input
{
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;

    cursor: pointer;

    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */

    -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#div_menu span
{
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    margin-right: 5px;
    position: relative;

    background: #1f3478;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#div_menu span:first-child
{
    transform-origin: 0% 0%;
}

#div_menu span:nth-last-child(2)
{
    transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#div_menu input:checked ~ span
{
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #ffffff;
}

/*
 * But let's hide the middle one.
 */
#div_menu input:checked ~ span:nth-last-child(3)
{
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#div_menu input:checked ~ span:nth-last-child(2)
{
    transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
    position: absolute;
    width: 20vw;
    margin: -100px 0px 0 -50px;
    padding: 50px;
    padding-top: 125px;

    background: #0F4881;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);

}

#menu li
{
    padding: 10px 0;
    font-size: 18px;
}

/*
 * And let's slide it in from the left
 */
#div_menu input:checked ~ ul
{
    transform: none;
}

#img_quote_left{
    display: none;
}

#img_quote_right{
    display: none;
}
/*
#div_quote{
    background-color: #0F4881;
    height: auto;
    width: 100%;
    position: relative;
    top: 10vh;
    margin: auto;
}

#div_text_quote {
    height: auto;
    width: 100%;
    margin: auto;
}

#quotes_author {
    color: white;
    font-weight: bold;
    float: right;
    font-size: 2.5vh;
    margin: auto;
    text-align: right;
    width: 70vw;
}

#quote {
    color: white;
    font-weight: bold;
    position: center;
    font-style: italic;
    font-size: 2.5vh;
    text-align: right;
    margin: auto;
    width: 70vw;

}
*/
#quote{display: none}
#div_text_quote{display: none}
#quotes_author{display: none}

#div_quote{
    display: none;
}
#mobile_div_quote{
    background-color: #0F4881;
    height: auto;
    width: 100%;
    top: 10vh;
    margin: auto;
    position: relative;
}

#mobile_quote{
    color: white;
    font-weight: bold;
    font-style: italic;
    font-size: 2.5vh;
    text-align: right;
    margin: auto;
    width: 70vw;
}

#mobile_quotes_author{
    width: 70vw;
    color: white;
    font-weight: bold;
    font-style: italic;
    font-size: 2.5vh;
    text-align: right;
    margin: auto;
}

#div_about_us {
    display: block;
    width: 90%;
    height: auto;
    top: 13vh;
    position: relative;
    margin: auto;
}

.description {
    display: block;
    position: relative;
    text-align: justify;
    font-size: 1.7vh;
    font-weight: normal;
}

#div_img_office {
    display: block;
    top: 15vh;
    width: 90vw;
    position: relative;
    margin: auto;
    height: auto;
    padding: 0;
}

#img_office {
    display: block;
    width: 90vw;
    height: auto;
    horiz-align: center;
    position: relative;
    margin: 0;
    padding: 0 0 2vh 0;
}

