:root {
    /* --primary-color: #388FFF; */
    /* --primary-color: #045413; */
    /* --primary-color: #716b03; */
    --primary-color: #015979;
    /* --primary-color: #d94c15; */

    --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: #d94c15;
    --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: 55px;
    line-height: 55px;
    font-weight: 300;
    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: 20px;
    line-height: normal;
    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: unset!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: 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{
    display: grid;
    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: 8px 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 img{
    height: 150px;
    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: 21px;
}
.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-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;
    margin-bottom: 15px;
}
.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: 17px;
    margin: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.sec-highlights-sg{
    scroll-margin-top: 90px;
}
.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{
    height: 40px;
    background-color: #ffffff82;
}
select.form-control{
    height: 40px;
}
textarea.form-control{
    background-color: #ffffff82;
}
.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: 3px 10px;
    font-size: 17px;
}
.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{
    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: start;
}
.swiper-slide .image-style-default img{
    max-height: 400px !important;
    width: auto;
    margin: 0 auto;
}
.booking-form label:not(.lab-chapt){
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .main-menu{
        background: var(--pop-menu);
        color: var(--pop-menu-text)!important;
    }
    .ic-mn{
        top: 13px;
        transform: unset;
    }
    .menu-list .main-menu li a{
        color: var(--pop-menu-text)!important;
    }
    .image-style-1{
        width: 100%;
    }
    .content-sl-home{
        padding-right: 0;
        z-index: 2;
    }
    .min-height-slide{
        min-height: 400px;
    }
    .list-home-menu:nth-child(n+6){
        display: unset;
    }
    .list-home-menu:nth-child(n+4){
        display: none;
    }
    .md-image-style-default{
        border-radius: var(--radius);
        background: #ffffff87;
        width: 100%;
        line-height: 0;
        box-shadow: 0px 0px 30px 11px rgb(255 255 255);
        margin-bottom: 30px;
        height: 100%;
    }
    .md-image-style-default::before{
        content: unset;
    }
    .md-image-style-default img{
        -webkit-mask-image: unset;
        mask-image: unset;
        border-radius: var(--radius);
        height: 400px;
        width: 100%;
        object-fit: cover;
        height: 100%;
    }
    .txt-sl-home{
        font-size: 20px;
        background: #ffffff;
        margin-top: -120px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 2px 2px 5px rgb(0 0 0 / 4%);
        padding: 20px;
        border-radius: 0 0 var(--radius) var(--radius);
    }
    .bg-homeslide-1{
       padding-bottom: 100px;
    }
    .home-slideshow .swiper-button-prev, 
    .home-slideshow .swiper-button-next{
        top: unset;
        bottom: 10%;
    }
    .bg-sg-sl-home{
        padding-bottom: 0;
    }
    .head-txt-sl-home{
        font-size: 33px;
        line-height: 37px;
        padding-top: 50px;
    }
    .hr-title-text{
        margin: 5px 0;
    }
    .heading-welcome{
        width: 700px;
        font-size: 50px;
        line-height: 50px;
    }
    .home-menu{
        padding: 15px;
    }
    .trusted{
        gap: 15px;
    }
    .trusted .parent{
        padding: 15px;
        min-height: 80px;
        min-width: 130px;
    }
    .trusted .parent .m-value{
        font-size: 35px;
        line-height: 35px;
    }
    .opacity-top {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 20%);
    }
    .consec .title-secloop{
        width: 500px;
    }
    .consec .title-secloop h2{
        font-size: 38px;
        line-height: 38px;
    }
    .con-secloop-2.con-rtl .image-secloop img, 
    .con-secloop-2.con-ltr .image-secloop img{
        mask-position: center;
    }
    .con-secloop-3  .title-secloop-sub{
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .con-secloop-3 .wording-secloop-sub{
        max-width: 600px;
        margin: 0 auto;
    }
    .con-secloop-3 .image-secloop-sub img{
        max-height: 350px;
    }
    .con-secloop-3 .title-secloop-sub h3{
        font-size: 24px;
    }
    .loop-data-table .card-2 img,
    .con-sec-blog .card-2 img{
        height: 220px;
    }
    .con-sec-products .card-1 img{
        height: 330px;
    }
    .card-3-parent .card-3{
        flex: 1 1 calc(50% - 20px);
    }
    .card-3.card-content{
        width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .con-service-cat .card-content{
        flex: 1 1 calc(50% - 20px)
    }
    .con-page-header{
        background-attachment: scroll;
    }
    .con-page-header-service-category .separateMenu{
        bottom: -45px;
        padding: 20px 20px;
    }
    .con-page-header-service-category .menu-services a{
        display: inline-block;
        width: 100%;
    }
    .con-page-header-service-category .menu-services .sm-label{
        text-align: center;
    }
    .con-page-header .separate{
        max-width: 90%;
    }
    .breadcrumb2{
        margin-top: -20px;
        margin-bottom: 30px;
    }
    .con-page-header-products .separate .menu-sorting{
        display: inline;
        margin-left: 5px;
    }
    .con-page-header-products .separate{
        grid-template-columns: 6fr 4fr;
    }
    .pop-filter .popup-content{
        padding: 0 20px;
    }
    .pop-filter .container-popup{
        width: 400px;
    }
    .pop-filter .filter-left{
        box-shadow: none;
        padding: 20px 0 0 0;
        background: transparent;
        backdrop-filter: unset;
    }
    .filter-left{
        height: 400px;
    }
    .filter-left .filter-content ul li a{
        grid-template-columns: 1fr 9fr;
    }
    .filter-left .filter-content ul li a .pr-cat-name{
        font-size: 17px;
    }
    .list-view-2 .card-1.card-content img{
        height: 140px;
    }
    .list-view-2 .card-1.card-content .card-title, 
    .list-view-2 .card-1.card-content .card-price{
        font-size: 24px;
        line-height: 28px;
    }
    .con-product-single-left{
        padding-top: 55px;
    }
    .prsg-cta{
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1070;
        width: 100%;
        padding: 15px;
        background: #fff;
        box-sizing: border-box;
    }
    .con-page-header-product-single .page-header-title{
        font-size: 40px;
        line-height: 40px;
    }
    .sec-label-sg{
        font-size: 23px;
        margin-bottom: 15px;
    }
    .sec-relate-sg{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .con-page-header .page-header-title{
        margin-top: 10px;
    }
    .popReview .tab-pane{
        height: 600px;
    }
    .popReview .name-rating{
        margin: 13px 0 10px 0;
    }
    .body-blog .list-view-1{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .body-blog .card-2.card-content img{
        height: 230px;
    }
    .body-blog-single .card-2.card-content img{
        height: 320px;
    }
    .body-blog-single .sec-content-sg hr{
        margin-top: 10px;
    }
    .body-blog-single .toc-parent{
        height: 270px;
    }
    .background-image{
        background-attachment: scroll;
    }
    .header-2{
        padding: 13px 30px;
    }
    .header-2 .parent-head-2{
        justify-content: space-between;
    }
    .header-3 {
        padding: 15px 15px;
    }
    .footer-2 {
        padding: 70px 30px;
    }
    .footer-2 .logo-footer img {
        width: 250px;
    }
    .footer-2 .menu-social ul {
        margin: 0;
    }
    .footer-2 .menu-social ul li a img {
        width: 30px;
    }
    .footer-2 .content-start{
        width: 100%;
    }
    .background-white-blur{
        background: #fff;
        backdrop-filter: unset !important;
    }
}

@media (max-width: 767.98px) {
    .text-body{
        line-height: 22px;
    }
    .image-style-1{
        width: 100%;
    }
    .bg-homeslide-1{
       padding-bottom: 70px;
    }
    .txt-sl-home{
        font-size: 15px;
        padding: 15px;
        margin-top: -100px;
        border-radius: 0 0 var(--radius) var(--radius);
    }
    .content-sl-home{
        padding-right: 0;
    }
    .home-menu{
        top: -50px;
        padding: 8px;
    }
    .home-menu-icon img{
        height: 30px;
    }
    .home-menu-label{
        font-size: 14px;
    }
    .min-height-slide{
        min-height: 230px;
    }
    .list-home-menu:nth-child(n+4){
        display: unset;
    }
    .list-home-menu:nth-child(n+3){
        display: none;
    }
    .md-image-style-default{
        margin-bottom: 20px;
    }
    .md-image-style-default img{
        height: 100%;
    }
    .home-slideshow .swiper-button-prev, 
    .home-slideshow .swiper-button-next{
        bottom: 8%;
    }
    .head-txt-sl-home{
        font-size: 20px;
        line-height: 21px;
        font-weight: 400;
        padding-top: 50px;
    }
    .hr-title-text{
        margin: 3px 0;
    }
    .heading-welcome{
        width: 100%;
        font-size: 35px;
        line-height: 35px;
    }
    .trusted{
        gap: 8px;
    }
    .trusted .parent{
        padding: 10px;
        min-height: 50px;
        min-width: 120px;
    }
    .trusted .parent .m-value{
        font-size: 23px;
        line-height: 23px;
        margin-top: 5px;
    }
    .consec .title-secloop{
        margin: 0 auto 20px auto;
    }
    .consec .title-secloop h2{
        font-size: 23px;
        line-height: 24px;
    }
    [class*="image-style-"] img{
        max-height: 250px;
    }
    .con-secloop-3  .title-secloop-sub{
        max-width: 90%
    }
    .con-secloop-3 .title-secloop-sub h3{
        font-size: 22px;
        line-height: 23px;
    }
    .con-secloop-3 .image-secloop-sub img{
        max-height: 200px;
    }
    .loop-data-table .card-2 img,
    .con-sec-blog .card-2 img{
        height: 120px;
    }
    .con-sec-products .card-1 img{
        height: 150px;
    }
    .card-3-parent{
        gap: 10px;
    }
    .card-3-parent .card-3{
        flex: 1 1 100%;
    }
    .card-3.card-content{
        width: 100%;
    }
    .con-service-cat .patent-service-cat{
        gap: 15px;
    }
    .con-service-cat .card-content{
        flex: 1 1 calc(100% - 15px);
    }
    .con-service-cat .card-content .card-title{
        font-size: 20px;
        line-height: 22px;
        margin-top: 2px;
    }
    .con-service-cat .card-content img{
        height: 180px;
    }
    .con-page-header{
        min-height: 100px;
    }
    .con-page-header .separate{
        padding: 18px 10px;
        bottom: -28px;
    }
    .con-page-header .page-header-title{
        font-size: 28px;
        line-height: 28px;
        margin-top: -10px;
        color: #fff;
        font-weight: 500;
    }
    .con-page-header-service-category .separateMenu{
        padding: 10px 10px;
        bottom: -31px;
    }
    .con-page-header-service-category .menu-services .sm-img img{
        width: 23px;
    }
    .con-page-header-service-category .menu-services .sm-label{
        font-size: 15px;
        line-height: 15px;
        font-weight: 400;
    }
    .con-page-header .separate{
        max-width: 87%;
    }
    .breadcrumb2{
        margin-top: -10px;
        margin-bottom: 25px;
        font-size: 14px;
        font-weight: 300;
    }
    .list-view-1{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .con-page-header-products .separate .sort-by .btn, 
    .con-page-header-products .separate .view-card .btn,
    .con-page-header-products .separate .menu-sorting .btn{
        display: inline-block;
        padding: 8px 10px;
    }
    .con-page-header-products .separate,
    .con-page-header-blog .separate{
        padding: 8px 10px;
        bottom: -28px;
        grid-template-columns: 5fr 4fr;
    }
    .con-page-header-blog .separate{
        grid-template-columns: 7fr 2fr;
    }
    .con-page-header-products .separate .sort-by, 
    .con-page-header-products .separate .view-card,
    .con-page-header-products .separate .menu-sorting{
        margin-left: 0;
    }
    .filter-left .filter-content ul li a .pr-cat-name{
        font-size: 17px;
    }
    .filter-left .filter-content ul li a img{
        width: 25px;
        height: 25px;
    }
    .pop-filter .container-popup{
        width: 100%;
    }
    .filter-left .filter-title{
        font-size: 18px;
    }
    .filter-left .filter-content ul li a{
        grid-template-columns: 1.3fr 8.7fr;
    }
    .card-1.card-content .star::before {
        font-size: 15px;
    }
    .list-view-2 .card-1.card-content img{
        height: 80px;
    }
    .list-view-2 .card-1.card-content .card-title{
        font-size: 16px;
        line-height: 18px;
    }
    .list-view-2 .card-1.card-content .card-price{
        font-size: 14px;
        line-height: 15px;
    }
    .con-product-single-left{
        padding-top: 45px;
    }
    .prsg-cta{
        padding: 10px;
    }
    .prsg-price{
        padding-bottom: 10px;
    }
    .prsg-price .prc-Label{
        font-size: 17px;
    }
    .prsg-price .prc-currency{
        font-size: 12px;
    }
    .prsg-price .prc-value{
        font-size: 20px;
    }
    .prsg-cat a{
        padding: 10px 0 3px 0;
    }
    .prsg-rating .star::before{
        font-size: 15px;
    }
    .prsg-rating{
        font-size: 12px;
    }
    .prsg-highlight{
        margin-top: 0px;
    }
    .prsg-highlight .benefits-label{
        margin-bottom: 10px;
    }
    .prsg-highlight ul{
        padding: 8px 15px;
    }
    .prsg-highlight ul li{
        font-size: 16px;
        padding: 8px 0;
    }
    .con-page-header-product-single .page-header-title{
        font-size: 23px;
        line-height: 23px;
    }
    .sec-label-sg{
        font-size: 19px;
        margin-bottom: 10px;
    }
    .sec-highlights-sg{
        scroll-margin-top: 75px;
    }
    .benefits-all ul{
        grid-template-columns: 1fr;
    }
    .prsg-highlight .more-benefits{
        margin-top: 10px;
    }
    .body-product-single .accordion .m-label,
    .body-product-single .accordion .m-value{
        padding: 10px 0;
    }
    .body-blog-single .accordion .m-label,
    .body-blog-single .accordion .m-value{
        padding: 10px 0;
    }
    .sec-relate-sg{
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .popReview .tab-link{
        font-size: 17px;
    }
    .popReview .tab-content {
        padding: 15px 0 0 0;
    }
    .popReview .tab-pane{
        height: 400px;
    }
    .popReview .name-rating{
        margin: 25px 0 5px 0;
    }
    .popReview .cust-rating .star::before{
        font-size: 16px;
    }
    .popReview .form-review label{
        font-size: 16px;
        top: -8px;
        padding: 0 8px;
    }
    .popReview .rating-stars label{
        font-size: 17px !important;
        top: 0;
        padding: 0;
    }
    .body-blog .list-view-1{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .body-blog .card-2.card-content img,
    .body-blog-single .card-2.card-content img{
        height: 150px;
    }
    .sg-date, .sg-author{
        font-size: 14px;
        font-weight: 400;
    }
    .body-blog-single h2{
        scroll-margin-top: 80px;
    }
    .body-blog-single .toc-parent{
        height: 170px;
    }
    .body-blog-single .table-of-content{
        font-size: 18px;
    }
    .contact-form .sec-form1, .contact-form .sec-form2{
        /* grid-template-columns: 1fr;
        gap: 0; */
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .chaptcha-form label{
        font-size: 27px;
    }
    .header-2{
        padding: 13px 20px;
    }
    .top-header-2 .logo{
        height: 70px;
    }
    .header-2 .btn-start-head{
        min-width: 130px;
    }
    .header-3 .logo {
        max-height: 30px;
        margin-left: 0;
    }
    .header-3 {
        padding: 12px 12px;
        top: 15px;
        width: 93%;
    }
    .footer-2 {
        padding: 50px 20px;
    }
    .footer-2 .logo-footer img {
        width: 180px;
    }
    .footer-2 .menu-social ul li a img {
        width: 32px;
    }
    .rev-img img{
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
    }
    .rev-review::before{
        font-size: 100px;
    }
    .chat-wa{
        display: none;
    }
    .scrl-mob{
        height: 400px;
        overflow-x: hidden;
        padding: 2px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .booking-form button.btn{
        padding: 17px 10px;
    }
    .popup-booking-parent{
        align-items: end!important;
    }
    .popup-booking-parent .container-popup{
        max-width: 100%!important;
    }
    .body-blog .list-view-1 .card-2 {
        min-width: 0;
    }
    .body-blog .list-view-1 .card-2 img {
        max-width: 100%;
        display: block;
    }
    .swiper-slide .image-style-default img{
        max-height: 300px!important;
    }
    #myPopupBooking{
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .booking-form label:not(.lab-chapt){
        font-size: 14px;
        margin-top: 5px;
    }
}