/********** common setting **********/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
h2 {
    font-size: 2.8rem !important;
    font-weight: 700;
}

img {
    display: block;
    max-width: 100%;
}

a,
button {
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease,;
}

.jumbotron {
    margin-bottom: 0 !important;
}


.menu {
    background-color: white;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 1000;
}

.menu a {
    color: black !important;
}

.menu a:hover {
    color: #191e62 !important;
    text-decoration: none ;
}

.menu.scrolled {
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease;
}

.main a {
    background-color: #191e62 !important;
    color:white !important;
    border-radius: 22px !important;
    padding: 12px 30px !important;
    font-weight: 700;
}

.main a:hover {
    background-color:  #23297c  !important;
}
.main p{
    color: white;
    font-weight: 700;
    font-size:1.5rem;
}

#banner {
    background-size: cover;
}

/********** banner **********/
#banner header {
    overflow: hidden;
}

#banner header img {
    max-width: 80px;
}

/********** feature (skew background) **********/
.feature img {
    width: 100%;
    max-width: 480px;
}

#feature-first {
    background: linear-gradient(168deg, #ffffff 55%, #00FFAD 0);
}

#feature-last {
    background: #00FFAD;
}

/********** price table **********/
#price-table {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

#price-table__premium {
    background: #192440;
    color: #ffffff;
}

#price-table ul li {
    padding: 5px 0;
}

/********** contact **********/
#contact {
    background-size: cover;
}

#contact ul li {
    padding: 3px 0;
}

#contact form {
    color: #00FFAD;
}

#contact form input,
#contact form textarea {
    background: transparent;
    border: 1px solid #00FFAD;
    color: #ffffff;
}

/********** copyright **********/
#copyright {
    background: #191e62;
    padding: 2rem 3rem;
}

#copyright #social-media a {
    width: 40px;
    height: 40px;
    border-radius: 99%;
    background: #ffffff;
    transition: .4s ease;
}

#copyright a {
    color:#fff;
    text-decoration: underline;
}

#copyright #social-media a i {
    color: #192440; 
    font-size: 1.2rem;
    line-height: 40px;
}

#copyright #social-media a:hover {
    background:  #0094d9;
}

#copyright #social-media a:hover i {
    color: #ffffff;
}

/********** RWD **********/
@media (max-width: 575px) {
    #banner h1 {
        font-size: 3.6rem;
    }
}