@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;
}

table {
    top: 10vh;
    horiz-align: center;
    width: 100%;
    height: auto;
    border-spacing: 0px;
    position: relative;
    display: block;
}

tbody{
    width: 100vw;
}

tr {
    display: block;
    height: auto;
    width: 100vw;
}

.name_of_service{
    background-color: #0F4881;
    text-align: center;
    margin: auto;
    width: 100vw;
    color: white;
    font-weight: bold;
    font-size: 2.0vh;
}

td{
    padding: 0;
}

.mobile_icon{
    padding: 5vw 5vw 5vw 5vw;
    width: 20vw;
    vertical-align: top;
}

.mobile_description{
    padding-right: 5vw;
    width: 70vw;
    font-size: 1.7vh;
    vertical-align: top;
    text-align: justify;
}

.icon{
    width: 20vw;
    height: auto;
    object-fit: contain;
}

p{
    vertical-align: top;
}

#offer{
    display: none;
}