@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 25px;
    font-family: 'montserrat-regular';
}


/***** Font Files *****/

@font-face {
    font-family: 'saudagar-font';
    src: url(../font/Saudagar.ttf);
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'montserrat-regular';
    src: url(../font/Montserrat-Regular.ttf);
    font-weight: 400;
    font-style: normal
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 0px 0px 0px 15px !important;
    border: unset;
    border-radius: 0px;
    color: #000000;
    z-index: 1;
    background: #f5f8f5;
    position: relative;
    font-size: 17px;
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
    border: 1px solid #b9b9b9;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 0px;
    background-color: #000000;
    z-index: -1;
    transition: all 250ms
}

.theme_btn:hover {
    color: #ffffff !important;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'saudagar-font';
    font-size: 67px;
    line-height: 1.2;
    color: #222222;
    font-weight: 700;
    margin: 0 0 7px;
}

h2 {
    font-family: 'saudagar-font';
    font-size: 55px;
    line-height: 1.2;
    color: #222222;
    font-weight: 500;
    margin: 0 0 8px;
}

h3 {
    font-family: 'saudagar-font';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 8px;
}

h4 {
    font-family: 'saudagar-font';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'saudagar-font';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 6px;
}

h6 {
    font-family: 'montserrat-regular';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 20px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000000;
    padding: 10px  22px;
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'montserrat-regular';
}




.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #000000;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: #f5f8f5;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}


/*banner css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.banner-img img {
    width: 80%;
    height: 80vh;
    object-fit: cover;
}


/* Tabs  */
.container-fluid {
    padding: 0px 120px;
}
.banner_text {
    background: #fff;
    padding: 100px 80px;
    position: relative;
    z-index: 2;
}



.banner_text p {
    color: #000;
}

.dis-block {
    display: block;
}

.banner-img {
    position: relative;
    z-index: 1;
}

.header-icons ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 40px;
}

.header-icons ul li {
    display: flex;
    align-items: center;
}

.header-icons ul li a > i {
    font-size: 20px;
}
.side-btn {
    display: flex;
    gap: 20px;
    align-items: center;
}

.theme-btn-text-icon {
    height: 56px;
    width: 65px;
    background: #497260;
    display: flex;
    align-items: anchor-center;
    justify-content: center;
    color: #fff;
}
.product-categories-slider-box-text ul {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-categories-slider-box-img img {
    width: 100%;
    margin-bottom: 20px;
    height: 450px;
    object-fit: cover;
}

.product-categories-slider-box-text ul li h3 {
    margin-bottom: 0px;
}

.product-categories-slider-box-text ul li a i {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: 1px solid #000;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-categories-slider .slick-active {
    opacity: 1;
}





.slider-progress-wrapper {
    margin-top: 35px;
    text-align: center;
    display: flex;
    align-items: anchor-center;
    gap: 30px;
}

.slider-progress-line {
    width: 88%;
    height: 4px;
    background: #ddd;
    position: relative;
    margin-bottom: 0px;
}

.slider-progress-fill {
    height: 100%;
    width: 0%;
    background: #4d6f5f;
    transition: width 0.3s ease;
}

.slider-numbers {
    font-size: 14px;
    font-weight: 600;
}
section.product-categories-sec {
    margin: 100px 0px;
}

.product-categories-top-heading {margin-bottom: 30px;}


.slider-numbers {
    font-family: 'saudagar-font';
    font-size: 23px;
    color: #000;
}
section.product-categories-sec .container-fluid {
    padding: 0px 0px 0px 100px;
}
section.product-categories-sec .product-categories-slider {
    width: 110%;
}
.most-popular-top-heading {
    width: 36%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.most-popular-box-top-icon ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1px;
}

.most-popular-box-top-icon ul li a i {
    color: #adadad;
}

.most-popular-box-top-icon ul li a.color-icon i {
    color: #eeeeee;
}

.most-popular-box-top-icon ul li p {
    margin-bottom: 0px;
    margin-left: 8px;
}

.most-popular-box-text h4 {
    font-size: 31px;
}

.most-popular-box-top-img img {
    width: 100%;
    margin-bottom: 50px;
    height: 510px;
    object-fit: contain;
}

.most-popular-box-top-img {
    text-align: center;
}

.most-popular-box-text ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e4e4e4;
    padding-top: 20px;
}

.most-popular-box-text ul li h5 {
    margin-bottom: 0px;
    font-family: 'saudagar-font';
    font-size: 25px;
}

.most-popular-box-text ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #282828;
}

.most-popular-box-text ul li a p {
    margin-bottom: 0px;
}

.most-popular-box-text ul li a i {
    height: 35px;
    width: 35px;
    border: 1px solid #c8c8c8;
    color: #c8c8c8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.row.most-popular-row {
    border: 1px solid #e4e4e4;
    padding: 0px 0px;
}
.most-popular-box {
    padding: 30px 40px 20px;
}

.most-popular-box.add-line {border-right: 1px solid #e4e4e4;}
section.most-popular-sec {
    margin-bottom: 100px;
}
section.pieces-with-sec {
    background-image: url(../images/update-bg-img.png);
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    margin-bottom: 100px;
}
.pieces-with-box {
    background: #497260;
    padding: 80px 120px 80px 210px;
    position: relative;
}

.pieces-with-box h3 {
    font-size: 63px;
    color: #fff;
}

.pieces-with-box h2 {
    font-size: 181px;
    color: #fff;
    line-height: 1;
    margin-bottom: 0px;
    /* font-weight: 600; */
}

.pices-with-link a {
    font-family: 'saudagar-font';
    font-size: 28px;
    color: #fff;
}

.pices-with-text {
    font-size: 39px;
    font-family: 'saudagar-font';
    position: absolute;
    bottom: 210px;
    left: 10px;
    transform: rotate(-90deg);
    color: #fff;
}

.pices-with-link {
    margin-top: -70px;
}

.pieces-with-box h3.heading-sd-line {
    margin-left: 220px;
}
.top-sale-main-img > img {
    width: 90%;
    height: 900px;
    object-fit: cover;
}
.top-sale-main-img {
    position: relative;
    padding: 70px 0px;
    z-index: 1;
}

.top-sale-main-icon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.top-sale-text {
    display: flex;
    align-items: anchor-center;
    gap: 40px;
    margin-bottom: 20px;
    position: relative;
}

.top-sale-text-heading h2 {
    margin-bottom: 0px;
    font-size: 105px;
}

.top-sale-text-line i {height: 24px;width: 24px;border-radius: 50%;border: 1px solid #000;display: flex;align-items: center;justify-content: center;font-size: 12px;}

.top-sale-text:before {
    position: absolute;
    content: '';
    top: 50%;
    right: -200px;
    height: 1px;
    width: 73.9%;
    background: #000000;
}

.top-sale-img-btm-box img {
    width: 97%;
    margin-bottom: 15px;
}

.top-sale-img-btm-box h5 {
    color: #000;
    font-family: 'montserrat-regular';
    font-weight: 600;
    margin-bottom: 10px;
}

.top-sale-img-btm-box ul {
    display: flex;
}

.top-sale-img-btm-box ul li a {
    color: #fd8f00;
}

.top-sale-img-btm-box ul li a.icon-color {
    color: #febc66;
}
section.top-sale-sec {
    margin-bottom: 100px;
}




/* Testimonial Section Start */

.testimonial-sec {
    position: relative;
    margin-bottom: 180px;
}

.sec-head {
    text-align: center;
    margin-bottom: 70px;
}

.sec-head p {
    width: 69%;
    margin: 0 auto;
    margin-top: 10px;
}

.testimonial-sec ul.star a {
    color: #fff;
    font-size: 20px;
}

.test-box-text {
    background-image: url(../images/testi-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    position: relative;
}

.testi-img img {
    height: 400px;
    object-fit: contain;
    object-position: center;
}

.testi-box {
    background: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 0 10px 0 #fff; */
}

.authr-box {
    display: flex;
    align-items: end;
}

.authr-box>div {
    margin-left: 10px;
}

.test-box-text h4 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 0px;
    padding-top: 12px;
    color: #000000;
    font-family: 'saudagar-font';
    text-transform: capitalize;
    letter-spacing: 5px;
}

.test-box-text span {
    font-size: 15px;
    color: #666;
    font-family: 'montserrat-regular';
    line-height: 20px;
    margin: 0;
}

.authr-box img {
    margin-bottom: 30px;
}

.testi-box {
    margin: 0;
}

.authr-box>img {
    width: auto;
}

.testi-slider .slick-list {
    padding: 0px 0;
}

.testi-slider button.slick-arrow {
    transition: 2s all;
    height: calc(140% - 30px);
    width: 28%;
    background-color: #1f2b3782 !important;
    border-radius: 0;
    background-blend-mode: overlay;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 10px;
}

.testi-slider button.slick-prev.slick-arrow {
    left: -240px;
    top: 65%;
}

.testi-slider button.slick-next.slick-arrow {
    right: -240px;
    bottom: 0;
    top: 65%;
}

.testi-slider button.slick-prev.slick-arrow:before {
    margin: 0;
    content: '\f177';
    font-family: 'Font Awesome 6 Pro';
    height: 100%;
    /* background-image: -webkit-linear-gradient(87deg, rgb(25 62 117) 0%, rgb(54 89 140 / 0%) 100%); */
    width: 100%;
    position: absolute;
    left: 530px;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border-radius: 10px;
}

/* .testi-slider button.slick-next.slick-arrow:before {
    content: '\f178';
    margin: 0;
    font-family: 'Font Awesome 6 Pro';
    height: 100%;
    background: -webkit-linear-gradient(87deg, rgb(25 62 117) 0%, rgb(54 89 140 / 0%) 100%);
    width: 100%;
    left: 0 !important;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border-radius: 10px;
} */

.testi-slider .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}

/* .testi-slider button.slick-arrow:before {
    color: #fff;
    font-size: 30px;
    opacity: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-left: 65px;
} */

.testi-slider button.slick-arrow:hover:before {
    color: #fff;
    transition: 0.5s ease-in-out;
}

.testi-slider button.slick-next.slick-arrow:before {
    right: 30px;
    position: absolute;
    left: auto;
}

.testi-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0c7f7d;
    font-size: 16px;
}

.testi-slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 16px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢';
    text-align: center;
    opacity: 1;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testi-slider .slick-dots {
    position: absolute;
    bottom: -55px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.testi-slider-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    transition: 1s ease-in-out;
    border-radius: 0;
    margin: 0px auto;
    width: 86%;
    border-bottom: 2px solid #000;
}

.testi-slider-box .col-lg-8 {
    position: relative;
    z-index: 1;
}

ul.tidti-list {
    display: grid;
    justify-content: flex-end;
    text-align: end;
    margin-bottom: 20px;
}

.testimonial-sec ul.star {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    background: #497260;
    padding: 8px 24px;
    width: 59%;
    margin: 0 0 0 auto;
}

.test-box-text p {
    font-size: 14px;
    color: #8a8a8a;
    text-align: end;
    width: 76%;
    margin-left: auto;
}

section.testimonial-sec .top-heading {
    margin-bottom: 10px;
}

.sld-counts.testimonial-count span {
    font-size: 21px;
    color: #cdcdcd;
    font-family: 'BlenderPro';
    padding: 0 10px;
    letter-spacing: 5px;
}


span.span-2 {
    font-size: 52px !important;
    color: #a42130 !important;
    position: absolute;
    left: 290px;
    bottom: 1px;
    font-family: 'BlenderPro';
}

.sld-counts.testimonial-count {
    position: relative;
    top: 49px;
    left: 44%;
}

.sld-counts.testimonial-count::before {
    position: absolute;
    content: '';
    width: 120px;
    height: 1px;
    background: #838383;
    bottom: 0;
    top: 0;
    margin: auto;
    left: 140px;
}

ul.tidti-list li.back-clrtst {
    background: #fff;
    padding: 16px 29px;
    margin-right: 4px;
}

.test-box-text:before {
    content: '';
    position: absolute;
    top: -69px;
    right: 0;
    border: 2px solid #497260;
    width: 150px;
    height: 180px;
    z-index: -1;
}

.testi-slider .slick-next:before {
    background-image: url(../images/btn-new-arrow-slid.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '' !important;
    width: 20px;
    height: 50px;
    position: absolute !important;
    right: 336% !important;
    bottom: 20px;
}

.testi-slider button.slick-prev.slick-arrow:before {
    background-image: url(../images/btn-new-arrow-slid.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '' !important;
    width: 20px;
    height: 50px;
    position: absolute !important;
    left: 186% !important;
    bottom: 58px;
    transform: rotate(180deg);
}

section.partner-sec .container-fluid {
    padding-left: 4% !important;
    padding-right: unset !important;
}

img.testi-cfy {
    position: absolute;
    top: -40px;
    left: 10px;
}

.sld-counts.testimonial-count span.current-slide {
    position: absolute;
    left: 280px;
    font-size: 52px;
    color: #497260;
}

.testi-slider .slick-next:after {
    background-image: url(../images/border-testi-back.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '' !important;
    width: 50px;
    height: 60px;
    position: absolute !important;
    right: 330% !important;
    bottom: 30px;
}

.testi-slider .slick-prev:after {
    background-image: url(../images/border-testi-back.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: '' !important;
    width: 50px;
    height: 60px;
    position: absolute !important;
    left: 180% !important;
    bottom: 38px;
    transform: rotate(180deg);
}

.star-rate.testi {
    position: absolute;
    bottom: -65px;
    left: 16.4%;
    display: grid;
    align-items: center;
    width: max-content;
    text-align: center;
}

.star-rate.testi span {
    font-size: 28px;
    color: #fff;
    font-family: "Barlow", sans-serif;
}

.star-rate.testi ul {
    justify-content: center;
    gap: 3px;
    display: flex;
}

.star-rate.testi ul li i {
    font-size: 15px;
    color: #f39f1e;
}

.star-rate.testi.tyu {
    right: 310px;
    left: unset;
}

/* Testimonial Section End */



/*Footer Start*/

footer {
    background: #272727;
    padding: 50px 0px 50px;
}

h5.f-main {
    font-size: 26px;
    color: #fff;
}

.footer-logo p {
    color: #ffffff8a;
    width: 66%;
}

.footer-logo ul li a {
    color: #7c7c7c;
    font-size: 13px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 400;
    color: #ffffff8a;
}

.footer-logo ul li i {
    margin: 0 20px 0 0;
    font-size: 24px;
    color: #fff;
}

ul.navgation-f li {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 100px;
}

.f-media ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.f-media ul li a {
    border: 1px solid #ffffff82;
    font-size: 15px;
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #ffffff82;
}

.footer-btm {
    /* box-shadow: 0 0 2px 0 #98a86dd1; */
    padding: 10px 40px;
    background: #272727;
    z-index: 1;
    position: relative;
    margin-top: 40px;
    border: 1px solid #727475;
}

.copy-right p {
    color: #ffffff8a;
    margin: 0;
}

.copy-right {
    display: grid;
    align-content: center;
    justify-content: center;
    height: 100%;
}


.f-card {
    display: grid;
    align-items: center;
    justify-content: end;
    height: 100%;
}

.f-media {
    display: grid;
    align-content: center;
    height: 100%;
}

.footer-logo {
    position: relative;
    padding: 0px 59px;
}

footer .row .col-lg-4:not(:last-child) .footer-logo:before {
    content: '';
    position: absolute;
    border: 1px solid #727475;
    height: 260px;
    right: 0;
    top: 0;
}
.footer-logo img {
    width: 50%;
    margin: 0 0 20px;
}
.payment-img {
    text-align: end;
}
.ftlogo-maindv .footer-logo {
    padding: unset;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px #000;
        ;
    }

    100% {
        box-shadow: 0 0 0 20px rgb(180 9 9 / 5%);
    }
}
.footer-logo ul li a:hover {
    color: #ffff;
}
/*Footer End*/
.footer-logo.quicklinks-maindv ul {
    column-count: 2;
}
.header-logo img {
    width: 40%;
}