/* Markup: Skweb (skweb.info) */
.full-bg {
    background-position: center center;
    background-size: cover !important;
}

.vcent {
    position: relative;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.vcent-abs {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.full-screen-height {
    height: 100vh;
    width: 100%;
}

.abs-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

button {
    outline: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    background: none;
}

html,
body {
    height: 100%;
}

body {
    color: #000;
    font: 20px Roboto, "Helvetica Neue", Helvetica, sans-serif;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: #f75b5d;
}

a:hover {
    text-decoration: none;
}

b,
strong,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

.tab-content > .tab-pane {
    display: none;
    visibility: hidden;
}

.tab-content > .active {
    display: block;
    visibility: visible;
}

.container-fluid {
    padding: 0 7%;
    max-width: 1800px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .container-fluid {
        padding: 0 120px;
    }
}
@media (max-width: 767px) {
    .container-fluid {
        padding: 0 10%;
    }
}

.container-full {
    width: 100%;
    margin: 0 auto;
    max-width: 1800px;
    padding: 0 7%;
}
@media (max-width: 767px) {
    .container-full {
        padding: 0 8%;
    }
}

.global-close-btn {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 20px;
    height: 20px;
    background: none;
    outline: none;
    border: none;
}
.global-close-btn:hover:before,
.global-close-btn:hover:after {
    background-color: #21b797;
}
@media (max-width: 767px) {
    .global-close-btn {
        top: 40px;
        right: 30px;
    }
}
.global-close-btn:before,
.global-close-btn:after {
    content: "";
    display: block;
    clear: both;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    width: 125%;
    top: 0;
    margin-top: 8px;
    transition: all 0.3s ease;
}
.global-close-btn:after {
    transform: rotate(-45deg);
}

._g-yellow-left-btn {
    background: linear-gradient(to right, #ff694b 0%, #d45339 50%, #ff502d 70%, #ed1c24 100%);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 30px;
    color: #000;
    font-weight: 500;
    padding: 5px 50px 0 60px;
    height: 75px;
    border-radius: 0 30px 0 0;
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    ._g-yellow-left-btn:hover {
        box-shadow: 0 0 50px rgba(249, 220, 52, 0.5);
    }
    ._g-yellow-left-btn:hover:before {
        opacity: 1;
    }
}
._g-yellow-left-btn:before {
    content: "";
    display: block;
    clear: both;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff065;
    opacity: 0;
    border-radius: 0 30px 0 0;
}
._g-yellow-left-btn:after {
    content: "";
    display: block;
    clear: both;
    background: url(../images/@2x/create-acc-arrow.png) no-repeat 100% 50%;
    background-size: 38px auto;
    width: 38px;
    height: 100%;
    margin-left: 33px;
    position: relative;
    z-index: 3;
    animation: pullRight 2s ease-in-out infinite;
}
._g-yellow-left-btn span {
    position: relative;
    z-index: 4;
}

._g-full-screen {
    width: 100%;
    height: 100vh;
}
@media (min-width: 768px) {
    ._g-full-screen {
        min-height: 650px;
    }
}

@media (max-width: 767px) {
    ._g-full-screen-xs {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }
}

/*css animations */
@keyframes pullRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes pullDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

._g-yellow-btn {
    background: #ed1c24;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    transition: all 0.3s ease;
    border-radius: 25px;
    display: inline-block;
    border: none;
    outline: none;
    padding: 12px 32px 13px;
}
._g-yellow-btn:hover {
    box-shadow: 0 0 30px #ed1c24;
}

html.modal-open,
html.modal-open body {
    overflow-x: hidden;
}

body.modal-open {
    position: relative;
    overflow: hidden;
}
@media (max-width: 767px) {
    body.modal-open {
        padding-right: 0 !important;
    }
}

.modal.in:before {
    opacity: 1;
}

.login-modal.in .modal-content {
    transform: scale(1);
}

.modal-lefted {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 1, 45, 0.2);
}
.modal-lefted.in .modal-wrap {
    transform: translateX(0);
}
.modal-lefted .close-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {
    .modal-lefted .close-area {
        display: none;
    }
}
.modal-lefted .modal-wrap {
    position: absolute;
    left: 0;
    width: 800px;
    top: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 5;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
    padding: 20px 10%;
    transform: translateX(-200px);
    transition: 0.5s;
}
@media (min-width: 768px) and (max-width: 991px) {
    .modal-lefted .modal-wrap {
        width: 100%;
        max-width: 800px;
    }
}
@media (max-width: 767px) {
    .modal-lefted .modal-wrap {
        width: 100%;
        position: static;
        padding: 20px;
    }
}
.modal-lefted .modal-content {
    box-shadow: none;
    border: none;
    border-radius: 0;
}

header {
    position: absolute;
    top: 8vh;
    left: 0;
    width: 100%;
    z-index: 20;
}
@media (min-width: 768px) and (min-height: 900px) {
    header {
        top: 75px;
    }
}
@media (max-width: 767px) {
    header {
        top: 6vh;
    }
}
@media (max-width: 767px) {
    header .container-full {
        padding: 0 8%;
    }
}
header .header-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
header .right-col {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}
@media (max-width: 767px) {
    header .right-col {
        padding-right: 0;
    }
}
@media (min-width: 768px) {
    header .logo-col {
        width: 115px;
    }
}
header .logo {
    position: relative;
    top: -30px;
    display: block;
    left: -57px;
    outline: none;
}
@media (max-width: 767px) {
    header .logo {
        left: 0;
        width: 80%;
        top: -10px;
    }
}
@media (max-width: 767px) {
    header .login-col {
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        margin-left: 10px;
    }
}
header .login-btn {
    border: 1px solid #ed1c24;
    padding: 10px 29px 9px 32px;
    border-radius: 40px;
    color: #ed1c24;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}
header .login-btn:hover {
    border-color: #fff;
}
@media (max-width: 767px) {
    header .login-btn {
        border: none;
        padding: 0 0 0 5px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
    }
    header .login-btn span {
        display: none;
    }
}
header .login-btn img {
    margin-left: 14px;
}
header .login-btn img.icon-xs {
    display: none;
}
@media (max-width: 767px) {
    header .login-btn img {
        display: none;
    }
    header .login-btn img.icon-xs {
        display: block;
    }
}
header .mobile-menu-btn {
    z-index: 100;
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    font-size: 0;
    box-shadow: none;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
    right: 0;
    top: 0;
}
header .mobile-menu-btn:hover {
    border-color: #fff;
}
header .mobile-menu-btn span {
    display: block;
    position: absolute;
    transition: 0.3s;
    left: 8px;
    right: 8px;
    top: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}
header .mobile-menu-btn span:before,
header .mobile-menu-btn span:after {
    content: "";
    display: block;
    clear: both;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    box-sizing: inherit;
    border-radius: 2px;
}
header .mobile-menu-btn span:before {
    top: -10px;
    transition-property: top, transform;
}
header .mobile-menu-btn span:after {
    bottom: -10px;
    width: 80%;
    transition-property: bottom, transform;
}
header .mobile-menu-btn.mobile-btn-open span {
    background: transparent;
}
header .mobile-menu-btn.mobile-btn-open span:before,
header .mobile-menu-btn.mobile-btn-open span:after {
    transition-delay: 0s, 0.3s;
}
header .mobile-menu-btn.mobile-btn-open span:before {
    top: 0;
    transform: rotate(45deg);
}
header .mobile-menu-btn.mobile-btn-open span:after {
    bottom: 0;
    transform: rotate(-45deg);
}
@media (min-width: 768px) {
    header.index-header {
        opacity: 0;
    }
}
header .center-col {
    flex: 1;
}
@media (max-width: 767px) {
    header .center-col {
        display: none;
    }
}
header .main-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
header .main-nav li {
    padding: 0 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
    header .main-nav li {
        padding: 0 3px;
    }
}
header .main-nav li a {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    display: block;
    padding: 0 1vw;
    position: relative;
}
header .main-nav li a:hover {
    color: #ed1c24;
}
header .main-nav li a span {
    display: block;
    padding: 5px 0 10px;
    position: relative;
}
header .main-nav li a span:after {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    background: #fff;
    height: 1px;
    opacity: 0;
    transition: all 0.3s ease;
}
header .main-nav li.active a {
    color: #ed1c24;
}
header .main-nav li.active a span:after {
    background: #ed1c24;
    opacity: 1;
    width: 100%;
}

.lang-col {
    width: 140px;
}
@media (max-width: 767px) {
    .lang-col {
        width: auto;
    }
}
.lang-col .lang-box {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}
.lang-col .lang-box .dropdown-backdrop {
    display: none;
}
.lang-col .lang-box .current-lang {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    height: 33px;
    position: relative;
    padding-right: 20px;
}
.lang-col .lang-box .current-lang span {
    color: #fff;
    display: inline-block;
    font-size: 12px;
    padding-left: 10px;
}
@media (max-width: 767px) {
    .lang-col .lang-box .current-lang span {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .lang-col .lang-box .current-lang {
        padding-right: 25px;
    }
}
.lang-col .lang-box .current-lang:after {
    content: "";
    display: block;
    clear: both;
    display: inline-block;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    padding: 3px;
    transform: rotate(45deg);
    position: absolute;
    right: 3px;
    top: 50%;
    margin-top: -6px;
}
.lang-col .lang-box .current-lang:hover img {
    border-color: rgba(255, 255, 255, 0.8);
}
.lang-col .lang-box .current-lang:hover:after {
    border-color: #fff;
}
.lang-col .lang-box .current-lang img {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 5px;
    transition: all 0.3s ease;
}
.lang-col .lang-box.open .langs-drop {
    display: block;
}
.lang-col .lang-box.open .current-lang img {
    border-color: white;
}
.lang-col .lang-box.open .current-lang:after {
    border-color: #fff;
}
.lang-col .langs-drop {
    position: absolute;
    left: -22px;
    margin-top: 10px;
    top: 100%;
    padding: 18px 17px 20px 22px;
    width: 140px;
    border-radius: 22px;
    text-align: left;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 93px rgba(63, 86, 130, 0.1);
    display: none;
}
@media (max-width: 767px) {
    .lang-col .langs-drop {
        left: auto;
        right: 0;
        width: 130px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
.lang-col .langs-list a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0 3px 0 0;
    color: #fff;
    font-size: 12px;
    font-weight: normal;
}
@media (max-width: 767px) {
    .lang-col .langs-list a {
        justify-content: flex-end;
    }
}
.lang-col .langs-list a:hover img {
    border-color: #fff;
}
.lang-col .langs-list a img {
    border-radius: 50%;
    border: 1px solid rgba(139, 136, 136, 0.4);
    padding: 5px;
    transition: 0.3s;
    margin-right: 10px;
}
@media (max-width: 767px) {
    .lang-col .langs-list a img {
        margin: 0 0 0 10px;
        order: 2;
    }
}
.lang-col .langs-list a span {
    display: block;
    text-align: center;
    padding: 15px 0;
}

section.section-top {
    width: 100%;
    height: 100vh;
    position: relative;
}
@media (min-width: 768px) {
    section.section-top {
        opacity: 0;
        overflow: hidden;
        min-height: 700px;
    }
}
@media (max-width: 767px) {
    section.section-top {
        height: auto;
    }
}
section.section-top .sect-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
}
section.section-top .sect-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 768px) {
    section.section-top .sect-bg {
        background: url(../images/bg-top-sect.jpg) no-repeat fixed 50% 50%;
        background-size: cover;
    }
}
section.section-top .sect-bg:before {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 768px) {
    section.section-top .sect-bg:before {
        background: url(../images/deposit-dark-overlay.png) no-repeat;
        background-size: 100% 100%;
        box-shadow: none;
        opacity: 0.3;
    }
}
@media (min-width: 768px) and (min-height: 700px) {
    section.section-top .sect-top-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: fixed;
        overflow: hidden;
    }
}
@media (min-width: 768px) and (max-height: 700px) {
    section.section-top .sect-top-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        overflow: hidden;
    }
}
section.section-top .sect-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
}
@media (max-width: 767px) {
    section.section-top .sect-content-wrapper {
        height: auto;
        background: #fff;
    }
}
section.section-top .bottom-row {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
section.section-top .scroll-bottom-btn {
    position: absolute;
    left: 50%;
    bottom: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-top .scroll-bottom-btn {
        display: none;
    }
}
section.section-top .scroll-bottom-btn i {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    text-align: center;
    display: block;
    animation: pullDown 2s ease-in-out infinite;
}
section.section-top .scroll-bottom-btn i:after {
    content: "";
    display: block;
    clear: both;
    display: inline-block;
    border: solid #ed1c24;
    border-width: 0 1px 1px 0;
    padding: 4px;
    transform: rotate(45deg);
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-top .scroll-bottom-btn {
        left: 70%;
    }
}
section.section-top .map-bg {
    position: absolute;
    top: 50%;
    left: 55%;
    width: 50%;
    transform: translateY(-50%);
}
section.section-top .center-content {
    position: absolute;
    top: 15%;
    bottom: 20%;
    padding-bottom: 100px;
    left: 0;
    width: 100%;
}
@media (max-width: 767px) {
    section.section-top .center-content {
        position: static;
        overflow: visible;
        padding-bottom: 10px;
    }
}
section.section-top .center-content .content-row {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
}
@media (max-width: 767px) {
    section.section-top .center-content .content-row {
        display: block;
        padding: 0;
    }
}
@media (max-width: 767px) {
    section.section-top .center-content .content-row .left-col {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 0 3% 10%;
        background: url(../images/xs-bg-top-sect.jpg) no-repeat 50% 20%;
        background-size: cover;
        height: 80vh;
        max-height: 500px;
    }
}
section.section-top .center-content .content-row .right-col {
    position: relative;
    width: 43%;
    text-align: right;
    padding-top: 20px;
}
@media (min-width: 768px) and (max-height: 700px) {
    section.section-top .center-content .content-row .right-col {
        width: 35%;
        padding-top: 0;
        padding-bottom: 30px;
        max-width: 350px;
    }
}
@media (min-width: 768px) and (max-height: 800px) {
    section.section-top .center-content .content-row .right-col {
        max-width: 400px;
    }
}
@media (max-width: 767px) {
    section.section-top .center-content .content-row .right-col {
        width: 100%;
        background: #fff;
        padding: 20px 0;
    }
}
section.section-top .center-content .subtitle {
    display: block;
    font-size: 34px;
    line-height: 42px;
    font-weight: 300;
    padding-bottom: 15px;
    filter: drop-shadow(2px 4px 6px rgb(87, 87, 87));
}


}
@media (max-width: 767px) {
    section.section-top .center-content .subtitle {
        font-size: 31px;
        line-height: 38px;
    }
}
section.section-top .center-content h1 {
    font-size: 7vw;
    line-height: 8vw;
    font-weight: 500;
    margin: 0 0 20px -8px;
}
@media (min-width: 1750px) {
    section.section-top .center-content h1 {
        font-size: 124px;
        line-height: 124px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-top .center-content h1 {
        font-size: 10vw;
        line-height: 9vw;
    }
}
@media (max-width: 767px) {
    section.section-top .center-content h1 {
        font-size: 13vw;
        line-height: 15vw;
        margin-left: 0;
    }
}
section.section-top .center-content .card-box {
    position: relative;
    display: inline-block;
    text-align: left;
    z-index: 3;
}
@media (max-width: 767px) {
    section.section-top .center-content .card-box {
        padding: 0 8%;
    }
}
section.section-top .center-content .card-box .card-title {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding-left: 15px;
    padding-bottom: 25px;
}
@media (max-width: 767px) {
    section.section-top .center-content .card-box .card-title {
        color: #000;
        font-size: 24px;
    }
}
section.section-top .center-content .card-box .card-title b {
    font-weight: 500;
    position: relative;
    display: inline-block;
}
section.section-top .center-content .card-box .card-title b:after {
    content: "";
    display: block;
    clear: both;
    width: 100%;
    height: 1px;
    background: #ed1c24;
    margin-top: 5px;
}
section.section-top .center-content .card-box .card-title em {
    font-style: normal;
    font-size: 10px;
    font-weight: normal;
    display: inline-block;
    vertical-align: top;
}
@media (max-width: 767px) {
    section.section-top .center-content .card-box .card-title em {
        font-size: 12px;
    }
}
section.section-top .center-content .card-box .card {
    position: relative;
    box-shadow: 20px 20px 60px 10px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
}
@media (max-width: 767px) {
    section.section-top .center-content .card-box .card {
        box-shadow: 20px 20px 60px 10px rgba(0, 0, 0, 0.3);
        background: rgba(0, 0, 0, 0.3);
    }
}
section.section-top .center-content .card-box .card img {
    border-radius: 20px;
}
section.section-top .bottom-feats-row {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 10%;
    padding-bottom: 50px;
}
@media (min-width: 768px) and (max-height: 800px) {
    section.section-top .bottom-feats-row {
        padding-bottom: 30px;
    }
}
@media (max-width: 767px) {
    section.section-top .bottom-feats-row {
        position: static;
        padding-bottom: 20px;
    }
    section.section-top .bottom-feats-row .container-full {
        padding: 0;
    }
}
section.section-top .bottom-feats-row .feats-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
@media (max-width: 767px) {
    section.section-top .bottom-feats-row .feats-list {
        display: block;
    }
    section.section-top .bottom-feats-row .feats-list .flickity-page-dots {
        display: none;
    }
}
section.section-top .bottom-feats-row .feats-list .item {
    flex: 1;
    padding: 0 10px;
}
@media (min-width: 768px) {
    section.section-top .bottom-feats-row .feats-list .item:first-child {
        padding-left: 0;
    }
    section.section-top .bottom-feats-row .feats-list .item:last-child {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    section.section-top .bottom-feats-row .feats-list .item {
        width: 70%;
        border-right: 1px solid #e9eaea;
        padding: 0 30px;
        min-height: 150px;
    }
}
section.section-top .bottom-feats-row .feats-list .item .icon {
    height: 60px;
}
@media (max-width: 767px) {
    section.section-top .bottom-feats-row .feats-list .item .icon {
        height: 55px;
    }
}
section.section-top .bottom-feats-row .feats-list .item .title {
    display: block;
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-top .bottom-feats-row .feats-list .item .title {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    section.section-top .bottom-feats-row .feats-list .item .title {
        color: #000;
        font-size: 26px;
    }
}
section.section-top .bottom-feats-row .feats-list .item .subtitle {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-size: 19;
    line-height: 18px;
}
@media (max-width: 767px) {
    section.section-top .bottom-feats-row .feats-list .item .subtitle {
        color: #bbbbbb;
    }
}
section.section-top .xs-button-wrap {
    padding: 0 8% 30px;
    position: relative;
    z-index: 5;
}
section.section-top .xs-button-wrap ._g-yellow-left-btn {
    border-radius: 20px;
    font-size: 7vw;
    padding: 13px 20px 13px 25px;
    text-align: center;
    justify-content: center;
    background: #ed1c24;
    height: auto;
}
section.section-top .xs-button-wrap ._g-yellow-left-btn:after {
    content: "";
    display: block;
    clear: both;
    margin-left: 17px;
    width: 32px;
    height: 30px;
}

.fixed-btn {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 30;
}

.supp-fix-link {
    position: absolute;
    right: 5%;
    bottom: 5%;
    background: #000;
    border-radius: 100px;
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #fbe215;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    width: 49px;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s ease;
}
@media (max-width: 767px) {
    .supp-fix-link {
        display: none;
    }
}
.supp-fix-link:hover {
    width: 180px;
}
.supp-fix-link span {
    padding: 0 15px 0 20px;
    transition: all 0.3s ease;
    display: block;
    right: 40px;
    top: 15px;
}
.supp-fix-link img {
    min-width: 25px;
    display: block;
}

section.section-shop {
    position: relative;
}
@media (max-width: 767px) {
    section.section-shop {
        height: auto;
    }
}
@media (min-width: 768px) {
    section.section-shop._mod-app .sect-bg {
        background: url(../images/bg-sect-web.jpg) no-repeat fixed 50% 100px #fff;
        background-size: cover;
        transform: translateY(0);
    }
}
@media (max-width: 767px) {
    section.section-shop._mod-app .sect-bg {
        background: url(../images/xs-bg-sect3.jpg) no-repeat 50% 50%;
        background-size: cover;
    }
}
section.section-shop._mod-app .shop-icon {
    background: #ed1c24;
}
@media (max-width: 767px) {
    section.section-shop._mod-app .shop-icon {
        padding: 15px;
    }
}
section.section-shop .sect-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 768px) {
    section.section-shop .sect-bg {
        background: url(../images/bg-sect-shop.jpg) no-repeat fixed 50% 50%;
        background-size: cover;
        transform: translateY(100px);
    }
}
@media (max-width: 767px) {
    section.section-shop .sect-bg {
        background: url(../images/xs-bg-sect2.jpg) no-repeat 50% 50%;
        background-size: cover;
    }
}
section.section-shop .sect-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 5;
    height: 100%;
}
@media (max-width: 767px) {
    section.section-shop .sect-content-wrapper {
        display: block;
        padding: 70px 0 60px;
    }
    section.section-shop .sect-content-wrapper .container-full {
        padding: 0 8%;
    }
}
section.section-shop .shop-icon {
    border-radius: 50%;
    background: #ed1c24;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-bottom: 6vh;
}
@media (max-width: 767px) {
    section.section-shop .shop-icon {
        width: 60px;
        height: 60px;
        padding: 10px;
        background: #ed1c24;
        margin-bottom: 20px;
    }
}
section.section-shop .shop-text {
    width: 100%;
    color: #fff;
}
section.section-shop .shop-text p {
    font-size: 75px;
    line-height: 80px;
    font-weight: 300;
    margin: 0 0 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-shop .shop-text p {
        font-size: 60px;
        line-height: 60px;
    }
}
@media (max-width: 767px) {
    section.section-shop .shop-text p {
        font-size: 8vw;
        line-height: 11vw;
        margin-bottom: 30px;
    }
}
section.section-shop .shop-text p b {
    font-weight: 500;
}
section.section-shop .shop-text .subtitle {
    display: block;
    font-weight: 300;
}
@media (max-width: 767px) {
    section.section-shop .shop-text .subtitle {
        font-size: 15px;
    }
}

section.section-white-feats {
    background: #fff;
    position: relative;
    padding: 200px 0 210px;
    z-index: 5;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-white-feats {
        padding: 120px 0;
    }
}
@media (max-width: 767px) {
    section.section-white-feats {
        padding: 120px 0 70px;
    }
}
section.section-white-feats .sect-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg-card-white-sect.png) no-repeat 100% 50%;
}
section.section-white-feats .text-bg {
    position: absolute;
    width: 100%;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 2;
    display: block;
    font-weight: 100;
    color: #ebebef;
    padding-top: 100px;
    margin-top: -100px;
}
@media (max-width: 767px) {
    section.section-white-feats .text-bg {
        transform: none;
        padding-top: 0;
        margin-top: 0;
        top: 30px;
    }
}
section.section-white-feats .text-bg span {
    font-size: 52.3vw;
    line-height: 42vw;
    margin-left: -3.8vw;
    display: block;
}
@media (min-width: 1600px) {
    section.section-white-feats .text-bg span {
        font-size: 900px;
        text-align: center;
    }
}
section.section-white-feats .container-full {
    position: relative;
    z-index: 5;
}
@media (max-width: 767px) {
    section.section-white-feats .container-full {
        padding: 0 8%;
    }
}
section.section-white-feats .content-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-white-feats .content-row {
        display: block;
    }
}
@media (max-width: 767px) {
    section.section-white-feats .content-row {
        display: block;
    }
}
section.section-white-feats .text-col {
    width: 55%;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-white-feats .text-col {
        width: 100%;
    }
}
@media (max-width: 767px) {
    section.section-white-feats .text-col {
        width: 100%;
    }
}
section.section-white-feats .text-col .title {
    display: block;
    font-weight: 500;
    padding-bottom: 55px;
    font-size: 4vw;
    line-height: 4vw;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-white-feats .text-col .title {
        font-size: 6vw;
        line-height: 6vw;
    }
}
@media (max-width: 767px) {
    section.section-white-feats .text-col .title {
        font-size: 9vw;
        line-height: 12vw;
        padding-bottom: 30px;
    }
    section.section-white-feats .text-col .title br {
        display: none !important;
    }
}
section.section-white-feats .text-col .title i {
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    font-size: 2vw;
    line-height: 2vw;
}
@media (max-width: 767px) {
    section.section-white-feats .text-col .title i {
        font-size: 5vw;
        line-height: 5vw;
    }
}
section.section-white-feats .text-col .subtitle {
    display: block;
    padding-bottom: 50px;
    padding-left: 40px;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
}
section.section-white-feats .text-col .subtitle i {
    font-style: normal;
    padding-left: 5px;
    font-size: 14px;
    line-height: 19px;
    display: inline-block;
    vertical-align: top;
}
@media (max-width: 767px) {
    section.section-white-feats .text-col .subtitle {
        padding-left: 0;
    }
}
section.section-white-feats .feats-col {
    padding-left: 30px;
}
@media (max-width: 767px) {
    section.section-white-feats .feats-col {
        padding-left: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-white-feats .feats-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
}
section.section-white-feats .feats-list li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 90px;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-white-feats .feats-list li {
        width: 50%;
    }
}
@media (max-width: 767px) {
    section.section-white-feats .feats-list li {
        padding-bottom: 40px;
    }
}
section.section-white-feats .feats-list li:last-child {
    padding-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-white-feats .feats-list li:last-child {
        padding-bottom: 90px;
    }
}
section.section-white-feats .feats-list li .icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100px;
    min-width: 100px;
    height: 100px;
    background: #ed1c24;
    border-radius: 50%;
    margin-right: 35px;
}
section.section-white-feats .feats-list li .icon img {
    transform: scale(1.4);
}
@media (max-width: 767px) {
    section.section-white-feats .feats-list li .icon {
        margin-right: 30px;
        width: 84px;
        height: 84px;
        min-width: 84px;
    }
}
section.section-white-feats .feats-list li .desc {
    /* padding-top: 70px; */
}
@media (max-width: 767px) {
    section.section-white-feats .feats-list li .desc {
        padding-top: 10px;
    }
}
section.section-white-feats .feats-list li .feat-title {
    display: block;
    font-size: 2vw;
    line-height: 3vw;
    color: #000;
    font-weight: 500;
    padding-bottom: 10px;
}
@media (min-width: 1600px) {
    section.section-white-feats .feats-list li .feat-title {
        font-size: 37px;
        line-height: 40px;
    }
}
@media (max-width: 767px) {
    section.section-white-feats .feats-list li .feat-title {
        font-size: 6vw;
        line-height: 8vw;
    }
}
section.section-white-feats .feats-list li .feat-subtitle {
    font-size: 16px;
    color: #737373;
}
section.section-white-feats .secure-feats-col {
    padding-left: 6%;
}
section.section-white-feats .secure-feats-col .feats-list li {
    padding-bottom: 40px;
}
@media (min-width: 768px) {
    section.section-white-feats .secure-feats-col .feats-list li .feat-title {
        font-size: 2.5vw;
    }
}
@media (min-width: 1600px) {
    section.section-white-feats .secure-feats-col .feats-list li .feat-title {
        font-size: 37px;
        line-height: 40px;
    }
}
section.section-white-feats .heading-box {
    padding-bottom: 80px;
}
section.section-white-feats .heading-box h2 {
    font-weight: 300;
    font-size: 75px;
    line-height: 80px;
    margin: 0;
}
@media (max-width: 767px) {
    section.section-white-feats .heading-box h2 {
        font-size: 10vw;
        line-height: 12vw;
    }
}
section.section-white-feats .heading-box b {
    font-weight: 500;
}
section.section-white-feats._mod-secure {
    background: linear-gradient(to right, #dfdee4 0%, #e7e6eb 50%, #ecebf0 100%);
    padding: 125px 0 80px;
}
section.section-white-feats._mod-secure .sect-bg {
    background: url(../images/bg-card-white-sect.png) no-repeat 100% 50% #fff;
}
@media (max-width: 767px) {
    section.section-white-feats._mod-secure {
        padding: 60px 0 0;
        background: none;
        z-index: 12;
        margin-bottom: -25vw;
    }
    section.section-white-feats._mod-secure .heading-box {
        padding-bottom: 50px;
    }
    section.section-white-feats._mod-secure .sect-bg {
        display: none;
    }
    section.section-white-feats._mod-secure .container-full {
        z-index: 11;
    }
    section.section-white-feats._mod-secure .secure-feats-col {
        padding-left: 0;
    }
    section.section-white-feats._mod-secure .secure-feats-col .feats-list li:last-child {
        padding-bottom: 0;
    }
}
section.section-white-feats._mod-secure .text-bg {
    color: #ebebee;
}
@media (max-width: 767px) {
    section.section-white-feats._mod-secure .text-bg {
        top: 20px;
    }
}
section.section-white-feats .card-col {
    text-align: center;
    padding-top: 30px;
}
@media (min-width: 768px) {
    section.section-white-feats .card-col {
        margin-top: -150px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-white-feats .card-col {
        margin-top: 0;
    }
}
@media (max-width: 767px) {
    section.section-white-feats .card-col {
        display: none;
    }
}
section.section-white-feats .card {
    position: relative;
    border-radius: 30px;
    display: inline-block;
}
section.section-white-feats .card img {
    border-radius: 20px;
    max-width: 810px;
}

.section-wooman {
    position: relative;
    padding: 7vw 0 100px;
    background: linear-gradient(to right, #dfdee4 0%, #e7e6eb 50%, #ecebf0 100%);
}
@media (max-width: 767px) {
    .section-wooman {
        padding-top: 126px;
        padding-bottom: 30px;
        margin-top: 0vw;
        background: #fff;
    }
}
.section-wooman .sect-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {
    .section-wooman .sect-bg {
        background: #fff;
        margin-top: -1px;
    }
}
.section-wooman .sect-bg-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/wooman-sect-bg.jpg) no-repeat 50% 50% #eae9ee;
    background-size: cover;
}
@media (max-width: 767px) {
    .section-wooman .sect-bg-holder {
        background: #fff;
        margin-top: -1px;
    }
}
.section-wooman .wooman-bg {
    position: absolute;
    top: 10%;
    bottom: 0;
    right: 38%;
    width: 40%;
    z-index: 2;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: -2px;
}
@media (min-width: 768px) {
    .section-wooman .wooman-bg {
        display: flex;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .section-wooman .wooman-bg {
        width: 45%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-wooman .wooman-bg {
        opacity: 0.5;
        right: 25%;
        width: 50%;
    }
}
.section-wooman .container-full {
    position: relative;
    z-index: 10;
}
@media (max-width: 767px) {
    .section-wooman .container-full {
        padding: 0;
    }
}
.section-wooman .content-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-wooman .content-row {
        display: block;
    }
}
@media (max-width: 767px) {
    .section-wooman .content-row {
        flex-direction: column;
    }
}
.section-wooman .text-col {
    width: 50%;
    color: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-wooman .text-col {
        width: 100%;
        padding-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .section-wooman .text-col {
        width: 100%;
        background: url(../images/xs-bg-sect4.jpg) no-repeat 50% 0;
        background-size: 100% auto;
        position: relative;
    }
    .section-wooman .text-col .text-wrap {
        position: absolute;
        bottom: 25vw;
        left: 0;
        width: 100%;
        padding: 0 8%;
    }
    .section-wooman .text-col:before {
        content: "";
        display: block;
        clear: both;
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        background: url(../images/xs-bg-sect4-bottom.png) no-repeat 45% 100%;
        z-index: 3;
        height: 12vw;
    }
    .section-wooman .text-col:after {
        content: "";
        display: block;
        clear: both;
        padding-top: 172vw;
    }
}
.section-wooman .text-col .subtitle {
    display: block;
    font-size: 26px;
    font-weight: 300;
    padding-bottom: 20px;
}
@media (max-width: 767px) {
    .section-wooman .text-col .subtitle {
        display: none;
    }
}
.section-wooman .text-col h2 {
    margin: 0 0 0 -1%;
    font-weight: 500;
    font-size: 9vw;
    line-height: 10vw;
}
@media (min-width: 1500px) {
    .section-wooman .text-col h2 {
        font-size: 120px;
        line-height: 130px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-wooman .text-col h2 br {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .section-wooman .text-col h2 {
        font-size: 10vw;
        line-height: 10vw;
    }
}
.section-wooman .feats-col {
    width: 40%;
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-wooman .feats-col {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .section-wooman .feats-col {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .section-wooman .feats-col {
        min-width: 400px;
    }
}
.section-wooman .feats-list {
    max-width: 390px;
    float: right;
    width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-wooman .feats-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        float: none;
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .section-wooman .feats-list {
        max-width: 100%;
        float: none;
        width: 100%;
        padding: 20px 8% 10px;
    }
}
.section-wooman .feats-list li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 8vw;
}
@media (min-width: 1500px) {
    .section-wooman .feats-list li {
        padding-bottom: 100px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-wooman .feats-list li {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .section-wooman .feats-list li {
        justify-content: flex-start;
        padding-bottom: 40px;
    }
}
.section-wooman .feats-list li:last-child {
    padding-bottom: 70px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-wooman .feats-list li:last-child {
        padding-bottom: 0;
    }
}
@media (max-width: 767px) {
    .section-wooman .feats-list li:last-child {
        padding-bottom: 30px;
    }
}
.section-wooman .feats-list li .icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100px;
    min-width: 100px;
    height: 100px;
    background: #ed1c24;
    border-radius: 50%;
    margin-left: 10px;
}
@media (min-width: 768px) {
    .section-wooman .feats-list li .icon {
        order: 2;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .section-wooman .feats-list li .icon {
        order: -1;
    }
}
@media (max-width: 767px) {
    .section-wooman .feats-list li .icon {
        margin-left: 0;
        width: 84px;
        height: 84px;
        min-width: 84px;
    }
}
.section-wooman .feats-list li .desc {
    padding-top: 70px;
}
@media (min-width: 768px) {
    .section-wooman .feats-list li .desc {
        flex: 1;
    }
}
@media (max-width: 767px) {
    .section-wooman .feats-list li .desc {
        padding-top: 10px;
        padding-left: 20px;
    }
}
.section-wooman .feats-list li .feat-title {
    display: block;
    font-size: 2vw;
    line-height: 2.5vw;
    color: #000;
    font-weight: 500;
    padding-bottom: 10px;
}
@media (max-width: 1300px) {
    .section-wooman .feats-list li .feat-title {
        font-size: 30px;
        line-height: 36px;
    }
}
@media (min-width: 1600px) {
    .section-wooman .feats-list li .feat-title {
        font-size: 30px;
        line-height: 38px;
    }
}
@media (max-width: 767px) {
    .section-wooman .feats-list li .feat-title {
        font-size: 6vw;
        line-height: 8vw;
    }
}
.section-wooman .feats-list li .feat-subtitle {
    font-size: 17px;
    color: #000;
}

section.section-free-card {
    width: 100%;
    height: 100vh;
    position: relative;
    max-height: 900px;
}
@media (min-width: 768px) {
    section.section-free-card {
        min-height: 650px;
    }
}
@media (max-width: 767px) {
    section.section-free-card {
        height: auto;
    }
}
section.section-free-card .sect-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #2c2c31 0%, #141416 100%);
}
section.section-free-card .sect-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
}
@media (min-width: 768px) {
    section.section-free-card .sect-content-wrapper {
        overflow: hidden;
    }
}
@media (max-width: 767px) {
    section.section-free-card .sect-content-wrapper {
        height: auto;
        padding-bottom: 70px;
    }
}
section.section-free-card .bottom-row {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    display: none;
}
@media (max-width: 767px) {
    section.section-free-card .bottom-row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }
    section.section-free-card .bottom-row ._g-yellow-left-btn {
        border-radius: 0 25px 0 0;
        font-size: 7vw;
        padding: 13px 35px 12px 25px;
        text-align: center;
        justify-content: center;
        background: #ed1c24;
        height: auto;
    }
    section.section-free-card .bottom-row ._g-yellow-left-btn:after {
        content: "";
        display: block;
        clear: both;
        margin-left: 17px;
        width: 32px;
        height: 30px;
    }
}
section.section-free-card .map-bg {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 70%;
    transform: translateY(-50%) scale(1.2);
    opacity: 0.2;
    text-align: right;
}
@media (max-width: 767px) {
    section.section-free-card .map-bg {
        width: 100%;
        right: 0;
        transform: none;
        top: 10%;
    }
}
section.section-free-card .map-bg img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
section.section-free-card .center-content {
    position: absolute;
    top: 10%;
    bottom: 10%;
    padding-bottom: 100px;
    left: 0;
    width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-free-card .center-content {
        padding-bottom: 30px;
    }
}
@media (max-width: 767px) {
    section.section-free-card .center-content {
        position: static;
        padding: 50px 8% 30px;
    }
}
section.section-free-card .center-content .content-row {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    color: #fff;
}
@media (max-width: 767px) {
    section.section-free-card .center-content .content-row {
        padding: 0;
        display: block;
    }
}
section.section-free-card .center-content .content-row .left-col {
    padding-right: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-free-card .center-content .content-row .left-col {
        padding-bottom: 50px;
    }
}
section.section-free-card .center-content .content-row .right-col {
    position: relative;
    width: 50%;
    text-align: left;
    min-width: 400px;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-free-card .center-content .content-row .right-col {
        min-width: 380px;
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 767px) {
    section.section-free-card .center-content .content-row .right-col {
        width: 100%;
        min-width: 0;
        padding-top: 30px;
    }
}
section.section-free-card .center-content .row-box {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 767px) {
    section.section-free-card .center-content .row-box {
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-free-card .center-content .row-box {
        display: block;
    }
}
section.section-free-card .center-content .subtitle {
    display: block;
    font-size: 50px;
    font-weight: 100;
    padding-bottom: 20px;
}
@media (max-width: 767px) {
    section.section-free-card .center-content .subtitle {
        font-size: 30px;
    }
}
section.section-free-card .center-content h1 {
    font-size: 6.5vw;
    line-height: 7.5vw;
    font-weight: 600;
    margin: 0 0 40px -8px;
    white-space: nowrap;
}
@media (max-width: 767px) {
    section.section-free-card .center-content h1 {
        font-size: 13vw;
        line-height: 14vw;
        margin: 0 0 30px;
    }
}
@media (min-width: 1600px) {
    section.section-free-card .center-content h1 {
        font-size: 100px;
        line-height: 110px;
    }
}
section.section-free-card .center-content h1 i {
    font-size: 20px;
    line-height: 22px;
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    font-weight: normal;
    padding-left: 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-free-card .center-content h1 {
        font-size: 10vw;
        line-height: 9vw;
    }
}
@media (max-height: 750px) and (min-width: 992px) {
    section.section-free-card .center-content h1 {
        font-size: 100px;
        line-height: 90px;
    }
}
section.section-free-card .center-content p {
    font-size: 29px;
    line-height: 46px;
    margin: 0;
    font-weight: 300;
}
@media (max-width: 767px) {
    section.section-free-card .center-content p {
        font-size: 18px;
        line-height: 26px;
    }
}
section.section-free-card .center-content .card-box {
    position: relative;
    display: inline-block;
    text-align: left;
    z-index: 3;
}
section.section-free-card .center-content .card-box .card {
    position: relative;
    border-radius: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
    section.section-free-card .center-content .card-box .card {
        margin: 0 auto;
    }
}
section.section-free-card .center-content .card-box .card img {
    border-radius: 20px;
}
@media (max-width: 767px) {
    section.section-free-card .center-content .card-box .card img {
        border-radius: 10px;
    }
}

footer {
    background: #fff;
    padding: 85px 0 50px;
    position: relative;
    z-index: 10;
}
@media (min-width: 768px) and (max-width: 991px) {
    footer {
        padding: 50px 0;
    }
}
@media (max-width: 767px) {
    footer {
        padding: 30px 0;
    }
    footer .container-full {
        padding: 0 8%;
    }
}
footer .footer-top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 55px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f5f5f5;
}
@media (min-width: 768px) and (max-width: 991px) {
    footer .footer-top {
        flex-wrap: wrap;
        padding-bottom: 30px;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    footer .footer-top {
        display: block;
        padding-bottom: 30px;
        margin-bottom: 20px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    footer .phone-col {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        padding-bottom: 10px;
    }
}
@media (max-width: 767px) {
    footer .phone-col {
        padding-bottom: 20px;
    }
}
footer .phone-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
@media (max-width: 767px) {
    footer .phone-box {
        display: block;
        text-align: center;
    }
}
footer .phone-box .icon {
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background: #ed1c24;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    min-width: 60px;
}
@media (max-width: 767px) {
    footer .phone-box .icon {
        margin: 0 auto 10px;
    }
}
footer .phone-box a {
    display: inline-block;
    color: #000;
    font-weight: 500;
    font-size: 29px;
    white-space: nowrap;
    margin-bottom: 7px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    footer .phone-box a {
        font-size: 28px;
    }
}
footer .phone-box .worktime {
    display: block;
    font-size: 14px;
    font-weight: 500;
}
footer .footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
/* footer .footer-nav li {
    pointer-events: none;
    opacity: 0.4;
} */
footer .footer-nav li:first-child,
footer .footer-nav li:nth-child(2),
footer .footer-nav li:nth-child(3),
footer .footer-nav li:nth-child(4),
footer .footer-nav li:nth-child(5),
footer .footer-nav li:nth-child(6),
footer .footer-nav li:last-child {
    opacity: 1;
    pointer-events: all;
}
@media (max-width: 767px) {
    footer .footer-nav {
        margin-bottom: 47px;
    }
    footer .footer-nav {
        flex-wrap: wrap;
    }
}
footer .footer-nav li {
    padding: 0 15px;
    margin-top: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    footer .footer-nav li {
        padding: 0 10px;
    }
}
footer .footer-nav li a {
    font-size: 17px;
    font-weight: 500;
    color: #000;
    position: relative;
    display: block;
}
footer .footer-nav li a:after {
    content: "";
    display: block;
    clear: both;
    height: 1px;
    width: 100%;
    background: #ed1c24;
    margin-top: 10px;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
}
footer .footer-nav li.active a {
    color: #ed1c24;
}
footer .footer-nav li.active a:after {
    opacity: 1;
}
footer .soc-col {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
@media (max-width: 767px) {
    footer .soc-col {
        justify-content: center;
    }
}
footer .soc-col .soc-label {
    display: inline-block;
    font-size: 14px;
    color: #000;
}
@media (max-width: 767px) {
    footer .soc-col .soc-label {
        padding-right: 10px;
    }
}
footer .soc-col .soc-label:after {
    content: "";
    display: block;
    clear: both;
    height: 1px;
    background: #a9a9a9;
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    footer .soc-col .soc-label:after {
        width: 5px;
        margin-left: 5px;
    }
}
@media (max-width: 767px) {
    footer .soc-col .soc-label:after {
        display: none;
    }
}
footer .soc-col .soc-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
footer .soc-col .soc-list li {
    padding: 0 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    footer .soc-col .soc-list li {
        padding: 0 5px;
    }
}
@media (max-width: 767px) {
    footer .soc-col .soc-list li {
        padding: 0 5px;
    }
}
footer .soc-col .soc-list li:last-child {
    padding-right: 0;
}
footer .soc-col .soc-list a {
    border-radius: 50%;
    border: 1px solid #e4e4e4;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
footer .soc-col .soc-list a:hover {
    border-color: #999;
}
footer .footer-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
@media (max-width: 767px) {
    footer .footer-bottom {
        flex-direction: column;
    }
}
footer .footer-bottom .right-col {
    padding-left: 10%;
}
@media (max-width: 767px) {
    footer .footer-bottom .right-col {
        text-align: center;
        width: 100%;
        padding-left: 0;
        padding-bottom: 20px;
    }
}
footer .footer-bottom .right-col p {
    width: 100%;
    font-size: 11px;
    color: #848484;
    line-height: 19px;
    margin: 0;
}
footer .footer-bottom .copy-col {
    font-size: 13px;
    line-height: 19px;
    white-space: nowrap;
}

@media (max-width: 767px) {
    footer .footer-bottom .copy-col {
        order: 2;
    }
}
footer .footer-bottom .copy-col a {
    font-weight: normal;
    color: #757575;
}
footer .footer-bottom .copy-col a:hover {
    color: #000;
    text-decoration: underline;
}
footer .footer-bottom .copy-col .copy {
    display: inline-block;
    vertical-align: middle;
    padding-right: 0;
    color: #757575;
}
footer .sub-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}
footer .footer-bottom {
    align-items: center;
}
@media (max-width: 767px) {
    footer .sub-nav {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
    }
}
footer .sub-nav li {
    padding: 0 12px;
}
@media (min-width: 768px) and (max-width: 991px) {
    footer .sub-nav li {
        padding: 0 5px;
    }
}
@media (max-width: 767px) {
    footer .sub-nav li {
        padding: 0 5px;
    }
}
footer .sub-nav li a {
    text-decoration: none;
    color: #9f9f9f;
    font-size: 13px;
    font-weight: 500;
    line-height: 19px;
}
footer .sub-nav li a:hover {
    text-decoration: underline;
    color: #000000;
}

.inner-sect-top {
    position: relative;
    padding: 160px 0 50px;
}
.inner-sect-top .sect-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
}
.inner-sect-top .sect-bg:after {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.inner-sect-top .container-full {
    position: relative;
    z-index: 3;
}
.inner-sect-top .heading {
    text-align: center;
    padding-bottom: 50px;
    color: #fff;
}
@media (max-width: 767px) {
    .inner-sect-top .heading {
        padding-bottom: 40px;
    }
}
.inner-sect-top .heading h1 {
    font-weight: 500;
    font-size: 85px;
    margin: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
    .inner-sect-top .heading h1 {
        font-size: 65px;
    }
}
@media (max-width: 767px) {
    .inner-sect-top .heading h1 {
        font-size: 34px;
        margin-bottom: 20px;
    }
}
.inner-sect-top .heading .subtitle {
    display: block;
    font-weight: 300;
    font-size: 26px;
}
@media (max-width: 767px) {
    .inner-sect-top .heading .subtitle {
        font-size: 18px;
    }
}
.inner-sect-top .client-type-nav {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .inner-sect-top .client-type-nav {
        display: block;
    }
}
.inner-sect-top .client-type-nav li {
    border-bottom: 1px solid rgba(185, 167, 158, 0.51);
}
@media (max-width: 767px) {
    .inner-sect-top .client-type-nav li {
        margin-bottom: 20px;
    }
}
.inner-sect-top .client-type-nav li a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 5vw 25px;
    font-size: 30px;
    font-weight: normal;
    color: #fff;
    transition: all 0.3s ease;
}
.inner-sect-top .client-type-nav li a:hover {
    color: #ed1c24;
}
.inner-sect-top .client-type-nav li a:hover img {
    filter: none;
}
.inner-sect-top .client-type-nav li a:after {
    content: "";
    display: block;
    clear: both;
    height: 3px;
    position: absolute;
    top: 100%;
    margin-top: -1px;
    background: #ed1c24;
    width: 100%;
    opacity: 0;
}
.inner-sect-top .client-type-nav li a img {
    margin-right: 25px;
    filter: brightness(0) invert(1);
}
.inner-sect-top .client-type-nav li.active a {
    font-weight: 500;
    color: #ed1c24;
}
.inner-sect-top .client-type-nav li.active a:after {
    opacity: 1;
}
.inner-sect-top .client-type-nav li.active a img {
    filter: none;
}

.page-columns-flex {
    padding: 60px 0 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
@media (max-width: 767px) {
    .page-columns-flex {
        flex-direction: column;
        padding-top: 40px;
    }
}
.page-columns-flex .content-section {
    flex: 1;
}

.request-form-section {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    padding-top: 130px;
    min-height: 100vh;
    background: url(../images/bg-page-request.png) no-repeat 90% 0;
}
@media (min-width: 768px) and (min-height: 850px) {
    .request-form-section {
        min-height: 0;
        height: 100vh;
        max-height: 840px;
        padding-top: 150px;
    }
}
.request-form-section .request-heading {
    padding-bottom: 10vh;
}
@media (min-width: 768px) and (min-height: 850px) {
    .request-form-section .request-heading {
        padding-bottom: 100px;
    }
}
@media (max-width: 767px) {
    .request-form-section .request-heading {
        padding-bottom: 30px;
    }
}
.request-form-section .request-heading h1 {
    margin: 0 0 20px;
    font-weight: 500;
    color: #000;
    font-size: 4.5vw;
    line-height: 4.5vw;
}
@media (min-width: 1400px) {
    .request-form-section .request-heading h1 {
        font-size: 70px;
        line-height: 80px;
    }
}
@media (max-width: 767px) {
    .request-form-section .request-heading h1 {
        font-size: 12vw;
        line-height: 12vw;
        margin-bottom: 10px;
    }
}
.request-form-section .request-heading .subtitle {
    display: block;
    font-size: 40px;
    font-weight: 300;
    padding-bottom: 30px;
}
@media (max-width: 767px) {
    .request-form-section .request-heading .subtitle {
        font-size: 22px;
    }
}

._g-yellow-btn-arrowed {
    display: block;
    width: 100%;
    background: #ed1c24;
    border-radius: 15px;
    padding: 19px 0;
    font-size: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}
._g-yellow-btn-arrowed:hover {
    box-shadow: 0 0 30px #ed1c24;
}
._g-yellow-btn-arrowed span {
    display: inline-block;
    padding: 0 70px;
    position: relative;
}
@media (max-width: 767px) {
    ._g-yellow-btn-arrowed span {
        padding: 0 50px 0 0;
    }
}
._g-yellow-btn-arrowed span:before {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    height: 1px;
    background: #000;
    right: 0px;
    width: 26px;
    top: 50%;
}
._g-yellow-btn-arrowed span:after {
    content: "";
    display: block;
    clear: both;
    display: inline-block;
    position: absolute;
    right: 1px;
    top: 50%;
    border: solid #000;
    border-width: 0 1px 1px 0;
    padding: 6px;
    transform: rotate(-45deg);
    margin-top: -6px;
}

.request-form {
    padding-bottom: 25px;
}
.request-form .form-group {
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .request-form .form-group {
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .request-form fieldset {
        margin-bottom: 20px;
    }
}
.request-form .form-flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}
@media (max-width: 767px) {
    .request-form .form-flex-row {
        display: block;
    }
}
.request-form .form-flex-row .half-col {
    width: 48%;
}
@media (max-width: 767px) {
    .request-form .form-flex-row .half-col {
        width: 100%;
    }
    .request-form .form-flex-row .half-col:first-child {
        margin-bottom: 15px;
    }
}
.request-form input.form-control {
    color: #000;
    font-size: 21px;
    border-color: transparent;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid #c4c4c4;
    box-shadow: none;
    height: 48px;
    padding-left: 20px;
    padding-bottom: 10px;
}
.request-form input.form-control:focus,
.request-form input.form-control:hover {
    border-bottom: 1px solid #000;
}
.request-form input.form-control::-webkit-input-placeholder {
    color: #666;
}
.request-form input.form-control:-moz-placeholder {
    color: #666;
}
.request-form input.form-control::-moz-placeholder {
    color: #666;
}
.request-form input.form-control:-ms-input-placeholder {
    color: #666;
}
.request-form textarea.form-control {
    background: #f6f6f6;
    color: #000;
    font-size: 16px;
    border-color: transparent;
    box-shadow: none;
    padding-top: 15px;
    border-radius: 10px;
    padding-left: 20px;
    resize: vertical;
}
.request-form textarea.form-control::-webkit-input-placeholder {
    color: #666;
}
.request-form textarea.form-control:-moz-placeholder {
    color: #666;
}
.request-form textarea.form-control::-moz-placeholder {
    color: #666;
}
.request-form textarea.form-control:-ms-input-placeholder {
    color: #666;
}
.request-form textarea.form-control:focus {
    border-color: #ccc;
}

.content-section h2 {
    margin: 0 0 30px;
    padding-left: 18px;
    font-weight: normal;
    font-size: 40px;
    color: #000;
}
@media (max-width: 767px) {
    .content-section h2 {
        padding-left: 0;
        font-size: 32px;
    }
}

.content-section hr {
    margin-bottom: 40px;
    border-color: #666;
}
@media (max-width: 767px) {
    .content-section hr {
        margin-bottom: 20px;
    }
}

.left-sidebar {
    width: 315px;
    order: -1;
    margin-right: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .left-sidebar {
        width: 250px;
        margin-right: 30px;
    }
}
@media (max-width: 767px) {
    .left-sidebar {
        width: 100%;
        margin: 0 0 10px;
    }
}

.faq-list {
    width: 100%;
}
.faq-list > li {
    padding-bottom: 20px;
}
.faq-list > li:last-child a {
    border: none;
}
.faq-list > li > a {
    border-bottom: 1px solid #f1f1f1;
    display: block;
    color: #000;
    font-weight: 500;
    padding: 0 25px 12px 15px;
    position: relative;
    font-size: 21px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .faq-list > li > a {
        padding-left: 5px;
        font-size: 18px;
    }
}
.faq-list > li > a:after {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    right: 20px;
    display: inline-block;
    border: solid #bebebe;
    border-width: 0 1px 1px 0;
    padding: 5px;
    transform: rotate(-135deg);
    top: 5px;
}
.faq-list > li > a.collapsed:after {
    transform: rotate(45deg);
    top: 3px;
}
.faq-list ul {
    padding-left: 20px;
    padding-top: 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .faq-list ul {
        padding-left: 0;
    }
}
.faq-list ul li {
    padding: 8px 0;
}
.faq-list ul li a {
    font-size: 17px;
    display: block;
    font-weight: 300;
    color: #000;
    position: relative;
    padding-left: 25px;
}
.faq-list ul li a:before {
    content: "";
    display: block;
    clear: both;
    width: 11px;
    height: 1px;
    background: #aeaeae;
    position: absolute;
    top: 7px;
    left: 0;
}
.faq-list ul li.active a {
    font-weight: 500;
}

.faq-content-type h2 {
    font-size: 55px;
    font-weight: 100;
    margin: 0 0 40px;
    padding-left: 5%;
}
@media (min-width: 768px) and (max-width: 991px) {
    .faq-content-type h2 {
        padding-left: 0;
        font-size: 48px;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .faq-content-type h2 {
        font-size: 32px;
        margin-bottom: 30px;
        padding-left: 10px;
    }
}

.faq-content-type h3 {
    font-size: 25px;
}
@media (max-width: 767px) {
    .faq-content-type h3 {
        font-size: 18px;
    }
}

.faq-content-type p {
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: #2e2e2e;
    margin: 0 0 25px;
}

.faq-content-type .faq-question-item {
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 45px;
    padding: 0 5% 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .faq-content-type .faq-question-item {
        padding: 0 0 30px;
    }
}
@media (max-width: 767px) {
    .faq-content-type .faq-question-item {
        padding: 0 0 30px;
        margin-bottom: 35px;
    }
}
.faq-content-type .faq-question-item:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-content-type ul {
    padding-left: 20px;
    padding-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .faq-content-type ul {
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .faq-content-type ul {
        padding-left: 0;
    }
}
.faq-content-type ul li {
    padding-left: 25px;
    position: relative;
}
.faq-content-type ul li p {
    font-size: 14px;
    color: #767676;
    line-height: 24px;
    font-weight: normal;
}
.faq-content-type ul li p b {
    font-weight: 500;
    color: #000;
}
.faq-content-type ul li p a {
    font-weight: 500;
    color: #000;
}
.faq-content-type ul li p a:hover {
    text-decoration: underline;
}
.faq-content-type ul li:before {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    left: 0;
    top: 10px;
    height: 1px;
    width: 12px;
    background: #cfcfcf;
}

.faq-content-type .vote-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
.faq-content-type .vote-box .vote-label {
    font-size: 12px;
    font-weight: 500;
    color: #585858;
    display: block;
    padding-right: 15px;
}
.faq-content-type .vote-box .vote-buttons {
    margin-top: -10px;
}
.faq-content-type .vote-box .vote-button {
    cursor: pointer;
    opacity: 0.3;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}
.faq-content-type .vote-box .vote-button:hover {
    opacity: 0.8;
}
.faq-content-type .vote-box .vote-button.vote-down {
    transform: rotate(180deg);
    margin-bottom: -15px;
}

.helper-section {
    background: linear-gradient(to right, #fdfdfd 0%, #f6f6f6 50%, #fcfcfc 100%);
    text-align: center;
}
.helper-section .container-full {
    background: url(../images/bg-card-white-sect.png) no-repeat 60% 100px;
    background-size: 70% auto;
    padding-top: 100px;
    padding-bottom: 75px;
}
@media (max-width: 767px) {
    .helper-section .container-full {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.helper-section .subtitle {
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 8px;
    display: block;
    padding-bottom: 30px;
}
.helper-section .title {
    display: block;
    font-weight: 500;
    color: #000;
    font-size: 60px;
    line-height: 66px;
    padding-bottom: 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .helper-section .title {
        font-size: 52px;
        line-height: 54px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .helper-section .title {
        font-size: 44px;
        line-height: 48px;
    }
}
@media (max-width: 767px) {
    .helper-section .title {
        font-size: 34px;
        line-height: 38px;
    }
}
.helper-section .buttons-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
@media (max-width: 767px) {
    .helper-section .buttons-box {
        display: block;
    }
}
.helper-section .yellow-button {
    background: #ed1c24;
    font-size: 23px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    border-radius: 30px;
    padding: 17px 44px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .helper-section .yellow-button {
        font-size: 19px;
        padding: 15px 35px;
    }
}
@media (max-width: 767px) {
    .helper-section .yellow-button {
        display: inline-block;
    }
}
.helper-section .yellow-button:hover {
    background: #ed1c24;
}
.helper-section .label {
    display: block;
    color: #000;
    font-size: 30px;
    padding: 0 50px;
    font-weight: 500;
}
@media (min-width: 768px) and (max-width: 991px) {
    .helper-section .label {
        padding: 0 20px;
    }
}
@media (max-width: 767px) {
    .helper-section .label {
        display: none;
    }
}
.helper-section .phone {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
@media (max-width: 767px) {
    .helper-section .phone {
        display: none;
    }
}
.helper-section .phone .icon {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    background: #ed1c24;
}
.helper-section .phone .tel {
    display: block;
    padding-left: 15px;
    font-size: 30px;
    font-weight: 500;
}

.contact-page-top {
    position: relative;
    padding: 190px 0 50px;
}
@media (max-width: 767px) {
    .contact-page-top {
        padding: 150px 0 30px;
    }
}
.contact-page-top .sect-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
}
.contact-page-top .sect-bg:after {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.contact-page-top .container-full {
    position: relative;
    z-index: 3;
}
.contact-page-top .phone-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
body.blog .contact-page-top .phone-box {
    /* justify-content: center; */
}
@media (max-width: 767px) {
    .contact-page-top .phone-box {
        display: block;
        text-align: center;
    }
}
.contact-page-top .phone-box .icon {
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background: #ed1c24;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    min-width: 60px;
}
@media (max-width: 767px) {
    .contact-page-top .phone-box .icon {
        margin: 0 auto 10px;
    }
}
.contact-page-top .phone-box a {
    display: inline-block;
    color: #fff;
    font-size: 40px;
    white-space: nowrap;
    font-weight: bold;
    padding-bottom: 5px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .contact-page-top .phone-box a {
        font-size: 32px;
    }
}
.contact-page-top .phone-box .worktime {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.inner-header .container-full {
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.inner-header .main-nav li.active a span:after {
    margin-top: 20px;
}

.request-header .header-row {
    position: relative;
}
@media (min-width: 768px) {
    .request-header .header-row {
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .request-header .logo-col {
        border-right: 1px solid #eeeeee;
        width: auto;
    }
}

.request-header .right-col {
    padding-left: 60px;
}
@media (max-width: 767px) {
    .request-header .right-col {
        padding-left: 0;
    }
}

.request-header .lang-col .lang-box .current-lang {
    color: #000;
}
.request-header .lang-col .lang-box .current-lang span {
    color: #000;
}
.request-header .lang-col .lang-box .current-lang img {
    border-color: #dfe0df;
}
.request-header .lang-col .lang-box .current-lang:after {
    border-color: #7a7a7a;
}

.request-header .mobile-menu-btn span {
    background: #000;
}
.request-header .mobile-menu-btn span:before,
.request-header .mobile-menu-btn span:after {
    background: #000;
}

.contact-form {
    padding-bottom: 25px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form .form-flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
}
@media (max-width: 767px) {
    .contact-form .form-flex-row {
        display: block;
    }
}
.contact-form .form-flex-row .half-col {
    width: 48%;
}
@media (max-width: 767px) {
    .contact-form .form-flex-row .half-col {
        width: 100%;
    }
    .contact-form .form-flex-row .half-col:first-child {
        margin-bottom: 15px;
    }
}
.contact-form input.form-control {
    background: #f6f6f6;
    color: #000;
    font-size: 16px;
    border-color: transparent;
    box-shadow: none;
    height: 48px;
    border-radius: 10px;
    padding-left: 20px;
}
.contact-form input.form-control:focus {
    border-color: #ccc;
}
.contact-form input.form-control::-webkit-input-placeholder {
    color: #666;
}
.contact-form input.form-control:-moz-placeholder {
    color: #666;
}
.contact-form input.form-control::-moz-placeholder {
    color: #666;
}
.contact-form input.form-control:-ms-input-placeholder {
    color: #666;
}
.contact-form textarea.form-control {
    background: #f6f6f6;
    color: #000;
    font-size: 16px;
    border-color: transparent;
    box-shadow: none;
    padding-top: 15px;
    border-radius: 10px;
    padding-left: 20px;
    resize: vertical;
}
.contact-form textarea.form-control::-webkit-input-placeholder {
    color: #666;
}
.contact-form textarea.form-control:-moz-placeholder {
    color: #666;
}
.contact-form textarea.form-control::-moz-placeholder {
    color: #666;
}
.contact-form textarea.form-control:-ms-input-placeholder {
    color: #666;
}
.contact-form textarea.form-control:focus {
    border-color: #ccc;
}

.fake-table {
    width: 100%;
    padding-bottom: 20px;
}
@media (max-width: 767px) {
    .fake-table {
        padding-bottom: 10px;
    }
}
.fake-table .table-row {
    width: 100%;
    padding: 12px 3% 12px 22px;
    font-size: 17px;
}
@media (max-width: 767px) {
    .fake-table .table-row {
        padding: 5px 10px 10px;
        margin-bottom: 5px;
    }
}
.fake-table .table-row:nth-child(even) {
    background-color: #f9f9fa;
    border-radius: 5px;
}
.fake-table span {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    color: #404040;
}
@media (min-width: 768px) and (max-width: 991px) {
    .fake-table span {
        width: 40%;
    }
}
@media (max-width: 767px) {
    .fake-table span {
        width: 100%;
        display: block;
        padding-bottom: 5px;
    }
}
.fake-table strong {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    font-weight: 500;
}
@media (max-width: 767px) {
    .fake-table strong {
        font-weight: 500;
        width: 100%;
        display: block;
    }
}

.modal-message {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 50;
    display: none;
}
.modal-message .modal-holder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.modal-message .modal-holder .icon {
    padding-bottom: 20px;
}
.modal-message .modal-holder .title {
    display: block;
    font-weight: 500;
    font-size: 25px;
}

.sect-cardo {
    position: relative;
    min-height: 100vh;
}
.sect-cardo .sect-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
}
.sect-cardo .sect-holder {
    position: relative;
    z-index: 3;
}

.lang-et section.section-top .center-content h1 {
    font-size: 7vw;
    line-height: 8vw;
}
@media (min-width: 1600px) {
    .lang-et section.section-top .center-content h1 {
        font-size: 120px;
    }
}
@media (max-width: 767px) {
    .lang-et section.section-top .center-content h1 {
        font-size: 39px;
    }
}

html.firefox section.section-shop .sect-bg {
    transform: none;
}

html.firefox section.section-shop._mod-app .sect-bg {
    background-position: 50% 0;
}

html.ie11 section.section-top .sect-bg-wrap,
html.edge section.section-top .sect-bg-wrap {
    position: absolute;
}

html.ie11 section.section-top .sect-top-wrapper,
html.edge section.section-top .sect-top-wrapper {
    position: absolute;
}

html.ie11 section.section-shop .sect-bg,
html.edge section.section-shop .sect-bg {
    transform: translateY(0);
}

html.ie11 section._mod-app.section-shop .sect-bg,
html.edge section._mod-app.section-shop .sect-bg {
    background-position: 50% 0;
}

.inner-form-submit-response {
    text-align: center;
    color: #000;
    padding: 40px 100px 30px 40px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .inner-form-submit-response {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .inner-form-submit-response {
        padding: 0 0 30px;
    }
}

.inner-form-submit-response .icon {
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .inner-form-submit-response .icon {
        margin-left: -20px;
        margin-bottom: 20px;
    }
}

.inner-form-submit-response .success-title {
    display: block;
    font-size: 40px;
    color: #000;
    padding-bottom: 20px;
    font-weight: normal;
}

@media (max-width: 767px) {
    .inner-form-submit-response .success-title {
        font-size: 28px;
        line-height: 34px;
        padding-bottom: 15px;
    }
}

.inner-form-submit-response p {
    font-size: 19px;
    line-height: 28px;
    font-weight: 300;
    margin: 0 0 20px;
}


a.def {
    color: #000;
}