html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    max-width: 100%;
    font-size: 17px;
    font-weight: normal;
    color: #666;
    margin: 0;
    padding: 0;
    line-height: normal;
    background: #fff;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

a:hover {
    opacity: 0.5;
}

a.btn {
    background: #1DBFD6;
    color: #fff;
    transition: all 0.3s ease 0s;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: bold;
}

a:hover.btn, 
a.btn:hover {
    opacity: 1;
}

.noHover {
    pointer-events: none;
}

.header {
    width: 100%;
    padding: 15px 0;
    background: #fff;
    border-bottom: solid 1px #ddd;
}

.top-banner {
    width: 100%;
    height: 680px;
    background-image: url("../images/top_banner.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.top-banner .row {
    height: 680px;
}

.top-banner h3 {
    color: #666;
    font-size: 29px;
    font-weight: bolder;
}

.top-banner h4 {
    color: #96CA5D;
    font-size: 60px;
    font-weight: bolder;
}

.mobile-image-area {
    width: 100%;
    height: 100%;
    position: relative;
}

.mobile-image-area img {
    width: 420px;
}

.mobile-image-area .mobile-01 {
    position: absolute;
    left: -50px;
    bottom: -80px;
    z-index: 10;
    animation-name: m01-animation;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
@keyframes m01-animation {
    0%   { bottom: -80px; }
    50%  { bottom: -40px; }
    100% { bottom: -80px; }
}

.mobile-image-area .mobile-02 {
    position: absolute;
    left: 200px;
    bottom: -180px;
    z-index: 20;
    animation-name: m02-animation;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}
@keyframes m02-animation {
    0%   { bottom: -160px; }
    50%  { bottom: -180px; }
    100% { bottom: -160px; }
}

.text-animation-01 {
    animation-name: text-01-animation;
    animation-duration: 0.15s;
    animation-iteration-count: 1;
}
@keyframes text-01-animation {
    0%   { font-size: 5px; opacity: 0; }
    100%   { font-size: 29px; opacity: 1; }
}

.text-animation-02 {
    animation-name: text-02-animation;
    animation-duration: 0.30s;
    animation-iteration-count: 1;
}
@keyframes text-02-animation {
    0%   { font-size: 5px; opacity: 0; }
    100%   { font-size: 29px; opacity: 1; }
}

.text-animation-03 {
    animation-name: text-03-animation;
    animation-duration: 0.45s;
    animation-iteration-count: 1;
}
@keyframes text-03-animation {
    0%   { font-size: 5px; opacity: 0; }
    100%   { font-size: 29px; opacity: 1; }
}

.text-animation-04 {
    animation-name: text-04-animation;
    animation-duration: 0.60s;
    animation-iteration-count: 1;
}
@keyframes text-04-animation {
    0%   { font-size: 5px; opacity: 0; }
    100%   { font-size: 29px; opacity: 1; }
}

.text-animation-05 {
    animation-name: text-05-animation;
    animation-duration: 0.75s;
    animation-iteration-count: 1;
}
@keyframes text-05-animation {
    0%   { font-size: 5px; opacity: 0; }
    100%   { font-size: 29px; opacity: 1; }
}

.text-animation-06 {
    animation-name: text-06-animation;
    animation-duration: 1.0s;
    animation-iteration-count: 1;
}
@keyframes text-06-animation {
    0%   { font-size: 5px; opacity: 0; }
    100%   { font-size: 29px; opacity: 1; }
}

.text-animation-07 {
    animation-name: text-07-animation;
    animation-duration: 1.15s;
    animation-iteration-count: 1;
}
@keyframes text-07-animation {
    0%   { font-size: 5px; opacity: 0; }
    100%   { font-size: 29px; opacity: 1; }
}

.text-animation-08 {
    animation-name: text-08-animation;
    animation-duration: 1.30s;
    animation-iteration-count: 1;
}
@keyframes text-08-animation {
    0%   { font-size: 5px; opacity: 0; }
    100%   { font-size: 29px; opacity: 1; }
}

.appointment-area {
    padding: 60px 0;
    background: #F0FDFF;
    text-align: center;
}

.appointment-area h3 {
    font-size: 29px;
    font-weight: bolder;
    color: #1FBFD6;
}

.appointment-area h5 {
    margin-top: 25px;
    font-weight: bolder;
}

.blue-line {
    width: 60px;
    height: 4px;
    background: #1FBFD6;
    display: inline-block;
    margin: 0 0 8px 0;
    border-radius: 5px;
}

.more-features {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.more-features h3 {
    font-size: 29px;
    font-weight: bolder;
    color: #96CA5D;
}

.more-features h5 {
    margin-top: 25px;
    color: #666;
    font-weight: bolder;
}

.green-line {
    width: 60px;
    height: 4px;
    background: #96CA5D;
    display: inline-block;
    margin: 0 0 8px 0;
    border-radius: 5px;
}

.contactus-area {
    padding: 60px 0;
    background: #e5e5e5;
    text-align: center;
}

.contactus-area h3 {
    font-size: 29px;
    font-weight: bolder;
    color: #666;
}

.contactus-area h5 {
    font-weight: bolder;
}

.contactus-area a {
    color: #666;
    text-decoration: underline;
}

.gray-line {
    width: 60px;
    height: 4px;
    background: #ccc;
    display: inline-block;
    margin: 0 0 8px 0;
    border-radius: 5px;
}

.cs-card img {
    margin-bottom: 25px;
}

.footer {
    background: #000;
    color: #fff;
    font-size: 15px;
    padding: 10px 0;
}

.cs-card-box {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    border: solid 10px #e5e5e5;
}