@charset "UTF-8";
@font-face {
    font-family: "Roboto";
    src: url("/font/Roboto-Regular.ttf");
}

:root {
    --primary-color: #007ac3;
    --secondary-color: #0785d1;
    --tertiary-color: #f6cd40;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

* {
    outline: none;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0;
}

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

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

a {
    background-color: transparent;
    display: inline-block;
    text-decoration: none;
}

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

b,
strong {
    font-weight: bolder;
}

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

small {
    font-size: 80%;
}

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

li {
    list-style: none;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

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

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

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

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-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 {
    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] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

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

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

.header-desktop {
    display: none;
    background-color: #FFFFFF;
    width: 100%;
    height: 96px;
    position: fixed;
    top: 0;
    z-index: 10;
}

.header-desktop .header-main {
    width: 100%;
    max-width: 1060px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 21px 0 8px;*/
    margin: auto;
}

.header-desktop .header-main .left img {
    width: 195px;
    cursor: pointer;
}

.header-desktop .header-main .right {
    padding-right: 1rem;
    width: 100%;
    max-width: 750px;
}

.header-desktop .header-main .right .navbar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-desktop .header-main .right .navbar ul li .nav-link {
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    opacity: 0.8;
    padding: 3px 5px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
}

.header-desktop .header-main .right .navbar ul li .nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    background-color: var(--primary-color);
    left: 0;
    bottom: -3px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.header-desktop .header-main .right .navbar ul li .nav-link.active {
    color: var(--primary-color);
}

.header-desktop .header-main .right .navbar ul li .nav-link.active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    left: 0;
    bottom: -3px;
}

.header-desktop .header-main .right .navbar ul li .nav-link.active:hover::before {
    width: 100%;
}

.header-desktop .header-main .right .navbar ul li .nav-link:hover {
    color: var(--primary-color);
}

.header-desktop .header-main .right .navbar ul li .nav-link:hover::before {
    width: 50px;
}

.header-desktop .header-main .right .navbar ul li .btn-blue {
    width: 120px;
    height: 40px;
    background: #e74c3c;
    border-radius: 4px;
    margin-left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-desktop .header-main .right .navbar ul li .btn-blue span {
    margin-left: 1rem;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.header-desktop .header-main .right .navbar ul li .btn-blue img {
    width: 22px;
    animation: rotatePhone 0.5s ease-in-out infinite;
    -webkit-animation: rotatePhone 0.5s ease-in-out infinite;
}

.header-mobile {
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    background-color: #FFFFFF;
}

.header-mobile .header-main {
    position: relative;
    height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-mobile .header-main .left {
    padding-left: 12px;
}

.header-mobile .header-main .left img {
    width: 130px;
    cursor: pointer;
}

.header-mobile .header-main .right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-right: 30px;
}

.header-mobile .header-main .right .burger {
    display: inline-block;
    width: 39px;
    height: 5px;
    background: var(--primary-color);
    margin-bottom: 6px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.header-mobile .header-main .right .burger.burger-3 {
    margin-bottom: 0;
}

.header-mobile .header-main .right.active {
    position: relative;
}

.header-mobile .header-main .right.active .burger-1 {
    position: absolute;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.header-mobile .header-main .right.active .burger-2 {
    opacity: 0;
}

.header-mobile .header-main .right.active .burger-3 {
    position: absolute;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.header-mobile .header-main .layer {
    position: absolute;
    width: 100%;
    height: calc(100vh - 74px);
    background: #141414;
    opacity: 0.8;
    z-index: 1;
    top: 74px;
    left: 100%;
    padding: 42px 35px 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.header-mobile .header-main .layer.show {
    left: 0;
}

.header-mobile .header-main .layer .navbar ul li .nav-link {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    margin-bottom: 28px;
    padding: 5px 3px;
    position: relative;
}

.header-mobile .header-main .layer .navbar ul li .nav-link.active::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #FFFFFF;
    left: 0;
    bottom: -4px;
}

.header-mobile .header-main .layer .btn-blue {
    width: 140px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-mobile .header-main .layer .btn-blue img {
    animation: rotatePhone 0.5s ease-in-out infinite;
    -webkit-animation: rotatePhone 0.5s ease-in-out infinite;
}

.header-mobile .header-main .layer .btn-blue span {
    margin-left: 1rem;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.header-search {
    width: 100%;
    max-width: 1037px;
    margin: auto;
    height: 72px;
    background: #FFFFFF;
    border-radius: 4px;
    margin-top: 74px;
    position: relative;
    z-index: 1;
}

.header-search .wrapper-search {
    height: 72px;
    position: relative;
}

.header-search .wrapper-search .icon-search {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 23px;
}

.header-search .wrapper-search .input-search {
    width: 100%;
    height: 72px;
    background: #FFFFFF;
    border: 0.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
    color: #808080;
    padding: 28px 46px 28px 98px;
    font-family: "Roboto", sans-serif;
    box-shadow: 0px 10px 20px -15px #000000;
}

.header-search .wrapper-search .input-search:focus {
    font-size: 16px;
}

.header-search .wrapper-search .icon-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 30px;
}

.header-search .list-item {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 0;
    padding: 0.5rem;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
}

.header-search .list-item.show {
    display: flex;
}

.header-search .list-item .item {
    color: #808080;
    width: 100%;
    height: 50px;
    padding: 16px 20px;
    background: #FFFFFF;
    border: 0.5px solid rgba(0, 0, 0, 0.2);
    border-bottom: none;
    box-sizing: border-box;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.header-search .list-item .item:last-child {
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

.header-search .list-item .item:hover {
    background: #ececec;
}

.header-search .list-item .item:nth-child(5),
.header-search .list-item .item:nth-child(6),
.header-search .list-item .item:nth-child(7),
.header-search .list-item .item:nth-child(8) {
    display: none;
}

.gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#featured {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.thumbnail {
    max-width: 180px;
    max-height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    margin: 5px;
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail.active {
    opacity: 1;
    box-shadow: 0px 0px 5px 0px var(--primary-color);
}

#slide-wrapper {
    max-width: 100%;
    display: flex;
    min-height: 100px;
    align-items: center;
}

#slider {
    width: 440px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
}

.arrow {
    width: 30px;
    height: 30px;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.arrow:hover {
    opacity: 1;
}

@media (min-width: 992px) {
    .header-desktop {
        display: block;
    }
    .header-mobile {
        display: none;
    }
    .header-search {
        margin-top: 96px;
        margin-bottom: -17px;
        position: relative;
        z-index: 1;
    }
    .header-search .list-item .item:nth-child(5),
    .header-search .list-item .item:nth-child(6),
    .header-search .list-item .item:nth-child(7),
    .header-search .list-item .item:nth-child(8) {
        display: block;
    }
}

@keyframes rotatePhone {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
    }
    25% {
        transform: rotate(35deg);
        -webkit-transform: rotate(35deg);
        -moz-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
        -o-transform: rotate(35deg);
    }
    50% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
    }
    75% {
        transform: rotate(-25deg);
        -webkit-transform: rotate(-25deg);
        -moz-transform: rotate(-25deg);
        -ms-transform: rotate(-25deg);
        -o-transform: rotate(-25deg);
    }
}

.footer .top {
    padding: 1rem 1rem 0;
    border-bottom: 1px solid #00000020;
    background: #ffffff;
}

.footer .top .wrapper-social {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    max-width: 220px;
    margin: auto;
}

.footer .top .wrapper-social .item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 19px;
    width: 35px;
    height: 35px;
    margin-bottom: 1rem;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.footer .top .wrapper-social .item.item-1 img {
    width: 35px;
    height: 35px;
}

.footer .top .wrapper-social .item.item-2 img {
    width: 35px;
    height: 35px;
}

.footer .top .wrapper-social .item.item-3 {
    background-color: #E64C87;
}

.footer .top .wrapper-social .item.item-4 {
    background-color: #1A70F9;
}

.footer .top .wrapper-social .item.item-5 {
    background-color: #187FB8;
}

.footer .top .wrapper-social .item.item-6 {
    background-color: #24A9E6;
}

.footer .top .wrapper-social .item.item-7 {
    background-color: #2A5B83;
}

.footer .top .wrapper-social .item.item-8 {
    background-color: #1CB1E6;
}

.footer .top .wrapper-social .item:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    box-shadow: -3px -2px 5px 0px #585858;
}

.footer .bottom {
    padding: 1rem;
}

.footer .bottom .container .line-1,
.footer .bottom .container .design-service-page .intro .wrapper .center .wrapper-star .line-2,
.design-service-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2,
.footer .bottom .container .index-page .intro .wrapper .center .wrapper-star .line-2,
.index-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 {
    max-width: 370px;
    margin: auto;
}

.footer .bottom .container .line-1 .text-title,
.footer .bottom .container .design-service-page .intro .wrapper .center .wrapper-star .line-2 .text-title,
.design-service-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 .text-title,
.footer .bottom .container .index-page .intro .wrapper .center .wrapper-star .line-2 .text-title,
.index-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 .text-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #000000;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer .bottom .container .line-1 p,
.footer .bottom .container .design-service-page .intro .wrapper .center .wrapper-star .line-2 p,
.design-service-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 p,
.footer .bottom .container .index-page .intro .wrapper .center .wrapper-star .line-2 p,
.index-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer .bottom .container .line-1 p img,
.footer .bottom .container .design-service-page .intro .wrapper .center .wrapper-star .line-2 p img,
.design-service-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 p img,
.footer .bottom .container .index-page .intro .wrapper .center .wrapper-star .line-2 p img,
.index-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 p img {
    padding-right: 12px;
}

.footer .bottom .container .line-1 a,
.footer .bottom .container .design-service-page .intro .wrapper .center .wrapper-star .line-2 a,
.design-service-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 a,
.footer .bottom .container .index-page .intro .wrapper .center .wrapper-star .line-2 a,
.index-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 a {
    font-size: 14px;
    color: #000000;
    display: block;
}

.footer .bottom .container .line-1 a.active,
.footer .bottom .container .design-service-page .intro .wrapper .center .wrapper-star .line-2 a.active,
.design-service-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 a.active,
.footer .bottom .container .index-page .intro .wrapper .center .wrapper-star .line-2 a.active,
.index-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 a.active {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer .bottom .container .line-1 a:hover,
.footer .bottom .container .design-service-page .intro .wrapper .center .wrapper-star .line-2 a:hover,
.design-service-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 a:hover,
.footer .bottom .container .index-page .intro .wrapper .center .wrapper-star .line-2 a:hover,
.index-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 a:hover {
    text-decoration: underline;
}

.footer .bottom .container .line-2 {
    max-width: 370px;
    margin: 0 auto;
}

.footer .bottom .container .line-2 .item {
    display: flex;
    margin-bottom: 20px;
}

.footer .bottom .container .line-2 .item .wrapper-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin-right: 1rem;
    background-color: #000000;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer .bottom .container .line-2 .item .context {
    width: calc(100% - 48px);
}

.footer .bottom .container .line-2 .item .context p {
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    opacity: 0.8;
}

.footer .bottom .container .line-2 .item .context p.text-bold,
.footer .bottom .container .line-2 .item .context p .text-bold {
    font-weight: bold;
}

.footer .bottom .container .line-2 .item .context p a {
    font-size: 14px;
    line-height: 16px;
    color: #000000;
}

.footer .bottom .container .line-2 .item .context .mb-18 {
    margin-bottom: 18px;
}

.footer .bottom .container .line-2 .item .context .mb-24 {
    margin-bottom: 14px;
}

.footer .bottom .container .line-2 .item .context a {
    font-size: 14px;
    line-height: 16px;
    color: #000000;
}

.footer .bottom .container .line-2 .item .context a:hover {
    text-decoration: underline;
}

.footer .bottom .container .line-2 .item:nth-child(2) {
    align-items: center;
}

.footer .bottom .container .line-3 {
    max-width: 400px;
    margin: auto;
}

.footer .bottom .container .line-3 .wrapper-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .bottom .container .line-3 .wrapper-block .block {
    width: 80%;
    height: 45px;
    border: 0.5px solid;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 1rem;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.footer .bottom .container .line-3 .wrapper-block .block:hover {
    box-shadow: 0px 0px 5px 0px #585858;
}

.footer .bottom .container .line-3 .wrapper-block .block:hover.block-1 {
    background-color: #3CBF1B;
}

.footer .bottom .container .line-3 .wrapper-block .block:hover.block-2 {
    background-color: var(--primary-color);
}

.footer .bottom .container .line-3 .wrapper-block .block:hover.block-3 {
    background-color: #f52516;
}

.footer .bottom .container .line-3 .wrapper-block .block:hover p {
    color: #ffffff;
}

.footer .bottom .container .line-3 .wrapper-block .block p {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    color: #000000;
}

.footer .bottom .container .line-3 .wrapper-block .block p.text-bold {
    font-weight: bold;
}

.footer .bottom .container .line-3 .wrapper-block .block.block-1 {
    background: rgba(60, 191, 27, 0.11);
    border-color: #3CBF1B;
}

.footer .bottom .container .line-3 .wrapper-block .block.block-2 {
    background: rgba(0, 135, 203, 0.11);
    border-color: var(--primary-color);
}

.footer .bottom .container .line-3 .wrapper-block .block.block-3 {
    background: rgba(255, 0, 0, 0.11);
    border-color: #FF0000;
}

.footer .bottom .container .line-3 .wrapper-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer .bottom .container .line-3 .wrapper-image img {
    width: 100%;
    max-width: 340px;
}

.footer .copy-right {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #00000020;
    height: 40px;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
    opacity: 0.54;
}

.footer .copy-right .text-bold {
    font-weight: bold;
}

.footer .scroll-top {
    position: fixed;
    z-index: 10;
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.footer .scroll-top.show {
    opacity: 1;
}

.footer .scroll-top span {
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1.5px solid #ffffff;
    border-left: 1.5px solid #ffffff;
    margin-top: 7px;
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
}

.footer .fixed-chat {
    display: none;
    position: fixed;
    bottom: 0;
    right: 70px;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.footer .fixed-chat .p1 {
    width: 340px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: var(--tertiary-color);
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    position: relative;
}

.footer .fixed-chat .p1.hide {
    display: none;
}

.footer .fixed-chat .p1::before {
    content: '';
    width: 30px;
    height: 30px;
    background: url("/image/icon-messenger.png") center no-repeat;
    background-size: contain;
    margin-right: 20px;
    position: absolute;
    left: -80px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer .fixed-chat .p1:hover::before {
    left: 60px;
    opacity: 1;
}

.footer .fixed-chat .close {
    opacity: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer .fixed-chat .close.show {
    opacity: 1;
    display: block;
}

.footer .fixed-chat .frame {
    height: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer .fixed-chat .frame.show {
    height: 300px;
}

@media (min-width: 768px) {
    .footer .top {
        padding: 68px 0 56px;
    }
    .footer .top .wrapper-social {
        max-width: 490px;
    }
}

@media (min-width: 992px) {
    .social-fixed {
        display: none;
    }
    .footer .bottom {
        padding: 80px 0 40px;
    }
    .footer .bottom .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .footer .bottom .container .line-1,
    .footer .bottom .container .design-service-page .intro .wrapper .center .wrapper-star .line-2,
    .design-service-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2,
    .footer .bottom .container .index-page .intro .wrapper .center .wrapper-star .line-2,
    .index-page .intro .wrapper .center .wrapper-star .footer .bottom .container .line-2 {
        margin: 0;
    }
    .footer .bottom .container .line-3 {
        width: 340px;
        margin: 0;
    }
    .footer .bottom .container .line-3 .wrapper-block .block {
        height: 50px;
    }
    .footer .bottom .container .line-3 .wrapper-block .block p {
        font-size: 14px;
    }
    .footer .bottom .container .line-3 .wrapper-image {
        justify-content: flex-end;
    }
    .footer .copy-right {
        height: 60px;
    }
    .footer .bottom .container .line-3 .wrapper-image {
        display: none;
    }
    .footer .fixed-chat {
        display: block;
    }
}

.overlay {
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 200ms;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.overlay .cancel {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: default;
}

.overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay .popup-wrapper {
    width: calc(100% - 2rem);
    max-width: 800px;
    padding: 2rem 1rem 1rem;
    background: #FFFFFF;
    border-radius: 4px;
    position: relative;
}

.overlay .popup-wrapper .content>.cancel {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 13px;
    right: 12px;
    cursor: pointer;
}

.overlay .popup-wrapper .content .text-bold {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.03em;
    color: #474747;
    margin-bottom: 0.5rem;
}

.overlay .popup-wrapper .content input {
    width: 100%;
    height: 36px;
    border: 1px solid #00000020;
    border-radius: 4px;
    padding: 0 0.5rem;
    margin-bottom: 12px;
}

.overlay .popup-wrapper .content .button-wrapper {
    width: 100%;
    height: 36px;
    margin-bottom: 12px;
    position: relative;
}

.overlay .popup-wrapper .content .button-wrapper button.label {
    border: 1px solid #00000020;
    border-radius: 4px;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.03em;
    color: #474747;
    display: flex;
    justify-content: center;
    align-items: center;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overlay .popup-wrapper .content .button-wrapper button.label::before {
    content: "";
    width: 18px;
    height: 16px;
    display: inline-block;
    background: url("/image/icon-upload-file.svg") center no-repeat;
    margin-right: 11px;
}

.overlay .popup-wrapper .content .button-wrapper .upload {
    display: inline-block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    border: none;
}

.overlay .popup-wrapper .content textarea {
    width: 100%;
    min-height: 80px;
    border: 1px solid #00000020;
    border-radius: 4px;
    padding: 0.5rem;
    margin-bottom: 12px;
    resize: none;
}

@media (min-width: 992px) {
    .overlay .popup-wrapper {
        padding: 3rem 52px 150px;
    }
    .overlay .popup-wrapper .content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .overlay .popup-wrapper .content .left {
        width: 285px;
        height: 100%;
        position: relative;
    }
    .overlay .popup-wrapper .content .left input {
        height: 46px;
    }
    .overlay .popup-wrapper .content .right {
        width: 360px;
        height: 100%;
        position: relative;
    }
    .overlay .popup-wrapper .content .right textarea {
        height: 300px;
    }
    .overlay .popup-wrapper .content .wrapper-btn-border {
        position: absolute;
        width: calc(100% - 104px);
        bottom: 40px;
    }
    .overlay .popup-wrapper .content .button-wrapper {
        height: 46px;
    }
}

.social-fixed {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    position: fixed;
    right: 0;
    z-index: 10;
}

.social-fixed .social .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    box-shadow: 0px 4px 20px rgba(61, 98, 231, 0.15);
    border-radius: 4px 0px 0px 4px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.social-fixed .social .item.item-phone {
    background: #3BE011;
}

.social-fixed .social .item.item-phone img {
    width: 30px;
}

.social-fixed .social .item.item-zalo {
    background: #018FE5;
}

.social-fixed .social .item.item-zalo img {
    width: 50px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.social-fixed .social .item.item-messenger {
    background: linear-gradient(180deg, #00AFFF 0%, #0074FF 100%);
}

.social-fixed .social .item.item-messenger img {
    width: 30px;
}

.social-fixed .social .item .tooltiptext {
    visibility: hidden;
    position: absolute;
    left: -134px;
    width: 108px;
    height: 42px;
    background: #1E1F23;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-fixed .social .item .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent #1E1F23;
}

.social-fixed .social .item:hover .tooltiptext {
    visibility: visible;
}

@media (min-width: 992px) {
    .social-fixed .social .item {
        width: 60px;
        height: 56px;
        transition: all 1s;
        -webkit-transition: all 1s;
        -moz-transition: all 1s;
        -ms-transition: all 1s;
        -o-transition: all 1s;
        position: relative;
    }
    .social-fixed .social .item:hover::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        animation: animate 2s linear infinite;
        -webkit-animation: animate 2s linear infinite;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }
    .social-fixed .social .item.item-phone img {
        width: 35px;
    }
    .social-fixed .social .item.item-zalo img {
        width: 55px;
        height: 56px;
    }
    .social-fixed .social .item.item-messenger img {
        width: 37px;
    }
}

@keyframes scaleImg {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    25% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    75% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
    }
}

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 171, 209, 0.6), 0 0 0 0 rgba(29, 171, 209, 0.6);
    }
    30% {
        box-shadow: 0 0 0 50px rgba(29, 171, 209, 0), 0 0 0 0 rgba(29, 171, 209, 0.6);
    }
    65% {
        box-shadow: 0 0 0 50px rgba(29, 171, 209, 0), 0 0 0 30px rgba(29, 171, 209, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(29, 171, 209, 0), 0 0 0 30px rgba(29, 171, 209, 0);
    }
}

html,
body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1060px;
    padding: 0;
    margin: auto;
}

.title-section {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    width: max-content;
    font-weight: bold;
    font-size: 28px;
    line-height: 35px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    border-bottom: 3px solid;
}

.title-section::before {
    content: none;
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    left: 0;
    bottom: -4px;
}

.title-section.black {
    color: #000000 !important;
}

.title-section.black::before {
    background-color: #000000;
}

.wrapper-btn-border {
    width: 100%;
    max-width: 878px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    position: relative;
}

.wrapper-btn-border .btn-border {
    width: 100%;
    height: 40px;
    background: none;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    background: var(--primary-color);
    border-radius: 4px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.wrapper-btn-border .btn-border:hover {
    background: #FFFFFF;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.banner {
    position: relative;
    z-index: 0;
    margin-top: 74px;
}

.banner .slider {
    height: 100%;
    margin-bottom: -4px !important;
}

.banner .slider button {
    display: none;
}

.banner .slider .slick-list .slick-slide .item {
    position: relative;
    height: 252px;
}

.banner .slider .slick-list .slick-slide .item .background {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("/image/banner-3.jpg") center no-repeat;
    background-size: cover;
}

.banner .slider .slick-dots {
    position: absolute;
    bottom: 28px;
}

.banner .slider .slick-dots li {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    background-color: #FFFFFF;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.banner .slider .slick-dots li.slick-active {
    opacity: 1;
}

.index-page .intro {
    width: 100%;
    background: url("/image/background-intro.jpg") center no-repeat;
    background-size: cover;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.index-page .intro .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 545px;
}

.index-page .intro .wrapper .left {
    width: 20%;
    padding-right: 10px;
}

.index-page .intro .wrapper .left img {
    width: 100%;
    max-width: 90px;
}

.index-page .intro .wrapper .center {
    width: 60%;
}

.index-page .intro .wrapper .center p {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    opacity: 0.8;
    margin-top: 30px;
}

.index-page .intro .wrapper .center .wrapper-star {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.index-page .intro .wrapper .center .wrapper-star .line-1,
.index-page .intro .wrapper .center .wrapper-star .line-2 {
    width: 30%;
    max-width: 114px;
    height: 1px;
    background: linear-gradient(90deg, #C4C4C4 0%, rgba(196, 196, 196, 0) 102.63%);
    transform: rotate(180deg);
    margin-right: 15px;
}

.index-page .intro .wrapper .center .wrapper-star .line-2 {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    margin-right: 0;
    margin-left: 15px;
}

.index-page .intro .wrapper .right {
    width: 20%;
    padding-left: 10px;
}

.index-page .intro .wrapper .right img {
    width: 100%;
    max-width: 90px;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.index-page .product {
    background: var(--primary-color);
    padding: 2rem 1rem;
}

.index-page .product .container {
    max-width: 1240px;
}

.index-page .product .container .title-section {
    margin-bottom: 2rem;
}

.index-page .product .container .wrapper-item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.index-page .product .container .wrapper-item .item {
    width: 140px;
    height: 140px;
    background: #FFFFFF10;
    box-shadow: 0 0 1px 0 #525252;
    border-radius: 4px;
    margin-bottom: 28px;
    padding: 25px 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.index-page .product .container .wrapper-item .item.hide {
    display: none;
}

.index-page .product .container .wrapper-item .item .wrapper-img {
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    height: calc(100% - 16px);
}

.index-page .product .container .wrapper-item .item .wrapper-img img {
    width: 95%;
    object-fit: contain;
}

.index-page .product .container .wrapper-item .item p {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    opacity: 0.8;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 12px;
}

.index-page .product .container .wrapper-item .item:hover {
    background: #FFFFFF;
}

.index-page .product .container .wrapper-item .item:hover p {
    color: #090808;
}

.index-page .image {
    padding: 2rem 1rem;
}

.index-page .image .container {
    max-width: 1440px;
}

.index-page .image .container .wrapper-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.index-page .image .container .wrapper-image .line {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.index-page .image .container .wrapper-image .line .item {
    width: calc(50% - 5px);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    height: calc(50vw - 37px);
    margin-top: 0;
    display: block;
    background: url() center no-repeat;
    background-size: cover;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.index-page .image .container .wrapper-image .line .item::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    clip-path: polygon(0 0, 100% 25%, 100% 100%, 0% 100%);
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.index-page .image .container .wrapper-image .line .item:hover::before {
    height: 100%;
}

.index-page .image .container .wrapper-image .line .item:hover p {
    height: 100%;
    font-size: 16px;
    background: none;
    padding-top: 15px;
}

.index-page .image .container .wrapper-image .line .item p {
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 72px;
    line-height: 72px;
    padding: 0 15px;
    background: #000000;
    opacity: 0.5;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.index-page .image .container .wrapper-image .line .item.image-big {
    width: 100%;
}

.index-page .image .container a {
    margin-top: 10px;
}

.index-page .news {
    padding: 2rem 1rem;
    background: url("/image/background-news.png") center no-repeat;
    background-size: cover;
}

.index-page .news .container .title-section {
    margin-bottom: 2rem;
}

.index-page .news .container .slider-2 {
    max-width: 322px;
    margin: auto;
}

.index-page .news .container .slider-2 .item {
    max-width: 312px;
    margin-bottom: 20px;
}

.index-page .news .container .slider-2 .item a {
    position: relative;
    width: 100%;
    height: 100%;
}

.index-page .news .container .slider-2 .item .image-post {
    width: 100%;
    height: 168px;
    background: url() center no-repeat;
    background-size: cover;
}

.index-page .news .container .slider-2 .item .content {
    padding: 2rem 1rem 1rem;
    height: 188px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: -3px;
    font-family: "Nunito Sans", sans-serif;
}

.index-page .news .container .slider-2 .item .content .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.index-page .news .container .slider-2 .item .content .text .text-bold {
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    color: #323232;
    margin-bottom: 0.5rem;
}

.index-page .news .container .slider-2 .item .content .text .text-light {
    font-size: 12px;
    line-height: 16px;
    color: #313131;
    opacity: 0.5;
}

.index-page .news .container .slider-2 .item .content .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.index-page .news .container .slider-2 .item .content .date span {
    font-size: 9px;
    line-height: 12px;
    color: #323232;
    opacity: 0.5;
    margin-left: 9px;
}

.index-page .news .container .slider-2 button {
    width: 44px;
    height: 44px;
    background: #5794FF;
    left: -17px;
    top: 44%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
}

.index-page .news .container .slider-2 button::before {
    content: "";
    width: 12px;
    height: 20px;
    margin: auto;
    display: block;
    background: url("/image/icon-left.svg") center no-repeat;
}

.index-page .news .container .slider-2 button.slick-next {
    left: unset;
    right: -17px;
}

.index-page .news .container .slider-2 button.slick-next::before {
    background-image: url("/image/icon-right.svg");
}

.product-page .product {
    background: #FFFFFF;
    padding: 2rem 1rem;
}

.product-page .product .container {
    max-width: 880px;
}

.product-page .product .container .title-section {
    margin-bottom: 2rem;
}

.product-page .product .container .wrapper-item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.product-page .product .container .wrapper-item .item {
    width: 200px;
    height: 200px;
    background: #FFFFFF10;
    box-shadow: 0 0 1px 0 #525252;
    border-radius: 4px;
    margin-bottom: 28px;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.product-page .product .container .wrapper-item .item .wrapper-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 16px);
}

.product-page .product .container .wrapper-item .item p {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    opacity: 0.8;
}

.product-page .product .container .wrapper-item .item:hover {
    background: #FFFFFF;
}

.product-page .product .container .wrapper-item .item:hover p {
    color: #090808;
}

.product-page .image {
    padding: 2rem 1rem;
}

.product-page .image .container {
    max-width: 1440px;
}

.product-page .image .container .wrapper-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 520px;
    margin: auto;
}

.product-page .image .container .wrapper-button .btn-border {
    border: 1px solid #C6C6C6;
    box-sizing: border-box;
    border-radius: 4px;
    max-width: 254px;
    width: 48%;
    height: 60px;
    background-color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.03em;
    color: #474747;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    position: relative;
}

.product-page .image .container .wrapper-button .btn-border::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    left: 0;
    bottom: 0;
    border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    -o-border-radius: 0 0 4px 4px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.product-page .image .container .wrapper-button .btn-border.active {
    background: var(--primary-color);
    color: #FFFFFF;
}

.product-page .image .container .wrapper-button .btn-border.active:hover {
    color: #FFFFFF;
}

.product-page .image .container .wrapper-button .btn-border:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.product-page .image .container .wrapper-button .btn-border:hover::before {
    height: 10px;
}

.product-page .image .container .wrapper-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.product-page .image .container .wrapper-image .line {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.product-page .image .container .wrapper-image .line .item {
    width: calc(50% - 5px);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    height: calc(50vw - 37px);
    margin-top: 0;
    display: block;
    background: url() center no-repeat;
    background-size: cover;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product-page .image .container .wrapper-image .line .item::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    clip-path: polygon(0 0, 100% 25%, 100% 100%, 0% 100%);
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product-page .image .container .wrapper-image .line .item:hover::before {
    height: 100%;
}

.product-page .image .container .wrapper-image .line .item:hover p {
    height: 100%;
    font-size: 16px;
    background: none;
    padding-top: 15px;
}

.product-page .image .container .wrapper-image .line .item p {
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 72px;
    line-height: 72px;
    padding: 0 15px;
    background: #000000;
    opacity: 0.5;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product-page .image .container .wrapper-image .line .item.image-big {
    width: 100%;
}

.product-page .image .container .wrapper-image .line .item img {
    width: 100%;
    height: 100%;
}

.product-page .image .container a {
    margin-top: 10px;
}

.product-detail-page {
    margin-top: 74px;
}

.product-detail-page .breadcrumb .container .wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #F5F7FD;
    padding: 1rem;
    height: 70px;
    padding: 0 1rem;
}

.product-detail-page .breadcrumb .container .wrapper .nav {
    list-style: none;
}

.product-detail-page .breadcrumb .container .wrapper .nav li {
    display: inline;
    font-size: 16px;
    line-height: 19px;
    color: #474747;
    font-weight: bold;
}

.product-detail-page .breadcrumb .container .wrapper .nav li+li:before {
    padding: 12px;
    color: #474747;
    content: "/ ";
}

.product-detail-page .breadcrumb .container .wrapper .nav li a {
    font-weight: normal;
    color: #474747;
}

.product-detail-page .breadcrumb .container .wrapper .nav li a:hover {
    color: #01447e;
    text-decoration: underline;
}

.product-detail-page .product {
    padding: 2rem 1rem 0;
}

.product-detail-page .product .container.no-border {
    border-bottom: none;
}

.product-detail-page .product .container .left-side {
    width: 100%;
    max-width: 430px;
    margin: auto;
}

.product-detail-page .product .container .left-side .main-image {
    margin-bottom: 21px;
}

.product-detail-page .product .container .left-side .main-image .wrapper-image {
    max-width: 430px;
    max-height: 430px;
}

.product-detail-page .product .container .left-side .main-image .wrapper-image img {
    width: 100%;
    height: 100%;
    max-height: 430px;
}

.product-detail-page .product .container .left-side .sub-image {
    display: flex;
    align-items: center;
    margin-bottom: 21px;
    position: relative;
}

.product-detail-page .product .container .left-side .sub-image .wrapper-image {
    width: 33%;
}

.product-detail-page .product .container .left-side .sub-image .wrapper-image img {
    width: 100%;
    height: 133px;
    cursor: pointer;
}

.product-detail-page .product .container .left-side .sub-image .wrapper-image img.active {
    border: 2px solid #000000;
}

.product-detail-page .product .container .left-side .sub-image .slick-dots {
    display: none !important;
}

.product-detail-page .product .container .left-side .sub-image .slick-prev {
    left: 0;
    z-index: 1;
}

.product-detail-page .product .container .left-side .sub-image .slick-next {
    right: 0;
    z-index: 1;
}

.product-detail-page .product .container .left-side .block-tag {
    border: 1px solid rgba(117, 117, 117, 0.5);
    border-radius: 4px;
    min-height: 238px;
    padding: 24px 14px;
    margin-bottom: 2rem;
}

.product-detail-page .product .container .left-side .block-tag .text-bold {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.03em;
    color: #000000;
    margin-bottom: 26px;
    padding-left: 27px;
}

.product-detail-page .product .container .left-side .block-tag .text-light {
    display: inline-block;
    background: #eeeeee;
    border-radius: 4px;
    height: 36px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.03em;
    color: #000000;
    margin-right: 0.5rem;
    margin-bottom: 10px;
}

.product-detail-page .product .container .left-side .block-tag .text-light:hover {
    text-decoration: underline;
}

.product-detail-page .product .container .right-side {
    margin-bottom: 3rem;
}

.product-detail-page .product .container .right-side .name {
    margin-bottom: 1.5rem;
}

.product-detail-page .product .container .right-side .name .text-blue {
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.03em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-detail-page .product .container .right-side .name .text-italic {
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.03em;
    color: #474747;
}

.product-detail-page .product .container .right-side .param {
    border: 1px solid rgba(117, 117, 117, 0.5);
    border-radius: 4px;
    padding: 20px 14px;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.03em;
    color: #474747;
    min-height: 200px;
    overflow-y: auto;
}

.product-detail-page .product .container .right-side .param .text-bold {
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.product-detail-page .product .container .right-side .require span {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 160px;
    width: 44%;
    height: 40px;
    border: 1px solid #494949;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.03em;
    color: #474747;
    margin-right: 1rem;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.product-detail-page .product .container .right-side .require span.active {
    color: #FFFFFF;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.product-detail-page .product .container .right-side .require .text-bold {
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.03em;
    color: #474747;
    padding-left: 14px;
    margin: 10px 0;
}

.product-detail-page .product .container .right-side .require .option-1 {
    display: flex;
    flex-wrap: wrap;
}

.product-detail-page .product .container .right-side .require .text-light {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.03em;
    color: #474747;
    padding-left: 14px;
    margin-bottom: 1rem;
}

.product-detail-page .product .container .right-side .require .option-2 {
    display: flex;
    flex-wrap: wrap;
}

.product-detail-page .product .container .right-side .require .option-3 {
    display: flex;
    flex-wrap: wrap;
}

.product-detail-page .product .container .right-side .require .option-3 .left {
    margin-right: 95px;
    margin-bottom: 1rem;
}

.product-detail-page .product .container .right-side .require .option-3 .left input {
    width: 160px;
    height: 40px;
    background: #E8E8E8;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.03em;
    color: #000000;
    border: none;
    padding-left: 27px;
}

.product-detail-page .product .container .right-side .require .option-3 .right {
    width: 100%;
    margin-bottom: 1rem;
}

.product-detail-page .product .container .right-side .require .option-3 .right .btn-orange {
    width: 100%;
    height: 50px;
    background: var(--tertiary-color);
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.product-detail-page .product .container .right-side .require .option-3 .right .btn-orange:hover {
    border: 1px solid var(--tertiary-color);
    color: var(--tertiary-color);
    background: #FFFFFF;
}

.product-detail-page .product .container .right-side .require .btn-border {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.product-detail-page .product .container .right-side .require .btn-border::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 26px;
    margin-right: 10px;
    background: url(/image/icon-cart.png) center no-repeat;
    background-size: contain;
    position: relative;
    bottom: 2px;
}

.product-detail-page .product .container .right-side .require .btn-border:hover {
    background: var(--secondary-color);
    border-color: #FFFFFF;
    color: #FFFFFF;
    box-shadow: 0 3px 10px -2px #000000;
    position: relative;
    bottom: 2px;
}

.product-detail-page .more-product {
    padding-bottom: 0;
}

.product-detail-page .more-product .title-section {
    color: #000000;
    margin-bottom: 50px;
}

.product-detail-page .more-product .title-section::before {
    background: #000000;
}

.product-detail-page .more-product .slider .item {
    width: calc(50% - 5px);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.product-detail-page .more-product .slider .item img {
    max-width: 100%;
    height: 343px;
}

.product-detail-page .more-product .slider .item p {
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 72px;
    line-height: 72px;
    padding: 0 35px;
    background: #000000;
    opacity: 0.5;
}

.product-detail-page .more-product .slider .item.image-big {
    width: 100%;
}

.product-detail-page .more-product .slider button {
    width: 44px;
    height: 44px;
    background: #5794FF;
    left: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
}

.product-detail-page .more-product .slider button::before {
    content: "";
    width: 12px;
    height: 20px;
    margin: auto;
    display: block;
    background: url("/image/icon-left.svg") center no-repeat;
}

.product-detail-page .more-product .slider button.slick-next {
    left: unset;
    right: 10px;
}

.product-detail-page .more-product .slider button.slick-next::before {
    background-image: url("/image/icon-right.svg");
}

.news-page .banner {
    position: relative;
    z-index: 0;
    font-family: "Nunito Sans", sans-serif;
}

.news-page .banner .slider {
    margin-bottom: -4px !important;
}

.news-page .banner .slider button {
    display: none;
}

.news-page .banner .slider .slick-list .slick-slide .item {
    position: relative;
    height: 252px;
}

.news-page .banner .slider .slick-list .slick-slide .item .background {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("/image/banner-3.jpg") center no-repeat;
    background-size: cover;
}

.news-page .banner .slider .slick-list .slick-slide .item .layer-gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(189.78deg, rgba(0, 0, 0, 0) 34.71%, #000000 92.51%);
}

.news-page .banner .slider .slick-list .slick-slide .item .content {
    position: absolute;
    left: 0;
    bottom: 25px;
    max-width: 382px;
    width: 100%;
    margin: auto;
    padding: 0 1rem;
}

.news-page .banner .slider .slick-list .slick-slide .item .content .text .text-bold {
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.news-page .banner .slider .slick-list .slick-slide .item .content .text .text-light {
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.news-page .banner .slider .slick-list .slick-slide .item .content .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.news-page .banner .slider .slick-list .slick-slide .item .content .date span {
    font-size: 9px;
    line-height: 12px;
    color: #FFFFFF;
    padding-left: 10px;
    padding-top: 3px;
}

.news-page .banner .slider .slick-dots {
    position: absolute;
    bottom: 28px;
}

.news-page .banner .slider .slick-dots li {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    background-color: #FFFFFF;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.news-page .banner .slider .slick-dots li.slick-active {
    opacity: 1;
}

.news-page .news {
    padding: 2rem 1rem;
    background-color: #FFFFFF;
    font-family: "Nunito Sans", sans-serif;
}

.news-page .news .container .title-section {
    margin-bottom: 2rem;
}

.news-page .news .container .wrapper-item {
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.news-page .news .container .wrapper-item .item {
    width: 100%;
    max-width: 312px;
    margin-bottom: 20px;
}

.news-page .news .container .wrapper-item .item a {
    position: relative;
    width: 100%;
    height: 100%;
}

.news-page .news .container .wrapper-item .item .image-post {
    width: 100%;
    height: 168px;
    background: url() center no-repeat;
    background-size: cover;
}

.news-page .news .container .wrapper-item .item .content {
    padding: 0.7rem 1rem 1rem;
    height: 188px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-page .news .container .wrapper-item .item .content .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-page .news .container .wrapper-item .item .content .text .text-bold {
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    color: #323232;
    margin-bottom: 0.5rem;
}

.news-page .news .container .wrapper-item .item .content .text .text-light {
    font-size: 12px;
    line-height: 16px;
    color: #313131;
    opacity: 0.5;
}

.news-page .news .container .wrapper-item .item .content .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.news-page .news .container .wrapper-item .item .content .date span {
    font-size: 9px;
    line-height: 12px;
    color: #323232;
    opacity: 0.5;
    margin-left: 9px;
}

.news-page .news .container .wrapper-item-2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.news-page .news .container .wrapper-item-2 .item {
    width: 100%;
    max-width: 332px;
    height: 160px;
    margin-bottom: 1rem;
    position: relative;
}

.news-page .news .container .wrapper-item-2 .item>img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.news-page .news .container .wrapper-item-2 .item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.news-page .news .container .wrapper-item-2 .item .layer-gradient {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.news-page .news .container .wrapper-item-2 .item .content {
    position: absolute;
    bottom: 17px;
    left: 0;
    color: #FFFFFF;
    font-weight: 500;
    padding-left: 22px;
}

.news-page .news .container .wrapper-item-2 .item .content .line span {
    font-size: 11px;
    line-height: 13px;
    padding-left: 0.5rem;
    font-family: "Montserrat", sans-serif;
}

.news-page .news .container .wrapper-item-2 .item .content p {
    font-size: 14px;
    line-height: 19px;
}

.news-detail-page {
    margin-top: 74px;
}

.news-detail-page .post-title {
    width: 100%;
    max-width: 948px;
    height: 130px;
    background: #F5F7FD;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-detail-page .post-title h1 {
    font-weight: 900;
    font-size: 35px;
    line-height: 41px;
    color: #000000;
    opacity: 0.8;
}

.news-detail-page .post-content {
    padding: 20px 1rem;
    line-height: 27px;
}

.news-detail-page .post-content .side-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    margin-bottom: 20px;
}

.news-detail-page .post-content .left-side .bg-blue {
    height: 56px;
    background: var(--primary-color);
    font-weight: 900;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
    padding: 0 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.news-detail-page .post-content .left-side .bg-light {
    height: 56px;
    background: #F5F7FD;
    color: #7b7c7f;
    font-weight: 900;
    font-size: 20px;
    line-height: 23px;
    padding: 0 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.news-detail-page .post-content .left-side .bg-light:hover {
    background: var(--primary-color);
    color: #FFFFFF;
}

.news-detail-page .post-content .left-side .cursor-pointer {
    cursor: pointer;
}

.news-detail-page .post-content .left-side .block-link .bg-blue {
    margin-bottom: 10px;
}

.news-detail-page .post-content .left-side .block-red {
    background: #ED5749;
    padding: 1rem 2rem;
    margin: 2rem 0;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 16px;
    font-family: "Nunito Sans", sans-serif;
}

.news-detail-page .post-content .left-side .block-red .bold {
    font-style: italic;
    font-weight: bold;
}

.news-detail-page .post-content .left-side .block-red .light {
    font-style: italic;
}

.news-detail-page .post-content .left-side .block-context .text-black {
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    margin: 1rem 0;
}

.news-detail-page .post-content .left-side .block-context img {
    width: 100%;
    max-width: 682px;
    margin-bottom: 1rem;
}

.news-detail-page .post-content .left-side .wrapper-table {
    overflow-x: auto;
    margin-bottom: 2rem;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
}

.news-detail-page .post-content .left-side .wrapper-table .table {
    width: 100%;
    min-width: max-content;
    font-family: "Montserrat", sans-serif;
    border-spacing: 0;
}

.news-detail-page .post-content .left-side .wrapper-table .table thead th {
    border: 1px solid #D2D2D2;
    border-left: none;
    height: 50px;
    text-align: center;
    background: #1370B5;
    font-size: 14px;
    line-height: 17px;
    font-style: normal;
    font-weight: normal;
    color: #FFFFFF;
}

.news-detail-page .post-content .left-side .wrapper-table .table thead th:first-child {
    border-left: 1px solid #D2D2D2;
}

.news-detail-page .post-content .left-side .wrapper-table .table tbody tr td {
    border: 1px solid #D2D2D2;
    border-left: none;
    border-bottom: none;
    height: 50px;
    text-align: center;
    background: #ffffff;
    font-size: 12px;
    line-height: 15px;
    color: #000000;
    text-align: left;
    padding: 0 22px;
}

.news-detail-page .post-content .left-side .wrapper-table .table tbody tr td:first-child {
    border-left: 1px solid #D2D2D2;
}

.news-detail-page .post-content .left-side .wrapper-table .table tbody tr:last-child td {
    border-bottom: 1px solid #D2D2D2;
}

.news-detail-page .post-content .left-side .wrapper-table::-webkit-scrollbar {
    height: 10px;
}

.news-detail-page .post-content .left-side .wrapper-table::-webkit-scrollbar-track {
    background: #f1f1f1;
    box-shadow: inset 0 0 3px grey;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.news-detail-page .post-content .left-side .wrapper-table::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.news-detail-page .post-content .left-side .wrapper-table::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.news-detail-page .post-content .right-side .wrapper-item p {
    height: 70px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    background: var(--primary-color);
    font-family: "Montserrat", sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    cursor: pointer;
    transition: all 0.4s;
}

.news-detail-page .post-content .right-side .wrapper-item p::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("/image/icon-start-yellow.svg") center no-repeat;
    background-size: contain;
    padding: 0 18px;
}

.news-detail-page .post-content .right-side .wrapper-item p::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 14px;
    background: url("/image/arrow-right-white.svg") center no-repeat;
    background-size: contain;
    padding: 0 28px;
}

.news-detail-page .post-content .right-side .wrapper-item p:hover {
    background: var(--secondary-color);
}

.news-detail-page .social {
    width: 100%;
    max-width: 326px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 0 1rem;
}

.news-detail-page .social .item {
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

.news-detail-page .social .item img {
    width: 100%;
}

.news-detail-page .social .item:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.news-detail-page .suggest {
    padding: 2rem 1rem 0;
}

.news-detail-page .suggest .container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.news-detail-page .suggest .container .item {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 322px;
    height: 367px;
    margin-bottom: 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.161);
}

.news-detail-page .suggest .container .item a {
    width: 100%;
    line-height: 0;
}

.news-detail-page .suggest .container .item a .image-post {
    width: 100%;
    height: 168px;
    background: url() center no-repeat;
    background-size: cover;
}

.news-detail-page .suggest .container .item .content {
    padding: 14px 48px 10px 14px;
    height: 164px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.news-detail-page .suggest .container .item .content .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-detail-page .suggest .container .item .content .text .author {
    padding-left: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.news-detail-page .suggest .container .item .content .text .author span {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    color: #000000;
    opacity: 0.5;
    padding-left: 0.5rem;
}

.news-detail-page .suggest .container .item .content .text .text-bold {
    font-weight: bold;
    font-size: 14px;
    line-height: 19px;
    color: #323232;
    margin-bottom: 2px;
    font-family: "Nunito Sans";
}

.news-detail-page .suggest .container .item .content .text .text-light {
    font-size: 12px;
    line-height: 16px;
    color: #313131;
    opacity: 0.5;
    font-family: "Nunito Sans";
}

.news-detail-page .suggest .container .item .content .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.news-detail-page .suggest .container .item .content .date span {
    font-size: 9px;
    line-height: 12px;
    color: #323232;
    opacity: 0.5;
    margin-left: 9px;
    font-family: Montserrat;
}

.news-detail-page .suggest .container .wrapper-tag {
    width: 322px;
    height: 367px;
    border: 0.5px solid rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    padding: 21px 13px 21px 21px;
}

.news-detail-page .suggest .container .wrapper-tag span {
    font-family: Nunito Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    background: #EBEBEB;
    color: #363636;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    margin-right: 3px;
    margin-bottom: 0.5rem;
    padding: 0 15px;
    display: inline-block;
    height: 23px;
    line-height: 23px;
}

.news-detail-page .suggest .container .wrapper-tag span:hover {
    text-decoration: underline;
}

.news-detail-page .suggest .container .wrapper-btn-border {
    margin: 2.5rem 0;
}

.design-service-page .intro {
    width: 100%;
    background: url("/image/background-intro.jpg") center no-repeat;
    background-size: cover;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-service-page .intro .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 545px;
}

.design-service-page .intro .wrapper .left {
    width: 20%;
    padding-right: 10px;
    margin-top: 5rem;
}

.design-service-page .intro .wrapper .left img {
    width: 100%;
    max-width: 90px;
}

.design-service-page .intro .wrapper .center {
    width: 60%;
}

.design-service-page .intro .wrapper .center .title-section {
    width: 100%;
    padding: 0;
}

.design-service-page .intro .wrapper .center p {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    opacity: 0.8;
    margin-top: 30px;
}

.design-service-page .intro .wrapper .center .wrapper-star {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.design-service-page .intro .wrapper .center .wrapper-star .line-1,
.design-service-page .intro .wrapper .center .wrapper-star .line-2 {
    width: 30%;
    max-width: 114px;
    height: 1px;
    background: linear-gradient(90deg, #C4C4C4 0%, rgba(196, 196, 196, 0) 102.63%);
    transform: rotate(180deg);
    margin-right: 15px;
}

.design-service-page .intro .wrapper .center .wrapper-star .line-2 {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    margin-right: 0;
    margin-left: 15px;
}

.design-service-page .intro .wrapper .right {
    width: 20%;
    padding-left: 10px;
    margin-top: 5rem;
}

.design-service-page .intro .wrapper .right img {
    width: 100%;
    max-width: 90px;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.design-service-page .product {
    background: var(--primary-color);
    padding: 2rem 1rem;
}

.design-service-page .product .container {
    max-width: 880px;
}

.design-service-page .product .container .title-section {
    margin-bottom: 2rem;
}

.design-service-page .product .container .wrapper-item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.design-service-page .product .container .wrapper-item .item {
    width: 140px;
    height: 140px;
    background: #FFFFFF10;
    box-shadow: 0 0 1px 0 #525252;
    border-radius: 4px;
    margin-bottom: 28px;
    padding: 25px 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.design-service-page .product .container .wrapper-item .item .wrapper-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 16px);
}

.design-service-page .product .container .wrapper-item .item .wrapper-img img {
    width: 50%;
}

.design-service-page .product .container .wrapper-item .item p {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    opacity: 0.8;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.design-service-page .product .container .wrapper-item .item:hover {
    background: #FFFFFF;
}

.design-service-page .product .container .wrapper-item .item:hover p {
    color: #090808;
}

.design-service-page .product .container .wrapper-btn-border .btn-border {
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-service-page .product .container .wrapper-btn-border .btn-border::before {
    content: none;
    display: inline-block;
    width: 20px;
    height: 26px;
    margin-right: 10px;
    background: url("/image/icon-cart.png") center no-repeat;
    background-size: contain;
    position: relative;
    bottom: 2px;
}

.design-service-page .product .container .wrapper-btn-border .btn-border:hover {
    background: var(--primary-color);
    border-color: #FFFFFF;
    color: #FFFFFF;
    box-shadow: 0px 3px 10px -2px #000000;
    position: relative;
    bottom: 2px;
}

.design-service-page .select-package {
    padding: 2rem 1rem;
    background: var(--secondary-color);
}

.design-service-page .select-package .container>p {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #FFFFFF;
    max-width: 450px;
    margin: 2rem auto;
}

.design-service-page .select-package .container .wrapper-item {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.design-service-page .select-package .container .wrapper-item .item {
    background: #FFFFFF url("/image/select-yellow.png") top center no-repeat;
    background-size: 330px;
    width: 100%;
    max-width: 330px;
    height: 470px;
    margin-bottom: 2rem;
    position: relative;
}

.design-service-page .select-package .container .wrapper-item .item .head .name {
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 47px;
}

.design-service-page .select-package .container .wrapper-item .item .head .price {
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 10px;
}

.design-service-page .select-package .container .wrapper-item .item .head .wrapper-star {
    text-align: center;
    margin-top: 28px;
}

.design-service-page .select-package .container .wrapper-item .item .context {
    width: max-content;
    margin: 55px auto 0;
}

.design-service-page .select-package .container .wrapper-item .item .context .line {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.design-service-page .select-package .container .wrapper-item .item .context .line span {
    font-size: 1rem;
    line-height: 42px;
    color: #000000;
    opacity: 0.8;
    padding-left: 20px;
}

.design-service-page .select-package .container .wrapper-item .item .context .line span.bold {
    font-weight: bold;
}

.design-service-page .select-package .container .wrapper-item .item .context .line span.pl-5 {
    padding-left: 5px;
}

.design-service-page .select-package .container .wrapper-item .item::before {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #F6B128;
}

.design-service-page .select-package .container .wrapper-item .item:nth-child(2) {
    background-image: url("/image/select-green.png");
}

.design-service-page .select-package .container .wrapper-item .item:nth-child(2)::before {
    background-color: #3CBF1B;
}

.design-service-page .select-package .container .wrapper-item .item:nth-child(3) {
    background-image: url("/image/select-red.png");
}

.design-service-page .select-package .container .wrapper-item .item:nth-child(3)::before {
    background-color: #F62828;
}

.design-library-detail {
    margin-top: 74px;
}

.design-library-detail .breadcrumb .container .wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #F5F7FD;
    padding: 0 1rem;
    height: 70px;
}

.design-library-detail .breadcrumb .container .wrapper .nav {
    list-style: none;
}

.design-library-detail .breadcrumb .container .wrapper .nav li {
    display: inline;
    font-size: 16px;
    line-height: 19px;
    color: #474747;
    font-weight: bold;
}

.design-library-detail .breadcrumb .container .wrapper .nav li+li:before {
    padding: 12px;
    color: #474747;
    content: "/ ";
}

.design-library-detail .breadcrumb .container .wrapper .nav li a {
    font-weight: normal;
    color: #474747;
}

.design-library-detail .breadcrumb .container .wrapper .nav li a:hover {
    color: #01447e;
    text-decoration: underline;
}

.design-library-detail .product {
    padding: 2rem 1rem 0;
}

.design-library-detail .product .container.no-border {
    border-bottom: none;
}

.design-library-detail .product .container .left-side {
    width: 100%;
    max-width: 430px;
    margin: auto;
}

.design-library-detail .product .container .left-side .main-image {
    width: 100%;
    margin-bottom: 21px;
}

.design-library-detail .product .container .left-side .main-image .wrapper-image {
    max-width: 430px;
    max-height: 430px;
}

.design-library-detail .product .container .left-side .main-image .wrapper-image img {
    width: 100%;
    height: 100%;
    max-height: 430px;
}

.design-library-detail .product .container .left-side .sub-image {
    display: flex;
    align-items: center;
    margin-bottom: 21px;
    position: relative;
}

.design-library-detail .product .container .left-side .sub-image .wrapper-image {
    width: 33%;
}

.design-library-detail .product .container .left-side .sub-image .wrapper-image img {
    width: 100%;
    height: 133px;
    cursor: pointer;
}

.design-library-detail .product .container .left-side .sub-image .wrapper-image img.active {
    border: 2px solid #000000;
}

.design-library-detail .product .container .left-side .sub-image .slick-dots {
    display: none !important;
}

.design-library-detail .product .container .left-side .sub-image .slick-prev {
    left: 0;
    z-index: 1;
}

.design-library-detail .product .container .left-side .sub-image .slick-next {
    right: 0;
    z-index: 1;
}

.design-library-detail .product .container .right-side .name {
    margin-bottom: 1.5rem;
}

.design-library-detail .product .container .right-side .name .text-blue {
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.03em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.design-library-detail .product .container .right-side .name .text-italic {
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.03em;
    color: #474747;
}

.design-library-detail .product .container .right-side .param {
    border: 1px solid rgba(117, 117, 117, 0.5);
    border-radius: 4px;
    padding: 20px 14px;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.03em;
    color: #474747;
}

.design-library-detail .product .container .right-side .param .text-bold {
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.design-library-detail .product .container .right-side .require {
    margin: 14px 0;
}

.design-library-detail .product .container .right-side .require .btn-border {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

.design-library-detail .product .container .right-side .require .btn-border::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 26px;
    margin-right: 10px;
    background: url(/image/icon-cart.png) center no-repeat;
    background-size: contain;
    position: relative;
    bottom: 2px;
}

.design-library-detail .product .container .right-side .require .btn-border:hover {
    background: var(--primary-color);
    border-color: #FFFFFF;
    color: #FFFFFF;
    box-shadow: 0px 3px 10px -2px #000000;
    position: relative;
    bottom: 2px;
}

.design-library-detail .product .container .right-side .block-tag {
    border: 1px solid rgba(117, 117, 117, 0.5);
    border-radius: 4px;
    min-height: 186px;
    padding: 24px 14px;
    margin-bottom: 2rem;
}

.design-library-detail .product .container .right-side .block-tag .text-bold {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.03em;
    color: #000000;
    margin-bottom: 26px;
    padding-left: 27px;
}

.design-library-detail .product .container .right-side .block-tag .text-light {
    display: inline-block;
    background: #eeeeee;
    border-radius: 4px;
    height: 36px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.03em;
    color: #000000;
    margin-right: 0.5rem;
    margin-bottom: 10px;
}

.design-library-detail .product .container .right-side .block-tag .text-light:hover {
    text-decoration: underline;
}

.product-detail-page .information {
    padding: 0 15px 100px;
    margin-bottom: 60px;
    position: relative;
    line-height: 27px;
    border-bottom: 1px solid #00000020;
}

.product-detail-page .information .btn {
    display: block;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    text-transform: uppercase;
    color: #FF8E08;
    opacity: 0.9;
}

.product-detail-page .information .btn::after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 12px;
    border-top: 2px solid #FF8E08;
    border-right: 2px solid #FF8E08;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.product-detail-page .information .show,
.product-detail-page .information .hide {
    position: absolute;
    bottom: 2em;
    left: 50%;
    z-index: 100;
    text-align: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.product-detail-page .information .hide {
    display: none;
}

.product-detail-page .information .show:target {
    display: none;
}

.product-detail-page .information .show:target~.hide {
    display: block;
}

.product-detail-page .information .show:target~.panel {
    max-height: none;
}

.product-detail-page .information .panel {
    position: relative;
    padding: 0;
    margin: auto;
    max-height: 100px;
    overflow: hidden;
    transition: max-height .5s ease;
    -webkit-transition: max-height .5s ease;
    -moz-transition: max-height .5s ease;
    -ms-transition: max-height .5s ease;
    -o-transition: max-height .5s ease;
}

@media (min-width: 768px) {
    .index-page .product .container .wrapper-item .item {
        width: 290px;
        height: 290px;
    }
    .index-page .news .container .slider-2 {
        max-width: 635px;
    }
    .design-service-page .product .container .wrapper-item .item {
        width: 200px;
        height: 200px;
    }
    .news-page .news .container .slider-2 {
        max-width: 635px;
    }
}

@media (min-width: 992px) {
    .wrapper-btn-border .btn-border {
        height: 50px;
    }
    .banner {
        margin-top: 96px;
    }
    .banner .slider .slick-list .slick-slide .item {
        height: 478px;
    }
    .index-page .image-full-screen .wrapper-img .icon-close {
        top: -53px;
        right: -42px;
    }
    .index-page .intro {
        padding: 55px 0 40px;
        height: 315px;
    }
    .index-page .intro .wrapper .center .wrapper-star {
        margin-top: 2rem;
    }
    .index-page .product {
        padding: 44px 0 84px;
    }
    .index-page .product .container .title-section {
        margin-bottom: 60px;
    }
    .index-page .product .container .wrapper-item {
        /*justify-content: flex-start;*/
    }
    .index-page .product .container .wrapper-item .item {
        margin-right: calc(80px / 3);
    }
    .index-page .product .container .wrapper-item .item:nth-child(4n) {
        margin-right: 0;
    }
    .index-page .image .container .wrapper-image .line {
        flex-wrap: nowrap;
    }
    .index-page .image .container .wrapper-image .line .item {
        width: calc((50% - 5px) / 2 - 5px);
        height: calc(25vw - 18px);
        max-height: 343px;
    }
    .index-page .image .container .wrapper-image .line .item.image-big {
        width: calc(50% - 5px);
    }
    .index-page .image .container .wrapper-image .line .item p {
        padding: 0 35px;
    }
    .index-page .image .container a {
        margin-top: 40px;
    }
    .index-page .news .container .slider-2 {
        max-width: 958px;
    }
    .product-page .product {
        padding: 44px 0 0;
    }
    .product-page .product .container .title-section {
        margin-bottom: 60px;
    }
    .product-page .product .container .wrapper-item {
        justify-content: space-between;
    }
    .product-page .image .container .wrapper-button {
        max-width: 1060px;
    }
    .product-page .image .container .wrapper-image .line {
        flex-wrap: nowrap;
    }
    .product-page .image .container .wrapper-image .line .item {
        width: calc((50% - 5px) / 2 - 5px);
        height: calc(25vw - 18px);
        max-height: 343px;
    }
    .product-page .image .container .wrapper-image .line .item.image-big {
        width: calc(50% - 5px);
    }
    .product-page .image .container .wrapper-image .line .item img {
        width: 100%;
        height: 100%;
    }
    .product-page .image .container .wrapper-image .line .item p {
        padding: 0 35px;
    }
    .product-page .image .container a {
        margin-top: 40px;
    }
    .product-page .news .container .slider-2 {
        max-width: 958px;
    }
    .product-detail-page {
        margin-top: 96px;
    }
    .product-detail-page .breadcrumb .container .wrapper {
        padding-left: 70px;
        height: 107px;
        padding: 1rem;
    }
    .product-detail-page .product .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .product-detail-page .product .container .left-side {
        margin: 0;
    }
    .product-detail-page .product .container .right-side {
        width: calc(100% - 450px);
        max-width: 610px;
    }
    .product-detail-page .product .container .right-side .require .option-3 {
        flex-wrap: nowrap;
        align-items: flex-end;
    }
    .product-detail-page .product .container .right-side .require .option-3 .right .btn-orange {
        height: 60px;
        max-width: 355px;
    }
    .product-detail-page .more-product .slider button {
        width: 60px;
        height: 60px;
    }
    .product-detail-page .more-product .slider button::before {
        width: 26px;
        height: 30px;
        background-size: contain;
    }
    .news-page .banner .slider .slick-list .slick-slide .item {
        height: 478px;
    }
    .news-page .banner .slider .slick-list .slick-slide .item .content {
        left: calc((100% - 992px) / 2);
        bottom: 58px;
    }
    .news-page .banner .slider .slick-list .slick-slide .item .content .text .text-light {
        margin-bottom: 2rem;
    }
    .news-page .news .container .wrapper-item {
        max-width: 958px;
        justify-content: space-between;
    }
    .news-page .news .container .wrapper-item .item {
        padding: 0;
    }
    .news-page .news .container .wrapper-item-2 {
        justify-content: space-between;
    }
    .news-page .news .container .wrapper-btn-border {
        margin-top: 2rem;
    }
    .news-detail-page {
        margin-top: 96px;
    }
    .news-detail-page .post-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 0;
    }
    .news-detail-page .post-content .left-side {
        width: 65%;
    }
    .news-detail-page .post-content .left-side .block-red {
        margin-top: 46px;
    }
    .news-detail-page .post-content .left-side .block-context .bg-blue {
        margin: 60px 0 30px;
    }
    .news-detail-page .post-content .left-side .wrapper-table {
        margin-top: 90px;
    }
    .news-detail-page .post-content .right-side {
        width: calc(35% - 20px);
    }
    .news-detail-page .suggest .container {
        justify-content: space-between;
    }
    .design-service-page .intro {
        padding: 55px 0 40px;
        height: 315px;
    }
    .design-service-page .intro .wrapper .center .title-section {
        width: max-content;
    }
    .design-service-page .intro .wrapper .center .wrapper-star {
        margin-top: 2rem;
    }
    .design-service-page .product {
        padding: 44px 0 84px;
    }
    .design-service-page .product .container .title-section {
        margin-bottom: 60px;
    }
    .design-service-page .product .container .wrapper-item {
        justify-content: flex-start;
    }
    .design-service-page .product .container .wrapper-item .item {
        margin-right: calc(80px / 3);
    }
    .design-service-page .product .container .wrapper-item .item:nth-child(4n) {
        margin-right: 0;
    }
    .design-service-page .select-package {
        padding: 56px 0 40px;
    }
    .design-service-page .select-package .container>p {
        margin: 2rem auto 4rem;
    }
    .design-service-page .select-package .container .wrapper-item {
        justify-content: space-between;
    }
    .design-service-page .select-package .container .wrapper-item .item {
        height: 570px;
    }
    .design-service-page .select-package .container .wrapper-item .item .context {
        margin: 94px 0 0 70px;
    }
    .design-library-detail {
        margin-top: 96px;
    }
    .design-library-detail .breadcrumb .container .wrapper {
        padding-left: 70px;
        height: 107px;
        padding: 1rem;
    }
    .design-library-detail .product .container .left-side {
        max-width: 880px;
        margin-bottom: 70px;
    }
    .design-library-detail .product .container .right-side {
        width: calc(100% - 450px);
        max-width: 700px;
        margin: auto;
    }
    .design-library-detail .product .container .right-side .require .option-3 {
        flex-wrap: nowrap;
    }
    .design-library-detail .product .container .right-side .require .option-3 .right .btn-orange {
        height: 80px;
        max-width: 355px;
    }
    .design-library-detail #slider {
        width: 880px;
    }
    .product-detail-page .information {
        padding: 40px 0 100px;
    }
}

@media (min-width: 1260px) {
    .index-page .product .container .wrapper-item {
        justify-content: flex-start;
    }
}

@media (max-width: 430px) {
    .product-detail-page .product .container .left-side .sub-image .wrapper-image img {
        height: 30vw;
    }
    .design-library-detail .product .container .left-side .sub-image .wrapper-image img {
        height: 30vw;
    }
}


/*# sourceMappingURL=style.css.map */
