/*--Author: W3Layouts
	Author URL: http://w3layouts.com
	License: Creative Commons Attribution 3.0 Unported
	License URL: http://creativecommons.org/licenses/by/3.0/
 --*/ ::selection {
    background: #FFDD3E;
    color: #264D66;
}
::-moz-selection {
    background: #FFDD3E;
    color: #264D66;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
}
body a, .slider-info a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-decoration: none;
    outline: none;
    cursor: pointer !important;
}
button, .btn {
    cursor: pointer !important;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'Lato', sans-serif;
}
p {
    margin: 0;
    color: #264D66;
    font-size: 16px;
    line-height: 1.8em;
    letter-spacing: 1px;
}
ul {
    margin: 0;
    padding: 0;
}
ul {
    list-style-type: none;
}
body a:hover {
    text-decoration: none;
}
body a:focus {
    outline: none;
    text-decoration: none;
}
/*-- bottom-to-top --*/
.side_top {
    padding: 2em 1em;
}
nav ul li {
    padding: 0.5rem;
}
/*-- header --*/
/* CSS Document */
header {
    position: relative;
    z-index: 9;
    width: 100%;
}
.toggle, [id^=drop] {
    display: none;
}
/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}
#logo a {
    float: left;
    display: initial;
    margin: 0;
    color: #fff;
}
#logo a span {
    color: #fff;
}
nav.mnu {
    text-align: center;
}
/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */
nav:after {
    content: "";
    display: table;
    clear: both;
}
/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}
/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: block;
}
/* Styling the links */
nav a {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 16px;
}
nav ul li ul li:hover {
    background: #f8f9fa;
}
/* Background color change on Hover */
nav a:hover {
    color: #F3FF00;
}
.menu li.active a {
    color: #fff;
    opacity: 1;
}
/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 30px;
    background: #fff;
    padding: 10px;
}
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}
/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}
nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
}
/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}
/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after {
    content: '';
}

.chevron-ctr {
  left: 0;
  right: 0;
  margin: 0 auto 4rem;
  width: 24px;
  height: 24px;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: red;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  color: red;
  display: block;
  margin-left: -30px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

/* Media Queries
--------------------------------------------- */
@media all and (max-width: 768px) {
    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }
    nav {
        margin: 0;
    }
  .menu li{
    margin-bottom: 1rem;
  }
    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a, .menu {
        display: none;
    }
    /* Stylinf the toggle lable */
    .toggle {
        width: 100%;
        display: block;
        padding: 0.2rem;
        font-size: 15px;
        text-decoration: none;
        border: none;
        float: right;
        background: #ffc107;
        color: #273340 !important;
        border-radius: 5px;
        border-bottom: 3px #1F73A5 solid;
        cursor: pointer;
    }
    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        width: 80%;
        padding: 5px;
        font-weight: normal;
        font-size: 16px;
        letter-spacing: 1px;
    }
    .toggle:hover {
        color: #333;
        background: #FFF700;
    }
    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
        background: #4A9ACA;
        padding: 15px 0;
        text-align: center;
        width: 100%;
    }
    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 5px 0;
    }
    nav ul ul .toggle, nav ul ul a {
        padding: 0 40px;
    }
    nav ul ul ul a {
        padding: 0 80px;
    }
    nav a:hover, nav ul ul ul a {
        background-color: transparent;
    }
    nav ul li ul li .toggle, nav ul ul a, nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 16px;
    }
    nav ul li ul li .toggle, nav ul ul a {
        background-color: #212121;
    }
    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }
    /* Hide menus on hover */
    nav ul ul li:hover > ul, nav ul li:hover > ul {
        display: none;
    }
    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
        padding: 0;
    }
    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */
    }
    nav ul ul li a {
        color: #fff;
        font-size: 0.85em;
    }
    nav ul li {
        display: inline-block;
        width: 100%;
    }
}
@media all and (max-width: 330px) {}
@media all and (max-width: 480px) {
    .sidenav {
        overflow: hidden;
        padding-top: 0px;
    }
}
@media screen and (min-width: 480px) {
    .pc-br {
        display: block;
    }
    .sp-br {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .pc-br {
        display: none;
    }
    .sp-br {
        display: block;
    }
}
.sidenav {
    height: 100%;
    width: 320px;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background: #4a9aca;
    overflow-x: hidden;
    padding-top: 20px;
}
.serv_link {
    color: #000;
    font-weight: 600;
}
.main {
    margin-right: 320px;
}
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
}
.sidenav img {
    background: #FFF;
    border-radius: 3rem;
    padding: 0.5rem 1.2rem 0.4rem;
    margin: 0 auto;
}
@media screen and (max-width: 480px) {
    .sidenav img {
        padding: 0.5rem 0.5rem 0.4rem;
    }
    .top_hd img {
        width: 35%;
    }
}
p.top_hdp {
    font-style: italic;
    color: #FFF;
}
.banner-text-w3ls {
    /*background: url(../images/hero-visual.webp) no-repeat bottom;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    padding: 12vw 0;*/
}
@media screen and (max-width: 480px) {
    .banner-text-w3ls {
        background: url(../images/banner1_sp.png) no-repeat bottom center;
        background-size: cover;
    }
}
.banner-text-w3ls h2 {
    color: #264d66;
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: capitalize;
}
.banner-text-w3ls h2 span {
    color: #f568a0;
    font-size: 130%;
}
p.banp.mt-3 {
    font-size: 16px;
    letter-spacing: 2px;
    color: #2f6180;
    font-weight: bold;
    width: 70%;
}
.agile-link-bnr {
    padding: 10px 40px;
    color: #ff8c1a;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    background: none;
    border: 1px solid #ff8c1a;
    transition: 0.2s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    opacity: 0.7;
}
.agile-link-bnr:hover {
    border: 1px solid #fff;
    background: none;
    color: #fff;
    opacity: 1;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
section.services {
    padding: 5em 12em;
    text-align: left;
    border-top: solid 6px #f4f4f4;
}
ul.list-unstyled li {
    width: 49%;
    display: inline-block;
    margin: 1em 0;
}
.services h6 {
    font-size: 1.1em;
    line-height: 2em;
    letter-spacing: 0.075em;
    color: #264D66;
    font-weight: 400;
}
.services ul li span {
    font-size: 16px;
    color: #fff;
}
.services li span {
    background: #4a9aca;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}
.main_wrap, .support, .news {
    padding: 5em 12em;
    background: #fff;
    border-top: solid 6px #f4f4f4;
}
.main_wrap h5 span {
    display: block;
    font-size: 90%;
    line-height: 1.4;
    color: #4A9ACA;
}
.support img, .news img {
    border-radius: 5px;
}
.newsgrid1 {
    padding: 0;
}
.newsgrid2 {
    padding: 2em 5em;
    background: #1d89e4;
}
.gri2 {
    background: #42a5f6;
}
.gri3 {
    background: #1564c0;
}
.support p, .news p {
    color: #264D66;
    letter-spacing: 1px;
    font-size: 16px;
}
.support h5, .main_wrap h5 {
    letter-spacing: 1px;
    color: #264D66;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    font-size: 1.1em;
    text-align: left;
}
.news_top1 {
    padding: 2em;
}

@media screen and (max-width: 990px) {
  .news_top {
    order: 1;
    margin-bottom: 1rem;
  }
  .news_top1 {
    order: 2;
  }
}
.news-grids-left, .news-grids-middle {
    border-bottom: solid 3px #f4f4f4;
    padding-bottom: 2.25em;
}
/*
.news_top {
    box-shadow: 0 0.05em 0.15em 0 rgba(0, 0, 0, 0.05);
}*/
.wthree-inner-sec.services-bg {
    background: rgba(255, 255, 255, 0.12);
}
h2.w3_head, h3.w3_head {
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.35em;
    color: #4a9aca;
    font-size: 2em;
}
@media all and (max-width: 480px) {
    .main h3.w3_head {
        font-size: 1.6em !important;
    }
}
p.main_p {
    font-size: 1.4em;
    line-height: 1.8em;
    letter-spacing: 0.075em;
    color: #264D66;
    font-weight: 300;
}
section.slide-wrapper {
    padding: 3em 12em 5em;
    text-align: left;
    background: #fff;
}
h4.main_hd {
    color: #264D66;
    font-size: 1.75em;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.5em;
}
p.iner {
    font-size: 1.1em;
    line-height: 1.8em;
    letter-spacing: 0.075em;
    color: #264D66;
    font-weight: 400;
}
/* contact */
.wedo {
    padding: 5em 12em 0;
    border-top: solid 6px #f4f4f4;
}
.contact_grid_right input[type="text"], .contact_grid_right input[type="email"], .contact_grid_right textarea {
    outline: none;
    padding: 15px 15px;
    font-size: 14px;
    color: #264D66;
    background: rgba(255, 255, 255, 0.75);
    width: 100%;
    letter-spacing: 1px;
    border: solid 1px rgba(0, 0, 0, 0.15);
    border-radius: 0.25em;
    margin-top: 1em;
}
.contact_grid_right input[type="text"]:nth-child(2), .contact_grid_right input[type="email"] {
    margin: 1em 0 0;
}
.contact_grid_right textarea {
    min-height: 17em;
    margin: 1em 0em;
    resize: none;
}
.contact_grid_right button[type="submit"], .contact_grid_right button[type="reset"] {
    outline: none;
    padding: 16px 0;
    font-size: 1em;
    color: #fff;
    background: #4a9aca;
    width: 22%;
    border: none;
    letter-spacing: 1px;
    border-radius: 0.25em;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    font-weight: 700;
    cursor: pointer;
    opacity: 0.8;
}
.contact_grid_right button[type="submit"]:hover, .contact_grid_right button[type="reset"]:hover {
    opacity: 1;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}
.cpy-right {
    padding: 3em 0;
    margin: 3em 0 0;
    border-top: 1px solid #dcdcdc;
}
.cpy-right p {
    color: #264D66;
}
.cpy-right p a {
    color: #43b3e0;
}
.cpy-right p a:hover {
    color: #264D66;
}
#success-message {
    opacity: 0;
}
.col-xs-12.col-sm-12.col-md-12.col-lg-12 {
    padding: 0 20% 0 20%;
}
.form-title {
    padding: 25px;
    font-size: 30px;
    font-weight: 300;
}
.form-group .form-control {
    -webkit-box-shadow: none;
    border-bottom: 1px;
    border-style: none none solid none;
    border-color: #ffd708;
}
.form-group .form-control:focus {
    box-shadow: none;
    border-width: 0 0 2px 0;
    border-color: #000;
}
textarea {
    resize: none;
}
.btn-mod.btn-large {
    height: auto;
    padding: 13px 52px;
    font-size: 15px;
}
.btn-mod.btn-border {
    color: #000000;
    border: 1px solid #000000;
    background: transparent;
}
.btn-mod, a.btn-mod {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 4px 13px;
    color: #fff;
    background: rgba(34, 34, 34, .9);
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.btn-mod.btn-border:hover, .btn-mod.btn-border:active, .btn-mod.btn-border:focus, .btn-mod.btn-border:active:focus {
    color: #fff;
    border-color: #000;
    background: #000;
    outline: none;
}
@media only screen and (max-width: 500px) {
    .btn-mod.btn-large {
        padding: 6px 16px;
        font-size: 11px;
    }
    .form-title {
        font-size: 20px;
    }
}
form#contact-form label {
    color: #ea4335;
}
label {
    color: #000 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.form-control {
    background-color: #e2e2e2;
    border: none;
}
.map iframe {
    width: 100%;
    border: 7px solid #e4e4e4;
    min-height: 500px;
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem; 
}
.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.benefit .benefit_iner {
    padding: 2rem;
    margin: 0 0 2rem;
    border: 3px solid #ffdd3e;
}
.benefit .benefit_iner h4 {
    position: relative;
    font-weight: bold;
    line-height: 1.8;
    font-size: 120%;
    margin: 0 0 0.5rem;
}
.benefit .benefit_iner span {
    position: absolute;
    left: -8rem;
    top: -3rem;
    color: #FFF;
    margin-right: 0.5rem;
    padding: 0.1rem 0.5rem 0;
}
.benefit .benefit_iner:nth-child(1) h4 {
    color: #fc65a1;
}
.benefit .benefit_iner:nth-child(1) span {
    background: #fc65a1;
}
.benefit .benefit_iner:nth-child(2) h4 {
    color: #4A9ACA;
}
.benefit .benefit_iner:nth-child(2) span {
    background: #4A9ACA;
}
.benefit .benefit_iner:nth-child(3) h4 {
    color: #7bbc27;
}
.benefit .benefit_iner:nth-child(3) span {
    background: #7bbc27;
}
#benefit h3 span {
    color: #7bbc27;
    font-size: 40%;
    display: block;
}
/* //contact */
/* -- Responsive code -- */
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1280px) {
    section.slide-wrapper {
        padding: 5em 5em;
    }
    section.services {
        padding: 5em 5em;
    }
    section.benefit {
        padding: 5em 5em;
    }
    .main_wrap, .support, .news {
        padding: 2em 5em;
    }
    .wedo {
        padding: 5em 5em 0;
    }
    p.banp.mt-3 {
        width: 78%;
    }
}
@media screen and (max-width: 1080px) {
    .sidenav {
        width: 260px;
    }
    .main {
        margin-right: 260px;
    }
    h2.w3_head, h3.w3_head {
        font-size: 2.5em !important;
    }
    p.iner {
        font-size: 1em !important;
    }
    .support p, .news p {
        font-size: 16px !important;
    }
    .news_top1 {
        padding: 1em;
    }
    h4.main_hd {
        font-size: 1.5em !important;
    }
    .banner-text-w3ls h2 {
        font-size: 2.2em !important;
    }
    p.banp.mt-3 {
        font-size: 18px !important;
    }
}
@media screen and (max-width: 1050px) {
    .contact_grid_right button[type="submit"], .contact_grid_right button[type="reset"] {
        width: 30%;
    }
    h4.main_hd {
        font-size: 1.3em !important;
    }
}
@media screen and (max-width: 991px) {
    header {
        padding-top: 0em;
    }
    .side_top {
        padding: 1em 1em;
    }
}
@media screen and (max-width: 900px) {
    ul.list-unstyled li {
        width: 100%;
    }
}
@media screen and (max-width: 800px) {
    .contact_grid_right button[type="submit"], .contact_grid_right button[type="reset"] {
        width: 43%;
    }
}
@media screen and (max-width: 768px) {
    .sidenav {
        width: 100%;
        height: 60%;
        position: relative;
    }
    .main {
        margin-right: 0;
    }
    header {
      display: none;
        padding-top: 0;
    }
    nav ul {
        position: static;
    }
    .sidenav {
        /* padding: .4rem 1rem; */
        padding: 0;
    }
    .side_top {
        padding: 0;
    }
}
@media screen and (max-width:480px) {
    .sidenav {
        padding: 0 0.5rem;
    }
    .side_top {
        padding: 0;
        margin-bottom: 0rem;
    }
}
@media screen and (max-width: 736px) {
    .banner-text-w3ls h2 {
        font-size: 2em !important;
    }
    p.banp.mt-3 {
        width: 100%;
    }
}
@media screen and (max-width: 640px) {}
@media screen and (max-width: 600px) {}
@media screen and (max-width: 568px) {
    section.slide-wrapper {
        padding: 2em 2em;
    }
    section.services {
        padding: 2em 2em;
    }
    section.benefit {
        padding: 2em 2em;
    }
    .main_wrap, .support, .news {
        padding: 2rem;
    }
    .wedo {
        padding: 2em 2em 0;
    }
}
@media screen and (max-width: 480px) {
    .banner-text-w3ls h2 {
        font-size: 1.7em !important;
    }
    p.banp.mt-3 {
        font-size: 16px !important;
    }
    h2.w3_head, h3.w3_head {
        font-size: 2em !important;
    }
    h4.main_hd {
        font-size: 1.2em !important;
    }
    .main_wrap, .support, .news {
        padding: 1em 1em 1em!important;
    }
    .main_wrap, .support, .news img {
        padding: 0 2rem;
    }
}
@media screen and (max-width: 440px) {
    .banner-text-w3ls h2 {
        font-size: 1.5em !important;
    }
    .wedo {
        padding: 2em 2em 0;
    }
    .main_wrap, .support, .news {
        padding: 2em 2em;
    }
    section.services {
        padding: 2em 2em;
    }
    section.slide-wrapper {
        padding: 2em 2em;
    }
}
@media screen and (max-width: 384px) {}
@media screen and (max-width: 375px) {}
@media screen and (max-width: 320px) {
    .wedo {
        padding: 2em 1.5em 0;
    }
    .contact_grid_right button[type="submit"], .contact_grid_right button[type="reset"] {
        padding: 14px 0;
        font-size: 0.9em !important;
        width: 49%;
    }
    .contact_grid_right textarea {
        min-height: 12em;
    }
    .main_wrap, .support, .news {
        padding: 2em 1.5em;
    }
    h2.w3_head, h3.w3_head {
        font-size: 1.8em !important;
    }
    section.services {
        padding: 2em 1.5em;
    }
    section.benefit {
        padding: 2em 1.5em;
    }
    .services h6 {
        font-size: 1em !important;
    }
    .ic-lft {
        padding-left: 0;
    }
    section.slide-wrapper {
        padding: 2em 1.5em;
    }
    h4.main_hd {
        font-size: 1.1em !important;
    }
    .banner-text-w3ls h2 {
        font-size: 1.4em !important;
    }
}
.about_benefits {
    background: #FFFEDF;
    padding: 2rem;
    color: #4A9ACA;
}
.about_benefits h4 {
    font-weight: bold;
    letter-spacing: 0.2rem;
    color: #FFBE00;
    margin: 0 0 1rem;
}
@media (max-width: 480px) {
    .about_benefits {
        padding: 1rem;
    }
    .about_benefits h4 {
        font-size: 120%;
        letter-spacing: 0;
    }
}
table.tab_st1 {
    font-size: 15px;
    letter-spacing: 2;
    box-sizing: border-box;
    border-collapse: collapse;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.tab_st1 th, .tab_st1 td {
    border: 1px solid #FFBB72;
    padding: .5em 1em;
}
.tab_st1 td {
    text-align: left;
    background: #FFF;
}
.tab_st1 th {
    width: 24%;
    background: #FFFEDF;
}
@media (max-width: 480px) {
    table.tab_st1 {
        width: 100%;
    }
    .tab_st1 th, .tab_st1 td {
        display: block;
    }
    .tab_st1 th, .tab_st1 td {
        width: 100%;
    }
    .tab_st1 th {
        border-top: none;
        border-bottom: none;
    }
    .tab_st1 tr:first-child th {
        border-top: 1px solid #FFBB72;
    }
}
h4.midashi1 {
    font-size: 120%;
    font-weight: bold;
    margin: 0 0 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.6;
    padding: .6em 0 .4em;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
@media (max-width: 480px) {
    h4.midashi1 {
        font-size: 115%;
        letter-spacing: 0.1rem;
        line-height: 1.5;
        padding: .8em 0 .6em;
    }
}
@media (max-width: 380px) {
    h4.midashi1 {
        font-size: 100%;
        letter-spacing: 0;
    }
}
h4.midashi2 {
    font-size: 110%;
    font-weight: bold;
    color: #264D66;
    letter-spacing: 0.1rem;
    position: relative;
    background: #f1f8ff;
    padding: 0.7rem 0.5rem 0.5rem;
    margin: 0 0 1rem;
    border-left: solid 0.7rem #5c9ee7;
}

.tel_mail {
  position: relative;
  padding: 2rem;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
  background: #FFF;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 380px) {
.tel_mail {
    padding: 1rem;
}

}

.tel_mail dl {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}
.tel_mail dt {
    padding-bottom: 5px;
}

.tel_mail .icon-diag {
  max-width: 86px;
  position: absolute;
  right: 1rem;
  bottom: .5rem;
}

@media screen and (max-width: 768px) {
.tel_mail .icon-diag {
    max-width: 80px;
    right: -1rem;
    bottom: -1rem;
  }
}
@media screen and (max-width: 380px) {
.tel_mail .icon-diag {
    right: -1rem;
    bottom: -1rem;
  }
}

.bgcol {
	background-color:#FFFEDF;
	background-image:
	 radial-gradient(#26A69A 1px, transparent 1px);
	background-size: 20px 20px;
}
@media screen and (min-width: 768px) {
    .tel_mail dt {
        clear: left;
        float: left;
        width: 10%;
    }
    .tel_mail dd {
        margin-left: 11%;
    }
}
.parent {
    display: flex;
    color: #FFF;
    width: 100%;
    padding: 0;
    margin: 0 0 1rem;
}
@media screen and (max-width: 480px) {
  
 p {
  font-size: 15px;
}
  
}
@media screen and (max-width: 768px) {
    .parent {
        flex-flow: column;
    }
}
.children01 {
    color: #ea4335;
    font-size: 180%;
    font-weight: bold;
    /* text-align: center; */
    width: auto;
    white-space: nowrap;
    margin-right: 1rem;
}
@media screen and (max-width: 480px) {
    .children01 {
        font-size: 150%;
        margin-right: 0rem;
        margin-bottom: 0.5rem;
    }
}
.children02 {
    text-align: center;
    width: auto;
}
.children02 a {}
.btn1 {
  text-align: center;
    display: inline-block;
    max-width: 500px;
    background-color: #25b271;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 24px 8px;
    border-radius: 4px;
    border-bottom: 4px solid #1c8856;
}

@media screen and (max-width: 380px) {
    .btn1 {
  text-align: left;
    }
}
.btn1:active {
    transform: translateY(4px);
    border-bottom: none;
}
.btn1:hover {
    color: #FFF;
    background: #FFC400;
    border-bottom: 4px solid #FF9100;
}
.marker-animation.active {
    background-position: -100% .7em;
}
.marker-animation {
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255, 247, 89) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(255, 247, 89) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(255, 247, 89) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(255, 247, 89) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(255, 247, 89) 50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 4s ease;
    font-weight: bold;
}
.btn2 {
    font-weight: bold;
    letter-spacing: 0.1rem;
    display: inline-block;
    position: relative;
    padding: 0.5rem 1.5rem 0.4rem;
    text-align: center;
    text-decoration: none;
    color: #FFF;
    background: #8DC01E;
    border-radius: 30px;
    transition: transform ease .3s;
}
.btn2:hover {
    color: #FFF700;
    cursor: pointer;
    text-decoration: none;
}
.btn2 span {
    display: inline-block;
    text-decoration: none;
    transition: transform ease .3s;
}
.btn2:hover span {
    cursor: pointer;
    text-decoration: none;
    transform: translateX(6px);
}
.marker1 {
    text-align: center;
    color: #FFF;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin: 1.5rem 0 1.3rem;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    font-size: 120%;
    background: #FF6B00;
}
.marker1:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #FF6B00;
}
.marker1 p {
    margin: 0;
    padding: 0;
}
.flex_box1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.flex_box1 .pict1 {
    max-width: 120px;
    margin-right: 5%;
    vertical-align: middle;
}
.flex_box1 .pict1 img {
    max-width: 140px;
}
.flex_box1 .flex_inner {}
@media screen and (max-width: 991px) {
    .flex_box1 {
        display: block;
    }
    .flex_box1 .pict1 {
        max-width: inherit;
        margin-right: 0;
        vertical-align: middle;
        text-align: center;
    }
    .flex_box1 .pict1 img {
        width: 50%;
        max-width: inherit;
    }
    .flex_box1 .flex_inner {}
    .benefit .benefit_iner span {
        position: absolute;
        left: 0rem;
        top: -3rem;
        color: #FFF;
        margin-right: 0.5rem;
        padding: 0.1rem 0.5rem 0;
    }
}
@media screen and (max-width: 480px) {
    .benefit .benefit_iner {
        padding: 1rem;
    }
    .benefit .benefit_iner h4 {
        line-height: 1.4 !important;
    }
}
table.tab_st2 {
    font-size: 15px;
    letter-spacing: 2;
    box-sizing: border-box;
    border-collapse: collapse;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.tab_st2 th, .tab_st2 td {
    border: 1px solid #FFBB72;
    padding: .5em 1em;
}
.tab_st2 td {
    text-align: left;
    background: #FFF;
}
.tab_st2 th {
    width: 24%;
    background: #FFFEDF;
}
@media (max-width: 480px) {
    table.tab_st2 {
        width: 100%;
    }
    .tab_st2 th, .tab_st2 td {
        display: block;
    }
    .tab_st2 th, .tab_st2 td {
        width: 100%;
    }
    .tab_st2 th {
        border-top: none;
        border-bottom: none;
    }
    .tab_st2 tr:first-child th {
        border-top: 1px solid #FFBB72;
    }
}
ul.list1 {
    list-style: disc;
    margin-left: 1rem;
}
ul.list1 li {
    margin: 0 0 0.5rem;
    line-height: 1.4;
}
ul.list1 li:last-child {
    margin: 0;
}
.ribbon4 {
    font-size: 18px;
    position: relative;
    padding: .5rem 1rem;
    margin-bottom: 1rem;
    color: #FFF;
    border-radius: 5px;
    background: #00578F;
}
.ribbon4::before {
content: "";
position: absolute;
border: 12px solid transparent;
border-top: 12px solid #00578F;
top: 100%;
left: 5%;
}

@media (max-width: 480px) {
    .pc {
        display: none;
    }
}
.tag01 {
    display: inline-block;
    color: #FFF;
    font-weight: bold;
    margin: 1.5rem auto 1rem;
    letter-spacing: 0.2rem;
    padding: 0.3rem 1rem 0.2rem;
    font-size: 80%;
    border-radius: 10rem;
    background: #f568a0;
}
@media (max-width: 480px) {
    .mb-5 {
        margin-bottom: 2rem !important;
    }
}
/* flow 
-----------------------------------------------------*/
.flow {
    position: relative;
}
.flow_inr_lust, .flow_inr {
    width: 100%;
    padding: 2rem;
    position: relative;
    display: inline-block;
    border: 3px solid #e0edff;
    border-radius: 10px;
    margin: 0 0 2rem;
}
.flow_inr:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -25px;
    border: 25px solid transparent;
    border-top: 20px solid #e0edff;
}

.flow_inr_lust h4, .flow_inr h4 {
  color:#076095;
    font-size: 120%;
    font-weight: 600;
    margin: 0 0 1rem;
  padding: .5rem 0;
  position: relative;
  background: #f7fcfe;
}
  @media (max-width: 480px) {
.flow_inr_lust h4, .flow_inr h4 {
  padding:.6rem 0 1.2rem;
    }
  }

.flow_inr_lust h4:after,
.flow_inr h4:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #076095, #076095 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #076095, #076095 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.txt_blue {
  color:#0090FF;
}
.txt_pink {
  color:#F568A0!important;
}

.txt_center {
    text-align: center!important;
}
.step {
    color: #FFF;
    background:#F568A0;
    height: 50px;
    width: 50px;
    margin-right: 1rem;
    padding: 1rem;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
}

@media (max-width: 480px) {
.step{
    display: block;
    border-radius: 10px;
    padding: 0;
    line-height:normal;
    height: auto;
    width: 50%;
    margin: 0 auto .5rem;
  }
  .step:before {
    font-size: 80%;
    content: "STEP ";
  }
}

.flow_inr_lust p, .flow_inr p {
    margin: 0;
    padding: 0;
}


/*btn*/


.btn,
a.btn,
button.btn {
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  margin: 0 0 .5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  border: none;
}

a.btn-flat {
  overflow: hidden;
  color: #fff;
  border-radius: 0;
  background: #000;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 150%;
  height: 500%;

  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);

  background: #00b7ee;
}

a.btn-flat:hover:before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

a.btn--yellow {
  color: #FFF;
  background-color:#009DFF;
  border-bottom: 5px solid #00558A;
}

a.btn--yellow:hover {
  margin-top: 3px;
  color: #FFF;
  background:#00D6FF;
  border-bottom: 2px solid #00558A;
}

.fs80per {
  font-size: 80%;
  letter-spacing: 0;
}

.w100per {
    width: 100%;
}