/* Neue Haas Grotesk Display font family */

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/neuehaasdisplaylight-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasdisplaylight-webfont.woff') format('woff'),
        url('../fonts/neuehaasdisplaylight-webfont.svg#neue_haas_grotesk_display45Lt') format('svg');
    font-weight: 300;
    font-style: normal;

}




@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/neuehaasdisplaylightitalic-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasdisplaylightitalic-webfont.woff') format('woff'),
        url('../fonts/neuehaasdisplaylightitalic-webfont.svg#neue_haas_grotesk_displ46LtIt') format('svg');
    font-weight: 300;
    font-style: italic;

}



@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/neuehaasdisplaythin-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasdisplaythin-webfont.woff') format('woff'),
        url('../fonts/neuehaasdisplaythin-webfont.svg#neue_haas_grotesk_display35Th') format('svg');
    font-weight: 200;
    font-style: normal;

}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/neuehaasdisplayblack-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasdisplayblack-webfont.woff') format('woff'),
        url('../fonts/neuehaasdisplayblack-webfont.svg#neue_haas_grotesk_displa95Blk') format('svg');
    font-weight: 400;
    font-style: normal;

}




@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/neuehaasdisplayblackitalic-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasdisplayblackitalic-webfont.woff') format('woff'),
        url('../fonts/neuehaasdisplayblackitalic-webfont.svg#neue_haas_grotesk_disp96BlkIt') format('svg');
    font-weight: 400;
    font-style: italic;

}


@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/neuehaasdisplaymediu-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasdisplaymediu-webfont.woff') format('woff'),
        url('../fonts/neuehaasdisplaymediu-webfont.svg#neue_haas_grotesk_display65Md') format('svg');
    font-weight: 500;
    font-style: normal;

}




@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/neuehaasdisplaymediumitalic-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasdisplaymediumitalic-webfont.woff') format('woff'),
        url('../fonts/neuehaasdisplaymediumitalic-webfont.svg#neue_haas_grotesk_displ66MdIt') format('svg');
    font-weight: 500;
    font-style: italic;

}


@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/neuehaasdisplaybold-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasdisplaybold-webfont.woff') format('woff'),
        url('../fonts/neuehaasdisplaybold-webfont.svg#neue_haas_grotesk_display75Bd') format('svg');
    font-weight: 700;
    font-style: normal;

}




@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../fonts/neuehaasdisplaybolditalic-webfont.woff2') format('woff2'),
        url('../fonts/neuehaasdisplaybolditalic-webfont.woff') format('woff'),
        url('../fonts/neuehaasdisplaybolditalic-webfont.svg#neue_haas_grotesk_displ76BdIt') format('svg');
    font-weight: 700;
    font-style: italic;

}

:root {
    --primary-color: #E6FEC5;
    --secondary-color: #F8F8F8;
    --white: #ffffff;
    --black: #000000;
    --black-hover-color: #4f4f4f;
    --border-color: #E5E5E5;
    --input-text: #ACACAC;
    --form-border-color: #E6E6E6;
    --transition: all ease 0.5s;
    --main-title: 56px;
    --main-text: 24px;
    --font18: 18px;
    --font16: 16px;
    --themefont: 'Neue Haas Grotesk';
}

html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: var(--white);
    font-weight: 300;
    color: #444;
    font-family: var(--themefont);
    overflow: hidden;
    overflow-y: scroll;
}

p {
    padding: 0;
    margin: 0;
}

/* global */
.main-title {
    font-size: var(--main-title);
    line-height: 60px;
    font-weight: 300;
    color: var(--black);
}

.main-text {
    font-size: var(--main-text);
    line-height: 32px;
    font-weight: 300;
    color: var(--black);
}

button:focus {
    outline: none;
}

ul {
    padding: 0;
    list-style: none;
}

.bg-color {
    background-color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn-primary-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-primary-check)+.btn-primary:active {
    background-color: var(--black-hover-color);
    border-color: var(--black-hover-color);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
    background-color: var(--black-hover-color);
    border-color: var(--black-hover-color);
    color: var(--white);
    box-shadow: unset;
}

.btn {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 2px;
    transition: var(--transition);
}

/* header */

#header {
    transition: var(--transition);
    z-index: 997;
    padding: 23px 48px;
}

#header.header-scrolled,
#header.header-pages {
    padding: 15px 48px;
    background: var(--white);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 20%);
}

#header .logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-white {
    display: none;
}

.header-scrolled .logo-white {
    display: block;
}

.header-scrolled .logo-main {
    display: none;
}

#header .logo img {
    padding: 0;
    height: 52px;
    max-width: 217px;
    width: 100%;
    object-fit: contain;
}


.main-pages {
    margin-top: 60px;
}

/* intro section */
.intro-top {
    padding-top: 120px;
}

#intro {
    width: 100%;
    position: relative;
    background-size: cover;
    height: 777px;
    background: linear-gradient(180deg, var(--white) 60%, var(--white) 75%, var(--primary-color) 92%);
    position: relative;
}

.intro-text h2 {
    color: var(--black);
    font-size: 92px;
    font-weight: 300;
    line-height: 96px;
    max-width: 952px;
    width: 100%;
    margin: 0 auto 39px;
}

.intro-text p {
    max-width: 572px;
    width: 100%;
    margin: 0 auto 39px;
}

/* top to bottom */
.top-to-bottom {
    background: var(--black);
    color: var(--white);
    width: 62px;
    height: 62px;
    text-align: center;
    line-height: 1;
    border: 5px solid var(--graythird);
    font-size: 16px;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 11;
}

.top-to-bottom:hover {
    opacity: 0.7;
    animation: none;
}

.top-to-bottom img {
    width: 15px;
}

/* banner section */
#banner {
    width: 100%;
    background-size: cover;
    height: 700px;
    background-image: url('../images/banner.png');
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

#banner:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-text {
    position: relative;
    z-index: 1;
    max-width: 972px;
    width: 100%;
}

.banner-text h4 {
    font-size: 46px;
    line-height: 50px;
    color: var(--white);
    font-weight: 300;
}

/* package section */
.package-container {
    padding-top: 161px;
    padding-bottom: 184px;
}

.leftpackage-img img {
    max-width: 615px;
    width: 100%;
    height: 712px;
    object-fit: contain;
}

.package-detail {
    max-width: 526px;
    width: 100%;
}

.package-detail h4 {
    margin-bottom: 20px;
}

.package-detail .package-desc {
    margin-bottom: 66px;
}

.package-detail .package-desc span {
    background-color: var(--primary-color);
    font-weight: 500;
}

.package-list li {
    border-bottom: 1px solid var(--border-color);
    padding: 34px 0 32px;
}

.package-list li:last-child {
    border-bottom: unset;
    padding-bottom: 0;
}

.package-list li:first-child {
    padding-top: 0;
}

.package-list .title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    color: var(--black);
}

.package-list .cmn-text {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: var(--black);
    padding-right: 230px;
}

/* sign-up section */
.signup-section {
    padding-bottom: 215px;
}

.signup-text h4 {
    margin-bottom: 20px;
}


/* form group  */
.form-label {
    font-size: var(--font18);
    line-height: 17px;
    font-weight: 500;
    color: var(--black);
}

.form-control {
    font-size: var(--font16);
    line-height: 17px;
    font-weight: 300;
    color: var(--black);
    border-color: var(--form-border-color);
    border-radius: 4px;
    height: 45px;
    outline: unset;
}

.form-control:hover,
.form-control:active,
.form-control:focus {
    border-color: var(--black-hover-color);
    box-shadow: unset;
}

textarea.form-control {
    min-height: 110px;
}

.form-control::placeholder {
    color: var(--input-text);
}

/* sitemap section */
.sitemap-img img {
    width: 100%;
    height: 1099px;
    object-fit: cover;
}

.sitemap-detail {
    max-width: 505px;
    width: 100%;
}

.sitemap-detail h4 {
    margin-bottom: 20px;
}

.sitemap-detail .sitemap-desc {
    margin-bottom: 66px;
}

.sitemap-detail .sitemap-desc span {
    background-color: var(--primary-color);
    font-weight: 500;
}

.sitemap-list {
    width: 389px;
}

.sitemap-list li {
    border-bottom: 1px solid var(--border-color);
    padding: 34px 0 32px;
}

.sitemap-list li:last-child {
    border-bottom: unset;
    padding-bottom: 0;
}

.sitemap-list li:first-child {
    padding-top: 0;
}

.sitemap-list .title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    color: var(--black);
}

.sitemap-list .cmn-text {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: var(--black);
    padding-right: 80px;
}

/* revolution section */
.revolution-top {
    padding-top: 120px;
}

#revolution {
    width: 100%;
    position: relative;
    background-size: cover;
    height: 1113px;
    background: linear-gradient(180deg, var(--secondary-color) 50%, var(--secondary-color) 80%, var(--primary-color) 100%);
    position: relative;
}

.revolution-text {
    max-width: 762px;
    width: 100%;
    margin-bottom: 48px;
}

.revolution-text .main-title {
    margin-bottom: 30px;
}

.revolution-image img {
    max-width: 946px;
    width: 100%;
    height: 552px;
    object-fit: contain;
}

/* footer */
.footer-container {
    padding: 20px 48px 30px;
}

.footer-logo img {
    max-width: 194px;
    width: 100%;
    height: 30px;
    object-fit: contain;
}

#footer {
    background: var(--black);
    font-size: 16px;
    opacity: 1;
}

.footer-right-text .f-text {
    font-size: 14px;
    line-height: 18px;
    font-weight: 300;
    color: var(--white);
    padding-left: 15px;
}

.footer-right-text li:first-child .f-text {
    padding-left: 0;
}

.footer-right-text li {
    position: relative;
}

.footer-right-text li:after {
    content: '';
    height: 14px;
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    border-right: 2px solid var(--white);
}

.footer-right-text li:last-child:after {
    border-right: unset;
}

/*  btn animation */
.btn-primary {
    min-width: 162px;
    height: 45px;
    color: var(--white);
    padding: 5px 10px;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 5px;
    border: none;
    background: var(--black);
    z-index: 1;
}

.btn-primary:disabled {
    background-color: var(--black-hover-color) !important;
    border-color: var(--black-hover-color) !important;
    color: var(--white) !important;
}

.btn-primary:hover:after {
    width: 100%;
    left: 0;
}

.btn-primary:after {
    border-radius: 5px;
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    z-index: -1;
    /* box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .2), 7px 7px 20px 0px rgba(0, 0, 0, 0), 4px 4px 5px 0px rgba(0, 0, 0, 0); */
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .7), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    transition: var(--transition);
    background-color: var(--black-hover-color);
    right: 0;
}

.btn-primary:active {
    top: 2px;
}

/* top to bottom animation */

.bounce2 {
    animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}


/* media query */
@media (min-width: 1300px) {
    .container {
        max-width: 1140px;
    }
}


@media (min-width: 1450px) {
    .container {
        max-width: 1366px;
    }
}

/* laptop device */
@media (max-width: 1440px) {

    /* global */
    .btn {
        font-size: 17px;
        line-height: 18px;
    }

    /* header */
    #header {
        padding: 18px 38px;
    }

    #header.header-scrolled,
    #header.header-pages {
        padding: 12px 38px;
    }

    #header .logo img {
        height: 48px;
        max-width: 207px;
    }

    /* intro section */
    #intro {
        height: 700px;
    }

    .intro-top {
        padding-top: 100px;
    }

    .intro-text h2 {
        font-size: 72px;
        font-weight: 300;
        line-height: 76px;
        margin: 0 auto 30px;
    }

    .intro-text p {
        max-width: 512px;
        margin: 0 auto 30px;
    }

    .main-text {
        font-size: 20px;
        line-height: 28px;
    }

    /* banner section */
    #banner {
        height: 600px;
    }

    .banner-text {
        max-width: 882px;
    }

    .banner-text h4 {
        font-size: 40px;
        line-height: 44px;
    }

    /* package section */
    .package-detail {
        max-width: 437px;
    }

    .package-container {
        padding-top: 141px;
        padding-bottom: 164px;
    }

    .leftpackage-img img {
        max-width: 575px;
        height: 672px;
    }

    .main-title {
        font-size: 50px;
        line-height: 50px;
    }

    .package-detail .package-desc {
        margin-bottom: 56px;
    }

    .package-list .title {
        font-size: 20px;
        line-height: 28px;
    }

    .package-list .cmn-text {
        font-size: 16px;
        line-height: 24px;
        padding-right: 180px;
    }

    /* sign-up section */
    .form-label {
        font-size: 17px;
    }

    .signup-section {
        padding-bottom: 175px;
    }

    /* sitemap  */
    .sitemap-detail {
        max-width: 415px;
    }

    .sitemap-img img {
        height: 860px;
    }

    .sitemap-list .title {
        font-size: 20px;
        line-height: 28px;
    }

    .sitemap-list .cmn-text {
        font-size: 16px;
        line-height: 24px;
        padding-right: 120px;
    }

    .sitemap-detail .sitemap-desc {
        margin-bottom: 56px;
    }

    /* revolution */
    #revolution {
        height: 933px;
    }

    .revolution-text .main-title {
        margin-bottom: 20px;
    }

    .revolution-image img {
        max-width: 906px;
        height: 512px;
    }

    /* footer */
    .footer-logo img {
        max-width: 184px;
        height: 28px;
    }

    .footer-right-text .f-text {
        font-size: 13px;
        line-height: 16px;
    }

    .footer-container {
        padding: 18px 38px 28px;
    }
}

@media (max-width: 1200px) {
    .sitemap-detail {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {

    /* global */
    .btn-primary {
        min-width: 152px;
        height: 40px;
    }

    /* intro */
    #intro {
        height: 600px;
    }

    .intro-text h2 {
        font-size: 52px;
        line-height: 56px;
        margin: 0 auto 20px;
    }

    .intro-text p {
        max-width: 402px;
        margin: 0 auto 20px;
    }

    .main-text {
        font-size: 16px;
        line-height: 24px;
    }

    /* banner */
    #banner {
        height: 500px;
    }

    .banner-text h4 {
        font-size: 30px;
        line-height: 34px;
    }

    .main-title {
        font-size: 40px;
        line-height: 40px;
    }

    /* package */
    .package-container {
        padding-top: 100px;
        padding-bottom: 124px;
    }

    .banner-text {
        max-width: 652px;
    }

    .package-detail {
        max-width: 100%;
    }

    .package-detail .package-desc {
        margin-bottom: 46px;
    }

    .package-list li {
        padding: 24px 0 22px;
    }

    .leftpackage-img img {
        max-width: 475px;
        height: 572px;
    }

    .leftpackage-img {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    /* sign-up */
    .signup-section {
        padding-bottom: 125px;
    }

    /* sitemap */
    .sitemap-img img {
        height: 660px;
    }

    .sitemap-detail {
        padding: 0 30px;
        max-width: 100%;
    }

    .sitemap-list li {
        padding: 24px 0 22px;
    }

    /* revolution */
    #revolution {
        height: 733px;
    }

    .revolution-text {
        max-width: 492px;
        margin-bottom: 38px;
    }

    .revolution-image img {
        max-width: 806px;
        height: 412px;
    }

}

/* mobile device */
@media (max-width: 767px) {

    /* global */
    .container {
        padding: 0 28px;
    }

    .main-title {
        font-size: 42px;
        line-height: 48px;
        margin-bottom: 28px;
    }

    .main-text {
        font-size: 20px;
        line-height: 28px;
        font-weight: 300;
        margin-bottom: 53px;
        text-align: left;
    }

    /* header */
    #header {
        padding: 8px 30px;
    }

    #header .logo img {
        height: 42px;
        max-width: 176px;
    }

    #header.header-scrolled,
    #header.header-pages {
        padding: 6px 30px;
    }

    /* intro */
    .intro-top {
        padding-top: 0;
    }

    #intro {
        height: 680px;
    }

    .intro-text h2 {
        font-size: 52px;
        line-height: 56px;
        margin-bottom: 22px;
    }

    .intro-text p {
        max-width: 357px;
        width: 100%;
        margin: 0 auto 33px;
    }

    /* banner section */
    #banner {
        height: 550px;
    }

    .banner-text h4 {
        font-size: 32PX;
        line-height: 38px;
    }

    /* package section */
    .package-container {
        padding-top: 84px;
        padding-bottom: 87px;
    }

    .package-list .title {
        font-size: 18px;
        line-height: 26px;
    }

    .package-list li {
        padding: 22px 0 16px;
    }

    .package-list {
        width: 100%;
    }

    .package-list .cmn-text {
        padding-right: 40px;
    }

    /*  */
    .leftpackage-img img {
        max-width: 330px;
        width: 100%;
        height: 383px;
    }

    .leftpackage-img {
        margin-top: 47px;
    }

    /* sign-up section */
    .signup-desc {
        margin-bottom: 47px;
    }

    .form-label {
        font-size: var(--font16);
    }

    .form-control {
        height: 50px;
    }

    .signup-section {
        padding-bottom: 118px;
    }

    /* sitemap */
    .sitemap-list {
        width: 100%;
    }

    .sitemap-list li {
        padding: 22px 0 16px;
    }

    .sitemap-img img {
        height: 621px;
    }

    .sitemap-list .cmn-text {
        padding-right: 10px;
    }

    .sitemap-detail {
        max-width: 100%;
        padding: 76px 30px 118px;
    }

    /* revolution */
    .revolution-text {
        max-width: 100%;
        margin-bottom: 51px;
        padding: 0 28px;
    }

    .revolution-image img {
        max-width: 615px;
        height: 367px;
    }

    #revolution {
        background-size: cover;
        height: 869px;
    }

    .revolution-text .main-text {
        margin-bottom: 0;
    }

    /* footer */
    .footer-container {
        padding: 34px 30px 22px;
    }
}