/* BEGIN RESET */
html {
    line-height: 1.15;
    scroll-behavior: smooth;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

article,
aside,
footer,
header,
nav,
section {
    display: block
}

figcaption,
figure,
main {
    display: block
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    color: var(--ws-color-link);
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: inherit
}

b,
strong {
    font-weight: 600
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

audio,
video {
    display: inline-block
}

audio:not([controls]) {
    display: none;
    height: 0
}

img {
    border-style: none
}

svg:not(:root) {
    overflow: hidden
}

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type='reset'],
[type='submit'],
button,
html [type='button'] {
    appearance: button;
    -webkit-appearance: button
}

[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    display: inline-block;
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type='checkbox'],
[type='radio'] {
    box-sizing: border-box;
    padding: 0
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
    height: auto
}

[type='search'] {
    appearance: textfield;
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details,
menu {
    display: block
}

summary {
    display: list-item
}

canvas {
    display: inline-block
}

template {
    display: none
}

[hidden] {
    display: none
}

a::before,
a::after {
    font-family: FontAwesome;
}

a {
    color: inherit;
    text-decoration: none
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
    transition: all .3s ease;
    color: var(--ws-color-link);
}

img {
    height: auto;
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* END RESET */

.text-nowrap {
    white-space: nowrap;
}

::-webkit-scrollbar {
    width: 10px;
    background: var(--ws-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--ws-color-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--ws-color-second);
}

body {
    font-size: 16px;
    line-height: 1.5;
    background: var(--ws-color-white);
    font-family: var(--ws-font-primary);
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
}
.wrapper::after {
    clear: both;
    content: '';
    display: table;
}
.wrapper .wrapper {
    padding-left: 0;
    padding-right: 0;
}

/* loader */
.loader {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    position: fixed;
}
.loader .app-loader {
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    background: rgba(250, 250, 255, 0.6);
}
.app-loader .loading {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: inline-block;
    border: solid 2px var(--ws-color-primary);
    border-top-color: var(--ws-color-second);
}

@media screen and (max-width: 1200px)
{
    .wrapper {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 992px)
{
    .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 767px)
{
    .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 480px)
{

}

@media screen and (max-width: 360px)
{

}

.embed-responsive-1by1 {
    padding-top: 100%;
}

/* ws-header */
html.mm-opening .ws-header {
    top: 0;
    width: 100%;
    z-index: 9999;
    position: fixed;
}
html.mm-opening .ws-header__menu {
    transform: rotate(180deg);
}

.ws-topbar {
    font-size: 13px;
    font-weight: 700;
    position: relative;
    border-bottom: 1px solid #dee2e6;
}
.ws-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ws-topbar__left {
    display: flex;
    gap: 25px;
    padding: 10px 0;
}
.ws-topbar__inner a,
.ws-topbar__inner span {
    gap: 4px;
    display: flex;
    line-height: 20px;
    align-items: center;
}
.ws-topbar__inner a {
    color: var(--ws-color-black);
}
.ws-topbar__inner a:hover {
    text-decoration: underline;
}
.ws-topbar__inner .fa {
    color: var(--ws-color-black);
}

.ws-header {
    z-index: 999;
    position: relative;
    background: var(--ws-color-white);
}
.ws-header__inner {
    display: flex;
    padding: 24px 0;
    align-items: center;
    justify-content: space-between;
}
.ws-header__logo,
.ws-header__logo * {
    display: flex;
}

.ws-header__form,
.ws-header__right,
.ws-header__navs,
.ws-header__navs .items {
    gap: 50px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.ws-header__form {
    gap: 8px;
}
.ws-header__navs .items > li {
    position: relative;
}
.ws-header__navs .items > li.has-sub > span::after,
.ws-header__navs .items > li.has-sub > a::after {
    content: '\f107';
    font-family: 'FontAwesome';
}
.ws-header__navs .items > li > span,
.ws-header__navs .items > li > a {
    gap: 7px;
    margin: 0;
    display: flex;
    cursor: pointer;
    font-weight: 700;
    line-height: 50px;
    position: relative;
    justify-content: center;
    color: var(--ws-color-black);
}
.ws-header__navs .items > li > span::before,
.ws-header__navs .items > li > a::before {
    left: 0;
    width: 0;
    bottom: 0;
    content: '';
    position: absolute;
    transition: all .3s ease;
    border-top: 3px solid var(--ws-color-second);
}
.ws-header__navs .items > li.current-menu-parent > a,
.ws-header__navs .items > li.current-menu-parent > span,
.ws-header__navs .items > li:hover > span,
.ws-header__navs .items > li > a.active,
.ws-header__navs .items > li:hover > a {
    color: var(--ws-color-black);
}
.ws-header__navs .items > li.current-menu-parent > a::before,
.ws-header__navs .items > li.current-menu-parent > span::before,
.ws-header__navs .items > li:hover > span::before,
.ws-header__navs .items > li > a.active::before,
.ws-header__navs .items > li:hover > a::before {
    width: 100%;
}
.ws-header__navs .items > li:hover > .sub-menu {
    display: block;
}
.ws-header__navs .sub-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    background-clip: padding-box;
    background: var(--ws-color-primary);
}
.ws-header__navs .sub-menu li {
    position: relative;
}
.ws-header__navs .sub-menu li.has-sub > a::before,
.ws-header__navs .sub-menu li.has-sub > span::before {
    content: '\f105';
    font-family: 'FontAwesome';
    position: absolute;
    right: 15px;
}
.ws-header__navs .sub-menu li span,
.ws-header__navs .sub-menu li a {
    margin: 0;
    display: flex;
    cursor: pointer;
    font-weight: 700;
    min-width: 200px;
    padding: 8px 15px;
    white-space: nowrap;
    transition: all .3s ease;
    color: var(--ws-color-black);
}
.ws-header__navs .sub-menu li:hover > a,
.ws-header__navs .sub-menu li:hover > span,
.ws-header__navs .sub-menu li > a.active {
    color: var(--ws-color-white);
    background: var(--ws-color-black);
}

.ws-header__navs .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}
.ws-header__navs .sub-menu li:hover .sub-menu {
    display: block;
}

.ws-header__phone a {
    display: flex;
    padding: 5px 15px;
    padding-left: 35px;
    border-radius: 4px;
    color: var(--ws-color-white);
    background: var(--ws-color-primary) url('https://getevisavietnam.com/ws-content/themes/getevisavietnam/assets/images/phone-white.svg') no-repeat 10px center / 20px;
}
.ws-header__phone a:hover {
    background-color: var(--ws-color-second);
}
.formsearch {
    gap: 8px;
    display: flex;
}
.formsearch .dropdown-toggle {
    border: 0;
    padding: 0;
    display: flex;
    outline: none;
    background: none;
}
.formsearch .dropdown-toggle span {
    width: 38px;
    height: 38px;
    display: flex;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    background-color: #6c757d;
    color: var(--ws-color-white);
}
.formsearch .dropdown-toggle span:hover {
    border-color: #545b62;
    background-color: #5a6268;
}
.formsearch .dropdown-toggle svg {
    fill: var(--ws-color-white);
}
.formsearch.open .dropdown-menu {
    display: flex;
    margin-top: 4px;
    min-width: 346px;
    border-radius: 3px;
}
.formsearch .dropdown-menu {
    left: unset;
    right: 0;
    margin: 0;
    padding: 20px;
    border-radius: 0;
}
.formsearch .text-search {
    min-width: 250px;
    min-height: 40px;
    border-radius: 0;
    box-shadow: none;
}
.formsearch .btn-search {
    width: 50px;
    border-radius: 0;
    border: 0;
    font-size: 20px;
    color: var(--ws-color-white);
    background: var(--ws-color-primary);
}

.ws-nav {
    top: 0;
    z-index: 998;
    position: sticky;
    background: var(--ws-color-primary);
}

.ws-content {
    font-size: 15px;
    min-height: 300px;
    position: relative;
}

/* ws-block__banner */
.ws-block__banner {
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: flex-end;
    justify-content: center;
    aspect-ratio: calc(1425 / 226) / 1;
}
.ws-block__banner .advertise-pages {
    bottom: 0;
    width: 100%;
    position: absolute;
}
.ws-block__banner .advertise-pages * {
    width: 100%;
    object-fit: cover;
}
.ws-block__banner .ws-block__heading {
    gap: 20px;
    display: flex;
    font-size: 18px;
    padding: 0 0 20px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: var(--ws-color-white);
}
.ws-block__banner .ws-block__heading--title {
    font-size: 40px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    align-items: center;
    display: inline-flex;
    vertical-align: middle;
    color: var(--ws-color-black);
    background: var(--ws-color-white);
}

.ws-button__primary {
    border: 0;
    height: 40px;
    outline: none;
    font-size: 16px;
    padding: 7px 20px;
    text-transform: uppercase;
    color: var(--ws-color-black);
    background: var(--ws-color-primary);
}

/* ws-footer */
.ws-footer {
    overflow: hidden;
    position: relative;
    background: var(--ws-color-primary);
}
.ws-footer a:hover {
    text-decoration: underline;
}
.ws-footer__inner {
    display: grid;
    padding: 40px 0 30px;
}
.ws-footer__inner,
.ws-footer__menus > .items {
    gap: 50px;
}
.ws-footer__text {
    gap: 7px;
    display: flex;
    flex-direction: column;
}
.ws-footer__text p {
    margin: 0;
}
.ws-footer__text p:first-child {
    margin-bottom: 15px;
}
.ws-footer__menus {
    position: relative;
}
.ws-footer__menus > .items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.ws-footer__menus > .items > li {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.ws-footer--title,
.ws-footer__menus > .items > li > span,
.ws-footer__menus > .items > li > a {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
}
.ws-footer__menus .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ws-footer__menus .sub-menu > li > span,
.ws-footer__menus .sub-menu > li > a {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
}
.ws-footer__menus .sub-menu > li > .viewall,
.ws-footer__menus .sub-menu > li > a.active,
.ws-footer__menus .sub-menu > li > a:hover {
    text-decoration: underline;
    color: var(--ws-color-black);
}
.ws-footer__contact,
.ws-footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.ws-footer__contact ul {
    gap: 8px;
}
.ws-footer__contact li > * {
    gap: 8px;
    display: flex;
}
.ws-footer__socials {
    gap: 15px;
    display: flex;
    flex-direction: column;
}
.ws-footer__icons {
    gap: 10px;
    display: flex;
    margin-top: 10px;
    align-items: center;
}
.ws-footer__icons a {
    width: 36px;
    height: 36px;
    display: flex;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.ws-footer__icons--youtube a {
    background-color: red;
}
.ws-footer__icons--youtube svg {
    fill: var(--ws-color-white);
}
.ws-footer__icons--tiktok a {
    background-color: black;
}
.ws-footer__icons--tiktok svg {
    fill: var(--ws-color-white);
}
.ws-footer__icons--instagram a {
    background-color: #f00075;
}
.ws-footer__icons--instagram svg {
    fill: var(--ws-color-white);
}

/* ws-block__map */
.ws-block__map {
    margin: 40px auto;
}
.ws-block__map--inner {
    gap: 4%;
    display: grid;
    grid-template-columns: 46% auto;
}
.ws-block__map .ws-block__editor {
    margin: 0;
}
.ws-block__map .ws-block__editor p {
    margin-bottom: 10px;
}
.ws-block__map .ws-block__editor p:last-child {
    margin: 0;
}
.ws-block__map hr {
    border-top: 1px solid #7a7a7a5e;
}

/* ws-block__heading */
.ws-block__heading {
    position: relative;
}
.ws-block__heading--container {
    position: relative;
}
.ws-block__heading--title {
    margin: 0;
    font-weight: 700;
    font-family: var(--ws-font-primary);
}
.ws-block__heading .ws-headline {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: var(--ws-color-00A651);
}
.ws-headline.color-primary {
    color: var(--ws-color-primary);
}

.ws-header__country .form-control {
    box-shadow: none;
    min-width: 300px;
    min-height: 38px;
}

/* ws-breadcrumb */
.ws-breadcrumb {
    padding: 12px 0;
    background: none;
    position: relative;
}
.ws-breadcrumb .items {
    gap: 7px;
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
}
.ws-breadcrumb .items li {
    gap: 7px;
    display: flex;
    line-height: 20px;
    color: var(--ws-color-excerpt);
}
.ws-breadcrumb .items li:not(:last-child)::after {
    content: '»';
}
.ws-breadcrumb .items li a {
    display: flex;
    white-space: nowrap;
    transition: all .3s ease;
    color: var(--ws-color-black);
}
.ws-breadcrumb .items li a:hover {
    color: var(--ws-color-second);
}

.ws-header__menu {
    display: none;
    transition: transform 0.8s ease;
}
.ws-header__menu--icon {
    display: flex;
}

.ws-copyright {
    padding: 10px 0;
    line-height: 20px;
    background: var(--ws-color-white);
}

.ws-footer__info {
    gap: 30px;
    display: grid;
    padding-bottom: 40px;
    grid-template-columns: 250px auto;
}
.ws-footer__info--left p:last-child {
    text-align: center;
    margin: 0;
}
.ws-footer__info--right {
    max-width: 800px;
}

@media screen and (max-width: 1200px)
{
    .ws-header .ws-header__tracking {
        display: none;
    }
}

@media screen and (max-width: 992px)
{
    .ws-header__navs,
    .ws-header__menu--list {
        display: none;
    }
    .ws-header__menu {
        right: 0;
        display: flex;
        position: absolute;
    }
    .ws-header__menu--icon {
        padding: 28px 15px;
    }
}

.admin-bar .ws-nav {
    top: 40px;
}

@media screen and (max-width: 767px)
{
    .ws-topbar,
    .ws-header__form,
    .formsearch {
        display: none;
    }

    .ws-header__inner {
        padding: 15px 0;
        min-height: 80px;
        justify-content: center;
    }

    .ws-header__logo,
    .ws-header__logo * {
        max-width: 152px;
    }

    .ws-content {
        font-size: 16px;
    }

    .ws-footer .wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .ws-footer__menus > .items {
        display: flex;
        flex-direction: column;
    }

    .ws-footer__inner,
    .ws-footer__menus > .items {
        gap: 30px;
    }

    .ws-footer__info,
    .ws-footer__inner {
        padding: 30px 0;
    }
    .ws-footer__info {
        grid-template-columns: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .ws-sitedoc-footer_logo {
        text-align: center;
    }
    .ws-copyright {
        padding: 15px 0;
        line-height: 24px;
        text-align: center;
    }

    .ws-block__banner {
        aspect-ratio: 2/1;
    }
    .ws-block__banner .advertise-pages,
    .ws-block__banner .advertise-pages * {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .ws-block__banner .ws-block__heading--title {
        font-size: 32px;
        line-height: 1.3;
        text-align: center;
    }
}

/* shortcodes */
.ws-faqs__groups {
    margin: 20px 0;
    display: grid;
    gap: 24px;
}
.ws-faqs__group {
    gap: 12px;
    display: flex;
    flex-direction: column;
}
.ws-faqs__group--name h2 {
    margin: 0;
}
.ws-faqs__group--item {
    gap: 12px;
    display: flex;
    position: relative;
    background: #f4f4f4;
    flex-direction: column;
    border: 1px solid #d9d9d9;
    padding: 12px 16px;
}
.ws-faqs__group--item:not(.open),
.ws-faqs__group--item__title {
    cursor: pointer;
    user-select: none;
}
.ws-faqs__group--item__title {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
}
.ws-faqs__group--item__title::after {
    font-size: 20px;
    content: '\f107';
    font-family: FontAwesome;
}
.ws-faqs__group--item.open .ws-faqs__group--item__title::after {
    transform: rotate(180deg);
}
.ws-faqs__group--item__title h3 {
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.ws-faqs__group--item:not(.open) .ws-faqs__group--item__content {
    display: none;
}

.advertise-social_fixed {
    gap: 20px;
    bottom: 5%;
    right: 10px;
    z-index: 1000;
    display: grid;
    position: fixed;
    text-align: center;
}
.advertise-social_fixed  a {
    display: block;
    max-width: 40px;
    overflow: hidden;
    border-radius: 50%;
    background: white;
}