:root {
    --font: "Poppins", sans-serif;
    --font2: "Poppins", sans-serif;
    --liner: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --pri: #334774;
    --sec: #dec17c;
    --tri: #dc2626;
    --text-color: #0c1726;
    --text-light: #666;
    --para-color: #333;
}

body {
    background: #fff;
    font-family: var(--font);
    color: var(--para-color);
    font-size: 16px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    line-height: normal;
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

p {
    color: var(--para-color);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 12px;
    font-family: var(--font2);
    line-height: 1.6;
}

a {
    display: block;
    text-decoration: none;
}

p a {
    display: inline;
}

header {
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.logo {
    max-width: 160px;
}

.menubar {
    position: relative;
}

.menubar.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.navigation .nav-header {
    display: none;
    padding: 12px 20px
}

.navigation .navbar button {
    width: 40px;
    height: 40px;
    background: var(--pri);
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 25px;
    border-radius: 0;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 99;
    padding: 5px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navigation .navbar button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 15%;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
    top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
    top: 18px;
}

.navigation .navbar button span:nth-child(4) {
    top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
    transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .menu {
    display: block
}

.navigation .menu ul {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: end;
    display: block;
}

.navigation .menu ul li {
    display: inline-block;
    position: relative;
}

.navigation .menu ul li a {
    padding: 30px 10px;
    display: block;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 15px;
    font-family: var(--font);
    background: transparent;
    font-weight: 400;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: var(--pri);
    background: transparent;
}



.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: 0;
    text-align: left
}

.navigation .menu ul li ul.cs-dropdown li:last-child {
    border: 0
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown {
    left: 100%;
    margin-top: -36px
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li ul.cs-dropdown {
    left: -100%;
    margin-top: -31px
}

.navigation .menu ul li ul.cs-dropdown {
    position: absolute;
    width: 285px;
    display: none;
    z-index: 99999;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
    background: #fff;
    margin: 0;
    padding: 0;
    transition: all .3s ease
}

.navigation .menu ul li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li:hover ul.cs-dropdown li ul.cs-dropdown {
    display: none;
    transition: all .3s ease;
    width: 250px;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%
}

.navigation .menu ul li ul.cs-dropdown li:last-child a:after {
    display: none
}

.navigation .menu ul li ul.cs-dropdown li a:hover {
    color: #fff;
    background: var(--pri);
}

.navigation .menu ul li ul.cs-dropdown li:hover a {
    color: #fff;
    background: var(--pri)
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a {
    background: #fff;
    color: #333
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
    color: #fff;
    background: var(--pri)
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: #333;
    font-size: 14px;
    padding: 7px 13px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: normal;
    background: #f5f5f5;
    transition: all 0.3s ease;
    border-bottom: 0px solid transparent;
}


.navigation ul li.cs-submenu a button {
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0 0 0 3px;
    color: var(--text-color);
}

.navigation ul li.cs-submenu a button svg {
    width: 13px;
    height: 13px;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: var(--pri);
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
    color: #242424
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: #333;
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
    transform: rotateZ(-90deg);
}

.navigation ul li.cs-submenu ul.cs-dropdown li.cs-submenu:hover svg {
    color: #fff;
}

.navigation .navbar {
    display: none;
    padding: 12px 0;
    margin: 0
}

.navigation .menu ul>li:hover>ul.cs-dropdown {
    visibility: visible;
    opacity: 1;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown {
    left: 100%;
    margin-top: -36px;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown>li>ul.cs-dropdown {
    left: -100%;
    margin-top: -31px;
}


.navigation .menu ul>li>ul.cs-dropdown>li:hover>ul.cs-dropdown {
    visibility: visible;
    opacity: 1;
}

.navigation .menu ul>li ul.cs-dropdown {
    position: absolute;
    width: max-content;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    transition: all .3s ease;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
    background: #fff;
    margin: 0;
    padding: 0;
    text-align: left;
}

.navigation .menu ul>li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgb(27 41 70 / 88%);
    transition: all .3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: flex;
    align-items: center;
    justify-content: center
}

.search-box.search-elem.search-open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.search-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background: #fff;
    outline: 0;
    border: 0;
    color: var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.search-close:hover {
    background: var(--pri);
    color: #fff
}

.search-form {
    width: 100%;
    max-width: 500px;
    border-radius: 2px;
    border: 1px solid #fff;
    display: flex;
    margin: 0 20px
}

.search-form input {
    width: 100%;
    border: 0;
    outline: 0;
    background: 0 0;
    color: #fff;
    height: 46px;
    padding: 10px 15px;
}

.search-form input::placeholder {
    color: #c4c4c4;
}

.search-form button {
    background: 0 0;
    border: 0;
    outline: 0;
    color: #fff;
    padding-inline: 10px
}

.search-form button svg {
    width: 20px;
    height: 20px;
}

.search-btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 100%;
    background: var(--sec);
    outline: 0;
    border: 0;
    color: #fff;
    text-align: center;
    align-content: center;
    padding: 0;

}

.search-btn:focus,
.search-btn:hover {
    background: #f1f1f1;
    color: var(--pri)
}


.main-btn {
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
    border: 2px solid var(--pri);
    display: inline-flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font);
    text-transform: capitalize;
    white-space: nowrap;
    background: var(--pri);
    outline: none;
    transition: 0.2s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    justify-content: center;
}

.main-btn:hover {
    background: var(--text-color);
    color: white;
    border-color: var(--text-color);
}

.main-btn.light {
    background: transparent;
    color: var(--pri);
    font-weight: 600;
}

.main-btn.light:hover {
    background: var(--pri);
    color: white;
    border-color: var(--pri);
}

.w-btn {
    padding: 10px 15px;
    color: white;
    border: 1px solid #00c966;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    text-transform: capitalize;
    white-space: nowrap;
    background-color: #00c966;
    outline: none;
    transition: 0.2s ease-in-out;
    border-radius: 10px;
}

.w-btn:hover {
    border-color: #00c966;
    background-color: #00b95d;
}

.head-sec {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 28px;
}

.head-sec .tt {
    font-family: var(--font);
    color: var(--text-color);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 7px;
    position: relative;
    text-transform: capitalize;
}

.head-sec .tt span {
    color: var(--pri);
}

.head-sec.left {
    text-align: left;
    max-width: 100%;
}

.head-sec.left .tt::before {
    left: 0;
}

.head-sec p {
    font-size: 15px;
    color: var(--para-color);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.head-sec.dark {
    max-width: 100%;
    padding: 10px 0;
    background-color: var(--pri);
    margin: 0;
}

.head-sec.dark .tt {
    background-color: var(--pri);
    color: white;
    font-size: 25px;
    margin-bottom: 0;
}

main,
main img {
    aspect-ratio: 1920 / 800;
    transition: 0.5s ease-in-out;
    /* transform: scale(1.01); */
    overflow: hidden;
}

.carousel-control-next,
.carousel-control-prev {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    z-index: 9;
    opacity: 1;

}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    height: 14px;
    width: 14px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    background-color: var(--pri);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

@media (max-width:980px) {

    .carousel-control-next,
    .carousel-control-prev {
        width: 20px;
        height: 35px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        height: 13px;
        width: 13px;
    }

    .carousel-control-prev {
        left: 0px;
        border-radius: 0 3px 3px 0;
    }

    .carousel-control-next {
        right: 0px;
        border-radius: 3px 0px 0px 3px;
    }
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: static;
    width: 70px;
    margin: 0 auto;
    margin-top: 20px;
}

.swiper-scrollbar-drag {
    background-color: var(--pri);
}

.swiper-next,
.swiper-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-next,
.swiper-prev {
    background: rgba(7, 7, 7, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    z-index: 2;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    text-align: center;
    /* align-content: center; */
    backdrop-filter: blur(10px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-next:hover,
.swiper-prev:hover {
    background: var(--pri);
    color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.swiper-button-next,
.swiper-next {
    right: 30px;
    left: auto;
}

.swiper-button-prev,
.swiper-prev {
    left: 30px;
    right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 12px;
    font-weight: bold;
}

.swiper-next.swiper-button-disabled,
.swiper-prev.swiper-button-disabled {
    opacity: 0.4;
}

.swiper_wrap {
    /* height: 100%;  */
    width: 100%;
    position: relative;
    display: block;
    text-align: left;
}

.section {
    padding: 55px 0;
    overflow: hidden;
}

.bg-light {
    background-color: #f3f5f7 !important;
}

.abt-img {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.abt-tx {
    text-align: center;
}

.abt-tx .main-tt {
    color: var(--pri);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 12px;
}

.abt-tx .main-tt span {
    color: var(--tri);
}

.abt-tx .main-tt2 {
    color: var(--pri);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    position: relative;
    padding-bottom: 18px;
}

.abt-tx .main-tt2::before {
    content: "";
    width: 60%;
    height: 4px;
    background-color: var(--pri);
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
}

.abt-tx .main-tt3 {
    color: var(--pri);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    position: relative;
    padding-top: 18px;
    margin-bottom: 15px;
}

.abt-tx .main-tt3::before {
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--pri);
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.abt-tx .brand-img {
    position: relative;
    margin-bottom: 15px;
}

.abt-tx .brand-img img {
    width: 100%;
    display: block;
}

.abt-tx .brand-img::before {
    content: "";
    width: 93%;
    height: 4px;
    background-color: var(--pri);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.abt-tx p {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}

.counter-bx {
    display: flex;
    align-items: center;
}

.counter-bx .title {
    width: 75px;
    height: 65px;
    background-color: var(--pri);
    color: white;
    font-weight: 600;
    text-align: center;
    align-content: center;
    font-size: 23px;
    border-radius: 5px;
}

.counter-bx .des {
    width: calc(100% - 75px);
    height: 65px;
    text-align: center;
    border: 2px solid var(--pri);
    border-radius: 5px;
    border-left: 0;
    align-content: center;
}

.counter-bx .tt {
    line-height: 1;
    margin-bottom: 2px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
    text-transform: uppercase;
}

.counter-bx p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: var(--pri);
}

.abt-tx .main-btn {
    width: 100%;
    max-width: 640px;
    background-color: transparent;
    border-width: 2px;
    color: var(--pri);
    font-weight: 500;
}

.abt-tx .main-btn:hover {
    color: white;
    background-color: var(--pri);
    border-color: var(--pri);
}

.cate-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cate-tabs .tab {
    padding: 8px 15px;
    background: #f6f6f6;
    font-size: 15px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .1);
}

.cate-tabs .tab.active {
    background: var(--pri);
    color: #fff;
}

.slide-group {
    display: none;
}

.product-sec .head-sec {
    max-width: 100%;
    margin-bottom: 0;
}

.product-sec .head-sec .tt {
    background-color: var(--pri);
    color: white;
    padding-top: 12px;
    padding-bottom: 3px;
    font-size: 34px;
    margin-bottom: 0;
}

.cate-bx {
    border: 10px double var(--pri);
    border-radius: 15px;
    overflow: hidden;
}

.cate-bx .img-bx {
    aspect-ratio: 1 / 1;
}

.cate-bx .img-bx img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cate-bx .tx-bx {
    padding: 20px;
}

.cate-bx .tx-bx .tt {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    line-height: 1.4;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--pri);
}

.cate-bx .tx-bx img {
    max-width: 130px;
    margin: 15px auto 0;
    display: block;
}

.catalog-sec {
    text-align: center;
}

.catalog-sec .main-tt {
    color: var(--text-color);
    font-size: 34px;
    margin-bottom: 0;
    font-weight: 700;
}

.catalog-sec p {
    color: var(--pri);
    font-weight: 600;
    font-size: 17px;
}

.abt-sec {
    overflow: hidden;
}

.abt-sec .img-bx,
.abt-sec .img-bx img {
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.abt-sec .tx-bx {
    background-color: var(--pri);
    color: white;
    height: 100%;
    align-content: center;
}

.abt-sec .tx-bx h1 {
    font-size: 32px;
    color: var(--sec);
}

.abt-sec .tx-bx h2,
.abt-sec .tx-bx h3 {
    font-size: 22px;
    color: white;
    line-height: 1.4;
}

.abt-sec .tx-bx p {
    color: white;
    text-align: justify;
}

.abt-sec .tx-bx .main-btn {
    border-color: #fff;
    color: white;
}

.abt-sec .tx-bx .main-btn:hover {
    background-color: white;
    color: var(--pri);
}

.feature-icon-sec {
    padding: 30px;
    background-color: #dfe4e6;
    border-radius: 10px;
}

.fect-icon-bx {
    margin-bottom: 0;
    text-align: center;
}

.fect-icon-bx .img {
    width: 100px;
    margin: 0 auto 10px;
}

.fect-icon-bx .img img {
    filter: invert(0) grayscale(1);
}

.fect-icon-bx .tx {
    margin-bottom: 0;
    font-weight: 600;
    font-family: var(--font);
    color: #3d3d3d;
}

.cmmt_nav .nav-tabs {
    margin: 0;
    padding: 0;
    border: 0;
    flex-direction: column;
    width: 100%;
}

.cmmt_nav .nav-tabs .nav-link {
    font-size: 14px;
    font-weight: 500;
    border: 0;
    border-radius: 0;
    outline: 0;
    padding: 10px 18px;
    width: 100%;
    background-color: white;
    color: var(--pri);
    margin: 0;
    position: relative;
    text-align: left;
    margin-bottom: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 3px 0px;
    border-radius: 10px;
}

.cmmt_nav .nav-tabs .nav-link .tab-icon {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.cmmt_nav .nav-tabs .nav-link .tab-icon .img {
    background: #f3f3f3;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    min-width: 60px;
    text-align: center;
    line-height: 60px;
}

.cmmt_nav .nav-tabs .nav-link .tab-icon .img img {
    filter: drop-shadow(1px 2px 2px #000000a1);
}

.cmmt_nav .nav-tabs .nav-link .tab-icon .tt {
    font-weight: 600;
    font-size: 16px;
}

.cmmt_nav .nav-tabs .nav-link.active,
.cmmt_nav .nav-tabs .nav-link:hover {
    border-color: var(--pri);
    color: white;
    background-color: var(--pri);
}

.cmmt_nav .tab-content {
    width: 100%;
    background: #fff;
    border-radius: 0;
    border: 1px solid #eee;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 3px 0px;
    border-radius: 10px;
}

.cmmt_nav .tab-content .tab-pane {
    padding: 0;
    border-radius: 4px;
    outline: 0;
    border: 0;
    padding-bottom: 0px;
}

.cmmt_nav p {
    color: var(--black);
    font-size: 15px;
}

.cmmt_nav .tab-content .tab-pane.active p {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: .4s;
}

.cmmt_nav .tab-content .tab-pane .tt {
    font-size: 22px;
    font-weight: 600;
    color: var(--pri);
    margin-bottom: 5px;
    position: relative;
    text-transform: capitalize;
}

.cmmt_nav .tab-content .tab-pane.active .tt {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: .3s;
}

.cmmt_nav .tab-content .tab-pane .read-mr {
    transition: 0.4s;
    font-size: 14px;
    color: var(--pri);
    display: inline-block;
    font-weight: 500;
}


.cmmt_nav .tab-content .tab-pane.active .read-mr {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: .5s;
}

.cmmt_nav .tab-content .tab-pane .read-mr svg {
    width: 14px;
    height: 14px;
    transition: 0.1s ease-in-out;
    color: var(--pri);
}

.cmmt_nav .tab-content .tab-pane .read-mr:hover {
    color: var(--black);
}

.cmmt_nav .tab-content .tab-pane .read-mr:hover svg {
    margin-left: 2px;
    color: var(--black);
}

.cmmt_nav .tab-content .tab-pane .img {
    margin-bottom: 20px;
}

.cmmt_nav .tab-content .tab-pane.active .img {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.2s;
}

.cmmt_nav .tab-content .tab-pane .img img {
    width: 100%;
    max-width: 500px;
}

.short-bx {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    transition: 0.1s linear;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.short-bx iframe,
.short-bx video {
    aspect-ratio: 35 / 62;
    transform: scale(1.01);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-bx {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    background: #fff;
}

.blog-bx .img-bx {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-bx .img-bx img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease;
}

.blog-bx:hover .img-bx img {
    transform: scale(1.02);
    transform-origin: 50% 50%;
}

.blog-bx .tx-bx {
    padding: 15px 20px;
    /* background-color: #fff; */
}

.blog-bx .tx-bx .tt a {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 3px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog-bx .tx-bx .tt:hover a {
    color: var(--pri);
}

.blog-bx .tx-bx p {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 15px;
}

.read-mr {
    font-size: 14px;
    color: var(--pri);
    font-weight: 500;
    display: inline-block;
}

.read-mr:hover {
    color: var(--para-color);
}

.mini-blogs,
.qut-bx {
    background-color: #f7f7f7;
    padding: 18px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    border-radius: 15px;
}

.qut-bx {
    text-align: center;
}

.qut-bx .tt {
    font-size: 25px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
}

.blog-bx.blog-card {
    display: flex;
    height: auto;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    align-items: start;
    gap: 15px;
    margin-bottom: 18px;
}

.mini-blogs .blog-bx.blog-card:last-child {
    margin-bottom: 0;
}

.blog-bx.blog-card .tx-bx {
    padding: 0;
}

.blog-bx.blog-card .tx-bx .tt a {
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 3px;
    -webkit-line-clamp: 1;
}

.blog-bx.blog-card .tx-bx p {
    -webkit-line-clamp: 2;
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 0;
}

.blog-bx.blog-card .img-bx img {
    border-radius: 10px;
}

.blog-sec .main-tt {
    padding-left: 20px;
    padding-block: 5px;
    font-weight: 600;
    border-left: 5px solid var(--pri);
    font-size: 25px;
    color: var(--text-color);
    margin-bottom: 25px;
}

.blog-sec .img-bx {
    margin: 15px auto;
    max-width: 700px;

}

.blog-sec .img-bx img {
    width: 100%;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 635 / 423;
    border-radius: 10px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .08);
}

.content-sec {
    padding: 40px 0;
}

.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec .tt,
.cmTitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    margin-bottom: 7px;
    line-height: 1.3;
}

.cmTitle {
    color: var(--pri);
    font-size: 18px;
    margin-bottom: 0;
}

footer .cmTitle {
    color: #4968ad;
}

.content-sec h2,
.content-sec h3,
.content-sec .tt {
    font-size: 18px;
}

.content-sec ul {
    padding-left: 0;
    margin: 0;
    margin-bottom: 10px;
    list-style: none;
}

.content-sec p {
    margin-bottom: 15px;
}

.content-sec p,
.content-sec ul li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--para-color);
    text-align: justify;
    font-family: var(--font2);
    font-weight: 400;
}

.content-sec ul li {
    margin-bottom: 3px;
}

.content-sec ul li a {
    display: inline;
    color: var(--para-color);
}

ul.footer-menu-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 18px;
    list-style: none;
}

ul.footer-menu-list li a {
    margin-right: 15px;
    display: inline-block;
    line-height: 1.3;
    position: relative;
    color: #eee;
}

ul.footer-menu-list li a:hover {
    color: var(--sec);
}

ul.footer-menu-list li a::before {
    content: '|';
    padding: 0;
    font-size: 13px;
    position: absolute;
    right: -9px;
    top: 1px;
    color: var(--text-light);
}

ul.footer-menu-list li:last-child a::before {
    content: none;
}

.footer-banner {
    position: relative;
}

.footer-banner img {
    width: 100%;
    aspect-ratio: 32 / 7;
}

.footer-banner .tx-bx {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
    width: 100%;
}

.footer-banner .tx-bx .tt {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 7px;
}

.footer-banner .tx-bx .tt span {
    color: var(--pri);
}

.footer-banner .tx-bx p {
    color: #333;
    line-height: 1.7;
}

.footer-banner .tx-bx p a {
    color: var(--pri);
    font-weight: 600;
}

footer {
    background: #181a1c;
    overflow: hidden;
    padding: 60px 0 30px;
}

footer .search-bx,
footer .search-bx input {
    background-color: white;
    height: 47px;
    border-radius: 30px;
    max-width: 340px;
}

footer .search-bx input::placeholder {
    color: var(--text-light);
}

footer .search-bx button {
    background-color: var(--pri);
    color: white;
    border-radius: 100%;
    width: 37px;
    height: 37px;
    margin-left: 2px;
}

footer .search-bx button:hover {
    color: white;
    background-color: var(--pri);
}

footer .search-bx button svg {
    width: 18px;
    height: 18px;
}

.ft-bx {
    position: relative;
    z-index: 1;
}

.ft-bx .logo {
    max-width: 220px;
}


.ft-bx .con-bx {
    display: flex;
    align-items: start;
    margin-bottom: 10px;
    gap: 10px;
}

.ft-bx .con-bx .ic-bx svg {
    min-width: 17px;
    width: 17px;
    height: 17px;
    color: var(--sec);
}

.ft-bx .con-bx a,
.ft-bx .con-bx p {
    font-family: var(--font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #eee;
    margin-bottom: 0px;
}

.ft-bx .con-bx p strong {
    font-weight: 500;
}

.ft-bx .con-bx a {
    font-weight: 500;
}

.ft-bx .con-bx a:hover {
    color: var(--sec);
}

.ft-bx .ft-tt {
    font-family: var(--font);
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    /* border-bottom: 1px solid; */
    margin-bottom: 12px;
}

.ft-bx p {
    color: #eee;
    line-height: 1.6;
    font-size: 15px;
}

.ft-bx ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.ft-bx ul li a {
    font-weight: 400;
    font-size: 15px;
    color: #eee;
    font-family: var(--font2);
    padding: 4px 0;
    transition: 0.2s;
    display: inline-block;
}

.ft-bx ul li a:hover {
    color: var(--sec);
}

.ft-bx ul.social {
    display: flex;
    gap: 10px;
}

.ft-bx ul.social img {
    height: 33px;
    width: 33px;
    object-fit: contain;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
}

.copyright {
    padding-top: 20px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.copyright p {
    color: #fff;
    margin-bottom: 0;
    font-weight: 400;
}

.copyright p a {
    color: #ccc;
    display: inline;
}

.copyright p a:hover {
    color: var(--sec);
    /* text-decoration: underline; */
}

footer .content-sec h1,
footer .content-sec h2,
footer .content-sec h3,
footer .content-sec .tt {
    color: #fff;
    font-size: 18px;
}

footer .content-sec p,
footer .content-sec ul li {
    color: #eee;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
}

.breadcum-sec {
    background: url(../images/about-banner.jpg);
    background-position: center;
    padding: 60px 0;
    background-size: cover;
    position: relative;
    z-index: 1;
    font-family: var(--font);
}

.breadcum-sec.breadcum-sec2 {
    background: #f1f1f1;
    padding: 8px 0;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .02);
}

.breadcum-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #091c36;
    opacity: 0.5;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.breadcum-sec.breadcum-sec2::before {
    content: none;
}

.breadcum-sec .main-tt {
    font-size: 25px;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.breadcum-sec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2px 25px;
    flex-wrap: wrap;
}

.breadcum-sec ul li {
    color: white;
    font-weight: 400;
    font-size: 15px;
    position: relative;
    font-family: var(--font2);
}

.breadcum-sec.breadcum-sec2 ul li {
    color: var(--pri);
    font-size: 15px;
    font-weight: 500;
}

.breadcum-sec ul li::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="none" viewBox="0 0 24 24"> <path stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m10 16 4-4-4-4"/> </svg>');
    position: absolute;
    top: 0px;
    right: -25px;
    width: 23px;
    height: 23px;
}

.breadcum-sec.breadcum-sec2 ul li::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="none" viewBox="0 0 24 24"> <path stroke="%23333" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m10 16 4-4-4-4"/> </svg>');
}

.breadcum-sec ul li:last-child:before {
    content: none;
}

.breadcum-sec ul li a {
    color: white;
}

.breadcum-sec.breadcum-sec2 ul li a {
    color: var(--text-color);
}

.breadcum-sec ul li a:hover {
    color: var(--sec);
}

.breadcum-sec.breadcum-sec2 ul li a:hover {
    color: var(--pri);
}

.factSheet-sec {
    background: url(../images/bg/factsheet-bg.jpg) no-repeat;
    padding: 40px 0;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.factSheet-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    opacity: 0.5;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.factSheet-bx {
    display: flex;
    align-items: center;
    gap: 10px;
}

.factSheet-bx .img-bx {
    width: 70px;
}

.factSheet-bx .tx-bx {
    width: calc(100% - 80px);
    color: white;
}

.factSheet-bx .tx-bx span {
    line-height: 24px;
    letter-spacing: 0.3px;
}

.factSheet-bx .tx-bx p {
    margin-bottom: 0;
    font-size: 18px;
    color: white;
    line-height: 33px;
    letter-spacing: 0.1px;
}

.certificate-bx {
    box-shadow: 0 .3rem 1rem 1px rgba(0, 0, 0, .15);
    border-radius: 10px;
    overflow: hidden;
    transition: .4s;
    background: #fff;
}

.certificate-bx .tt {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
    border-top: 1px solid #eee;
}

.certificate-bx .img {
    position: relative;
}

.certificate-bx .img img {
    aspect-ratio: 73 / 104;
    object-fit: contain;
    object-position: center;
}

.certificate-bx .img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.featuredSlider .swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-pagination {
    position: static;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background-color: #fff;
    border: 1px solid var(--pri);
    width: 18px;
    height: 18px;
    opacity: 1;
    margin: 0 10px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

.swiper-pagination-bullet-active {
    background-color: var(--pri);
}

.certificate-sec .swiper-pagination-bullet-active {
    background-color: var(--sec);
}

.category-page {
    padding: 60px 0;
    background-color: #f7f7f7;
}

.cate-tx h1,
.cate-tx h2,
.cate-tx h3 {
    font-size: 22px;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 5px;
    font-weight: 600;
}

.cate-tx h2,
.cate-tx h3 {
    font-size: 20px;
    font-weight: 600;
}

.cate-tx ul {
    padding-left: 18px;
    margin: 0;
    margin-bottom: 10px;
    font-family: var(--font2);
    display: flow-root;
}

.cate-tx p,
.cate-tx ul li {
    color: var(--para-color);
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
    font-size: 15px;
}

.cate-tx ul li {
    margin-bottom: 2px;
}

.cate-tx .price {
    font-size: 16px;
    letter-spacing: 0.1px;
    color: var(--pri);
    font-weight: 600;
    margin: 6px 0 15px;
}

.cate-tx table {
    margin-bottom: 15px;
    font-family: var(--font);
    width: 100%;
    max-width: 100%;
}

.cate-tx table tr td {
    padding: 5px 8px;
    font-weight: 500;
    font-family: var(--font2);
    border: 1px solid #E1E1E1;
    color: var(--text-color);
}

.cate-tx table tr td:first-child {
    color: var(--para-color);
}

.cate-img {
    max-width: 420px;
    float: right;
    width: 100%;
    margin-left: 30px;
    margin-bottom: 30px;
}

.cate-img img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .03);
}

.cate-img .mySwiper {
    margin-top: 0px;
    max-height: 550px;
}

.cate-img .mySwiper img {
    cursor: pointer;
}

.mySwiper .swiper-slide {
    height: 100%;
    opacity: 0.6;
}

.certificate-sec {
    background: url(../images/certificate/bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.certificate-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--pri);
    z-index: -1;
    opacity: .98;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.gallery-sec {
    padding: 60px 0;
}


.masonry {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 20px;
    -webkit-column-gap: 20px;
    column-gap: 20px;
}

.masonry .item {
    display: inline-block;
    background: #fff;
    position: relative;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
    -webkit-transition: 1s ease all;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 2px 2px 4px 0 #ccc;
}

.masonry .item .img-bx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    opacity: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.masonry .item:hover .img-bx::before {
    opacity: 0.5;
}

.masonry .item:before,
.masonry .item:after {
    position: absolute;
    content: '';
    height: 0px;
    width: 0px;
    background-color: transparent;
    transition: all .3s ease-in-out;
    opacity: 0;
    z-index: 2;
}

.masonry .item:before {
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    top: 20px;
    left: 20px;
}

.masonry .item:after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    bottom: 20px;
    right: 20px;
}

.masonry .item:hover:before,
.masonry .item:hover:after {
    height: 60px;
    width: 60px;
    opacity: 1;
}

.masonry .item img {
    max-width: 100%;
}

.masonry .item .link-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: all .5s ease-in-out;
    pointer-events: none;
}

.masonry .item:hover .link-wrap {
    opacity: 1;
}

@media only screen and (min-width: 321px) and (max-width: 768px) {
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

.form-group {
    position: relative;
    margin-bottom: 12px;
}

.modal-header {
    padding: 0;
    padding-inline: 20px;
    padding-top: 18px;
    border-radius: 0;
    border: 0;
    /* border-bottom: 1px solid #e3e3e3; */
}

.modal-content {
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 576px) {
    .modal-sm {
        max-width: 330px;
    }
}

.modal-body {
    padding: 13px 22px 20px;
}

.modal-content .main-tt {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--pri);
    margin-bottom: 15px;
}

.btn-close {
    float: right;
    box-shadow: none;
}

.btn-close:hover,
.btn-close:focus {
    box-shadow: none;
}

.pop-img {
    aspect-ratio: 1 / 1;
}

.pop-img img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 5px 1px rgba(0, 0, 0, .1);
}

.form-label {
    font-size: 14px;
    color: var(--text-color);
    font-family: var(--font);
    font-weight: 500;
    margin-bottom: 4px;
}

.form-control,
.form-select,
.SumoSelect>.CaptionCont {
    font-weight: 400;
    border-radius: 5px;
    font-size: 15px;
    padding: 8px 12px;
    color: var(--text-color);
    font-family: var(--font);
    border-color: #e3e3e3;
    height: 45px;
    align-content: center;
}

textarea.form-control {
    min-height: 100px;
    resize: none;
    align-content: start;
}

.form-control:focus {
    border-color: var(--text-light);
    box-shadow: none;
}

.blog-details {
    padding: 60px 0;
}

.blog-details .main-tt,
.blog-details h2,
.blog-details h3 {
    font-size: 22px;
    color: var(--text-color);
    line-height: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-details .img-bx {
    margin: 15px auto;
    max-width: 700px;
}

.blog-details .img-bx img {
    width: 100%;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 16 / 10;
}

.blog-details .blog-card .img-bx {
    margin: 0;
    margin-bottom: 15px;
}

.blog-details .blog-card .img-bx img {
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.blog-details .content-bx p {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 16px;
    text-align: justify;
    margin-bottom: 10px;
}

.blog-details h2,
.blog-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-sec {
    padding: 60px 0;
}

.contact-container {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 3px;
    overflow: hidden;
    padding: 30px 25px;
}

.contact-bx .head-sec {
    margin-bottom: 30px;
}

.contact-bx .head-sec .tt {
    font-size: 20px;
    line-height: 28px;
}

.contact-bx .head-sec .tt::before {
    top: 40px;
}


.contact-bx .con-bx {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.contact-bx .con-bx .ic-bx {
    min-width: 35px;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.contact-bx .con-bx .ic-bx svg {
    min-width: 15px;
    width: 15px;
    height: 15px;
    color: var(--pri);
}

.contact-bx .con-bx a,
.contact-bx .con-bx p {
    font-family: var(--font);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    margin-bottom: 0px;
}

.contact-bx .con-bx a {
    font-weight: 600;
}

.contact-bx .con-bx a:hover {
    color: var(--pri);
}

.map-bx {
    width: 100%;
    display: block;
}

.sitemap-sec {
    padding: 60px 0;
}

.sitemap {
    border-left: 1px solid #666;
    padding: 0;
}

.sitemap li {
    list-style: none !important;
    background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
    padding: 0px 0px 0px 15px;
    margin-bottom: 5px;
    font-family: var(--font);
    color: var(--text-color);
    font-weight: 500;
}

.sitemap li ul {
    border-left: 1px solid #666;
    padding: 0;
}

.sitemap li a {
    color: #333;
    font-size: 14px;
    padding-bottom: 5px;
    display: block;
}

.sitemap li a:hover {
    color: var(--text-color);
}

.market-sec {
    padding: 60px 0;
    font-family: var(--font);
}

.market-sec h1,
.market-sec .main-tt,
.market-sec h2,
.market-sec h3 {
    font-size: 24px;
    color: var(--text-color);
    line-height: 26px;
    margin: 20px 0 15px;
    font-weight: 700;
}

.market-sec h2,
.market-sec h3 {
    font-size: 20px;
    font-weight: 600;
}

.market-sec .market-bx {
    padding: 10px 12px;
    background-color: #E8E8E8;
    color: var(--text-color);
    font-size: 14px;
    transition: 0.2s ease-in-out;
}

.market-sec .market-bx:hover {
    background-color: var(--tri);
    color: white;
}

.iti {
    width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    height: 45px;
}

.g-recaptcha {
    transform: scale(0.8);
    transform-origin: 0 0;
}

.business-enq {
    position: fixed;
    bottom: 32px;
    right: 20px;
    z-index: 9;
    border: 0;
    outline: 0;
    background-color: var(--pri);
    color: white;
    font-size: 14px;
    letter-spacing: 0.2px;
    padding: 5px;
    padding-right: 15px;
    border-radius: 24px;
    transition: 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.business-enq:hover {
    transform: scale(1.03);
}

.business-enq .icon {
    height: 32px;
    width: 32px;
    border-radius: 100%;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    background: #fff;
    color: var(--pri);
}

.business-enq .icon svg {
    height: 18px;
    width: 18px;
}

.whatapp_btn {
    background: #01e675;
    width: 40px;
    height: 40px;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 85px;
    cursor: pointer;
    z-index: 9;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
}

.whatapp_btn svg {
    width: 19px;
    height: 19px;
}

.whatapp_btn:hover {
    transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
    background: #01e675;
    color: #fff;
}

.error {
    font-size: 14px;
    color: red;
}

.video-sec .sec-heading .tt {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

.video-sec .sec-heading .tt span {
    font-weight: 600;
    /* display: block; */
    background: linear-gradient(49deg, #c99833 0, #d9b71d 20%, #dda44a 50%, #e3c126 80%, #c99833 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-sec .sec-heading p {
    font-size: 15px;
    /* text-align: center; */
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-light);
}

.vidBx .imgBx {
    position: relative;
}

.vidBx .imgBx img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0;
    outline: 0;
    transition: 0.3s;
}

.vidBx .imgBx:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.vidBx .txBx {
    text-align: center;
    margin-top: 10px;
    padding-inline: 25px;
    font-size: 16px;
    font-weight: 600;
}

.Marquee {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 2px solid var(--pri);
    border-bottom: 2px solid var(--pri);
}

.Marquee-content {
    display: flex;
    gap: 10px;
    -webkit-animation: marquee 20s linear infinite running;
    -moz-animation: marquee 20s linear infinite running;
    -o-animation: marquee 20s linear infinite running;
    -ms-animation: marquee 20s linear infinite running;
    animation: marquee 20s linear infinite running;
}

.Marquee-tag {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 2;
    color: var(--pri);
}

@-moz-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@-o-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}


.press-sec img {
    aspect-ratio: 159 / 74;
    object-fit: contain;
    border-left: 1px solid #e3e3e3;
    padding-inline: 10px;
}

.press-bx img {
    aspect-ratio: 159 / 74;
    object-fit: contain;
    background-color: white;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .03);
    transition: 0.2s ease-in-out;
}

.press-bx:hover img {
    transform: scale(1.03);
}

/* ############## about ############## */
.abt-img-bx {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}

.abt-img-bx img {
    width: 100%;
}

.abt-tx-bx .content-sec p {
    color: var(--para-color);
    font-size: 15px;
}

.abt-tx-bx .content-sec p:last-child {
    margin-bottom: 0;
}

.abt-tx-bx h1 {
    text-transform: capitalize;
}

.timeline-sec {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background-image: url(../images/shape/bg-5.png);
}

.timeline-sec ul {
    --col-gap: 2rem;
    --row-gap: 2rem;
    --line-w: 0.25rem;
    display: grid;
    grid-template-columns: var(--line-w) 1fr;
    grid-auto-columns: max-content;
    column-gap: var(--col-gap);
    list-style: none;
    width: min(60rem, 90%);
    margin-inline: auto;
    padding: 0;
    margin-bottom: 0;
}

/* line */
.timeline-sec ul::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 25;
    background: rgb(225, 225, 225);
    border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.timeline-sec ul li:not(:last-child) {
    margin-bottom: var(--row-gap);
}

/* card */
.timeline-sec ul li {
    grid-column: 2;
    --inlineP: 1.5rem;
    margin-inline: var(--inlineP);
    grid-row: span 2;
    display: grid;
    grid-template-rows: min-content min-content min-content;
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, .09);
}

/* date */
.timeline-sec ul li .date {
    --dateH: 3rem;
    height: var(--dateH);
    margin-inline: calc(var(--inlineP) * -1);
    text-align: center;
    background-color: var(--pri);
    color: white;
    font-size: 20px;
    font-weight: 700;
    display: grid;
    place-content: center;
    position: relative;
    border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.timeline-sec ul li .date::before {
    content: "";
    width: var(--inlineP);
    aspect-ratio: 1;
    background: var(--pri);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
    position: absolute;
    top: 100%;

    clip-path: polygon(0 0, 100% 0, 0 100%);
    right: 0;
}

/* circle */
.timeline-sec ul li .date::after {
    content: "";
    position: absolute;
    width: 1.4rem;
    aspect-ratio: 1;
    background: #fff;
    border: 0.3rem solid var(--pri);
    border-radius: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

.timeline-sec ul li .title {
    padding-top: 15px;
    padding-inline: 22px;
    padding-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
    color: var(--pri);
}

.timeline-sec ul li .descr {
    padding-top: 15px;
    padding-inline: 22px;
    padding-bottom: 17px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--para-color);
}



@media (min-width: 40rem) {
    .timeline-sec ul {
        grid-template-columns: 1fr var(--line-w) 1fr;
    }

    .timeline-sec ul::before {
        grid-column: 2;
    }

    .timeline-sec ul li:nth-child(odd) {
        grid-column: 1;
    }

    .timeline-sec ul li:nth-child(even) {
        grid-column: 3;
    }

    /* start second card */
    .timeline-sec ul li:nth-child(2) {
        grid-row: 2/4;
    }

    .timeline-sec ul li:nth-child(odd) .date::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        left: 0;
    }

    .timeline-sec ul li:nth-child(odd) .date::after {
        transform: translate(-50%, -50%);
        left: calc(100% + var(--col-gap) + var(--line-w) / 2);
    }

    .timeline-sec ul li:nth-child(odd) .date {
        border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
    }
}


.you_may {
    padding: 0 0 10px;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font);
}

.pr-li {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 3px;
    transition: 0.2s;
    background: white;
    border-radius: 5px;
    overflow: hidden;
}

.pr-li:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 5px;
}

.pr-li .img_bx {
    padding: 0;
    border-right: 1px solid #eee;
    height: 100%;
}

.pr-li .img_bx img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.pr-li .g_100 .img_bx {
    border: 0;
}

.pr-li .tx-bx {
    padding: 15px;
}

.grid.pr_view .pr-li .tx-bx {
    padding-top: 0;
}


.pr-li .tx-bx .read_more_btn.mb-1 {
    background-color: var(--pri);
}

.pr-li .tx-bx .read_more_btn.mb-1:hover {
    background-color: var(--sec);
}

.pr-li .tx-bx .title {
    color: var(--pri);
    border-bottom: 1px solid #eee;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 22px;
}

.grid.pr_view .pr-li .tx-bx .title {
    text-align: center;
    border: none;
    margin: 0;
}

.grid.pr_view .pr-li .tx-bx .bt_bx {
    text-align: center;
}

.pr-li .tx-bx .title a {
    font-size: 20px;
    color: var(--text-color);
    transition: 0.4s;
}

.pr-li:hover .tx-bx .title a {
    color: var(--pri);
}

.pr-li .tx-bx .info {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 0px;
}

.grid.pr_view .pr-li .tx-bx .info {
    display: none;
}

.pr-li .tx-bx .info::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.pr-li .tx-bx .info::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
}

.pr-li .tx-bx .info::-webkit-scrollbar-thumb {
    background-color: var(--pri);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.multi-imgs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.multi-imgs .imgs {
    border: 1px solid #e3e3e3;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.multi-imgs .imgs.youTube a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--liner);
    background-color: #f70000;
}

.multi-imgs .imgs.youTube a svg {
    width: 30px;
    height: 30px;
    color: white;
}

.multi-imgs .imgs.active {
    border: 1px solid var(--pri);
}

.multi-imgs .imgs img {
    object-fit: contain;
    object-position: center;
}

/* product detail section */
.product_listing {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 3px;
}

.product_listing .product {
    width: 100%;
    position: relative;
    padding: 0;
    text-align: center;
    min-height: 200px;
    overflow: hidden;
    border-right: 1px solid #e3e3e3;
}



.product-lists .w-100,
.product_popup_image img {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    min-height: 100%;
    background: #dec17c0d;
    object-fit: contain;
    border: 1px solid #eeeeee3d;
    border-right: 0px;
}

.product_popup_image .fs-6.mb-2 {
    font-weight: bold;
    margin-top: 15px;
}

.modal-header {
    padding: 0;
    padding-inline: 20px;
    padding-top: 13px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #efe1c261;
    padding-bottom: 13px;
    background: #eeeeee00;
}

.slider .slides.active {
    border: 2px solid #3347747a;
}

.slider .slides {
    width: 50px;
    border: 1px solid #cccccc47;
    cursor: pointer;
    background: #dec17c21 !important;
}

.right-content {
    position: relative;
    padding-right: 15px;
}

.right-content h4,
.right-content .title4 {
    line-height: 24px;
    padding: 10px 0;
    text-align: left;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 0px;
}

.right-content h4,
.right-content .title4 a {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-color);
    transition: 0.4s;
}

.right-content .title4 a:hover {
    color: #455f99;
}

.blue-line1 {
    width: 100%;
    display: block;
    height: 1.1px;
    background: #c3c3c3;
    position: relative;
    margin-bottom: 10px;
    padding: 0 15px;
}

.item.youtube {
    display: flex;
    align-items: center;
    justify-content: center;
    background: red;
    color: #fff;
    height: 35px;
    border-radius: 5px;
    width: 40px;
}

.item.youtube svg {
    fill: #fff;
    width: 30px;
    height: 30px;
}

.product_showcase {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 6px 0;
    margin-bottom: 8px;
}

.productBrochureandvideo {
    margin-right: 15px;
    border: 1px dashed #b99d5b;
    padding: 5px;
    border-radius: 5px;
}


.productBrochureandvideo a svg {
    color: #b99d5b;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.productBrochureandvideo a {
    font-weight: 500;
    color: #c7a75b;
    letter-spacing: 0px;
}

.right-content table tbody tr td:first-child {
    color: #bf8f42;
    width: 40%;
}

.right-content table tbody tr td {
    border: 1px solid #dbdbdb;
    width: auto;
    color: #4e4e4e;
}

.right-content table tbody tr td {
    vertical-align: middle;
    padding: 6px 10px;
    font-size: 15px;
    line-height: normal;
    text-align: left;
}

.product_popup_image {
    aspect-ratio: 1;
}

.more_info {
    max-height: 335px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.product-lists .w-100 img {
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
    aspect-ratio: 1;
}