img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

html, body {
    background: #f5f5f5;
    font-family: 'Noto Sans', sans-serif;
}

html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }

strong {
    font-weight: 600;
}

    body {
        max-width: 1920px;
        margin: 0 auto;
    }

    .l-container {
        max-width: 1280px;
        margin: 0 auto;
    }

    @media only screen and (max-width : 1310px) {
        .l-container {
            padding: 0 15px;
        }
    }

    .l-header {
        background: rgba(255, 192, 0, 0.8);
        position: fixed;
        width: 100%;
        max-height: 90px;
        z-index: 10;
    }

    @media only screen and (max-width : 1000px) {
        .l-header {
            max-height: 70px;
        }
    }

    .l-header .l-inner {
        padding: 10px 0;
        display: flex;
        justify-content: space-between;
    }

    .l-header .branding {
        max-width: 200px;
    }

    @media only screen and (max-width : 1000px) {
        .l-header .branding {
            max-width: 150px;
        }
    }

    @media only screen and (max-width : 890px) {
        .l-header .branding {
            position: relative;
            z-index: 5;
        }
    }

    .l-header .navigation ul,
    .l-header .navigation ul li {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .l-header .navigation ul {
        display: flex;
    }

    @media only screen and (max-width : 890px) {
        .l-header .navigation ul {
            display: block;
            text-align: center;
        }
    }

    .l-header .navigation ul li { 
        margin: 0 25px;
    }

    @media only screen and (max-width : 1310px) {
        .l-header .navigation ul li { 
            margin: 0 15px;
        }
    }

    @media only screen and (max-width : 1000px) {
        .l-header .navigation ul li { 
            margin: 0 10px;
        }
    }

    @media only screen and (max-width : 890px) {
        .l-header .navigation ul li { 
            margin: 0;
        }
    }

    .l-header .navigation ul li a {
        font-weight: 600;
        text-decoration: none;
        color: #000;
        font-size: 16px;
    }

    @media only screen and (max-width : 1310px) {
        .l-header .navigation ul li a {
            font-size: 15px;
        }
    }

    @media only screen and (max-width : 1000px) {
        .l-header .navigation ul li a {
            font-size: 14px;
        }
    }

    @media only screen and (max-width : 890px) {
        .l-header .navigation ul li a { 
            font-size: 16px;
            font-weight: normal;
            border-bottom: 1px solid #ccc;
            padding: 15px;
            display: block;
        }
    }

    .l-header .navigation ul li a:hover {
        color: #fff;
    }

    @media only screen and (max-width : 890px) {
        .l-header .navigation ul li a:hover {
            color: #000;
        }
    }

    .l-header .navigation {
        margin-top: 25px;
    }

    @media only screen and (max-width : 1000px) {
        .l-header .navigation {
            margin-top: 15px;
        }
    }

    @media only screen and (min-width : 890px) {
        .l-header .navigation {
            display: block !important;
        }
    }

    @media only screen and (max-width : 890px) {
        .l-header .navigation {
            position: absolute;
            width: 100%;
            top: 70px;
            background: rgba(255,255,255,0.9);
            left: 0;
            margin: 0;
            display: none;
        }
    }

    .l-header .info {
        font-size: 15px;
        line-height: 1.4;
        text-align: right;
        margin-top: 25px;
    }

    @media only screen and (max-width : 1000px) {
        .l-header .info {
            margin-top: 15px;
            font-size: 14px;
        }
    }

    @media only screen and (max-width : 440px) {
        .l-header .info {
            display: none;
        }
    }

    .l-header .info span {
        display: inline-block;
        font-weight: bold;
    }

    .l-header .info span:before { 
        display: inline-block;
        content: '';
        height: 16px;
        width: 16px;
        background: url(img/phone-icon.png) center center no-repeat;
        position: relative;
        top: 3px;
        margin-right: 8px;
    }

    .l-header .mobile-trigger {
        display: none;
    }

    @media only screen and (max-width : 890px) {
        .l-header .mobile-trigger {
            display: block;
        }
    }

    .hero {
        background: url(img/hero.jpg);
        background-size: cover;
        background-position: center center;
        padding: 150px 0 100px;
        position: relative;
        border-bottom: 10px solid rgba(255, 192, 0, 1);
        
    }
    
    .hero:after {
        background: rgba(0,0,0,0.5);
        position: absolute;
        z-index: 2;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

        .hero h1 {
            margin: 0;
            position: relative;
            z-index: 3;
            color: #fff;
            font-size: 38px;
            line-height: 1.5;
            max-width: 700px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        @media only screen and (max-width : 1000px) {
            .hero h1 {
                font-size: 28px;
                max-width: 600px;
            }
        }

        @media only screen and (max-width : 890px) {
            .hero h1 {
                font-size: 22px;
                max-width: 500px;
            }
        }

        .hero h1 span {
            font-weight: 800;
        }

        .hero .button {
            display: inline-block;
            padding: 10px 40px;
            background: rgba(255, 192, 0, 1);
            font-weight: 600;
            border-radius: 5px;
            z-index: 3;
            position: relative;
            color: #000;
            text-decoration: none;
        }

        .hero .button:hover {
            background: rgba(255, 192, 0, 0.9);
        }

    .section {
        padding: 50px 0;
    }

        .section .l-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px
        }

        @media only screen and (max-width : 1310px) {
            .section .l-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px
            }
        }

        @media only screen and (max-width : 1000px) {
            .section .l-container {
                grid-template-columns: 1fr 1fr;
                gap: 30px
            }
        }

        @media only screen and (max-width : 890px) {
            .section .l-container {
                grid-template-columns: 1fr;
                gap: 20px
            }
        }

        .section .l-container p {
            font-size: 21px;
            line-height: 44px;
            margin-bottom: 40px;
        }

        @media only screen and (max-width : 1000px) {
            .section .l-container p {
                font-size: 17px;
                line-height: 34px;
                margin-bottom: 30px;
            }
        }

        @media only screen and (max-width : 890px) {
            .section .l-container p {
                font-size: 15px;
                line-height: 24px;
                margin-bottom: 20px;
            }
        }

        .section h2 {
            font-size: 38px;
        }

        @media only screen and (max-width : 1000px) {
            .section h2 {
                font-size: 30px;
            }
        }

        @media only screen and (max-width : 890px) {
            .section h2 {
                font-size: 24px;
            }
        }

        .section table {
            width: 100%;
            font-size: 18px;
        }

        @media only screen and (max-width : 1000px) {
            .section table {
                width: 100%;
                font-size: 16px;
            }
        }

        @media only screen and (max-width : 890px) {
            .section table {
                width: 100%;
                font-size: 14px;
            }
        }

        .section table tr th {
            border-bottom: 1px solid #ccc;
            font-size: 16px;
        }

        @media only screen and (max-width : 1000px) {
            .section table tr th {
                font-size: 16px;
            }
        }

        @media only screen and (max-width : 890px) {
            .section table tr th {
                font-size: 15px;
            }
        }

        .section table th,
        .section table td {
            padding: 15px 5px;
            font-size: 15px;
            text-align: center;
        }

        @media only screen and (max-width : 1000px) {
            .section table th,
            .section table td {
                padding: 12px 5px;
                font-size: 15px;
            }
        }

        @media only screen and (max-width : 890px) {
            .section table th,
            .section table td {
                padding: 10px 5px;
                font-size: 14px;
            }
        }

        .section table tr:nth-child(even) td {
            background: #efefef;
        }

        .section .right {

        }

        .section .right .inner {
            background: #fff;
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
        }
        
        .section .right .series {
            position: relative;
            
        }

        .section .right .series-first {
            
        }

        .section .right h3 {
            margin-top: 0;
            background: rgba(255, 192, 0, 1);
            padding: 15px;
            border-radius: 10px;
            position: absolute;
            box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
            top: 0;
            font-size: 15px;
            left: 0;
        }

    .divider {
        height: 25px;
        background: #ccc;
        margin: 25px 0 75px;
        width: 100%;
    }

    @media only screen and (max-width : 1000px) {
        .divider {
            height: 20px;
            margin: 20px 0 55px;
        }
    }

    @media only screen and (max-width : 890px) {
        .divider {
            height: 15px;
            margin: 20px 0 20px;
        }
    }

    .section02 {
        margin-bottom: 50px;
    }

        .section02 h2 {
            font-size: 38px;
        }

        @media only screen and (max-width : 1000px) {
            .section02 h2 {
                font-size: 30px;
            }
        }

        @media only screen and (max-width : 890px) {
            .section02 h2 {
                font-size: 24px;
            }
        }

        .section02 .l-container {
            display: grid;
            grid-template-columns: 3fr 3fr;
            gap: 40px
        }

        @media only screen and (max-width : 1000px) {
            .section02 .l-container {
                gap: 30px
            }
        }

        @media only screen and (max-width : 890px) {
            .section02 .l-container {
                grid-template-columns: 1fr;
                gap: 20px
            }
        }

        .section02 .left .image {
            background: #fff;
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
            margin-bottom: 25px;
            position: relative;
        }

        .section02 .left .image img {
            margin-bottom: 25px;
        }

        .section02 .left .image h3 {
            margin-top: 0;
            background: rgba(255, 192, 0, 1);
            padding: 15px;
            border-radius: 10px;
            position: absolute;
            box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
            top: -15px;
            font-size: 15px;
            right: -15px;
        }

        .section02 .right {
            padding-top: 107px;
        }

        @media only screen and (max-width : 1000px) {
            .section02 .right {
                padding-top: 50px;
            }
        }

        @media only screen and (max-width : 890px) {
            .section02 .right {
                padding-top: 20px;
            }
        }

        .section02 .right p {
            line-height: 1.8;
        }

        @media only screen and (max-width : 890px) {
            .section02 .right p {
                font-size: 14px;
            }
        }

        .section02 .right .features h4 {
            font-size: 34px;
            margin: 0 0 15px 0;
        }

        @media only screen and (max-width : 1000px) {
            .section02 .right .features h4 {
                font-size: 26px;
            }
        }

        @media only screen and (max-width : 890px) {
            .section02 .right .features h4 {
                font-size: 18px;
            }
        }

        .section02 .right .features ul,
        .section02 .right .features ul li {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }

        .section02 .right .features ul li {
            margin-bottom: 25px;
            border-left: 5px solid #ddd;
            font-size: 21px;
            padding: 10px 0 10px 15px;
        }

        @media only screen and (max-width : 1000px) {
            .section02 .right .features ul li {
                margin-bottom: 18px;
                font-size: 18px;
            }
        }

        @media only screen and (max-width : 890px) {
            .section02 .right .features ul li {
                margin-bottom: 10px;
                font-size: 15px;
            }
        }

        .section02 table {
            width: 100%;
            font-size: 18px;
        }

        .section02 table tr th {
            border-bottom: 1px solid #ccc;
            font-size: 18px;
        }

        .section02 table th,
        .section02 table td {
            padding: 15px 5px;
            font-size: 16px;
        }

        @media only screen and (max-width : 1000px) {
            .section02 table th,
            .section02 table td {
                padding: 12px 5px;
                font-size: 15px;
            }
        }

        @media only screen and (max-width : 890px) {
            .section02 table th,
            .section02 table td {
                padding: 10px 5px;
                font-size: 14px;
            }
        }

        .section02 table tr:nth-child(even) td {
            background: #efefef;
        }

    .manual {
        padding: 50px 0 50px;
        text-align: center;
        color: #fff;
        background: #222;
    }

    .manual h4 {
        font-size: 25px;
        margin: 0;
    }

    .manual .link {
        background: rgba(255, 192, 0, 1);
        border-radius: 5px;
        padding: 8px 15px;
        display: inline-flex;
        margin: 0 10px 10px 10px;
    }

    .manual .link img {
        display: inline-block;
        max-width: 22px;
        margin-right: 5px;
    }

    .manual .link a {
        color: #000;
        font-weight: 600;
        text-decoration: none;
    }

    .manual p {
        font-size: 14px;
        color: #aaa;
        max-width: 500px;
        margin: 5px auto 20px;
    }

    .contact {
        padding: 50px 0;
    }

    @media only screen and (max-width : 890px) {
        .contact {
            padding: 20px 0;
        }
    }

    .contact h2 {
        font-size: 38px;
    }

    .contact .contact-info img {
        max-width: 150px;
        margin-bottom: 15px;
    }

    .contact .l-container {
        display: grid;
        grid-template-columns: 3fr 3fr;
        gap: 40px;
        align-items: center;  
    }

    @media only screen and (max-width : 890px) {
        .contact .l-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    .contact .form-inner {
        background: #fff;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
    }

    .contact .form-item {
        margin-bottom: 15px;
    }

    .contact .form-item-center {
        text-align: center;
    }

    .contact .form-item label {
        font-weight: 600;
        font-size: 16px;
        display: block;
        margin-bottom: 5px;
    }

    .contact .form-item input[type=text],
    .contact .form-item input[type=email],
    .contact .form-item textarea {
        border: 1px solid #ccc;
        padding: 15px;
        font-size: 14px;
        width: 100%;
        color: #333;
    }

    .contact .form-item textarea { 
        height: 150px;
    }

    .contact .form-item .required {
        color: #cc0000;
    }

    .contact .form-item input[type=submit] {
        display: inline-block;
        padding: 10px 40px;
        background: rgba(255, 192, 0, 1);
        font-weight: 600;
        border-radius: 5px;
        color: #000;
        text-decoration: none;
        border: 0;
        cursor: pointer;pointer
    }

    @media only screen and (max-width : 890px) {
        .contact .contact-info {
            text-align: center;
            padding-top: 25px
        }
    }

    .footer {
        background: rgba(255, 192, 0, 1);
        margin-top: 50px;
        color: #000;
        font-size: 13px;
        padding: 15px 0;
        text-align: center;
    }


.stacktable { width: 100%; }
.st-head-row { padding-top: 1em; }
.st-head-row.st-head-row-main { font-size: 1.5em; padding-top: 0; }
.st-key { width: 49%; text-align: right; padding-right: 1%; }
.st-val { width: 49%; padding-left: 1%; }


/* RESPONSIVE EXAMPLE */
.stacktable.large-only { display: table; }
.stacktable.small-only { display: none; }

@media (max-width: 800px) {
  .stacktable.large-only { display: none; }
  .stacktable.small-only { display: table; }
}