/* :root {
    --primary-color: #2b545f;
    --secondary-color: #ed6d00;
} */

body,
main {
    overflow-x: hidden;
}


/* Common */

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    font-family: sans-serif;
}

header {
    background-color: var(--primary-color);
}

.header-title {
    background-color: var(--primary-color);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* Footer */

footer,
nav {
    background-color: var(--primary-color);
}

#company_description h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#logo img {
    max-width: 370px;
}

#company_link a:hover {
    font-weight: bolder;
}


/* animation */

.slide-fade-in {
    left: -50%;
    animation: slideFromLeft 0.8s ease-in-out forwards;
}

@keyframes slideFromLeft {
    0% {
        left: -50%;
        opacity: 0;
    }
    100% {
        left: 50%;
        opacity: 1;
    }
}


/* Section */

.section-wrapper {
    max-width: 1600px;
    margin: auto;
}

section #title {
    background-image: url('./images/title-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    margin: auto;
    padding-bottom: 10px;
    width: 570px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

section #title h2 {
    color: var(--primary-color);
    font-weight: bold;
}


/* Button */

.button_area {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    margin: auto;
}

.button_area .w_btn {
    color: #fff;
    padding: 4px;
    margin: 2rem 0;
    display: inline-block;
    align-items: center;
    border-radius: 8px;
    background-image: -webkit-linear-gradient(left, var(--primary-color) var(--primary-color) 100%);
    background-image: linear-gradient(to right, var(--primary-color), var(--primary-color) 100%);
    -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    text-decoration: none;
    line-height: 1;
    max-width: 500px;
    transition: all ease 0.3s;
}

.button_area .w_btn p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.button_area .w_btn:hover {
    -webkit-transform: translate(0, 4px);
    transform: translate(0, 4px);
    color: #fff;
    -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
    box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
}

.button_area .w_btn div {
    border: thin solid #fff;
    border-radius: 8px;
    padding: 15px 10px 15px 10px;
}

.mini {
    padding: 5px 0px 5px 0px !important;
}

.button_area .w_btn .attention {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
}

.btn-w-320 {
    width: 320px;
}

.btn-w-l {
    width: 420px;
}

#btn-outline-white {
    background-color: transparent;
    border: 0.5px solid black;
    color: black;
    padding: 0.25rem 1.25rem 0.25rem 1.25rem;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    /* border-radius: 6px; */
    transition: all ease 0.3s;
}

#btn-outline-white:hover {
    background-color: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

#btn-outline-red {
    background-color: var(--primary-color);
    border: 2px solid white;
    color: white;
    box-shadow: 1px 1px 5px white;
    padding: 0.25rem 0.75rem 0.25rem 0.75rem;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all ease 0.3s;
}

#btn-outline-white:hover {
    background-color: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

#btn-outline-red {
    background-color: var(--primary-color);
    border: 2px solid white;
    color: white;
    box-shadow: 1px 1px 5px white;
    padding: 0.25rem 0.75rem 0.25rem 0.75rem;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all ease 0.3s;
}

#btn-outline-red:hover {
    background-color: var(--primary-color);
    border-color: #fff;
    color: #fff;
}

#btn-outline-green {
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem 0.25rem 0.75rem;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all ease 0.3s;
}

#btn-outline-green:hover {
    background-color: var(--primary-color);
    border-color: #fff;
    color: #fff;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transition: all ease 0.3s;
}

.btn-primary:hover {
    transform: scale(1.01);
}


/* Hero area */


/* #hero_area {
    background-image: url("./images/hero-area.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
} */


/* 
#hero_area {
    background-image: url("./images/hero-area.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: 175% 125%;
    position: relative;
} */

#hero_area {
    background-image: url("./images/hero-area.jpg");
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-position: 50% 30%;
    background-size: 130%;
    margin-top: 5px;
}

#hero_area {
    height: 55vh;
}

@media (min-width: 992px) {
    #hero_area,
    #about {
        height: 75vh;
    }
    #hero_area {
        background-position: 50% 50%;
        margin-top: 0;
        background-size: 170%;
    }
    #announcement {
        font-size: 2rem;
    }
}

@media (min-width: 576px) {
    #hero_area::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
        pointer-events: none;
        /* supaya tidak mengganggu klik */
        z-index: 1;
        /* pastikan ada di atas background tapi di bawah isi */
    }
}

#announcement-wrapper {
    bottom: 1.2%;
    left: 50%;
    /* border-top: 1px solid #929292;
    border-bottom: 1px solid #929292; */
}

#announcement {
    /* background-color: var(--primary-color-05); */
    /* background-color: var(--primary-color-05); */
    font-size: 2.5rem;
    line-height: 1.5;
    text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
    /* Shadow color and offset */
    color: var(--secondary-color);
    font-weight: bold;
    bottom: 25% !important;
}


/* About */

#about {
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#about h1 {
    color: var(--primary-color);
}

#gm_logo {
    max-width: 250px;
    transition: 0.3s all ease;
}

#gm_logo:hover {
    transform: translateY(4px);
    -webkit-transform: translateY(4px);
}


/* Achievement */

#achievement_1 {
    background-image: url("./images/green.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#content_wrapper {
    height: 600px;
}

#archive {
    position: absolute;
    background-color: var(--primary-color-05);
    width: 51.5%;
    z-index: 99;
    color: white;
}

#banner {
    position: absolute;
    width: 51.5%;
    top: 10%;
    right: 0%;
}

#banner img {
    width: 100%;
}

#achievement_2 #important {
    font-size: 3rem;
}


/* Point */

#point {
    background-image: url("./images/point.png");
    background-position: 0 40%;
    background-repeat: no-repeat;
    background-size: cover;
}

#point #section-wrapper {
    width: 800px;
    margin: auto;
}

#card {
    border-radius: 25px;
    padding: 10px;
    min-height: 250px;
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
}

#card img {
    height: 170px;
}


/* Testimony */

#testimony {
    /* background-image: url("./images/network.jpg"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
}

#man {
    left: 20%;
    position: relative;
}

#man img {
    position: absolute;
    height: 350px;
    left: -205px;
    top: -15%;
}

#woman {
    display: flex;
    flex-direction: row-reverse;
    margin-right: auto;
    /* right: -25%; */
    left: -15%;
    position: relative;
}

#woman img {
    position: absolute;
    height: 350px;
    top: -45%;
    right: -190px;
}

#testimony-content-wrapper {
    border-radius: 25px;
    padding: 25px 30px 10px 30px;
    background-color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    width: 600px;
    /* width: 55%; */
}


/* event overview */

#event_overview {
    background-image: url("./images/event.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#event_overview table {
    max-width: 800px;
    margin: auto;
}

#event_overview table th {
    width: 170px;
}

#event_overview table,
th,
td {
    border: solid 2px var(--primary-color) !important;
}

#event_overview table th {
    background-color: whitesmoke !important;
}

#logo_wrapper {
    /* background-image: url("./images/green2.jpg"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#logo-list img {
    width: 250px;
    margin: 0px 10px 0px 10px;
}


/* webinar-week-event */

.click-effect {
    transition: all ease 0.3s;
    -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, 0);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0);
}

.click-effect:hover {
    -webkit-transform: translate(0, 1px);
    transform: translate(0, 1px);
    color: #fff;
    -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}

#webinar-week-event {
    /* background-image: url("./images/ww-list.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    background-color: white;
    padding-top: 50px;
}

#web inar-week-event #title h2 {
    color: white;
}

#webinar-week-event .section-title h3 {
    font-size: 1.2rem !important;
    padding: 0px 0px 0rem 0px;
    margin-top: 15px;
}

#ww-wrapper {
    max-width: 1000px;
    margin: auto;
}

#ww-wrapper .info-archive {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    color: red;
    font-weight: bold;
    letter-spacing: 2px;
    width: calc(100% - 20px);
}

#ww-wrapper #card a {
    font-size: 16px;
}

#webinar-week-event {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#webinar-week-event #section-descripton h4 {
    color: var(--secondary);
}

#webinar-week-event #card {
    border-radius: 0px;
    padding: 10px;
    min-height: 250px;
    max-width: 375px;
    font-weight: normal;
    color: black;
}

#webinar-week-event #card a {
    background-color: var(--primary-color);
    box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
}


/* Held_WW */

#Held_WW h2 {
    color: var(--primary-color) !important;
    font-weight: bold;
}

#ww-wrapper {
    max-width: 900px;
    margin: auto;
}

#Held_WW #card {
    border-radius: 0px;
    padding: 10px;
    min-height: 250px;
    max-width: 375px;
    font-weight: normal;
    color: black;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.2);
}

#Held_WW #card button {
    box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.5);
}


/* download form */

#download_form {
    background-image: url("./images/ww-list.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#download_form .form-control {
    border-color: var(--primary-color);
}

#modal-button {
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    text-decoration: underline;
    transition: all ease 0.3s;
}

#modal-button:hover {
    color: rgba(0, 0, 0, 1);
}

#sended-info {
    background-image: url("./images/network.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Mobile */

@media (max-width: 576px) {
    #announcement-wrapper {
        bottom: 0%;
    }
    section #title {
        width: 350px;
        height: 50px;
    }
    /* hero area */
    #announcement {
        font-size: 2.5rem;
    }
    /* testimony */
    #man {
        left: 10%;
    }
    #woman {
        left: -5%;
    }
    /* achievement */
    #content_wrapper {
        height: 720px;
    }
    #archive {
        position: initial;
        width: 100%;
        margin-bottom: 10px;
    }
    #banner {
        position: initial;
        width: 95%;
        text-align: center;
    }
    #banner img {
        width: 100%;
    }
}

@media (max-width: 992px) {
    /* common */
    section #title {
        width: auto;
        height: 50px;
    }
    .btn-w-l {
        width: 340px;
    }
    /* footer */
    footer #logo img {
        width: 340px;
    }
    #banner {
        top: 20%;
    }
    /* testimony */
    #testimony {
        height: 800px;
    }
    #testimony-content-wrapper {
        width: 80%;
        height: 300px;
    }
    #man {
        left: 20%;
    }
    #man img {
        top: -11%;
    }
    #woman {
        left: -15%;
    }
    #woman img {
        top: -5%;
    }
    /* point */
    #point #section-wrapper {
        width: initial;
    }
    #card {
        width: 250px;
        min-height: 250px;
        font-weight: bold;
        background-color: rgba(255, 255, 255, 0.9);
        margin: auto !important;
        padding: 10px;
        border-radius: 25px;
    }
    #card img {
        height: 170px;
    }
    /* table */
    #event_overview table th {
        width: 80px;
    }
}