/*=========================== fonts =============================*/
@font-face {
    font-family: 'HelveticaNeue';
    src:  url('../fonts/HelveticaNeueBlack.otf');
    font-weight: 900;
}

@font-face {
    font-family: 'HelveticaNeue';
    src:  url('../fonts/HelveticaNeueHeavy.otf');
    font-weight: 800;
}

@font-face {
    font-family: 'HelveticaNeue';
    src:  url('../fonts/HelveticaNeueBold.otf');
    font-weight: 700;
}

@font-face {
    font-family: 'HelveticaNeue';
    src:  url('../fonts/HelveticaNeueMedium.otf');
    font-weight: 500;
}

@font-face {
    font-family: 'HelveticaNeue';
    src:  url('../fonts/HelveticaNeueRegular.otf');
    font-weight: 400;
}

@font-face {
    font-family: 'HelveticaNeue';
    src:  url('../fonts/HelveticaNeueLight.otf');
    font-weight: 300;
}


/* Arial fonts */
@font-face {
    font-family: 'Arial';
    src:  url('../fonts/Arial-Black.ttf');
    font-weight: 900;
}

@font-face {
    font-family: 'Arial';
    src:  url('../fonts/Arial-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Arial';
    src:  url('../fonts/Arial-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Arial';
    src:  url('../fonts/Arial.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Arial';
    src:  url('../fonts/Arial-Light.ttf');
    font-weight: 300;
}


/*========================== Basic css ============================*/
html {
    font-size: 62.5%;
}

:root {
    scroll-behavior: unset;

    /* fonts */
    --helveticaneue: 'HelveticaNeue';
    --arial: 'Arial';

    /* color */
    --white: #FFF;
    --black: #000;
    --primary-color: #444756;
    --blue: #3071FF;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* body */
body {
    font-family: var(--arial);
    font-size: 1.6rem;
    font-weight: 400;
    background: var(--white);
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--arial);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.5);
    display: block;
    text-align: center;
    padding-top: 5px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 18px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}


.overlay {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.overlay:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9999;
}

/* container */
.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* title */
.title_xl {
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    color: #FFFFFF;
}

.title_lg {
    font-size: 3.6rem;
    font-weight: 900;
    color: #444756;
}

/* button */
.button {
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFFFFF;
    background: #3071FF;
    display: inline-block;
    padding: 1.4rem 4.8rem;
    border-radius: 10rem;
    transition: 0.2s all ease;
}

.button:hover {
    background: #1e58d6;
}


/*====================== header_section start ========================*/
.header_section {
    background: #F5F5F5;
}

.header_topbar {
    padding: 0.8rem 0rem;
}

.header_topbar ul {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header_topbar ul img {
    width: 1.8rem;
}

.humbergar_btn {
    position: relative;
}

.humbergar_btn button {
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 1.2rem;
    z-index: 1024;
}

.humbergar_btn img {
    width: 2.5rem;
}

/* navbar-toggler */
.navbar-toggler {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0rem;
    transition: 0.2s all ease;
}

.navbar-toggler:hover {
    opacity: 0.85;
}


/* offcanvas menu */
.offcanvas-end {
    width: 33rem!important;
    background: #3D3D3D;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.offcanvas-header {
    width: 100%;
    display: block;
    padding: 3rem 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
}

.close_btn {
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: 1px solid var(--white);
    outline: none;
    box-shadow: none;
    padding: 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.2s all ease;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.close_btn:hover {
    opacity: 0.85;
}

.close_btn img {
    max-width: 1rem;
}

.offcanvas-header h4 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 2.2rem;
    display: block;
}

.offcanvas-header input {
    font-family: var(--arial);
    font-size: 1.4rem;
    font-weight: 400;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #5f5f5f;
    padding: 0.5rem 1.2rem;
    width: 100%;
    height: 3.5rem;
    display: block;
    outline: none;
    border-radius: 0.4rem;
    transition: 0.2s all ease;
}

.offcanvas-header input:focus {
    box-shadow: 0 0 0.6rem #5A82D9;
}

.offcanvas-body {
    padding: 2rem 0rem;
}

.language_dropdown {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.language_dropdown img {
    width: 1.8rem;
}

.offcanvas_menu ul li a {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: 0.2s all ease;
}

.offcanvas_menu ul li a:hover {
    background: #343434;
}

.offcanvas_menu ul li a img {
    width: 1.2rem;
    margin-top: 0.5rem;
}

.offcanvas_menu ul li a img.arrow {
    width: 1rem;
    display: block;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.offcanvas_menu ul li .dropdown_menu a {
    padding-left: 3rem;
}


.offcanvas_menu li {
    position: relative;
}

.offcanvas_menu .dropdown_menu {
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
        height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        visibility 0s linear 0.3s;
}

.offcanvas_menu li.open > .dropdown_menu {
    opacity: 1;
    visibility: visible;
    transition:
        height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
}

.offcanvas_menu li.open > a .arrow {
    transform: rotate(180deg);
}


/*================= hero_section start ===================*/
.hero_banner {
    position: relative;
}

.hero_banner img {
    width: 100%;
}
.hero_banner .hero_fiximg{
    height: 700px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.hero_banner .hero_fiximg.sm{
    height: 400px;
}

.hero_item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    inset: 0;
    padding-bottom: 3rem;
}

.hero_item h4 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1.2rem;
    margin-bottom: 1rem;
}

.hero_item h2 {
    margin-bottom: 8.5rem;
}

.swiper-button-next {
    width: 2rem;
    height: 2rem;
    right: 5rem;
}

.swiper-button-prev {
    width: 2rem;
    height: 2rem;
    left: 5rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 3rem;
    color: var(--white);
}



.swiper-button-next2 {
    width: 2rem;
    height: 2rem;
    right: 5rem;
}
.swiper-button-prev2 {
    width: 2rem;
    height: 2rem;
    left: 5rem;
}
.swiper-button-next2::after,
.swiper-button-prev2::after {
    font-size: 3rem;
    color: var(--white);
}

.swiper-button-next3 {
    width: 2rem;
    height: 2rem;
    right: 5rem;
}
.swiper-button-prev3 {
    width: 2rem;
    height: 2rem;
    left: 5rem;
}
.swiper-button-next3::after,
.swiper-button-prev3::after {
    font-size: 3rem;
    color: var(--white);
}

.swiper-button-next4 {
    width: 2rem;
    height: 2rem;
    right: 5rem;
}
.swiper-button-prev4 {
    width: 2rem;
    height: 2rem;
    left: 5rem;
}
.swiper-button-next4::after,
.swiper-button-prev4::after {
    font-size: 3rem;
    color: var(--white);
}


/*=================== product_section start =====================*/
.product_section {
    background: var(--white);
    padding: 14rem 0rem;
}

.product_row {
    padding-top: 6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product_card {
    padding: 6.5rem 4rem;
}

.product_card a {
    display: block;
    overflow: hidden;
}

.product_card a img {
    width: 100%;
    transition: 0.25s all ease;
}

.product_card a:hover img {
    transform: scale(1.1);
}

.product_card h4 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-top: 5rem;
}

.card_v1 {
    background: #F15941;
}

.card_v2 {
    background: #01AAAD;
}

.card_v3 {
    background: #0074F8;
}


/*==================== about_section start ======================*/
.about_section {
    background: var(--white);
    padding-bottom: 14rem;
}

.about_section .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}

.about_item img {
    width: 100%;
}

.about_text h6 {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 0.5rem;
}

.about_text h3 {
    margin-bottom: 3rem;
}

.about_text p {
    font-size: 1.4rem;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(68, 71, 86, 0.7);
    margin-bottom: 3rem;
}

.solutions_card {
    background: #E6E6E6;
    padding: 3.2rem 3.6rem 5.4rem;
}

.solutions_card h4 {
    font-weight: 500;
    margin-bottom: 5rem;
}

.solutions_item ul {
    padding-left: 1.5rem;
}

.solutions_item ul li {
    font-size: 1.4rem;
    font-weight: 400;
    color: #333333;
    margin-bottom: 0.5rem;
    list-style: disc;
    padding-left: 0.5rem;
}

/*================= contact_section start ===================*/
.contact_section {
    background-image: url('../img/contact.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 17.5rem 0rem;
}

.contact_box {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.contact_box p {
    font-size: 2.4rem;
    font-weight: 400;
    color: rgba(68, 71, 86, 0.7);
    margin: 3.5rem 0rem;
}

/*================== news_section start ====================*/
.news_section {
    background: var(--white);
    padding: 10rem 0rem;
}

.news_row {
    padding-top: 6rem;
}

.news_row .row {
    --bs-gutter-x: 0rem;
    --bs-gutter-y: 0rem;
}

.news_card {
    position: relative;
}

.news_card img {
    width: 100%;
}

.news_text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(-180deg,rgba(0,0,0,0) 0%,#000000 100%);
    padding: 2.5rem 0.5rem 1.5rem 2.5rem;
    position: absolute;
    inset: 0;
}

.news_text h4 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
}

.news_text p {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.8rem 0rem 0.6rem;
}

.news_text p img {
    width: 1.6rem;
}

.news_text .news_link {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

/* certification_section */
.certification_section {
    background: #E6E6E6;
    padding: 3rem 1rem;
}

.certification_item img {
    max-width: 100%;
}


/*================ footer_section start ==================*/
.footer_section {
    background: #F5F5F5;
    padding: 10rem 0rem;
}

.footer_text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.2rem;
}

.footer_text p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 3.2rem;
}

.footer_text p span {
    font-weight: 400;
    display: block;
}

.footer_text p span br {
    margin-bottom: 1rem;
}

.footer_text ul li {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0.5rem;
}

.footer_text ul li a {
    color: #337ab7;
}

.footer_text ul li a:hover {
    color: #23527c;
}

.footer_text ul li a span {
    font-weight: 400;
    display: inline-block;
    margin-left: 0.4rem;
}

.footer_links li {
    padding-left: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.footer_links li::before {
    content: "";
    width: 0.3rem;
    height: 0.3rem;
    display: block;
    background: #333333;
    border-radius: 50%;
}

.footer_links a {
    font-size: 1.4rem;
    font-weight: 400;
    color: #337ab7;
}

.footer_links a:hover {
    color: #23527c;
}

.qr_code img {
    width: 12rem;
}

.social_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social_item img {
    width: 3.5rem;
}


.pdetail_section {
    background: var(--white);
    padding: 3rem 0rem;
    padding-bottom: 7rem;
}

/*.pdetail_section .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}*/

.pdetail_item img {
    /*    width: 100%;*/
}

.pdetail_text h6 {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 0.5rem;
}

.pdetail_text h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 3rem;
}
.pdetail_text h4 {
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 0.5rem;
}


.pdetail_text p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: rgba(68, 71, 86, 0.7);
    margin-bottom: 3rem;
}
.pdetail_text ul{
    padding-inline-start: 40px;
    margin-top: 0;
    margin-bottom: 10px;
}
.pdetail_text ul li{
    list-style: disc;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: rgba(68, 71, 86, 0.7);
}
.psubmenu_list h3{
    font-size: 25px;
    color: #444756;
    font-weight: 900;
    text-transform: none;
    margin-bottom: 15px;
}
.psubmenu_list ul >li{
    display: block;
    border-bottom: 1px solid #e8e8e8;
    /*    -webkit-transition: 300ms;
        transition: 300ms;*/
}
.psubmenu_list ul >li >a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #337ab7;
    padding: 5px 0;
    line-height: 36px;
    padding: 2px 0;
    /*    -webkit-transition: 300ms;*/
    transition: all 0.2s ease;
}
.psubmenu_list ul >li >a:hover{
    margin-left: 5px;
    opacity: 0.85;
}
.psubmenu_list ul >li >a:before{
    font-family:'bootstrap-icons';
    content: "\F285";
    margin-right: 8px;
    font-size: 10px;
    font-weight: bold;
}
.pdetail_section .pdetail_tbl table{
    background-color: transparent;
    border-spacing: 0;
    border-collapse: collapse;
}
.pdetail_section .pdetail_tbl table tr td{
    font-size: 14px;
    color: #7C7E88;
    padding: 2pt 3pt;
    border: 1px #7C7E88 solid;
}
.pdetail_section .pdetail_color{
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
}
.pdetail_section .pdetail_color table td{
    border: 0;
    padding: 2px 0;
}
.pdetail_section .pdetail_color h3{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
}
.pdetail_section .pdetail_color ul{
    padding-inline-start: 40px;
    margin-top: 0;
    margin-bottom: 10px;
}
.pdetail_section .pdetail_color ul li{
    list-style: disc;
}
.pdetail_section .pdetail_color p{
    color: rgba(68, 71, 86, 0.7);
}


/*================= contact_section start ===================*/
.aboutus_section {
    background-image: url('../images/about/about-bg.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 17.5rem 0rem;
}

.aboutus_box {
    background: var(--white);
    padding: 3rem 3rem;
    text-align: center;
}
.aboutus_box h2{
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
}

.aboutus_box p {
    font-size: 24px;
    font-weight: 400;
    color: rgba(68, 71, 86, 0.7);
    margin: 3.5rem 0rem;
    padding-left: 15px;
    padding-right: 15px;
}

.aboutus_box ul{
    padding-inline-start: 50px;
    margin-top: 0;
    margin-bottom: 10px;
}
.aboutus_box ul li{
    font-size: 14px;
    line-height: 27px;
    color: rgba(68, 71, 86, 0.7);
    list-style: disc;
}

.gallery-box h2{
    font-size: 24px;
    font-weight: 400;
}
.gallery-list{
    webkit-justify-content: center;
    justify-content: center;
}
.gallery-list div{
    -ms-flex: none;
    -webkit-flex: none;
    flex: none;
    padding-left: 10px;
    margin-top: 10px;
    float: left;
}

.entry-header h2{
    margin: 8px 0 20px;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}
.entry-header h2 a{
    color: #444756;
}
.entry-image{
    overflow: hidden;
    margin-bottom: 35px;
}
.entry-image {
    width: 100%;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}
.entry-image img {
    width: 100%;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}
.entry-header:hover .entry-image img {
    -webkit-transform: scale(1.08) rotate(3deg);
    transform: scale(1.08) rotate(3deg);
}