/********** common setting **********/
h2 {
    font-size: 2.8rem !important;
    font-weight: 700;
}

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

a,
button {
    cursor: pointer;
}

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

.atlas-cta {
    border-radius: 22px !important;
    padding: 12px 30px !important;
    font-weight: 700;
    transition: .3s ease-in-out !important;
}

.atlas-cta:hover {
    text-decoration: none;
    transform: translateY(-5px);
}

.atlas-cta-wide {
    width: 100%;
}

.cta-green {
    background: #f01430;
    color: #fff;
    text-transform: uppercase;
}

.cta-green:hover {
    color: #ffffff;
    background: #9f081b;
}

.cta-blue {
    background: #192440;
    color: #ffffff;
}

.cta-blue:hover {
    color: #ffffff;
    background: #121a2e;
}

.cta-ghost {
    border: 2px solid #192440 !important;
    color: #192440;
}

.cta-ghost:hover {
    color: #ffffff;
    background: #121a2e;
}

.gray {
    filter: hue-rotate(70deg) grayscale(0.8);
}

#banner {
    position: relative;
    background-image: url(../img/banner.jpg);
    background-size: cover;
    background-position: bottom;
}
#banner .text-md-left{
    z-index: 1;
}

#banner:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: rgba(0, 11, 28, 0.84);
}

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

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

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

.feature .who {
    transform: scale(-1, 1);
    filter: hue-rotate(341deg) grayscale(0.5);
    max-width: calc(100% + 100px);
    margin-right: -100px !important;
    width: 600px;
}

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

#feature-last {
    background: #202e44;
}

/********** 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 {
    position: relative;
    background-size: cover;
    background-image: url(../img/contact.jpg);
    background-position: bottom;
    color: white;
}
#contact .container{
    z-index: 1;
}
#contact:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: rgba(0, 11, 28, 0.84);
}

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

#contact form {
    color: #ffffff;
}
#contact a {
    color: #ffffff;
}

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

/********** copyright **********/
#copyright {
    background: #161b26;
    padding: 0.5rem 3rem;
}

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

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

#copyright #social-media a:hover {
    background: #202e44;
}

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

#copyright .links a {
    color: #f01430;
    margin-left: 15px;
}

/********** RWD **********/
@media (max-width: 1080px) {

    .feature .who {
        max-width: calc(100%);
        margin-right: 0 !important;
        width: 100;
    }

}
@media (max-width: 768px) {
    #copyright .links {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    #copyright .links a {
        margin-left: 0px;
        margin-top: 6px;
    }
}
@media (max-width: 575px) {
    #banner h1 {
        font-size: 3.6rem;
    }

    #banner header img {
        max-width: 200px;
        margin: auto;
    }
}

#cookiePopup {
    background-color: #ffffff;
    position: fixed;
    left: 30px;
    bottom: 30px;
    font-size: 14px;
    width: 70vw;
    max-width: 42.85em;
    box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
    font-family: "Poppins", sans-serif;
    text-align: justify;
    line-height: 1.8em;
    padding: 1em 1em;
    border-radius: 6px;
    transition: all 0.5s ease-in;
    z-index: 33;
}
#cookiePopup img {
    display: block;
    width: 3.75em;
    transform: translateZ(0);
    position: relative;
    margin: auto;
}
#cookiePopup p {
    text-align: center;
    margin: 1.4em 0;
}
.cookie-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#cookiePopup button {
    margin-left: 10px;
    text-transform: inherit;
    width: 30%;
}
#cookiePopup .button-dec {
    width: 30%;
    border: 1px solid #f01430;
    color: #f01430;
    background: white;
}
#cookiePopup a {
    color: #f01430;
}
.hide {
    visibility: hidden;
    bottom: 0;
    right: 2em;
}
.show {
    visibility: visible;
    bottom: 2em;
    right: 2em;
}
@media only screen and (max-width: 37.5em) {
    #cookiePopup {
        width: 100%;
    }
    .hide {
        bottom: 2em;
        right: 0;
    }
    .show {
        right: 0;
        bottom: 0;
    }
}