:root {
    --blue: #2B2A2E;
    --whiteblue: #EEF1F0;
    --green: #D70318;
    --green2: #D7031848;
    --brown: #727047;
    --brown2: #DFDFD6;
    --gray: #EEF1F0;
    --gray2: #CBCFD9;
    --orange: #FF5031;
    --pink: #2B2A2E;
}

.site-margin {
    max-width: 1640px;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff;
    z-index: 3;
}

.header .row {
    height: 100px;
}

.header .header-box {
    display: inline-flex;
    align-items: center;
}

.header-left {
    justify-content: start;
}

.header-menu {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
}

.header-menu li {
    margin-right: 50px;
}

.header-menu li a {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    color: var(--blue);
    font-size: 16px;
    padding: 10px 0;
}

.hover-menu i {
    font-size: 12px;
    margin-left: 10px;
    transition: 0.3s ease-in-out;
}

.hover-menu {
    position: relative;
}

.sub-menu {
    position: absolute;
    left: 0;
    top: 30px;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    width: 250px;
    background-color: #ffffff;
    padding: 20px;
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    border-radius: 0 0 20px 20px;
}

.sub-menu li {
    margin-bottom: 10px;
}

.sub-menu li a {
    display: block;
    padding: 5px;
}

.hover-menu:hover .sub-menu {
    visibility: visible;
    opacity: 1;
}

.hover-menu:hover i {
    transform: rotate(180deg);
}

.header-center {
    justify-content: center;
}

.header-logo {
    height: 60px;
}

.header-right {
    justify-content: end;
}

.header-social-menu {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
}

.header-social-menu li {
    margin-left: 20px;
}

.header-social-menu li a {
    color: var(--blue);
    font-size: 22px;
}

.lang-box {
    position: relative;
    height: 35px;
    width: 35px;
}

.lang {
    background: var(--gray);
    width: 35px;
    height: 35px;
    position: absolute;
    left: 0px;
    top: 0px;
    overflow: hidden;
    transition: 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    padding: 5px;
    border-radius: 20px;
}

.lang ul {
    padding: 0px;
}

.lang ul li {
    margin-top: 5px;
}

.lang img {
    width: 25px;
}

.lang:hover {
    height: 70px;
}

.list-lang ul li {
    margin-left: 0px !important;
}

.mobile-lang {
    display: none;
}

.mobile-header-menu-button {
    display: none;
}

.home-slider {
    margin-top: 120px
}

.home-slider .owl-carousel .item {
    height: 70vh;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-slider .slider-content-box {
    position: relative;
    height: 100%;
}

.home-slider .slider-content {
    position: absolute;
    top: 20%;
    z-index: 1;
    left: 55%;
}

.home-slider .slider-content p {
    margin: 0;
}

.home-slider .slider-content .btn-site {
    margin-top: 50px;
}

.home-slider .slider-content .slider-text {
    display: inline-flex;
    align-items: center;
}

.home-slider .slider-content span {
    height: 1px;
    width: 50px;
    display: block;
    margin-right: 40px;
}

.home-slider .slider-content .t-brown-16 span {
    background-color: var(--brown);
}

.home-slider .slider-content .t-blue-16 span {
    background-color: var(--blue);
}

.home-slider .slider-content .t-orange-16 span {
    background-color: var(--orange);
}

.home-slider .slider-content .t-white-16 span {
    background-color: #ffffff;
}

.banner-1 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.title-group {
    text-align: center;
}

.title-group p {
    text-align: center;
}

.title-1 {
    margin: 0;
    display: inline;
    border-bottom: solid 1px var(--blue);
    padding-bottom: 5px;
}

.title-2 {
    margin-top: 10px;
}

.home-slider-2 {
    margin-top: 50px;
}

.home-slider-2 .owl-stage {
    display: inline-flex;
    align-items: center;
}

.home-slider-2 .item {
    transition: height 0.5s ease;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    height: 350px;
    width: 100%;
    display: inline-flex;
    align-items: end;
    justify-content: start;
    padding: 10px;
}

.border-title {
    display: inline-flex;
    align-items: center;
    margin: 0;
    font-weight: 500;
}

.border-title span {
    height: 1px;
    width: 50px;
    display: block;
    margin-right: 40px;
}

.border-title-green {
    color: var(--green);
}

.border-title-green span {
    background-color: var(--green);
}

.border-title-blue {
    color: var(--blue);
    margin-bottom: 20px;
}

.border-title-blue span {
    background-color: var(--blue);
}

.border-title-orange {
    color: var(--orange);
    margin-bottom: 20px;
}

.border-title-orange span {
    background-color: var(--orange);
}

.border-title-gray2 {
    color: var(--gray2);
    margin-bottom: 20px;
}

.border-title-gray2 span {
    background-color: var(--gray2);
}

.b-2-left {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px 0 0 20px;
    position: relative;
}

.product-dot {
    top: 200px;
    left: 220px;
    position: absolute;
}

.product-circle {
    border-radius: 50%;
    display: block;
    width: 25px;
    height: 25px;
    background-color: #ffffff;
}

.product-dot-hover {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 190px;
    height: 250px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    top: -60px;
    left: 50px;
    display: grid;
    transition: 0.3s ease-in-out;
}

.triangle-left {
    width: 10px;
    height: 15px;
    background-color: #ffffff;
    clip-path: polygon(5% 0, 0 50%, 5% 100%);
    position: absolute;
    left: -9px;
    top: 65px;
}

.product-dot-hover div {
    display: inline-flex;
    width: 100%;
}

.product-dot-hover img {
    width: 100%;
}

.product-dot-hover .btn-site {
    margin-top: auto;
}

.b-2-left:hover .product-dot-hover {
    visibility: visible;
    opacity: 1;
}

.b-2-right {
    background-color: var(--green2);
    background-image: url('../img/b-2-right.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 20px 20px 0;
    position: relative;
    padding: 70px;
}

.b-2-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 200px;
    color: #d703181e;
    font-weight: 700;
    position: absolute;
    right: 0;
    bottom: 50%;
    transform: translateY(50%) rotate(180deg);
    line-height: 200px;
    text-align: center;
    z-index: 0;
}

.b-2-right .btn-site {
    position: relative;
    z-index: 1;
}

.b-2-right p {
    z-index: 1;
    position: relative;
    margin-bottom: 70px;
}

.banner-3 {
    margin-top: 50px;
}

.banner-3 {
    border-radius: 20px;
    border: solid 1px #70707060;
    padding: 60px 60px;
}

.banner-3 .t-blue-30 {
    margin: 0;
}

.home-slider-3 .owl-stage {
    display: inline-flex;
    align-items: center;
}

.home-slider-3 .item img {
    width: 80%;
}

.banner-4 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 50px;
    position: relative;
    background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
    .banner-4 {
        background-attachment: scroll;
        position: relative;
    }
}

.banner-4 .row {
    height: 800px;
    z-index: 1;
    position: relative;
}

.banner-4 .container-fluid {
    position: relative;
}

.banner-4 .col-md-12 {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    text-align: right;
}

.b-4-star {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #434343;
    z-index: 0;
    opacity: 30%;
}

.banner-5 {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--whiteblue);
}

.bat-left {
    display: inline-flex;
    align-items: center;
}

.bat-right {
    display: inline-flex;
    align-items: start;
    justify-content: end;
}

.b-5-bottom {
    margin-top: 30px;
}

.b-5-bottom img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.b-5-bottom .col-md-3 {
    margin-bottom: 25px;
}

.b-5-bottom .t-blue-16 {
    margin: 20px 0px;
}

.banner-6 {
    margin-top: 50px;
}

.banner-6 .col-md-3 div {
    height: 480px;
    width: 100%;
    padding: 70px;
    border-radius: 10px;
    position: relative;
    display: grid;
}

.banner-6 .col-md-3 a {
    margin-top: auto;
}

.b-6-1 {
    background-color: var(--pink);
}

.b-6-2 {
    background-color: var(--green2);
}

.b-6-3 {
    background-color: var(--whiteblue);
}

.b-6-4 {
    background-color: var(--brown2);
}

.footer-1 {
    margin-top: 50px;
    background-color: var(--blue);
}

.footer-1 .row {
    height: 180px;
}

.footer-1 .col-md-6 {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    width: 100px;
}

.footer-1-right {
    justify-content: end;
}

.footer-1-right a {
    display: block;
    text-align: right;

}

.footer-2 {
    background-color: #2E385A;
    /*background-image: url('../img/footer-star.svg');*/
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-2 .row {
    padding-top: 50px;
}

.footer-menu {
    padding: 0;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu li a {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}

.footer-text {
    padding-right: 100px;
}

.footer-text p {
    line-height: 35px;
}

.footer-social-menu {
    padding: 0;
}

.footer-social-menu li {
    display: inline-flex;
    margin-right: 15px;
}

.footer-social-menu li a {
    color: #ffffff;
    font-size: 22px;
}

.footer-bottom-menu {
    background-color: var(--blue);
    height: 50px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.footer-menu-2 {
    padding: 0;
    width: 100%;
    margin: 0;
    display: inline-flex;
}

.footer-menu-2 li {
    margin-left: auto;
    margin-right: auto;
}

.footer-menu-2 li a {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
}

.footer-bottom {
    display: inline-flex;
    align-items: end;
}

.footer-bottom a {
    margin-left: auto;
}

.page-banner {
    margin-top: 120px;
    border-radius: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.page-banner .row {
    height: 350px;
    position: relative;
}

.page-banner .col-md-12 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.page-banner .title-bottom {
    border-bottom: solid 1px;
    display: inline-block;
    padding-bottom: 10px;
}

.overlay-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    mix-blend-mode: multiply;
    opacity: 0.41;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: 0;
    border-radius: 20px;
}

.banner-7 {
    margin-top: 50px;
}

.b-7-left {
    padding-right: 100px;
    display: grid;
}

.b-7-right {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.b-7-right .star {
    position: absolute;
    right: 75px;
    top: -230px;
    width: 397px;
    z-index: 0;
}

.b-7-r-img {
    width: 100%;
}

.b-7-right .btn-site {
    position: absolute;
    bottom: 65px;
    left: 40px;
}

.banner-8 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.count-box {
    text-align: center;
}

.count-box .t-blue-50 {
    margin: 0;
}

.banner-9 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #FAFAFA;
    border-radius: 20px;
}

.b-9-top .col-md-4 {
    display: inline-flex;
    align-items: center;
    padding: 0 50px;
}

.b-9-t-center img {
    width: 100%;
    border-radius: 20px;
}

.banner-10 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.team {
    margin-top: 30px;
}

.team .col-md-3 img {
    height: 450px;
    border-radius: 20px;
    margin-bottom: 15px;
    width: 100%;
    object-fit: cover;
}

.team .col-md-3 .t-black-24 {
    margin: 0;
}


.products {
    margin-top: 50px;
}

.products-left {
    background-color: var(--whiteblue);
    padding: 20px 40px;
    height: min-content;
    border-radius: 20px;
}


.categories-menu {
    padding: 0;
}

.categories-menu li {
    margin-bottom: 20px;
    list-style-type: none;
}

.categories-menu li a {
    display: block;
    text-align: left;
    color: var(--blue);
    font-weight: 700;
    padding: 5px 5px;
    transition: 0.3s ease-in-out;
    font-size: 24px;
}

.categories-menu li a:hover {
    padding-left: 10px;
}

.p-r-t-box {
    height: 50px;
    width: 100%;
    background-color: var(--whiteblue);
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 20px;
}

.p-r-list {
    padding-top: 30px;
}

.p-r-l-box {
    margin-bottom: 25px;
    height: 450px;
    border: solid 1px var(--gray);
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.p-r-l-box img {
    max-height: 200px;
    max-width: 200px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 200px;
    margin: 0 auto;
}

.p-r-l-box p {
    font-size: 24px;
    color: var(--blue);
    font-weight: 700;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.p-r-l-box a {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.product-category-menu {
    display: none;
}

.productdetail {
    margin-top: 200px;
}

#productdetailcarousel img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

#productdetailcarousel {
    max-width: 100%;
    margin: 0 auto;
}

#productdetailcarousel .f-carousel__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.f-carousel {
    --f-button-width: 38px;
    --f-button-height: 38px;

    --f-button-svg-width: 16px;
    --f-button-svg-height: 16px;
    --f-button-svg-stroke-width: 2.5;

    --f-button-color: rgb(71 85 105);
    --f-button-border-radius: 50%;
    --f-button-shadow: 0 6px 12px -2px rgb(50 50 93 / 25%), 0 3px 7px -3px rgb(0 0 0 / 30%);

    --f-button-bg: #fff;
    --f-button-hover-bg: #f9f9f9;
    --f-button-active-bg: #f0f0f0;
}

.p-d-right {
    display: grid;
    padding-left: 80px;
}

.media-1 {
    margin-top: 30px;
}

.media-1 img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.media-2 {
    margin-top: 50px;
}

.media-2 img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.media-3 {
    margin-top: 50px;
}

.media-3 img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.contact {
    margin-top: 50px;
}

.contact-form input {
    background-color: transparent;
    border-radius: 0;
    color: var(--blue);
    font-size: 16px;
    outline: none;
    width: 100%;
    height: 50px;
    padding-left: 20px;
    border: solid 1px var(--blue);
    border-radius: 20px;
    margin-bottom: 20px;
}

.contact-form input::placeholder {
    color: var(--blue);
}

.contact-form input:focus {
    background-color: transparent;
}

.contact-form textarea {
    background-color: transparent;
    color: var(--blue);
    outline: none;
    width: 100%;
    padding-left: 20px;
    border: solid 1px var(--blue);
    border-radius: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    font-size: 16px;
}

.contact-form textarea::placeholder {
    color: var(--blue);
}

.contact-form textarea:focus {
    background-color: transparent;
}

.contact-form .btn-green {
    border: none;
    width: 120px;
    color: #ffffff;
    padding: 0;
}

.contact-right {
    padding-left: 50px;
}

.contact-right p i {
    margin-right: 20px;
}

.contact-right .t-blue-24 {
    margin-top: 50px;
}

.google-map {
    margin-top: 50px;
}

.google-map iframe {
    height: 450px;
    width: 100% !important;
}

.blog-page {
    margin-top: 120px;
}

.news-detail {
    margin-top: 140px;
}