@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,800);
*,
*:after,
*::before {
    box-sizing: border-box;
}
/* General styles and layout */

body {
    background: white;
    color: black;
    font-family: 'Open Sans', Arial, sans-serif;
    max-width: 100%;
}

.container {
    overflow: hidden;
    /* we don't want the pseudo-elements sticking out */
    
    max-width: 960px;
}

.container svg {
    display: block;
}

section {
    position: relative;
    color: #000;
    text-align: center;
}
/*** Individual section styles and separators ***/
/* Common style for pseudo-elements */

section::before,
section::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

header section {
    min-height: 250px;
}

header h1 {
    margin-bottom: 0px;
}

header i.fa {
    font-size: 2em;
    color: : rga(1, 1, 1) !important;
}

header h2 {
    font-family: 'Open Sans';
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 36px;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 1);
}

header p {
    font-family: 'Open Sans';
    font-size: 18px;
    text-transform: capitalize;
    color: white;
}

.color {
    background-color: #f5d000;
    
}

.garis {
    background-image: url("img/garis.png");
}

.ss-style-doublediagonal {
    z-index: 1;
    padding-top: 2em;
    background: white;
}

.ss-style-doublediagonal::before,
.ss-style-doublediagonal::after {
    top: 0;
    left: -25%;
    z-index: -1;
    width: 150%;
    height: 75%;
    background: white;
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
}

.ss-style-doublediagonal::before {
    height: 50%;
    background: white;
    -webkit-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -webkit-transform-origin: 3% 0;
    -ms-transform-origin: 3% 0;
    transform-origin: 3% 0;
}

section.main-content p {
    color: #565656;
    max-width: 70%;
    margin: 0 auto;
}

section.main-content .input-group {
    max-width: 50%;
    margin: 0 auto;
}

@media screen and (max-width: 1080px) {
    section.main-content .input-group {
        max-width: 90%;
        margin: 0 auto;
    }
}

section.footer img {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: bold;
}

.footer {
    z-index: 1;
    margin-top: 10%;
    padding-top: 50px;
    background: #f5d000;
    color: rgb(0, 0, 0);
    padding-bottom: 100px;
}

