@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);
/********** common setting **********/
body {
    overflow-x: hidden;
}
h2 {
    font-size: 2.8rem !important;
    font-weight: 700;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  display: inline;
}
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;
}

#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%, #d4f8fa 0);
}

#feature-last {
    background: #d4f8fa;
}

/********** 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: #192440;
    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: #192440;
    font-size: 1.2rem;
    line-height: 40px;
}

#copyright #social-media a:hover {
    background: #00FFAD;
}

#copyright #social-media a:hover i {
    color: #ffffff;
}
/********** Menu **********/
ul.main-menu li {
    margin-right: 20px;
}
#toggle {
  width: 28px;
  height: 30px;
  margin: auto 0px auto auto;
  cursor: pointer;
}
#toggle div {
  width: 100%;
  height: 5px;
  background: white;
  margin: 4px auto;
  transition: all 0.3s;
  backface-visibility: hidden;
}
#toggle.on .one {
  transform: rotate(45deg) translate(5px, 5px);
}
#toggle.on .two {
  opacity: 0;
}
#toggle.on .three {
  transform: rotate(-45deg) translate(7px, -8px);
}
/********** Social Media Icons css **********/
.social-icons {
    padding: 0;
    list-style: none;
    margin: 1em;
}
.social-icons li {
    display: inline-block;
    margin: 0.15em;
    position: relative;
    font-size: 1.2em;
}
.social-icons a {
    display: inline-block;
}
.social-icons a:before {
    transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    content: " ";
    width: 60px;
    height: 60px;
    border-radius: 10%;
    display: block;
    background: linear-gradient(45deg, #192440, #0067a6);
    transition: all 265ms ease-out;
}
.social-icons a:hover:before {
    transform: rotate(
-180deg
);
    -ms-transform: rotate(-180deg);
    -webkit-transform: scale(-180deg);
    border-radius: 100%;
}
.social-icons i {
    color: #fff;
    position: absolute;
    top: 21px;
    left: 21px;
    transition: all 265ms ease-out;
}
/********** RWD **********/
@media (min-width: 992px) {
    #toggle {
        display: none;
    }    
}
@media (max-width: 991px) {
    /********** Mobile Menu **********/
    #banner {
        padding-top: 40px;
    }
    #banner header img {
        max-width: 60px;
    }
    nav.mobile-nav {
        position: absolute;
        width: 100%;
        z-index: 1;
        top: 100%;
        right: 0px;
        left: 0px;
        display: none;
        padding: 0px 15px;
    }
    nav.mobile-nav ul.main-menu {
        background: #fff;
        display: flex;
        flex-direction: column;
        text-align: left !important;
        margin: 0px;
    }
    nav.mobile-nav ul li a {
        color: #333 !important;
        display: block;
        padding: 5px 10px;
    }
    nav.mobile-nav ul li {
        margin-right: 0px;
    }
    #banner header {
        overflow: visible;
    }
    nav.mobile-nav ul li a:hover {
        background: #f5f5f5;
    }
    header > .row {
        position: relative;
    }
    header > .row [class*="col-"] {
        position: static;
    }
    h3.logo-text {
        font-size: 20px;
        padding-left: 5px;
    }
}
@media (max-width: 575px) {
    #banner h1 {
        font-size: 3.6rem;
    }
    #banner header img {
        max-width: 50px;
    }
    h3.logo-text {
        font-size: 15px;
    }
}
