:root {
    --primary-color: #388FFF;

    --color-dark:#2f2f2f;
    --color-light: #ffffff;

    --shadow: 2px 2px 8px rgb(0 0 0 / 6%);
    --shadow-big: 2px 2px 8px rgb(0 0 0 / 20%);
    --radius: 6px;

    --bg-panel: #ffffff;
    --color-panel: #2f2f2f;
    --border-panel: #ffffff;

    --button-primary: #388FFF;
    --button-primary-text:#fff;

    --pop-menu:#fff;
    --pop-menu-text:#2f2f2f;

    --bg-top-header: #fff;
    --bg-top-header-text: #333;

    --header:
    linear-gradient(155deg, #ffffff00 0%, #ffffff29 30%, color-mix(in srgb, var(--primary-color) 100%, #00000000) 30%, color-mix(in srgb, var(--primary-color) 100%, transparent) 30%), 
    linear-gradient(165deg, transparent 0%, #00000000 100%, color-mix(in srgb, var(--primary-color) 100%, transparent) 40%, color-mix(in srgb, var(--primary-color) 100%, transparent) 60%), 
    linear-gradient(175deg, color-mix(in srgb, var(--primary-color) 100%, transparent) 50%, color-mix(in srgb, var(--primary-color) 100%, transparent) 100%);
    --header-text:#f4f4f4;

    --background-style-1:
    linear-gradient(155deg, color-mix(in srgb, var(--primary-color) 48%, transparent) 30%, #0000 30%, color-mix(in srgb, var(--primary-color) 55%, transparent) 30%, #0000 90%), 
    linear-gradient(165deg, #0000 0%, #0000 40%, color-mix(in srgb, var(--primary-color) 30%, transparent) 40%, color-mix(in srgb, var(--primary-color) 50%, transparent) 60%), 
    linear-gradient(175deg, color-mix(in srgb, var(--primary-color) 35%, transparent) 0%, color-mix(in srgb, var(--primary-color) 90%, transparent) 100%);

    --background-style-2:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.15) 0%, rgba(255, 255, 255, 0.416) 8%, transparent 8%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.2) 0%, rgba(255, 255, 255, 0.4) 12%, transparent 12%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.13) 0%, rgba(255, 255, 255, 0.355) 10%, transparent 10%),
    radial-gradient(circle at 35% 100%, rgba(255,255,255,0.15) 0%, rgba(255, 255, 255, 0.35) 12%, transparent 12%);

    --background-style-3:
    linear-gradient(155deg, color-mix(in srgb, #ffffffe6 48%, transparent) 30%, #0000 30%, color-mix(in srgb, #fafafa00 55%, transparent) 30%, #ffffff87 90%), 
    linear-gradient(165deg, #0000 0%, #0000 40%, color-mix(in srgb, #ffffff 30%, transparent) 40%, color-mix(in srgb, #ffffff21 50%, transparent) 60%), 
    linear-gradient(175deg, color-mix(in srgb, #ffffff4a 35%, transparent) 0%, color-mix(in srgb, var(--primary-color) 50%, #ffffff6e) 100%);

    --background-style-4:
    radial-gradient(circle at 15% 20%, color-mix(in srgb, var(--primary-color) 5%, transparent) 0%, color-mix(in srgb, var(--primary-color) 10%, transparent) 8%, transparent 8%),
    radial-gradient(circle at 75% 0%, color-mix(in srgb, var(--primary-color) 5%, transparent) 0%, color-mix(in srgb, var(--primary-color) 5%, transparent) 12%, transparent 12%),
    radial-gradient(circle at 80% 80%, color-mix(in srgb, var(--primary-color) 10%, transparent) 0%, color-mix(in srgb, var(--primary-color) 5%, transparent) 10%, transparent 10%),
    radial-gradient(circle at 34% 100%, color-mix(in srgb, var(--primary-color) 5%, transparent) 0%, color-mix(in srgb, var(--primary-color) 8%, transparent) 12%, transparent 12%);

    --background-style-5:
    linear-gradient(155deg, color-mix(in srgb, var(--primary-color) 0%, transparent) 30%, #0000 30%, color-mix(in srgb, var(--primary-color) 5%, transparent) 0%, #0000 90%), 
    linear-gradient(165deg, #0000 0%, #0000 10%, color-mix(in srgb, var(--primary-color) 1%, transparent) 0%, color-mix(in srgb, var(--primary-color) 5%, transparent) 0%), 
    linear-gradient(175deg, color-mix(in srgb, var(--primary-color) 0%, transparent) 0%, color-mix(in srgb, var(--primary-color) 0%, transparent) 100%);
}
*{
    -webkit-tap-highlight-color: transparent!important;
}
.text-body{
    line-height: 25px;
}
.pop-menu{
    background: var(--pop-menu);
    color: var(--pop-menu-text)!important;
}
.sub-menu.pop-menu li a{
    color: var(--pop-menu-text)!important;
}
.radius{
    border-radius: var(--radius);
}
.radius-50{
    border-radius: 50px!important;
}
.radius-top{
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}
.radius-bottom{
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}
span:focus:not(:focus-visible) {
    outline: none!important;
}
h1, h2, h3, h4, h5, h6, p,
div, span, a{
    word-wrap: break-word;
}
img{
    max-width: 100%;
}
.shadow-big{
    box-shadow: var(--shadow-big);
}
.bg-top-header{
    background: var(--bg-top-header);
    color: var(--bg-top-header-text);
}
.bg-top-header a{
    color: var(--bg-top-header-text);
}
.bg-panel{
    /* border: 1px solid var(--border-panel); */
    background: var( --bg-panel);
    color: var(--color-panel);
}
.bg-panel a:not(button):not(.btn){
    color: var(--color-panel)!important;
}
.bg-panel .btn.button-primary{
    background: var(--button-primary)!important;
    border-color: var(--button-primary)!important;
    color: var(--button-primary-text)!important;
}
.header-background{
    background: var(--header)!important;
    color: var(--header-text)!important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
}
.header-background li a{
    color: var(--header-text)!important;
}
.consec.header-background .btn{
    background: var(--color-light);
    color: var(--color-dark);
}
.menu-icon{
    color: var(--header-text)!important;
    border: 1px solid var(--header-text)!important;
}
.button-primary{
    background: var(--button-primary);
    color: var(--button-primary-text);
}
.btn-loadmore .btn-primary{
    background: var(--button-primary);
    color: var(--button-primary-text);
}
.background-style-1{
    background: var(--background-style-1);
    color: var(--color-light);
}
.home-slideshow.background-style-1, 
.bg-homeslide-1.background-style-1{
    background-attachment: fixed;
}
.consec.background-style-1 a.btn{
    background: var(--color-light)!important;
    border-color: var(--color-light);
    color: var(--color-dark)!important;
}
.background-style-1 a:not(.btn){
    color: var(--color-light)!important;
}
.background-style-2 {
  background: color-mix(in srgb, var(--primary-color) 15%, transparent);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--color-dark);
  background-image: linear-gradient(to bottom left, color-mix(in srgb, var(--primary-color) 15%, transparent), color-mix(in srgb, #fff 50%, transparent) ), var(--background-style-2);
}
.background-style-2 a:not(.btn){
    color: var(--color-dark)!important;
}
.consec.background-style-2 a.btn{
    background: var(--button-primary);
    border-color: var(--button-primary);
    color: var(--button-primary-text);
}
.background-style-3{
    background: var(--background-style-3);
    color: var(--color-dark);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
}
.background-style-3 a:not(.btn){
    color: var(--color-dark)!important;
}
.background-style-4 {
  background: #ffffff;
  background-image: var(--background-style-4);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--color-dark);
}
.background-style-4 a:not(.btn){
    color: var(--color-dark)!important;
}
.background-style-5 {
  background-color: #ffffff;
  background-image: var(--background-style-5);
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-dark);
}
.background-style-5 a:not(.btn){
    color: var(--color-dark)!important;
}
.background-white{
    background: #fff;
    color: var(--color-dark);
}
.background-white a:not(.btn){
    color: var(--color-dark)!important;
}
.background-white .btn{
    background: var(--primary-color);
    color: var(--color-light);
}

.background-white-blur{
    background: #ffffff9c;
    color: var(--color-dark);
    backdrop-filter: blur(2px) !important;
}
.background-white-blur a:not(.btn){
    color: var(--color-dark)!important;
}
.background-white-blur .btn{
    background: var(--primary-color);
    color: var(--color-light);
}

.background-black{
    background: #000000;
    color: var(--color-light);
}
.background-black a:not(.btn){
    color: var(--color-light)!important;
}
.background-skyblue{
    background: #eaf2fa;
    color: var(--color-dark);
}
.background-skyblue a:not(.btn){
    color: var(--color-dark)!important;
}
.background-image{
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: var(--color-light);
}
.background-image::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: color-mix(in srgb, var(--primary-color) 70%, transparent);
}
.background-image a:not(.btn){
    color: var(--color-light)!important;
}
.background-image .btn{
    background: var(--color-light)!important;
    color: var(--color-dark)!important;
}
.footer-1-bottom a{
    color: #333!important;
}
.heading-welcome{
    max-width: 100%;
    width: 800px;
    font-size: 50px;
    line-height: 45px;
    font-weight: 500;
    margin: 0 auto;
}
.text-welcome{
    max-width: 100%;
    width: 900px;
    margin: 0 auto;
}
.text-welcome ul,
.text-welcome ol{
    padding-left: 17px;
    margin: 0;
    display: inline-block;
    text-align: left;
}
.text-welcome h1, .text-welcome h2, .text-welcome h3, .text-welcome h4, .text-welcome h5, .text-welcome h6{
    margin: 13px 0;
}
.bg-sg-sl-home{
    overflow: hidden;
    position: relative;
    margin-bottom: -5px;
}
.position-relative{
    position: relative!important;
}
.h-100{
    height: 100%!important;
}
.bg-homeslide-1{
    display: inline-block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: center center!important;
    align-content: center;
    padding-bottom: 110px;
}
.min-height-slide{
    min-height: 580px;
}
.home-slideshow .swiper-slide{
    display: flex;
    align-self: stretch!important;
}
.head-txt-sl-home{
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    color: #303030;
}
.txt-sl-home{
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
    background: #ffffff87;
    padding: 30px;
    border-radius: 20px;
    color: #5e5e5e;
}
.hr-title-text{
    margin: 10px 0;
    height: 1px;
    background-color: #00000000;
    border: none;
}
.home-slideshow .swiper-wrapper a{
    width: auto;
}
[class*="image-style-"] {
    position: relative;
    display: inline-block;
    width: 100%;
    filter: drop-shadow(5px 8px 5px rgba(0, 0, 0, 0.23));
}
[class*="image-style-"] img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    object-fit: cover;
}
.image-style-0 img { -webkit-mask-image: url('assets/img/masking/0.png'); mask-image: url('assets/img/masking/0.png'); }
.image-style-1 img { -webkit-mask-image: url('assets/img/masking/1.png'); mask-image: url('assets/img/masking/1.png'); }
.image-style-2 img { -webkit-mask-image: url('assets/img/masking/2.png'); mask-image: url('assets/img/masking/2.png'); }
.image-style-3 img { -webkit-mask-image: url('assets/img/masking/3.png'); mask-image: url('assets/img/masking/3.png'); }
.image-style-4 img { -webkit-mask-image: url('assets/img/masking/4.png'); mask-image: url('assets/img/masking/4.png'); }
.image-style-5 img { -webkit-mask-image: url('assets/img/masking/5.png'); mask-image: url('assets/img/masking/5.png'); }
.image-style-6 img { -webkit-mask-image: url('assets/img/masking/6.png'); mask-image: url('assets/img/masking/6.png'); }
.image-style-7 img { -webkit-mask-image: url('assets/img/masking/7.png'); mask-image: url('assets/img/masking/7.png'); }
.image-style-8 img { -webkit-mask-image: url('assets/img/masking/8.png'); mask-image: url('assets/img/masking/8.png'); }
.image-style-9 img { -webkit-mask-image: url('assets/img/masking/9.png'); mask-image: url('assets/img/masking/9.png'); }
.image-style-10 img { -webkit-mask-image: url('assets/img/masking/10.png'); mask-image: url('assets/img/masking/10.png'); }
.image-style-11 img { -webkit-mask-image: url('assets/img/masking/11.png'); mask-image: url('assets/img/masking/11.png'); }
.image-style-12 img { -webkit-mask-image: url('assets/img/masking/12.png'); mask-image: url('assets/img/masking/12.png'); }
.image-style-13 img { -webkit-mask-image: url('assets/img/masking/13.png'); mask-image: url('assets/img/masking/13.png'); }
.image-style-14 img { -webkit-mask-image: url('assets/img/masking/14.png'); mask-image: url('assets/img/masking/14.png'); }
.image-style-15 img { -webkit-mask-image: url('assets/img/masking/15.png'); mask-image: url('assets/img/masking/15.png'); }
.image-style-16 img { -webkit-mask-image: url('assets/img/masking/16.png'); mask-image: url('assets/img/masking/16.png'); }
.image-style-17 img { -webkit-mask-image: url('assets/img/masking/17.png'); mask-image: url('assets/img/masking/17.png'); }
.image-style-18 img { -webkit-mask-image: url('assets/img/masking/18.png'); mask-image: url('assets/img/masking/18.png'); }
.image-style-19 img { -webkit-mask-image: url('assets/img/masking/19.png'); mask-image: url('assets/img/masking/19.png'); }
.image-style-20 img { -webkit-mask-image: url('assets/img/masking/20.png'); mask-image: url('assets/img/masking/20.png'); }
.image-style-21 img { -webkit-mask-image: url('assets/img/masking/21.png'); mask-image: url('assets/img/masking/21.png'); }
.image-style-22 img { -webkit-mask-image: url('assets/img/masking/22.png'); mask-image: url('assets/img/masking/22.png'); }

.image-screen-preview img { -webkit-mask-image: url('assets/img/masking/screen-1.png'); mask-image: url('assets/img/masking/screen-1.png'); }

.image-style-default img{
    box-shadow: none !important;
    border-radius: var(--radius);
    max-height: 100%!important;
    height: auto!important;
}
.home-slideshow .swiper-button-prev, 
.home-slideshow .swiper-button-next{
    background: color-mix(in srgb, var(--primary-color) 10%, transparent);
}
.home-slideshow .swiper-button-prev{
    left: 0;
    border-radius: 0 10px 10px 0;
    height: 50px;
}
.home-slideshow .swiper-button-next{
    right: 0;
    border-radius: 10px 0 0 10px;
    height: 50px;
}
.content-sl-home{
    padding-right: 50px;
}
.home-menu{
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
    width: 100%!important;
    margin: 0 auto;
    box-shadow: var(--shadow);
    padding: 15px;
}
.home-menu-icon img{
    width: auto;
    height: 45px;
    border-radius: 5px;
}
.link-home-menu{
    display: inline-block;
    width: 100%;
    color: #333;
    font-weight: 500;
}
.list-home-menu:nth-child(n+6){
    display: none;
}
.bg-sg-sl-home:has(.sg-data-bg)::before {
    content: unset;
}
.trusted{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
    align-items: center;
}
.trusted .parent{
    min-height: 100px;
    background: #ffffffc4;
    border-radius: var(--radius);
    color: #333;
    min-width: 150px;
    padding: 20px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.trusted .parent .m-label, .trusted .parent .m-value{
    display: inline-block;
    width: 100%;
}
.trusted .parent .m-value{
    margin-top: 10px;
    font-size: 50px;
    font-weight: 600;
    color: #333;
    line-height: 50px;
}
.consec{
    scroll-margin-top: 60px;
}
.consec .title-secloop{
    margin: 0 auto 30px auto;
    width: 700px;
    max-width: 100%;
}
.consec .title-secloop h2{
    font-size: 40px;
    line-height: normal;
    /* line-height: 40px; */
    font-weight: 500;
}
.consec .wording-secloop{
    margin: 0 auto 0 auto;
    width: 900px;
    max-width: 100%;
}
.consec .wording-secloop ul,
.consec .wording-secloop ol{
    padding-left: 17px;
    margin: 0;
    display: inline-block;
    text-align: left;
}
.consec .wording-secloop ul li,
.consec .wording-secloop ol li{
    margin-bottom: 10px;
}
.consec .wording-secloop h1, .consec .wording-secloop h2, .consec .wording-secloop h3, .consec .wording-secloop h4, .consec .wording-secloop h5, .consec .wording-secloop h6{
    margin: 13px 0;
}

.con-secloop-1 .image-secloop{
    max-width: 100%;
    width: 500px;
    height: auto;
}
.con-secloop-2 .image-secloop{
    max-width: 100%;
    width: 100%;
    height: auto;
}
.con-secloop-2.con-rtl .image-secloop img{
    mask-position: left;
}
.con-secloop-2.con-ltr .image-secloop img{
    mask-position: right;
}
.con-secloop-3 .title-secloop-sub h3{
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
}
/* .con-secloop-3 .image-secloop-sub img{
    max-height: 300px;
} */
.loop-data-table .card-2 img, 
.con-sec-blog .card-2 img{
    height: 200px;
}
.con-sec-products .card-1 img{
    height: 280px;
}
.card-3-parent{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.card-3-parent .card-3{
    flex: 1 1 calc(33.333% - 20px);
    margin-top: 40px;
}
.card-3.card-content .card-list{
    background: color-mix(in srgb, var(--primary-color) 10%, transparent);
}
.card-3.card-content .card-header{
    border-bottom: 8px solid #ffffff;
    margin-top: 0;
}
.card-3.card-content .card-list .card-list-content{
    box-shadow: var(--shadow);
}
.card-3.card-content .card-footer a.btn{
    background: var(--button-primary)!important;
    border-color: var(--button-primary)!important;
    color: var(--button-primary-text)!important;
}
.con-service-cat .patent-service-cat{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.con-service-cat .card-content{
    flex: 1 1 calc(33.333% - 20px);
}
.con-service-cat .card-content  .card-title{
    font-size: 23px;
    font-weight: 500;
    line-height: 25px;
}
.con-service-cat .card-content .excerpt{
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.con-page-header{
    background-color: color-mix(in srgb, var(--primary-color), transparent 10%);
    min-height: 200px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.con-page-header::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: color-mix(in srgb, var(--primary-color), transparent 15%); */
    background: #0000007a;
    backdrop-filter: blur(4px);
}
.con-page-header .page-header-title{
    font-size: 45px;
    line-height: 45px;
    margin-top: -10px;
    color: #fff;
    position: relative;
}
.con-page-header .separate{
    background-color: #fff;
    position: absolute;
    width: 1200px;
    max-width: 80%;
    padding: 23px 20px;
    bottom: -35px;
    border-radius: var(--radius);
    left: 0;
    right: 0;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 5%);
    margin-left: auto;
    margin-right: auto;
    color: #333;
    font-weight: 500;
    z-index: 3;
}
.con-page-header .separate a{
    color: #333;
    font-weight: 500;
}
.con-page-header-service-category .separateMenu{
    bottom: -40px;
}
.con-page-header-service-category .menu-services .separate{
    bottom: -40px;
}
.con-page-header-service-category .menu-services a{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.con-page-header-service-category .menu-services .sm-img img{
    width: 30px;
    max-width: 100%;
}
.con-page-header-service-category .menu-services .sm-label{
    font-size: 18px;
    text-align: left;
}
.swapSMenu .swiper-wrapper{
    justify-content: space-evenly;
}
.card-3.card-content .card-list .card-feature .card-value, .card-3.card-content .card-list .parent .m-value{
    background: var(--header);
    padding: 0px 10px;
}
.breadcrumb2{
    margin-top: -15px;
    margin-bottom: 25px;
    position: relative;
}
.breadcrumb2, .breadcrumb2 a{
    color: #fff;
}
.breadcrumb, .breadcrumb2{
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.list-view-1{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.body-blog .list-view-1{
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.start-filter-left{
    position: sticky;
    top: 100px;
}
.con-page-header-products .separate,
.con-page-header-blog .separate{
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 10px;
    align-items: center;
    padding: 20px;
    bottom: -40px;
}
.con-page-header-products .separate img,
.con-page-header-blog .separate img{
    width: 20px;
}
.con-page-header-products .separate .sort-by, 
.con-page-header-products .separate .view-card{
    display: inline;
    margin-left: 5px;
}
.con-page-header-products .separate .menu-sorting{
    display: none;
}
.con-page-header-products .separate .sort-by .btn, 
.con-page-header-products .separate .view-card .btn,
.con-page-header-products .separate .menu-sorting .btn{
        box-shadow: 1px 1px 2px #00000012;
}
.con-page-header-products .separate .sort-by span{
    font-size: 17px;
}
.search-form form input{
    outline: none !important;
    width: 100%;
    padding-right: 40px;
    box-shadow: 0px 0px 2px 0px #00000021!important;
    border: none !important;
    background: rgb(255 255 255 / 78%);
    backdrop-filter: blur(3px);
}
.search-form form button{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: white;
    padding: 0 5px;
    cursor: pointer;
}
.filter-left .filter-title{
    font-size: 19px;
    font-weight: 500;
    padding: 12px 15px;
    margin: 0;
    box-shadow: 2px 2px 5px #ffffff42;
}
.filter-left .filter-content{
    margin: 10px 0;
}
.filter-left .filter-content ul{
    padding: 0;
    list-style: none;
    margin: 0;
}
.filter-left .filter-content ul li{
    border-bottom: 1px solid #eee;
}
.filter-left .filter-content ul li:last-child{
    border-bottom: none;
}
.filter-left .filter-content ul li a{
    padding: 10px 0;
    display: grid;
    grid-template-columns: 1.5fr 8.5fr;
    align-items: center;
    color: #333;
}
.filter-left .filter-content ul li a .pr-cat-name{
    font-size: 18px;
    font-weight: 400;
}
.filter-left .filter-content ul li a img{
    width: 25px;
    height: 25px;
    object-fit: cover;
    border-radius: 50%;
}
.filter-left{
    max-height: 100%;
    height: 400px;
    overflow-y: scroll;
}
.filter-header, .filter-footer{
    padding: 16px 20px;
    position: relative;
    z-index: 1;
}
.star-filter-container{
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-family: "Segoe UI Symbol", "Noto Sans Symbols", "Arial Unicode MS", sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    padding: 0 10px;
}
.star-filter .grey{
    color: #ddd;
}
.star-filter.gold{
    color: #ffa500;
}
.nav-sort ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.nav-sort ul li{
    border-bottom: 1px solid #ffffff47;
}
.nav-sort ul li:last-child{
    border-bottom: none;
}
.nav-sort ul li a{
    text-align: center;
    display: inline-block;
    padding: 10px 0;
    width: 100%;
    color: var(--color-dark);
}
.card-1.card-content .star::before {
    font-family: "Segoe UI Symbol", "Noto Sans Symbols", "Arial Unicode MS", sans-serif;
    font-size: 18px;
}
.list-view-2 .card-1.card-content .col-3{
    justify-content: center;
}
.list-view-2 .card-1.card-content img{
    /*height: 150px;*/
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
}
.list-view-2 .card-1.card-content .card-title, 
.list-view-2 .card-1.card-content .card-price{
    font-size: 18px;
}
.con-product-single-left{
    padding-top: 70px;
}
.scticky-top-100{
    position: sticky;
    top: 100px;
    z-index: 1;
}
.con-page-header-product-single .breadcrumb, 
.con-page-header-product-single .breadcrumb a{
    font-weight: 400;
}
.prsg-price{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5px;
    align-items: center;
    border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 10%, transparent);
    padding-bottom: 15px;
}
.prsg-price .prc-Label{
    font-size: 20px;
    font-weight: 600;
}
.prsg-price .prc-value{
    /* font-size: 30px; */
    font-size: 20px;
    font-weight: 600;
    color: #e15100;
}
.prsg-price .prc-currency{
    font-size: 14px;
    font-weight: 500;
    vertical-align: top;
    margin: 5px 5px 0 0;
    padding: 4px 10px;
    border-radius: 50px;
}
.prsg-cat a{
    display: inline-block;
    color: #333;
    padding: 15px 0 5px 0;
}
.prsg-rating .star::before {
    font-family: "Segoe UI Symbol", "Noto Sans Symbols", "Arial Unicode MS", sans-serif;
    font-size: 22px;
}
.prsg-rating .star::before {
    content: "★★★★★";
    letter-spacing: 0;
    background: linear-gradient(90deg, orange calc(var(--rate) * 20%), #ccc calc(var(--rate) * 20%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.prsg-rating .star {
    font-size: 16px;
    color: #ccc;
    display: inline-block;
}
.prsg-rating{
    font-size: 15px;
    color: #7a7a7a;
}
.hr-prsg{
    border: none;
    border-top: 1px solid color-mix(in srgb, var(--primary-color) 10%, transparent);
}
.prsg-highlight{
    margin-top: 15px;
}
.prsg-highlight ul{
    padding: 10px 20px;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
}
.prsg-highlight ul li{
    padding: 8px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 10%, transparent);
}
.prsg-highlight ul li:last-child{
    border-bottom: none;
}
.prsg-highlight .more-benefits{
    color: #6a6a6a;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
    text-align: center;
}
.prsg-highlight .benefits-label{
    font-weight: 500;
    display: flex;
    align-items: center;
}
.body-product-single .footer-1-mobile,
.body-blog-single .footer-1-mobile{
    display: none;
}
.body-product-single .footer-2-mobile,
.body-blog-single .footer-2-mobile{
    display: none;
}
.sec-content-sg img{
    border-radius: var(--radius);
}
.sec-content-sg p:first-child{
    margin-top: 0;
}
.sec-content-sg p:last-child{
    margin-bottom: 0;
}
.sec-label-sg{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}
.content-start .accordion .m-label,
.content-start .accordion .m-value,
.content-start .accordion .m-label .acc-icon{
    color: var(--color-panel);
}
.content-start .accordion .parent{
    border-radius: var(--radius);
    background: var(--bg-panel);
    box-shadow: var(--shadow);
}
.body-product-single .accordion,
.body-blog-single .accordion{
    gap: 0;
}
.body-product-single .accordion .parent,
.body-blog-single .accordion .parent{
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 10%, transparent);
    background: transparent;
}
.body-product-single .accordion .parent:last-child,
.body-blog-single .accordion .parent:last-child{
    border-bottom: none;
}
.body-product-single .accordion .m-label,
.body-product-single .accordion .m-value{
    padding: 15px 0;
}
.body-blog-single .accordion .m-label,
.body-blog-single .accordion .m-value{
    padding: 15px 0;
}
.benefits-all ul{
    padding-left: 0;
    margin: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.sec-highlights-sg{
    scroll-margin-top: 90px;
}

.sec-highlights-sg .benefits-all ul li {
    list-style: none;
    padding-left: 35px;
    position: relative;
}
.sec-highlights-sg .benefits-all ul li::before {
    content: '';
    background-image: url('/assets/img/icons/3-star.webp');
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 0;
}

.sec-relate-sg{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}
.prsg-review{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    align-items: center;
}
.popReview .tab-link{
    width: 100%;
}
.popReview .tab-link.active{
    background: var(--background-style-3);
    color: var(--color-dark);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    border-top-right-radius: var(--radius);
    border-top-left-radius: var(--radius);
}
.popReview .tab-content{
    padding: 20px 0 0 0;
}
.swiper-pagination-bullet.active{
    background: var(--background-style-1) !important;
}
.popReview .tab-pane{
    height: 400px;
    overflow-y: scroll;
}
.popReview .cust-img{
    width: 30px;
    height: 30px;
    object-fit: cover;
    position: absolute;
    top: -5px;
    left: -10px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}
.popReview .cust-img img{
    border-radius: 50%;
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.popReview .name-rating{
    margin: 13px 0 5px 0;
    font-weight: 500;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.popReview .cust-review{
    font-weight: 300;
    font-style: italic;
}
.popReview .btn-submit-review{
    position: absolute;
    bottom: 0;
    left: 0;
}
.popReview .cust-rating .star::before{
    content: "★★★★★";
    letter-spacing: 0;
    background: linear-gradient(90deg, orange calc(var(--rate) * 20%), #ccc calc(var(--rate) * 20%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Segoe UI Symbol", "Noto Sans Symbols", "Arial Unicode MS", sans-serif;
    font-size: 20px;
}
.popReview .form-review label{
    font-size: 17px;
    color: #666666;
    position: absolute;
    left: 8px;
    top: -10px;
    padding: 0 8px;
    border-radius: 5px;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
.form-control:focus{
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary-color) 10%, transparent);
    border-color: color-mix(in srgb, var(--primary-color) 30%, transparent);
}
input[type="text"].form-control, 
input[type="email"].form-control,
input[type="number"].form-control{
    height: 40px;
    background-color: #ffffff82;
    border: 1px solid color-mix(in srgb, var(--primary-color) 15%, transparent);
    padding-top: 0;
    padding-bottom: 0;
}
select.form-control{
    height: 40px;
    border: 1px solid color-mix(in srgb, var(--primary-color) 15%, transparent)!important;
    padding-top: 0;
    padding-bottom: 0;
}
textarea.form-control{
    background-color: #ffffff82;
    border: 1px solid color-mix(in srgb, var(--primary-color) 15%, transparent)!important;
}
.popReview .rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    line-height: 1;
}
.popReview .rating-stars label{
    position: relative;
    background: transparent;
    left: unset;
    top: unset;
    padding: 0;
    font-size: 20px !important;
}
.popReview .rating-stars input{
    display: none;
}
.popReview .rating-stars .star{
    font-size: 24px !important;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    font-family: "Segoe UI Symbol", "Noto Sans Symbols", "Arial Unicode MS", sans-serif;
}
.popReview .rating-stars .star:hover,
.popReview .rating-stars .star:hover ~ .star,
.popReview .rating-stars input:checked ~ .star{
    color: #df9900;
}
.popReview .chaptcha .form-control{
    background: #fff5ee82;
    border: 1px solid #fae3d4;
    padding-left: 100px;
    font-weight: 700;
}
.popReview .chaptcha label{
    font-size: 18px!important;
    background: transparent!important;
    padding: 0!important;
    top: 50%!important;
    left: 15px!important;
    transform: translateY(-50%)!important;
}
.card-3.card-content .card-header::before{
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    background: #00000070;
}
.hl-loop-c2{
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 50%;
    text-align: right;
}
.hl-loop-c2 .hl{
    display: inline-block;
    width: auto;
    margin: 3px 3px;
    padding: 1px 10px;
    font-size: 14px;
}
.body-services .card-2.card-content .excerpt{
    -webkit-line-clamp: unset;
}
.body-blog .card-2.card-content img, 
.body-blog-single .card-2.card-content img{
    height: 270px;
}
.sg-date, .sg-author, .sg-category, 
.sg-date a, .sg-author a, .sg-category a{
    display: inline-block;
    width: auto;
    font-size: 16px;
    font-weight: 500;
}
.pop-filter .container-popup{
    width: 400px;
}
.body-blog-single .sec-content-sg hr{
    border: none;
    height: 1px;
    background-color: #efefef;
    margin-top: 15px;
}
.body-blog-single h2{
    scroll-margin-top: 90px;
}
.body-blog-single .table-of-contents ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.body-blog-single .table-of-contents ul li{
    padding: 8px 0;
    border-bottom: 1px solid 
    color-mix(in srgb, var(--primary-color) 10%, transparent);
}
.body-blog-single .table-of-contents ul li:last-child{
    border-bottom: none;
}
.body-blog-single .toc-parent{
    height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.body-blog-single .table-of-content{
    font-size: 20px;
    font-weight: 500;
    padding: 15px;
    margin-bottom: 10px;
}
.sg-faq-nav{
    display: inline-block;
    padding-top: 10px;
    width: 100%;
}
.sec-faq-sg{
    scroll-margin-top: 90px;
}
.socmed-parent img{
    width: 35px;
}
.contact-form{
    background: #ffffff73;
    position: relative;
}
.contact-form .sec-form1, 
.contact-form .sec-form2,
.contact-form .sec-form3,
.contact-form .sec-form4{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.contact-form .form-control{
    border: none;
    box-shadow: 0px 0px 2px 0px #0000003b;
    background: rgb(255 255 255 / 64%);
    backdrop-filter: blur(1px);
}
.chaptcha-form{
    margin-top: 20px;
}
.chaptcha-form label{
    font-size: 35px;
    color: #b86b05;
    margin-bottom: 5px;
    display: inline-block;
    width: 100%;
    text-align: center;

    font-family: "Bitcount Prop Double Ink", system-ui;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "slnt" 0,
        "CRSV" 0.5,
        "ELSH" 0,
        "ELXP" 0,
        "SZP1" 0,
        "SZP2" 0,
        "XPN1" 0,
        "XPN2" 0,
        "YPN1" 0,
        "YPN2" 0;
}
.tabs-container{
    background: transparent;
}
.header-2{
    padding: 0 150px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1040;
}
.top-header-2 .logo{
    height: 100px;
    width: auto;
}
.header-2 .main-menu{
    float: none;
}
.header-2 .parent-head-2{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-2 .btn-start-head{
    width: auto;
    min-width: 150px;
}
.header-2 .menu-icon img{
    max-width: 100%;
    height: 23px;
    width: auto;
    vertical-align: middle;
}
.top-header-2 a.top-link img {
    max-width: 100%;
    width: 23px;
    height: 23px;
    object-fit: contain;
    vertical-align: middle;
    margin: 0 2px;
    margin-top: -3px;
}
.header-3 .logo{
    max-width: 90%;
    max-height: 40px;
    height: auto;
    width: auto;
    vertical-align: middle;
    margin-left: 10px;
}
.header-3 .menu-icon img {
    max-width: 100%;
    height: 23px;
    width: auto;
    vertical-align: middle;
}
.header-3{
    padding: 0 15px;
    z-index: 1040;
    position: fixed;
    top: 30px;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.header-3::before{
    border-radius: 50px;
}
.header-3 .menu-icon{
    border: none !important;
}
.footer-2{
    padding: 100px;
}
.footer-2 .logo-footer img {
    width: 270px;
    height: auto;
}
.footer-2 .menu-social ul{
    padding: 0;
    margin: 0;
    list-style: none;
    margin: 0 0 0 -5px;
}
.footer-2 .menu-social ul li,
.footer-2 .menu-social ul li a {
    display: inline-block;
    width: auto;
}
.footer-2 .menu-social ul li a img{
    width: 35px;
}
.footer-2 .content-start{
    width: 900px;
    margin: 0 auto;
}
.footer-2-bottom a {
    color: #333 !important;
}
.footer-1-mobile.background-image, 
.footer-2-mobile.background-image{
    position: fixed!important;
}
.footer-2-mobile{
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 700;
    border-radius: 50px;
}
.footer-2-mobile ul.mobile-menu-fixed{
    display: flex;
    width: 100%;
}
.footer-2-mobile ul.mobile-menu-fixed li{
    display: inline-block;
    flex: 1;
    text-align: center;
    line-height: 0;
}
.footer-2-mobile ul.mobile-menu-fixed li a{
    display: inline-block;
    width: auto;
    font-size: 13px;
    line-height: 12px;
    text-decoration: none;
    color: #252525;
    margin: 5px;
    font-weight: 500;
}
.footer-2-mobile ul.mobile-menu-fixed li a img{
    width: 30px;
    height: auto;
}
.body-blog-single .footer-1-bottom,
.body-blog-single .footer-2-bottom{
    display: block;
}
.rev-img img{
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}
.rev-review{
    font-style: italic;
}
.rev-review::before{
    content: '\201C';
    font-size: 170px;
    position: absolute;
    color: color-mix(in srgb, var(--primary-color) 25%, transparent);
}
.rev-name, .rev-position{
    font-weight: 600;
}
.con-service-cat .card-content .card-title{
    margin-top: unset;
}
#header3{
    transition: all .3s;
}
.menu3scroll{
    background: #fff !important;
    border-radius: 0 !important;
    top: 0!important;
    width: 100%!important;
}
.menu3scroll .logo{
    margin-left: 0;
}
.menu-desc{
    color: color-mix(in srgb, var(--pop-menu-text) 60%, transparent);
}
.ic-mn{
    width: 23px;
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
}
.c-image, .c-word{
    position: sticky;
    top: 100px;
}
.captcha_book{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.captcha_book label{
    margin-bottom: 0!important;
    text-align: center;
}
.scrl-mob{
    height: 400px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 2px;
}
.booking-form label:not(.lab-chapt){
    font-size: 16px;
    color: #717171;
    margin-bottom: 3px;
}
.body-services-single .footer-1-mobile{
    display: none;
}
.book-service-bottom-mobile{
    position: fixed;
    bottom: 20px;
    left: 0;
    z-index: 10;
    padding: 0;
    background: #fff;
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
}
.book-service-bottom-mobile .btn{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.img-prd-1{
    display: inline-block;
    padding: 15px;
}
.card-1.card-content img{
    height: auto;
}
.body-products .ls1-highlight{
    display: grid;
    grid-template-columns: 1fr 10fr;
    gap: 5px;
    border-bottom: 1px solid #eee;
    padding: 7px 0;
    align-items: center;
}
.body-products .ls1-highlight .lsh-img{
    width: 20px;
    line-height: 0;
}
.body-products .ls1-highlight .lsh-hlgh{
    font-size: 15px;
    opacity: .7;
    line-height: 17px;
    font-weight: 400;
}
.ls-content-1-highlight{
    margin-bottom: 35px;
}
.foot-plp-1{
    display: grid;
    grid-template-columns: 2fr 1fr;
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
}
.foot-plp-1 .ext-link img{
    width: 15px;
    height: auto;
    margin-right: 7px;
}
.foot-plp-1 .ext-link{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid #ddd;
    padding: 2px 5px;
    border-radius: 7px;
}
.foot-plp-1 .ext-link span{
    opacity: .8;
}

.foot-plp-2 .ext-link img{
    width: 15px;
    height: auto;
    margin-right: 7px;
}
.foot-plp-2 .ext-link{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid #ddd;
    padding: 2px 5px;
    border-radius: 7px;
}
.foot-plp-2 .ext-link span{
    opacity: .8;
}
.sg-benef-demo{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 15px;
}
.sg-benef-demo .demo-web a{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    padding: 3px;
    font-size: 15px;
    border-radius: 8px;
}
.sg-benef-demo .demo-web a img{
    width: 20px;
    margin-right: 8px;
    height: auto;
}
.sg-benef-demo .demo-web span{
    opacity: .8;
}
.chat-wa{
    bottom: 80px;
    right: 5px;
}
.body-services-single .trusted .parent{
    padding: 8px;
}
.body-services-single .trusted .parent .m-value{
    margin-top: 5px;
    font-size: 40px;
    line-height: 40px;
}
.sg-phone-txt{
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    line-height: 25px;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-block;
}
.sg-phone-txt span{
    font-size: 18px;
    line-height: normal;
    font-weight: 300;
    letter-spacing: 0;
    vertical-align: top;
    display: block;
    margin-bottom: 5px;
}