﻿:root {
    --bkg: #ffffff;
    --col-1: #172e3e;
    --col-2: #17e6ae
}

html {
    scroll-behavior: smooth;
}

/* mobile */
@media screen and (max-width: 900px) {
    .only-desktop {
        display: none
    }

    .only-mobile {
        display: block
    }


    .center-image {
        width:100%
    }
}

/* desktop */
@media screen and (min-width: 900px) {
    .only-desktop {
        display: block
    }

    .only-mobile {
        display: none
    }

}

.social-list li a img {
    width: 40px
}

.social-list li {
    padding-right: 10px
}

@charset "UTF-8";
/*!
 *
 * bttn.css - https://ganapativs.github.io/bttn.css
 * Version - 0.2.4
 * Demo: https://bttn.surge.sh
 *
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Ganapati V S (@ganapativs)
 *
 */
/* standalone - .bttn-unite */
.bttn-default {
    color: #fff;
}

.bttn-primary,
.bttn,
.bttn-lg,
.bttn-md,
.bttn-sm,
.bttn-xs {
    color: var(--col-2);
}

.bttn,
.bttn-lg,
.bttn-md,
.bttn-sm,
.bttn-xs {
    margin: 0;
    padding: 0;
    border-width: 0;
    border-color: transparent;
    background: transparent;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}

.bttn-lg {
    padding: 8px 15px;
    font-size: 24px;
    font-family: inherit;
}

.bttn-md {
    font-size: 20px;
    font-family: inherit;
    padding: 5px 12px;
}

.bttn-sm {
    padding: 4px 10px;
    font-size: 16px;
    font-family: inherit;
}

.bttn-xs {
    padding: 3px 8px;
    font-size: 12px;
    font-family: inherit;
}

.bttn-unite {
    margin: 0;
    padding: 0;
    border-width: 0;
    border-color: transparent;
    background: transparent;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    font-family: inherit;
    padding: 5px 12px;
    z-index: 0;
    overflow: hidden;
    border: 1px solid var(--col-2);
    border-radius: 100px;
    background: transparent;
    color: var(--col-2);
    -webkit-transition: color 0.3s cubic-bezier(0.02, 0.01, 0.47, 1), border-color 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
    transition: color 0.3s cubic-bezier(0.02, 0.01, 0.47, 1), border-color 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

    .bttn-unite:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background: #d6e3ff;
        content: '';
        opacity: 0;
        z-index: -1;
        -webkit-transition: opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
        -webkit-transform: translate3d(-110%, -10%, 0) skewX(-20deg);
        transform: translate3d(-110%, -10%, 0) skewX(-20deg);
    }

    .bttn-unite:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background: rgba(214,227,255,0.7);
        content: '';
        opacity: 0;
        z-index: -1;
        -webkit-transition: opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
        -webkit-transform: translate3d(110%, -10%, 0) skewX(-20deg);
        transform: translate3d(110%, -10%, 0) skewX(-20deg);
    }

    .bttn-unite:hover,
    .bttn-unite:focus {
        box-shadow: 0 1px 8px rgba(58,51,53,0.3);
        color: var(--col-2);
        -webkit-transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
        transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
    }

        .bttn-unite:hover:before,
        .bttn-unite:focus:before {
            opacity: 1;
            -webkit-transition: opacity 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
            transition: opacity 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
            transition: transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
            transition: transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
            -webkit-transform: translate3d(-50%, -10%, 0) skewX(-20deg);
            transform: translate3d(-50%, -10%, 0) skewX(-20deg);
        }

        .bttn-unite:hover:after,
        .bttn-unite:focus:after {
            opacity: 1;
            -webkit-transition: opacity 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
            transition: opacity 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
            transition: transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
            transition: transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.25s cubic-bezier(0.02, 0.01, 0.47, 1), -webkit-transform 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
            -webkit-transform: translate3d(50%, -10%, 0) skewX(-20deg);
            transform: translate3d(50%, -10%, 0) skewX(-20deg);
        }

    .bttn-unite.bttn-xs {
        padding: 3px 8px;
        font-size: 12px;
        font-family: inherit;
    }

        .bttn-unite.bttn-xs:hover,
        .bttn-unite.bttn-xs:focus {
            box-shadow: 0 1px 4px rgba(58,51,53,0.3);
        }

    .bttn-unite.bttn-sm {
        padding: 4px 10px;
        font-size: 16px;
        font-family: inherit;
    }

        .bttn-unite.bttn-sm:hover,
        .bttn-unite.bttn-sm:focus {
            box-shadow: 0 1px 6px rgba(58,51,53,0.3);
        }

    .bttn-unite.bttn-md {
        font-size: 20px;
        font-family: inherit;
        padding: 5px 12px;
    }

        .bttn-unite.bttn-md:hover,
        .bttn-unite.bttn-md:focus {
            box-shadow: 0 1px 8px rgba(58,51,53,0.3);
        }

    .bttn-unite.bttn-lg {
        padding: 8px 15px;
        font-size: 24px;
        font-family: inherit;
    }

        .bttn-unite.bttn-lg:hover,
        .bttn-unite.bttn-lg:focus {
            box-shadow: 0 1px 10px rgba(58,51,53,0.3);
        }

    .bttn-unite.bttn-default {
        border-color: var(--col-2);
        color: var(--col-2);
    }

        .bttn-unite.bttn-default:hover,
        .bttn-unite.bttn-default:focus {
            background: #d6e3ff;
            color: var(--col-2);
        }

        .bttn-unite.bttn-default:before {
            background: #a7c3ff;
        }

        .bttn-unite.bttn-default:after {
            background: #d6e3ff;
        }

    .bttn-unite.bttn-primary {
        border-color: var(--col-2);
        color: var(--bkg);
    }

        .bttn-unite.bttn-primary:hover,
        .bttn-unite.bttn-primary:focus {
            background: var(--col-2);
            color: var(--bkg);
        }

        .bttn-unite.bttn-primary:before {
            background: var(--col-2);
        }

        .bttn-unite.bttn-primary:after {
            background: var(--col-2);
        }

.space-out-list a {
    padding-left: 10px
}
/********** 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: #00FFAD;
    color: #192440;
}

    .cta-green:hover {
        color: #ffffff;
        background: #00e69c;
    }

.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;
    }

.cta-theme {
    border: 2px solid var(--col-2) !important;
    color: var(--col-2);
}

    .cta-theme:hover {
        color: #ffffff;
        background: var(--col-2);
    }

#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 **********/
#join {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

#join__premium {
    background: linear-gradient(135deg, #172E3E 0%, #0A5E9A 100%);
    color: #ffffff;
}

#join 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: var(--col-1);
    padding: 2rem 3rem;
}

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

        #copyright #social-media a i {
            color: var(--col-1);
            font-size: 1.2rem;
            line-height: 40px;
        }

        #copyright #social-media a:hover {
            background: var(--col-2);
        }

            #copyright #social-media a:hover i {
                color: #ffffff;
            }
/********** RWD **********/
@media (max-width: 575px) {
    #banner h1 {
        font-size: 3.6rem;
    }
}
