/* header */
.header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 20px;
    border-bottom: 2px solid #1A79FF;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.header__extra,
.header__main {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
}
.header__extra {
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 20px;
}
.header__tel {
    margin-left: 20px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 500;
    color: #1A79FF;
}
.header__tel:hover {
    color: #E5F0FF;
}
.header__soc {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.header__soc > svg {
    fill: #1A79FF;
}
.header__soc:hover > svg {
    fill: #E5F0FF;
}
.header__login {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    width: fit-content;
    height: 34px;
    font-size: 14px;
    line-height: 1;
    color: #1A79FF;
    gap: 4px;
    background-color: #E5F0FF;
    padding: 0 16px;
    margin-left: 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.header__login > svg {
    stroke: #1A79FF;
}
.header__login:hover {
    color: #fff;
    background-color: #1A79FF;
}
.header__login:hover > svg {
    stroke: #fff;
}
.header__main {
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 40px;
}
.header__logo {
    width: fit-content;
}
.header__logo > img {
    width: auto;
    max-width: 100%;
    height: auto;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}
.header__nav {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: fit-content;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    gap: 20px;
}
.header__nav > li {}
.header__nav > li.menu-item-has-children {
    position: relative;
}
.header__nav > li > a {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    width: fit-content;
    height: 36px;
    font-size: 16px;
    color: #1A79FF;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.header__nav > li > a:hover {
    border-color: #1A79FF;
}
.header__nav > li.current-menu-item > a,
.header__nav > li.current-page-ancestor > a {
    color: #fff;
    background-color: #1A79FF;
}
.header__nav > li.menu-item-has-children > .sub-menu {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: fit-content;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    padding: 20px;
    gap: 10px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    border: 1px solid #1A79FF;
    box-shadow: 0px 5px 15px rgba(25, 121, 255, 0.15);
    border-radius: 24px;
}
.header__nav > li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
}
.header__nav .sub-menu > li {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: max-content;
}
.header__nav .sub-menu > li > a {
    font-size: 14px;
    line-height: 1.25;
    color: #1A79FF;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.header__nav .sub-menu > li > a:hover {
    border-color: #1A79FF;
}
.header__nav .sub-menu > li.current-menu-item > a {
    color: #fff;
    background-color: #1A79FF;
}
.header__demo {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    width: fit-content;
    height: 36px;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    background-color: #3388FF;
    padding: 0 16px;
    margin-left: auto;
    border: solid 1px #3388FF;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.header__demo:hover {
    color: #3388FF;
    background-color: #fff;
}

/* mob btn */
.mobSoc {
    display: none;
}
.header__mob {
    display: none;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    position: relative;
}

.header__mob > span {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 3px;
    background-color: rgba(26, 121, 255, 1);
}
.header__mob > span + span {
    margin-top: 5px;
}

body.navOpen {
    overflow: hidden;
}

body.navOpen .header__mob > span:nth-of-type(1) {
    animation: stick-1-open .85s ease-out forwards;
    -webkit-animation: stick-1-open .85s ease-out forwards;
}
body.navOpen .header__mob > span:nth-of-type(2) {
    width: 29px;
    margin-left: 0;
    animation: stick-2-open .85s linear forwards;
    -webkit-animation: stick-2-open .85s linear forwards;
}
body.navOpen .header__mob > span:nth-of-type(3) {
    animation: stick-3-open .85s linear forwards;
    -webkit-animation: stick-3-open .85s linear forwards;
}

body.navClose .header__mob > span:nth-of-type(1) {
    width: 3px;
    animation: stick-1-close .85s ease-out forwards;
    -webkit-animation: stick-1-close .85s ease-out forwards;
}
body.navClose .header__mob > span:nth-of-type(2) {
    margin-left: 0;
    animation: stick-2-close .85s ease-out forwards;
    -webkit-animation: stick-2-close .85s ease-out forwards;
}
body.navClose .header__mob > span:nth-of-type(3) {
    animation: stick-3-close .85s ease-out forwards;
    -webkit-animation: stick-3-close .85s ease-out forwards;
}

.mobNav {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-auto-rows: max-content;
    width: 100%;
    background-color: rgba(26, 121, 255, 1);
    color: #fff;
    padding-left: 32px;
    padding-top: 170px;
    padding-right: 32px;
    padding-bottom: 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
}
body.navOpen > .mobNav {
    opacity: 1;
    visibility: visible;
}
body.navOpen .header {
    background-color: #1A79FF;
}
body.navOpen .header__extra,
body.navOpen .mobSoc {
    opacity: 0;
    visibility: hidden;
}
body.navOpen .header__mob > span {
    background-color: #fff;
}
body.navOpen .header__logo > img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.mobNav__nav {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
.mobNav__nav > li + li {
    margin-top: 20px;
}
.mobNav__nav > li > a {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 46px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
}
.mobNav > ul.mobNav__nav > li.menu-item-has-children:not(:first-child) > a::after {
    content: '';
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    max-width: 30px;
    height: 30px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNSAxOC43NUwxNSAxMS4yNUwyMi41IDE4Ljc1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.mobNav > ul.mobNav__nav > li.menu-item-has-children:not(:first-child) > a.open::after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.mobNav__nav > li.menu-item-has-children > .sub-menu {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 25px;
    list-style: none;
    gap: 10px;
}
.mobNav__nav .sub-menu > li > a {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    width: fit-content;
    height: 39px;
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

.mobNav__extra {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    gap: 24px;
}
.mobNav__tel {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
    color: #fff;
    margin-right: auto;
}
.mobNav__soc {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.mobNav__soc > svg {
    fill: #fff;
}