:root {
    --font: "Onest", sans-serif;
    --font2: "Onest", sans-serif;
    --liner: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --pri: #e34040;
    --sec: #fff3e1;
    --text-color: #222;
    --text-light: #8C8C8C;
    --para-color: #555;
}

body {
    background: #fff;
    font-family: var(--font);
    color: var(--para-color);
    font-size: 15px;
    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.5;
}

a {
    display: block;
    text-decoration: none;
}

p a {
    display: inline;
}

header {
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
}

.logo {
    max-width: 100px;
}

.search-bx {
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    background: #f9f9f9;
    border-radius: 50px;
    border: 1px solid #e5e5e5;

}

.search-bx form {
    display: flex;
    align-items: center;
}

.search-bx input {
    height: 40px;
    outline: none;
    background: #f9f9f9;
    padding: 0;
    padding-left: 20px;
    font-size: 14px;
    width: calc(100% - 50px);
    color: var(--text-color);
    border: 0;
}

.search-bx button {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    width: 50px;
    align-content: center;
    text-align: center;
    color: #333;
}

.search-bx button:hover {
    color: var(--text-color);
}

.top-bar {
    background-color: var(--pri);
    padding: 12px 0;
    color: white;
    font-size: 14px;
}

.top-bar .top-nav {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.top-bar .top-nav svg {
    width: 15px;
    height: 15px;
    animation: tada 1.5s ease infinite;
}

.top-bar .top-nav li a,
.top-bar .top-nav li {
    color: #f5f5f5;
    font-weight: 400;
    font-size: 14px;
    position: relative;
}

.top-bar .top-nav li a {
    font-weight: 600;
}

.top-bar .top-nav li a:hover {
    color: var(--text-color);
}

.top-bar .top-nav li a::before {
    content: "|";
    position: absolute;
    top: 0px;
    left: -18px;
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar .top-nav li:first-child a:before {
    content: none;
}

.social {
    display: flex;
    justify-content: end;
    list-style: none;
    gap: 16px;
    margin-bottom: 0;
    padding: 0;
}

.social li a {
    color: #eee;
}

.social li a:hover {
    color: var(--text-color);
}

.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(--text-color);
    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: 26px 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: var(--text-color)
}

.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: var(--text-color);
    font-size: 14px;
    padding: 6px 15px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: 400;
    background: #f8f8f8;
    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: var(--text-color);
}

.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: #f8f8f8;
    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%;
}

.main-btn {
    padding: 8px 14px;
    border-radius: 4px;
    color: white;
    border: 1px solid var(--pri);
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: 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;
    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: 400;
}

.main-btn.light:hover {
    background: var(--pri);
    color: white;
    border-color: var(--pri);
}

.main-btn.dark {
    border-color: var(--text-color);
    background: var(--text-color);
    color: #fff;
}

.main-btn.dark:hover {
    background: var(--pri);
    color: white;
    border-color: var(--pri);
}

.w-btn {
    padding: 8px 14px;
    border-radius: 4px;
    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;
}

.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: 23px;
    line-height: 1.4;
    margin-bottom: 5px;
    position: relative;
    text-transform: capitalize;
}

.head-sec .tt span {
    color: var(--pri);
}

.head-sec.left {
    text-align: left;
    max-width: 100%;
}

.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 / 650;
    overflow: hidden;
}

.carousel-control-next,
.carousel-control-prev {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 38px;
    height: 38px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    z-index: 9;
    opacity: 1;

}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    height: 16px;
    width: 16px;
}

.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-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 {
    border: 1px solid #ccc;
    background-color: white;
    color: var(--text-color);
    width: 45px;
    height: 45px;
    z-index: 2;
    border-radius: 100%;
    text-align: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-next:hover,
.swiper-prev:hover {
    color: white;
    background: var(--liner);
    background-color: var(--pri);
    border-color: var(--pri);
}

.swiper-button-next,
.swiper-next {
    right: 25px;
    left: auto;
}

.swiper-button-prev,
.swiper-prev {
    left: 25px;
    right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 13px;
    font-weight: 600;
}

.swiper_wrap {
    /* height: 100%;  */
    width: 100%;
    position: relative;
    display: block;
    text-align: left;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    display: none;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

.swiper-prev {
    left: -22px;
    right: auto;
}

.swiper-next {
    right: -22px;
    left: auto;
}

.section {
    padding: 55px 0;
    overflow: hidden;
}

.bg-light {
    background-color: #F5F5F5 !important;
}

.bg-sec {
    background-color: #f7f7f0 !important;
}

.whyus-bx {
    text-align: center;
}

.whyus-bx .img {
    max-width: 70px;
    height: 70px;
    margin: 0 auto 15px;
}

.whyus-bx .tt {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.whyus-bx p {
    font-size: 14px;
    margin-bottom: 0;
}

.cate-bx {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.cate-bx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: 1;
}

.cate-bx img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);
}

.cate-bx:hover img {
    transform: scale(1.06);
    filter: grayscale(0);
}

.cate-bx .tt {
    color: white;
    position: absolute;
    bottom: 30px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    letter-spacing: 0.3px;
    text-align: center;
    width: 100%;
    max-width: 230px;
    text-shadow: 0 1px 2px rgb(0 0 0);
}

.pro-bx {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}

.pro-bx img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);
}

.pro-bx img:hover {
    transform: scale(1.05);
}

.pro-bx .tx-bx {
    padding: 15px;
    text-align: center;
}

.pro-bx .tx-bx .tt {
    margin-bottom: 10px;
}

.pro-bx .tx-bx .tt a,
.pro-bx .tx-bx .tt {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.pro-bx:hover .tx-bx .tt a {
    color: var(--pri);
}

.pro-bx .tx-bx p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.pro-bx .tx-bx .main-btn,
.pro-bx .tx-bx .w-btn {
    font-size: 13px;
    padding: 6px 13px;
}

.tm-testi-slide-1 {
    background: #fff;
    padding: 24px 21px 15px;
    margin: 5px 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
    border-radius: 18px;
    transition: all .3s ease-in-out
}

.tm-testi-logo {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.tm-trustpilot-logo {
    flex: 1
}

.tm-trustpilot-logo img {
    max-width: 91px
}

.tm-star-ratings {
    flex: 1;
    text-align: right;
    font-weight: 600
}

.tm-star-ratings img {
    max-width: 84px;
    margin-left: auto
}

.tm-slide-h4 {
    color: #373737;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    padding-top: 10px
}

.tm-testi-slide-1 p {
    font-weight: 400;
    font-size: 16px;
    padding: 15px 0;
    line-height: 1.5;
    border-bottom: 1px solid #ebeaea;
    color: #707070;
    text-align: left;
    margin: 0;
    min-height: 150px;
}

.tm-slide-h5 {
    color: var(--para-color);
    padding-top: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.tm-slide-h5 span {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    display: inline-block;
    overflow: hidden;
    margin-right: 7px;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
    font-size: 14px;
    color: #0a58ca;
    margin-top: 5px;
}

.blog-bx {
    overflow: hidden;
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    padding: 8px;
}

.blog-bx .img-bx {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #f5f5f5;
}

.blog-bx .img-bx img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);
}

.blog-bx:hover .img-bx img {
    transform: scale(1.05);
}

.blog-bx .tx-bx {
    padding: 10px;
    padding-bottom: 5px;
}

.blog-bx .tx-bx .tt a {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 5px;
    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;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
}

.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;
    align-items: center;
    height: auto;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    align-items: start;
    gap: 10px;
    margin-bottom: 18px;
    border: 0;
    padding: 0;
}

.blog-bx.blog-card .img-bx {
    border-radius: 5px;
}

.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 {
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
}

.blog-bx.blog-card .img-bx img {
    border-radius: 4px;
}

.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: 3 / 2;
    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(--pri);
    text-align: left;
    margin-bottom: 7px;
    line-height: 1.3;
}

.cmTitle {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.content-sec h2,
.content-sec h3,
.content-sec .tt {
    font-size: 22px;
    color: var(--pri);
}

.content-sec ul {
    padding-left: 25px;
    margin: 0;
    margin-bottom: 10px;
    /* list-style: none; */
    display: flow-root;
}

.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(--pri);
}

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 {
    background: var(--text-color);
    overflow: hidden;
    padding: 60px 0 30px;
}

.ft-bx {
    position: relative;
    z-index: 1;
}

.ft-bx .logo {
    max-width: 140px;
}


.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(--pri);
}

.ft-bx .ft-tt {
    font-family: var(--font);
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.ft-bx .ft-tt span {
    color: var(--pri);
}

.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: 14px;
    color: #eee;
    padding: 4px 0;
    transition: 0.2s;
    display: inline-block;
}

.ft-bx ul li a:hover {
    color: var(--pri);
}

.ft-bx ul.social {
    display: flex;
    gap: 10px;
    justify-content: start;
}

.ft-bx ul.social li a {
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 38px;
    height: 38px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 100%;
    align-content: center;
    text-align: center;
    line-height: 1;
}

.contact-bx.ft-bx ul.social li a {
    border: 1px solid rgba(0, 0, 0, 0.4);
    color: var(--pri);
}

.ft-bx ul.social li a:hover {
    border-color: var(--pri);
    background-color: var(--pri);
    color: white;
}

.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: 300;
    font-size: 14px;
}

.copyright p a {
    color: #ccc;
    display: inline;
}

.copyright p a:hover {
    color: var(--pri);
    /* 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: #f5f5f5;
    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: #2c2626;
    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: 25px;
}

.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: 14px;
}

.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: -2px;
    right: -23px;
    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(--pri);
}

.breadcum-sec.breadcum-sec2 ul li a:hover {
    color: var(--pri);
}

.featured-item {
    padding: 5px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 4px;
    border-radius: 4px;
}

.featured-item img {
    aspect-ratio: 15 / 7;
    overflow: hidden;
}

.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);
}

.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);
}

.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-header.modal-header2 {
    background: var(--liner);
    background-color: var(--pri);
    color: white;
    padding-block: 12px;
}

.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(--text-color);
    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: 4px;
    font-size: 14px;
    padding: 8px 12px;
    color: var(--text-color);
    font-family: var(--font);
    border-color: #e3e3e3;
    height: 41px;
    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: var(--text-color);
    font-size: 14px;
    padding-bottom: 5px;
    display: block;
}

.sitemap li a:hover {
    color: var(--pri);
}

.market-sec {
    padding: 60px 0;
    font-family: var(--font);
}

.market-sec h1,
.market-sec .main-tt,
.market-sec h2,
.market-sec h3 {
    font-size: 20px;
    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(--pri);
    color: white;
}

.iti {
    width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    height: 41px;
}

.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;
}

.vidBx .imgBx {
    position: relative;
}

.vidBx .imgBx img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    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: 15px;
    font-weight: 500;
    color: var(--text-color);
}

.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;
}

.you_may {
    font-size: 20px;
    font-weight: 600;
    padding: 10px 15px;
    color: #fff;
    background-color: var(--pri);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 3px;
    border-radius: 5px;
}

.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(--text-color);
    border-bottom: 1px solid #eee;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 18px;
}

.pr-li .tx-bx .title a {
    color: var(--pri);
}

.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: 270px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
}

.grid.pr_view .pr-li .tx-bx .info {
    display: none;
}

.pr-li .bt_bx {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.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;
    padding-block: 10px;
    border-top: 1px solid #eee;
}

.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;
}

.productBrochureandvideo a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #cdcdcd;
    padding: 5px 8px;
    font-weight: 400;
    transition: 0.3s;
    font-size: 14px;
    color: var(--para-color);
}

.productBrochureandvideo a svg {
    color: #b90000;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.productBrochureandvideo a:hover {
    color: #444;
    border: 1px dashed #444;
}

.v-btn svg {
    width: 43px;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: #d5d5d5;
    border-style: solid;
    border-width: 1px;
    padding: 6px 10px;
    font-size: 15px;
}

.abts_bx {
    position: relative;
    float: left;
    max-width: 480px;
    margin: 0 50px 30px 0;
    z-index: 1;
}

.abts_bx .img_bx1 {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
}

.abts_bx .img_bx1 img {
    border-radius: 6px;
}

.call_now {
    position: absolute;
    bottom: 22px;
    right: -22px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border-radius: 3px;
}

.call_now img {
    width: 40px;
}

.call_now p {
    margin-bottom: 0;
    font-size: 14px;
    color: #777;
    line-height: 20px;
}

.call_now a {
    color: var(--text-color);
    line-height: 25px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s;
}

.call_now a:hover {
    color: var(--pri);
}