body {
    margin: 0;
    padding: 0;
    line-height: 1.5em;
    font-size: 170px;
}

a:link {
    text-decoration: none;
    color: #DA3027;
}

.staff_images {
    width: 160px;
    height: 190px
}

.staff_images2 {
    width: 260px;
    height: 250px
}

.border_radius {
    -webkit-border-top-left-radius: 15px;
    -webkit-border-top-right-radius: 15px;
    -moz-border-radius-topleft: 15px;
    -moz-border-radius-topright: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.div_heading {
    padding: 12px;
    width: 100%;
    height: 45px;
    background: #21463F;
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px;
}

#social a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
}

#topsection {
    background-image: url("../images/header_bg.png");
    height: 100px; /*Height of top section*/
}

#topsection h1 {
    margin: 0;
    padding-top: 15px;
}

/* LOGO LOGIC */
.staff_image {
    width: 100%;
    height: 310px;
}

.logo_image {
    width: 298px;
    height: 72px;
    margin-left: 10px;
    margin-top: 10px;
}

#logo2 {
    display: none;
}

/* CSS */
.master_button {
    align-items: center;
    background-clip: padding-box;
    background-color: #fa6400;
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
}

.master_button:hover,
.master_button:focus {
    background-color: #fb8332;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.master_button:hover {
    transform: translateY(-1px);
}

.master_button:active {
    background-color: #c85000;
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
}

@media screen and (max-width: 680px) {
    #logo2 {
        display: block;
    }

    #logo {
        display: none;
    }

    .logo_image2 {
        width: 100%;
        height: 110px;
    }
}

/*LOGO LOGIC ENDS */

#contentwrapper {
    float: left;
    width: 100%;
}

#contentcolumn {
    margin: 0 300px 0 300px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/

}

#events {
    width: 100%;
    padding: 10px;
    border: 0px solid red;
    background: #fff;
}

#leftcolumn {
    float: left;
    width: 300px; /*Width of left column*/
    margin-left: -100%;
    background: transparent;

}

#rightcolumn {
    float: left;
    width: 300px; /*Width of right column*/
    margin-left: -300px; /*Set left marginto -(RightColumnWidth)*/
    background: transparent;

}

#footer {
    clear: left;
    width: 100%;
    background: #21463F;
    color: #FFF;
    text-align: center;
    padding: 4px 0;
}

#footer a {
    color: #006666;
}

.innertube {
    margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
    margin-top: 0;
}

/* ####### responsive layout CSS ####### */

@media (max-width: 840px) {
    /* 1st level responsive layout break point- drop right column down*/
    #leftcolumn {
        margin-left: -100%;
    }

    #rightcolumn {
        float: none;
        width: 100%;
        margin-left: 0;
        clear: both;
    }

    #contentcolumn {
        margin-right: 0; /*Set margin to LeftColumnWidth*/
    }
}

@media (max-width: 600px) {
    /* 2nd level responsive layout break point- drop left column down */
    #leftcolumn {
        float: none;
        width: 100%;
        clear: both;
        margin-left: 0;
    }

    #contentcolumn {
        margin-left: 0;
    }

    #social {
        display: none;
    }

    .staff_image {
        width: 100%;
        height: 450px;
    }

    .staff_images2 {
        width: 100%;
        height: 350px
    }

    .staff_images {
        width: 100%;
        height: 450px
    }

}

