:root {
    --primary: #00a9c2;
    --primary-color: #FFF;
    --secondary: #fe5900;
    --secondary-color: #FFF;
    --text: #000;
    --text-inverse: #FFF;
}

body {
    background: #fbfbfb;
    color: var(--text);
    height: auto;
}

::-webkit-scrollbar {
    background-color: transparent;
    height: 8px;
    width: 8px
}

::-webkit-scrollbar {
    height: 8px;
    width: 8px
}

::-webkit-scrollbar-track {
    background: #FFF
}

::-webkit-scrollbar-thumb {
    background: #000;
    background: var(--primary);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: #555
}

my-c {
    display: block;
}

.webpage {
    min-height: 100vh;
    padding: 56px 0 0 0;
}

.is-web .container {
    max-width: 100%;
    width: 1300px
}

.webmenu {
    top: 0;
    left: 0;
    padding: 5px 10px;
    position: fixed;
    width: 100%;
    z-index: 999;
    background: #FFF;
    background: rgba(255, 255, 255, 0.8);
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0.8) 100%);
    box-shadow: 0 0 15px var(--shadow);
}

@media(min-width:1100px) {
    .webmenu {
        backdrop-filter: blur(10px);
    }
}

.mobile-menu i {
    font-size: 120%
}

.webmenu {
    text-align: center
}

.webmenu .container {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.webmenu .logo {
    margin: 0 auto;
    height: 42px;
    width: 88px
}


.webmenu .menu a {
    display: inline-block;
    vertical-align: middle;
}

.webmenu .menu li {
    border-left: 1px solid rgb(0, 0, 0, 0.1);
}

.webmenu .menu li:nth-child(1),
.webmenu .menu li:nth-child(2),
.webmenu .menu li:nth-last-child(1) {
    border-left: none;
}

.current_page,
.next_page {
    padding-top: 58px
}

.h-menu {
    -webkit-overflow-scrolling: touch;
    background-color: #f7f7f7;
    bottom: 0;
    color: #7d7d7d;
    font-size: 0;
    font-weight: 600;
    left: 0;
    position: relative;
    text-align: center;
    z-index: 999
}

.h-menu li {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    vertical-align: middle
}

.h-menu li:first-child a {
    border-left: none
}

.h-menu li a {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    letter-spacing: 1px;
    padding: 15px 10px;
    vertical-align: middle
}

.h-menu .current-menu-item {
    background-color: #bdbdbd;
    color: #fff
}

.h-menu li ul {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0;
    min-width: 100%;
    position: absolute;
    text-align: left;
    text-align: left;
    top: 88%;
    width: 215px;
    z-index: 99
}

.h-menu li:hover ul {
    display: block
}

.h-menu li ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: block
}

.h-menu li ul li:last-child {
    border-bottom: none
}

.h-menu li ul a {
    color: #1f5394;
    line-height: 1.5;
    padding: 5px 10px;
    width: 100%
}

.h-menu li ul li ul a {
    color: #FFF
}

.h-menu li ul li ul a:hover {
    background-color: rgba(255, 255, 255, 0.1)
}

.h-menu li ul li ul {
    background-color: #1f5394
}

.h-menu li:hover ul li ul {
    display: none;
    left: 34%;
    width: 190px
}

.h-menu li ul li:hover ul {
    display: block
}

.mobile-menu {
    display: none;
    position: fixed;
    z-index: 990;
    background: var(--primary);
    background-color: var(--primary);
    color: #FFF;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 0 0 0;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu a {
    font-size: 30px;
    text-align: center
}

.main-menu-desktop {
    display: flex;
    align-content: space-between;
    text-align: center;
}

.main-menu-desktop>li {
    flex: 1;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 0 5px;
    transition: 0.1s
}

.main-menu-desktop li a:hover {
    color: var(--primary);
    text-shadow: 0 0 0.5px var(--primary), 0 0 0.5px var(--primary), 0 0 0.5px var(--primary), 0 0 0.5px var(--primary), 0 0 0.5px var(--primary);
}

.bottomline {
    font-size: 12px;
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
}


.my-dropdown {
    display: none;
    position: absolute;
    z-index: 9999;
    top: 44px;
    right: 0;
    line-height: 1.4;
    background: #ffffff;
    width: 278px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}

.my-dropdown .place {
    padding: 10px 12px;
    border-bottom: 1px solid #d8d8d8;
    color: #58595b;
}

.my-dropdown .place:last-child {
    border-bottom: none
}

.my-dropdown .name {
    font-size: 20px;
    text-align: left;
    color: #031430;
}

.my-dropdown a {
    text-decoration: none;
    color: #555d66;
}

.my-dropdown .title {
    text-align: left;
    font-size: 18px;
    padding: 5px 0 0 0;
}

.stores {
    text-align: center;
    margin: 0 0;
    font-size: 0;
}

.downlink {
    transform: scale(1);
    transition: 0.2s;
    display: inline-block;
    max-width: 31%;
    min-width: 100px;
    margin: 1%;
}

.downlink img {
    max-height: 45px;
    width: auto;
}

.downlink:hover {
    transform: scale(1.05);
}

.show .my-dropdown {
    display: block;
}

.custom-action {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    padding: 7px 0 9px 0;
    color: #ffffff;
    border-radius: 100px;
    width: 36px;
    height: 36px;
    line-height: 19px;
    text-align: center;
    color: var(--primary);
    margin: 0 1px;
    cursor: pointer;
    position: relative;
    border: 2px solid #3f3f3f;
    border-color: var(--primary);
}

.custom-action .fas {
    color: inherit;
}

#footer {
    text-align: center;
    line-height: 2;
    background: #363636;
    color: #FFF;
    background: var(--primary);
    color: var(--primary-color)
}

#footer .widget_title {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: #ffffff;
    opacity: 0.7;
}

#footer .widgets {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

#footer .widget {
    font-size: 18px;
    margin: 10px;
    padding: 20px;
    text-align: left;
    border-radius: 10px;
    background: rgb(255 255 255 / 10%);
    flex-basis: 240px;
    flex-grow: 9999;
}

.header {
    padding: 0;
    margin: 30px 0
}

.header-web {
    background: transparent;
    color: var(--primary);
    margin: 30px 0;
}

.header-web h1 {
    text-align: center;
    color: inherit;
    text-transform: uppercase;
    font-weight: 400;
}

@media (min-width: 800px) {
    .header-web h1 {
        font-weight: 300;
        font-size: 80px;
    }
}

.sbs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.side .title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    padding: 0 0 20px 0;
    color: #515151;
}

.sbs .content {
    padding: 20px 0;
}

.sbs .image img {
    border-radius: 10px;
}

@media(min-width: 800px) {
    .sbs:nth-child(2n) .image {
        order: 2
    }

    .side .title {
        font-weight: 300;
        font-size: 30px
    }

    .sbs .content {
        padding: 20px;
    }
}