:root {
    --color-main: #002d84;
    --color-main-2: #FAC300;
    --color-active: #6B2F0D;
    --color-social: #002d84;
    --color-hover: #002d84;
    --color-title: #333;
    --color-white: #fff;
    --f-r: "Roboto";
    --f-m: "RobotoMedium";
    --f-sm: "RobotoBold";
    --f-b: "RobotoBold";
    --f-bl: "RobotoBlack";
    --f-custom: "Beautique Display Bold";
}

/* Title */

.title-detail {
    position: relative;
    margin: 20px 0px;
    text-align: center;
}

.title-detail h1,
.title-detail h2,
.title-detail span {
    font-family: var(--f-b);
    font-size: 40px;
    color: #000;
    line-height: 1.5;
    text-transform: uppercase;
}

.title-main {
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
}

.title-main h1,
.title-main h2,
.title-main span {
    font-family: var(--f-b);
    font-size: 40px;
    color: #000;
    line-height: 1.5;
    text-transform: uppercase;
}

.slogan {
    color: var(--color-main);
    font-family: var(--f-m);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 5px;
}

.tt-week {
    font-size: 25px;
    text-align: center;
    margin: 20px 0px;
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
}

.btn-custom {
    font-family: var(--f-r);
    display: block;
    border: 1px solid var(--color-active);
    color: var(--color-title);
    background: var(--color-white);
    padding: 7px 15px;
    border-radius: 10px;
    cursor: pointer;
}

.btn-custom:hover,
.btn-custom.active {
    background: var(--color-active);
    color: var(--color-white);
    border: none;
    transition: ease-in-out 0.5s;
}

.text-hover:hover {
    color: var(--color-main) !important;
    cursor: pointer;
}

/* Header */

.header-slogan {
    padding: 7px 0px;
}

.header-top .wrap-content {
    position: relative;
}

.header-top .wrap-content::before {
    position: absolute;
    content: '';
    background: url('../imgs/header-slogan.png')no-repeat;
    background-size: 100% 100%;
    width: 1020px;
    top: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    z-index: -1;
}

.header-top .wrap-content::after {
    position: absolute;
    content: '';
    background: #ffcfcf;
    width: 100vw;
    top: 0;
    bottom: 0;
    left: 100%;
    pointer-events: none;
}

.header-slogan {
    font-size: 15px;
    color: #222222;
    line-height: 1.5;
    font-family: var(--f-m);
}

.header-bottom {
    margin-top: -40px;
    padding-bottom: 15px;
}

.company-name {
    color: #1E1E1E;
    font-size: 45px;
    font-family: "UTM Horizon";
    line-height: 1.5;
    text-transform: uppercase;
}

.company-name span {
    color: var(--color-main);
}

.header-address {
    font-size: 16px;
    font-family: var(--f-r);
    line-height: 1.5;
    color: #222222;
}

.header-hotline-icon {
    width: 56px;
}

.header-hotline-text {
    width: calc(100% - 10px - 56px);
    font-size: 15px;
    font-family: var(--f-r);
    color: #222222;
    line-height: 1.5;
}

.header-hotline-text a {
    font-family: var(--f-b);
    color: #222222;
}

/* MENU */

@media only screen and (max-width:991px) {
    .menu {
        display: none;
    }
}

.menu {
    position: relative;
    z-index: 999;
    background: var(--color-main);
}

.menu .wrap-content {
    position: relative;
}

.menu ul {
    width: 100%;
    padding: 0px;
    margin: 0;
    list-style: none;
}

.menu-line {
    width: 10px;
    height: 10px;
    background: var(--color-main);
    flex: unset !important;
}

.menu ul li {
    position: relative;
    z-index: 99;
}

.menu ul li.line {
    width: 1px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    flex: none;
}

.menu ul li a {
    line-height: 1.5;
    color: #fff;
    font-family: var(--f-b);
    font-size: 16px;
    text-transform: uppercase;
    padding: 15px 30px;
    display: block;
}

.menu ul li a img {
    vertical-align: middle;
}

/* .menu ul li a::after{position:absolute;content:'';height:2px;background:#C00;left:0px;bottom:0px;transform-origin:right;transform:scaleX(0);transition:transform 0.5s;width:25px;opacity:0;pointer-events:none;}
*/

.menu ul li a.active::after,
.menu ul li:hover>a::after {
    transform-origin: left;
    transform: scaleX(1);
    width: 25px;
}

.menu ul li ul {
    position: absolute;
    min-width: 250px;
    left: 0;
    background: #fff;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
    -webkit-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.menu ul li:hover>ul {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.7s;
}

.menu ul li ul li {
    text-align: left;
    border-bottom: 1px solid rgb(173 173 173 / 32%);
}

.menu ul li ul li:last-child {
    border-bottom: 0px;
}

.menu ul li ul li a {
    font-size: 14px;
    padding: 10px;
    display: block;
    text-decoration: none !important;
    line-height: 20px;
    text-align: left;
    font-weight: 500;
    text-transform: capitalize;
    color: #000;
    border-radius: unset;
    border: unset;
}

.menu ul li ul li ul {
    top: 0px;
    left: 100%;
}

.menu ul li ul li a:after {
    display: none;
}

.menu ul li ul li a:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-active);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
}

/* .menu ul li a::before{position:absolute;content:'';top:100%;left:50%;transform:translate(-50%,-50%);background:url('../imgs/line-menu.png')no-repeat;background-size:100% 100%;width:90px;height:4px;opacity:0;z-index:-1;}
*/

.menu ul li a:hover::before,
.menu ul li>a.active::before {
    opacity: 1;
}

.menu ul li ul li a:hover:before,
.menu ul li ul li>a.active:before {
    left: 0;
    visibility: visible;
    opacity: 1;
    width: 30px;
    opacity: 0;
}

.menu ul li ul li a:hover {
    padding-left: 40px;
}

.menu ul li a.active,
.menu ul li:hover>a {
    background: var(--color-main-2);
    color: #000;
}

.ds-news h3 {
    font-family: var(--f-m);
    font-weight: 600;
    font-size: 16px;
    -webkit-line-clamp: 2;
}

.internal-page .menu {
    position: relative;
    background: var(--color-main);
}

.fixed.menu {
    background: var(--color-main);
    box-shadow: 0 0 5px #000;
}

.fixed .menu-logo {
    zoom: 0.7;
}

.internal-page .bg-footer {
    padding-top: 0px;
}

/* Slideshow */

.slideshow {
    position: relative;
}

.control-owl {
    position: absolute;
    width: 100%;
    z-index: 2;
    left: 0px;
    top: calc(50% - 22.5px);
}

.control-owl button {
    opacity: 0.5;
    top: 0px;
    position: absolute;
    outline: none;
    border: 2px solid var(--color-white);
    padding: 0px;
    margin: 0px;
    display: block;
    cursor: pointer;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    font-size: 25px;
    margin: 0px;
    background-color: #00a3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-owl button:hover {
    opacity: 1;
}

.control-owl button.owl-prev {
    left: 20px;
}

.control-owl button.owl-next {
    right: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    background: var(--color-main);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    opacity: 0.5;
    z-index: 99;
    pointer-events: all;
}

.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: var(--color-main);
    width: 50px;
    height: 7px;
    border-radius: 10px;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet:hover {
    background: var(--color-main);
    opacity: 1;
}

/* Intro */

.intro-text {
    font-size: 50px;
    color: #F0EFEF;
    line-height: 1;
    font-family: var(--f-b);
    letter-spacing: 5px;
}

.intro-name {
    color: var(--color-main);
    font-size: 62px;
    font-family: "UTM Horizon";
    text-transform: uppercase;
    line-height: 1;
}

.intro-desc {
    font-size: 15px;
    font-family: var(--f-r);
    color: #393939;
    line-height: 2;
}

.intro-btn {
    background: var(--color-main);
    border-radius: 25px;
    border: solid 1px var(--color-main);
    font-size: 15px;
    font-family: var(--f-sm);
    color: #fff;
    line-height: 1.5;
    padding: 10px 25px;
}

.intro-btn i {
    color: var(--color-main-2);
}

.intro-btn:hover {
    background: var(--color-main-2);
    color: var(--color-main);
}

.intro-btn:hover i {
    color: var(--color-main);
}

.area-activate-name-position {
    position: absolute;
    bottom: 0;
    left: 0;
}

.area-activity::before {
    position: absolute;
    content: '';
    background: var(--color-main);
    width: 85px;
    height: 1px;
    top: 50%;
    left: 120%;
    transform: translateY(-50%);
    pointer-events: none;
}

.area-activity::after {
    position: absolute;
    content: '';
    background: var(--color-main);
    width: 85px;
    height: 1px;
    top: 50%;
    right: 120%;
    transform: translateY(-50%);
    pointer-events: none;
}

.area-activity {
    font-size: 40px;
    font-family: var(--f-b);
    color: #171717;
    line-height: 1.5;
    text-transform: capitalize;
}

.area-activate-name-position {
    z-index: 12;
    background: var(--color-main);
    padding: 5px 20px;
    border-top-right-radius: 25px;
}

.area-activate-name {
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
    font-family: var(--f-b);
    line-height: 1.5;
    gap: 5px;
}

.area-activate-box {
    border-top-right-radius: 25px;
}

.area-activate-box:hover .area-activate-name-position {
    background: var(--color-main-2);
}

.area-activate-box:hover .area-activate-name-position .area-activate-name {
    color: #000;
}

.area-activate-box:hover .area-activate-name-position img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(89%) saturate(2767%) hue-rotate(354deg) brightness(93%) contrast(102%);
}

.intro-left::before {
    position: absolute;
    content: '';
    background: url('../imgs/intro-text-pattern.png')no-repeat;
    background-size: 100% 100%;
    width: 104px;
    height: 44px;
    top: 100%;
    right: 50px;
    pointer-events: none;
}

.wrap-intro::before {
    position: absolute;
    content: '';
    background: url('../imgs/intro-pattern.png')no-repeat;
    background-size: 100% 100%;
    width: 390px;
    height: 260px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

/* News */

.criteria-info {
    width: calc(100% - 50px - 10px);
}

.criteria-img {
    width: 50px;
}

.criteria-name {
    font-size: 16px;
    font-family: var(--f-b);
    line-height: 1.5;
    color: #fff;
}

.criteria-desc {
    font-size: 14px;
    font-family: var(--f-r);
    line-height: 1.5;
    color: #fff;
}

.wrap-criteria {
    background: url('../imgs/criteria.webp')no-repeat center / cover;
}

.service-box {
    background: #fff;
    margin: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.service-info {
    padding: 20px 10px;
}

.service-hotline {
    color: var(--color-main-2);
    font-size: 15px;
    font-family: var(--f-b);
    line-height: 1.5;
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: #00000080;
    padding: 3px 10px 3px 3px;
    border-radius: 25px;
    border: solid 1px #ccc;
}

.service-name {
    font-size: 18px;
    font-family: var(--f-b);
    ;
    line-height: 1.5;
    color: #000;
    text-transform: capitalize;
}

.procedure-numb {
    font-size: 48px;
    font-family: var(--f-bl);
    line-height: 1;
}

.procedure-name {
    font-size: 18px;
    font-family: var(--f-b);
    line-height: 1.5;
    text-transform: uppercase;
    min-height: 54px;
}

.procedure-desc {
    font-size: 14px;
    color: #363636;
    line-height: 1.7;
    font-family: var(--f-r);
    height: calc(1.7em * 5);
}

.procedure-img-cover {
    width: 110px;
    height: 110px;
}

.procedure-box {
    border: solid 2px #fff;
    border-radius: 25px;
    background: #ffffff87;
    padding: 30px 20px;
}

.wrap-procedure {
    background: url('../imgs/procedure.webp')no-repeat center / cover;
}

.procedure-box {
    margin-bottom: 115px;
}

.procedure-box::before {
    position: absolute;
    content: '';
    background: url('../imgs/procedure-col.png')no-repeat;
    background-size: 100% 100%;
    width: 12px;
    height: 123px;
    left: 50%;
    transform: translateX(-50%);
    top: 99%;
    pointer-events: none;
}

.swiper-procedure-line::before {
    position: absolute;
    content: '';
    background: #fff;
    height: 3px;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    pointer-events: none;
}

.procedure-name-cover {
    position: relative;
}

.procedure-name-cover::before {
    position: absolute;
    content: "";
    background: var(--procedure-color, #000);
    width: 70%;
    height: 2px;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.grid-album {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.items-album-pc1 {
    grid-column: 1/3;
    grid-row: 1/3;
}

.items-album-pc2 {
    grid-column: 3/4;
    grid-row: 1/2;
}

.items-album-pc3 {
    grid-column: 3/4;
    grid-row: 2/3;
}

.items-album-pc4 {
    grid-column: 1/2;
    grid-row: 3/4;
}

.items-album-pc5 {
    grid-column: 2/3;
    grid-row: 3/4;
}

.items-album-pc6 {
    grid-column: 3/4;
    grid-row: 3/4;
}

.news-feedback-title {
    font-size: 40px;
    font-family: var(--f-b);
    color: #171717;
    line-height: 1;
    border-left: solid 3px var(--color-main);
}

.news-external-large-desc {
    font-size: 15px;
    font-family: var(--f-r);
    color: #222222;
    line-height: 1.5;
    height: calc(1.5em * 2);
}

.news-external-large-time {
    font-size: 13px;
    font-family: var(--f-r);
    color: #979797;
    line-height: 1.5;
    font-style: italic;
}

.news-external-large-name {
    font-size: 15px;
    font-family: var(--f-b);
    color: #1E1E1E;
    line-height: 1.5;
    height: calc(1.5em * 2);
}

.news-external-small-box-left {
    width: 40%;
}

.news-external-small-box-right {
    width: calc(100% - 40% - 10px);
}

.news-external-small-desc {
    height: calc(1.5em * 1);
}

.news-external-small-box {
    margin-bottom: 15px;
}

.flex-news-external-left {
    width: calc(100% - 52% - 10px);
}

.flex-news-external-right {
    width: 52%;
}

.flex-news {
    width: 50%;
}

.flex-feedback {
    width: calc(100% - 50% - 50px);
}

.feedback-box-small-img {
    width: 80px;
}

.feedback-box-small-info {
    width: calc(100% - 80px - 10px);
}

.feedback-box-large-cover {
    width: 160px;
}

.feedback-box-large-info {
    width: calc(100% - 160px - 10px);
}

.feedback-box-large-content {
    color: #313131;
    font-family: var(--f-r);
    font-size: 14px;
    line-height: 1.5;
    height: calc(1.5em * 6);
}

.feedback-box-large-name {
    color: #1E1E1E;
    font-family: var(--f-b);
    font-size: 18px;
    line-height: 1.5;
}

.feedback-box-large-desc {
    color: #313131;
    font-family: var(--f-r);
    font-size: 14px;
    line-height: 1.5;
}

.slick-feedback-small .slick-slide {
    padding: 0 5px;
}

.slick-feedback-small {
    margin-left: -5px;
    margin-right: -5px;
}

.feedback-box-large-text::before {
    position: absolute;
    content: '';
    background: url('../imgs/comma.png')no-repeat;
    background-size: 100% 100%;
    width: 61px;
    height: 48px;
    top: 0;
    right: 0;
    pointer-events: none;
}

.wrap-news-feedback {
    background: #f7f7f7;
}

.connect-item-name-position {
    padding: 5px 25px;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 5px;
}

.connect-item-name {
    color: #000;
    font-size: 25px;
    font-family: var(--f-b);
    line-height: 1.5;
}

.connect-item:hover .connect-item-name-position {
    background: var(--color-main);
}

.connect-item:hover .connect-item-name {
    color: var(--color-main-2);
}

/* FOOTER */

.tag-link-item {
    font-size: 13px;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    border: solid 1px #fff;
}

.tag-link-item:hover {
    background: var(--color-main);
    color: #fff;
}

.company-name-footer {
    color: var(--color-main-2);
    font-size: 36px;
    font-family: "UTM Horizon";
    line-height: 1.5;
    text-transform: uppercase;
}

.company-name-footer span {
    color: var(--color-main);
}

.copyright-bottom {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}

.flex-footer-news {
    border-bottom: solid 1px #ccc;
}

.flex-copyright {
    background: var(--color-main);
    padding: 15px 0px;
}

.footer-ul-li li a:hover {
    text-decoration: underline;
}

.footer-ul-li li {
    color: #fff;
}

.footer-ul-li li a {
    color: var(--Primary-color-white, #FFF);
    color: var(--Primary-color-white, color(display-p3 1 1 1));
    font-family: var(--f-r);
    font-size: 15px;
    line-height: 2;
    letter-spacing: -0.45px;
}

.copyright-cover {
    background: #19CBCD;
    padding: 15px 0px;
}

.tags-footer a {
    padding-right: 10px;
    border-right: solid 1px #fff;
}

.tags-footer a:last-child {
    padding-right: 0px;
    border-right: none;
}

.btn-map-target {
    border: solid 1px #fff;
    color: #1A1A1A;
    font-family: var(--f-b);
    font-size: 15px;
    line-height: 1.5;
    background: #fff;
    padding: 7px 15px;
    border-radius: 25px;
    text-transform: uppercase;
    position: relative;
    z-index: 12;
}

.tags-footer a:hover {
    text-decoration: underline !important;
}

.tags-footer a {
    color: #fff;
    font-family: var(--f-m);
    font-size: 16px;
    line-height: 1;
}

.title-tag {
    color: #fff;
    font-family: var(--f-b);
    font-size: 18px;
    text-transform: uppercase;
}

.footer-desc {
    color: #fff;
    font-family: var(--f-r);
    font-size: 14px;
    line-height: 1.5;
}

.bg-footer {
    background: url('../imgs/footer.webp')no-repeat center / cover;
}

.flex-footer {
    position: relative;
}

.footer {
    position: relative;
}

.footer-desc {}

.footer-content {
    color: #fff;
    font-family: var(--f-r);
    font-size: 14px;
    line-height: 2;
}

.footer-name {
    font-family: var(--f-bl);
    font-size: 27px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #fff;
}

.footer-ul {
    padding-left: 15px;
    list-style: disc;
    color: #fff;
}

.footer-title {
    color: #fff;
    font-family: var(--f-b);
    font-size: 15px;
    line-height: 1.5;
    text-transform: uppercase;
}

/* .footer-title::before{position:absolute;content:'';background:url('../imgs/footer-title-line.png')no-repeat;background-size:100% 100%;width:61px;height:4px;left:0;bottom:0;pointer-events:none;}
*/

.footer-ul li {
    padding: 0px;
    color: #fff;
    list-style: disc;
}

.footer-ul li a {
    color: #fff;
    font-family: var(--f-r);
    font-size: 14px;
    line-height: 2;
}

.footer-ul li a:hover {
    text-decoration: underline;
}

.footer-powered {
    position: relative;
}

.copyright,
.statistic {
    font-family: var(--f-r);
    font-size: 13px;
    line-height: 1.5;
    color: #fff;
}

.copyright span {
    text-transform: uppercase;
    font-family: var(--f-r);
    color: var(--color-main-2);
}

.setting-name {
    font-family: var(--f-custom);
    color: var(--color-title);
    text-transform: uppercase;
    font-size: 30px;
    margin: 5px 0;
}

.social-footer li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-left {
    position: fixed;
    left: 20px;
    z-index: 11;
    bottom: 300px;
}

.social-left img {
    border-radius: 100%;
}

.social-left a {
    transition: .4s;
    margin: 5px 0;
}

/* MAPS */

.items-map.active img,
.items-map:hover img {
    filter: invert(36%) sepia(92%) saturate(1022%) hue-rotate(184deg) brightness(95%) contrast(89%);
}

.footer__map-title {
    position: absolute;
    top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
}

.maps-iframe {
    position: relative;
    height: 280px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.maps-iframe iframe {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.items-map {
    font-size: 14px;
    line-height: 1.5;
    border: solid 1px #fff;
    color: #fff;
    font-family: var(--f-m);
    text-transform: uppercase;
    padding: 10px 15px 5px 15px;
    border-radius: 5px;
    background: var(--color-main);
}

.items-map.active,
.items-map:hover {
    border-radius: 5px;
    background: var(--color-active);
    color: #fff;
}

/* Newsletter */

.newsletter-button {
    margin-top: 20px;
}

.newsletter-form-name {
    font-size: 40px;
    font-family: var(--f-b);
    color: #1E1E1E;
    line-height: 1.5;
}

.newsletter-left::before {
    position: absolute;
    content: '';
    /* background: url('../imgs/human-newsletter.png')no-repeat; */
    background-size: 100% 100%;
    width: 179px;
    height: 297px;
    bottom: 0;
    right: 30px;
    pointer-events: none;
}

.newsletter-hotline-icon {
    width: 65px;
}

.newsletter-hotline-text {
    width: calc(100% - 65px - 10px);
}

.newsletter-hotline-text-title {
    font-size: 17px;
    font-family: var(--f-b);
    line-height: 1.5;
    color: #fff;
}

.newsletter-hotline-text-numb {
    color: #fff;
    font-size: 30px;
    font-family: var(--f-b);
    line-height: 1.5;
}

.newsletter-hotline-text-numb:hover {
    color: var(--color-main-2);
}

.newsletter-left-title {
    color: #fff;
    font-size: 34px;
    font-family: var(--f-b);
    line-height: 1;
}

.newsletter-left {
    width: 535px;
    /* background: url('../imgs/bg-newsletter.png')no-repeat left top 50%; */
    /* padding: 20px 25px; */
    position: relative;
}
.newsletter-left img{
    width:-webkit-fill-available;
}
.newsletter-right {
    width: calc(100% - 535px);
}

.modal-title {
    font-size: 20px;
    font-family: var(--f-b);
    line-height: 1.5;
    color: var(--color-main);
    text-transform: uppercase;
}

.newsletter-input input,
.newsletter-input select,
.newsletter-input textarea {
    height: 50px;
    font-family: var(--f-r);
    line-height: 1.5;
    overflow: hidden !important;
    color: #2F1307;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #6765651f;
}

.newsletter-input textarea {
    height: 120px;
}

.newsletter-input input::placeholder,
.newsletter-input textarea::placeholder {
    color: #2D2D2D;
    font-family: var(--f-r);
    font-size: 15px;
    line-height: 1.5;
}

.newsletter-input input:focus,
.newsletter-input textarea:focus {
    background: transparent;
    color: #2D2D2D;
    box-shadow: unset;
}

.newsletter-input .label {
    position: absolute;
    top: 12px;
    left: 20px;
    font-family: var(--f-r);
    font-size: 15px;
    color: #2D2D2D;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    pointer-events: none
}

.newsletter-input input:not(:-moz-placeholder-shown)+.label {
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background: var(--color-white);
    padding: 0 .5rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    left: 5px
}

.newsletter-input input:not(:-ms-input-placeholder)+.label {
    transform: translate3d(0, -22px, 0) scale(0.85);
    background: var(--color-white);
    padding: 0 .5rem;
    border-radius: .25rem;
    left: 5px
}

.newsletter-input input:not(:placeholder-shown)+.label {
    -webkit-transform: translate3d(0, -22px, 0) scale(0.85);
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background: var(--color-white);
    padding: 0 .5rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    left: 5px
}

.newsletter-input input:focus+.label {
    -webkit-transform: translate3d(0, -22px, 0) scale(0.85);
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background: var(--color-white);
    padding: 0 .5rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    left: 5px
}

.newsletter-input {
    position: relative
}

.newsletter-input textarea:not(:-moz-placeholder-shown)+.label {
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background: var(--color-white);
    padding: 0 .5rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    left: 5px
}

.newsletter-input textarea:not(:-ms-textarea-placeholder)+.label {
    transform: translate3d(0, -22px, 0) scale(0.85);
    background: var(--color-white);
    padding: 0 .5rem;
    border-radius: .25rem;
    left: 5px
}

.newsletter-input textarea:not(:placeholder-shown)+.label {
    -webkit-transform: translate3d(0, -22px, 0) scale(0.85);
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background: var(--color-white);
    padding: 0 .5rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    left: 5px
}

.newsletter-input textarea:focus+.label {
    -webkit-transform: translate3d(0, -22px, 0) scale(0.85);
    -moz-transform: translate3d(0, -22px, 0) scale(0.85);
    transform: translate3d(0, -22px, 0) scale(0.85);
    background: var(--color-white);
    padding: 0 .5rem;
    -webkit-border-radius: .25rem;
    -moz-border-radius: .25rem;
    border-radius: .25rem;
    left: 5px
}

.btn-newsletter-set {
    border: solid 1px var(--color-main);
    font-family: var( --f-b);
    padding: 10px 100px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
    height: 50px;
    border-radius: 5px;
    background: var(--color-main);
}

.btn-newsletter-set:hover {
    background: #fff;
    color: var(--color-main);
}

.btn-newsletter-reset {
    border: solid 1px var(--color-main);
    color: #2D2D2D;
    font-family: var(--f-b);
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
    padding: 10px 0px;
    border-radius: 5px;
    background: var(--color-main);
}

.btn-newsletter-reset:hover {
    background: var(--color-main-2);
    color: #2D2D2D;
    border-color: var(--color-main-2);
}

.newsletter-input textarea::placeholder,
.newsletter-input input::placeholder,
.newsletter-input select::placeholder {
    color: #2D2D2D !important;
}

.newsletter-input textarea:focus,
.newsletter-input input:focus {
    color: #2D2D2D;
    background: #F2F2F2;
}

.newsletter-input textarea:focus::placeholder,
.newsletter-input input:focus::placeholder {
    color: #2D2D2D !important;
    opacity: 1;
}

.newsletter-input textarea:focus::-webkit-input-placeholder,
.newsletter-input input:focus::-webkit-input-placeholder {
    color: #2D2D2D !important;
}

.newsletter-input textarea:focus::-moz-placeholder,
.newsletter-input input:focus::-moz-placeholder {
    color: #2D2D2D !important;
}

/* */

.tags-pro-detail {
    margin: 1rem 0px 2rem 0px;
}

.tags-pro-detail a {
    display: inline-flex;
    font-size: 12px;
    color: #858585;
    padding: 5px 10px 7px 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    background: var(--color-main);
    border: solid 1px var(--color-main);
    border-radius: 3px;
}

.tags-pro-detail a:hover {
    background: var(--color-main-2);
    color: #858585;
    border-color: var(--color-main-2);
}

.tags-pro-detail a i {
    font-size: 10px;
    float: left;
    margin: 5px 5px 0px 0px;
}

.newsletter-btn-call-modal {
    position: fixed;
    right: 40px;
    bottom: 410px;
    z-index: 999;
    color: #fff !important;
    font-size: 25px;
    background: var(--color-main);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.set-call-modal .modal-dialog {
    margin-top: 150px;
}

.modal {
    z-index: 9999;
}

.modal-title {
    font-family: var(--f-bl);
}

/* Cart Fix */

.note-cart {
    padding: 20px 15px;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.count_float {
    position: fixed;
    right: 35px;
    bottom: 200px;
    z-index: 1000;
}

.count_float i {
    color: #fff !important;
}

.count_float span {
    position: absolute;
    top: 0px;
    right: -5px;
    color: #ffffff;
    width: 25px;
    height: 25px;
    background: #ec2d3f;
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    border-radius: 100%;
    z-index: 55;
}

.count_float .kenit-alo-circle-fill,
.count_float .kenit-alo-circle-fill {
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    background-color: var(--color-main);
}

.count_float.btn-frame i {
    background: var(--color-main);
}

.count_float.btn-frame .kenit-alo-circle {
    border-color: #000000;
}

.cart-count-fixed {
    top: 0px;
    right: 0;
    z-index: 10;
    background: #fff;
    border-radius: 100%;
    padding: 5px;
    color: #CE0301;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-m);
}

/* Notify */

.notify-sercive-popup {
    color: #D0A868;
}

.custom-social-proof {
    border: solid 1px #fff;
    border-radius: 5px;
    overflow: hidden;
    position: fixed;
    bottom: 50px !important;
    left: 10px !important;
    top: initial !important;
    z-index: 999 !important;
    font-family: var(--f-b);
    ;
}

.custom-social-proof .custom-notification {
    width: 320px;
    border: 0;
    text-align: left;
    z-index: 99999;
    box-sizing: border-box;
    font-weight: 400;
    border-radius: 0;
    box-shadow: 2px 2px 10px 2px rgba(11, 10, 10, 0.2);
    background-color: var(--color-main);
    position: relative;
    cursor: pointer
}

.custom-social-proof .custom-notification .custom-notification-container {
    border-radius: 4px;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    height: 100px
}

.custom-social-proof .custom-notification .custom-notification-container .custom-notification-image-wrapper img {
    height: 80px;
    width: 80px;
    overflow: hidden;
    border-radius: 0;
    object-fit: cover;
}

.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper {
    border-left: solid 1px #fff;
    margin: 0;
    height: 100%;
    color: #FFf;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0 6px 6px 0;
    flex: 1;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    overflow: hidden
}

.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper .custom-notification-content {
    font-family: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px;
    line-height: 16px
}

.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper .custom-notification-content small {
    margin-top: 8px !important;
    display: block !important;
    font-size: 12px !important;
    opacity: .8
}

.custom-notification-content a {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.custom-social-proof .custom-notification .custom-close {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 12px;
    width: 12px;
    cursor: pointer;
    transition: .2s ease-in-out;
    transform: rotate(45deg);
    opacity: 1
}

.custom-social-proof .custom-notification .custom-close::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 5px
}

.custom-social-proof .custom-notification .custom-close::after {
    content: "";
    display: block;
    height: 100%;
    width: 2px;
    background-color: #fff;
    position: absolute;
    left: 5px;
    top: 0
}

.custom-social-proof .custom-notification:hover .custom-close {
    opacity: 1
}

.custom-notification-content * {
    word-break: break-all
}

.custom-notification-content a {
    display: block;
    font-size: 14px;
    margin-top: 4px
}

@media(max-width:480px) {
    .custom-social-proof .custom-notification {
        width: 280px
    }
}

.offcanvas {
    z-index: 99999 !important;
}

.btn-frame2 {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.btn-frame2 i {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--color-main);
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-frame2 i img {
    vertical-align: middle;
    width: 70%;
}

.btn-frame2 .animated.infinite {
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.btn-frame2 .kenit-alo-circle {
    width: 60px;
    height: 60px;
    top: -5px;
    right: -5px;
    position: absolute;
    background: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: 0.1;
    border-color: var(--color-main);
    opacity: 0.5;
}

.btn-frame2 .zoomIn {
    -webkit-animation-name: zoomIn;
    -moz-animation-name: zoomIn;
    -o-animation-name: zoomIn;
    animation-name: zoomIn;
}

.btn-frame2 .animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

.btn-frame2 .kenit-alo-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    background: rgba(7, 41, 103, 0.35);
    opacity: 0.4;
}

.btn-frame2 .pulse {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -o-animation-name: pulse;
    animation-name: pulse;
}

/* */

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 1px;
}

.wrap-content-large ol,
.wrap-content-large ul,
.right-pro-detail ol,
.right-pro-detail ul,
.content-text ol,
.content-text ul,
.content-main ol,
.content-main ul {
    list-style: disc;
    margin: 0;
}

.slide-item-text-position {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
}

.slide-text-name {
    font-size: 100px;
    font-family: "UTM Horizon";
    color: #fff;
    line-height: 1.3;
}

.slide-text-desc {
    font-size: 30px;
    font-family: var(--f-b);
    color: #fff;
    line-height: 2;
}

.slide-text-desc p {
    margin-bottom: 0px;
}