﻿body {
    margin: 0px;
    padding: 0px;
    border: 0px;
    font-family: Arial, tahoma, Verdana, Sans-Serif;
    font-size: 14px;
    background-color: #ffffff;
}

#container {
    position: relative;
    width: 980px;
    margin: 0 auto;
}

#header {
    position: relative;
    width: 980px;
    height: 160px;
    float: left;
    background: url('/images/header_background.png');
}

.fullWidthPanel {
    position: relative;
    float: left;
    width: 940px;
}
#footer {
    position: relative;
    width: 980px;
    height: 10px;
    clear: both;
    text-align: center;
    /*top: -176px;
    left: -144px;*/
}

    #footer li {
        display: inline-block;
        list-style-type: none;
        line-height: 9px;
        border-right: 1px solid #354052;
        padding: 0 10px;
    }

        #footer li:last-child {
            border-right: none;
        }
.button250 {
    position: relative;
    float: left;
    width: 250px;
    height: 24px;
    margin: 0px 0px 0px 10px;
    border: 0;
    padding: 0;
    color: #01a99d;
    line-height: 24px;
    font-size: 16px;
    background: url('/images/button_250.png');
    opacity: 0.7;
    filter: alpha(opacity=70);
    cursor: pointer;
    background-color: transparent;
}

    .button250:hover {
        opacity: 1.0;
        filter: alpha(opacity=100);
    }


#about-section {
    /*background: rgba(32, 33, 36, 0.1); */
    position: relative;
}

.blockabout {
    padding: 20px;
    background: white;
}

.blockabout-inner {
    padding: 30px;
    border: 1px solid rgba(32, 33, 36, 0.1);
}

.sosmed-horizontal a i {
    border: 1px solid #070707;
    border-radius: 50%;
    color: #070707;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin: auto 3px;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s;
}

.rey-btn {
    border: 2px solid #070707;
    padding: 10px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.checkmark-container {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
}

    .checkmark-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
    }

    .checkmark-container .checkmark-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        border: 1px solid #00A99D;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .checkmark-container .checkmark-box::before {
            content: "";
            color: #00A99D;
            font-size: 18px;
            visibility: hidden;
        }

    .checkmark-container input:checked + .checkmark-box::before {
        content: "✓";
        visibility: visible;
    }