@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    scroll-behavior: smooth;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.5s ease;
    background-color: var(--light);
}

@font-face {
    font-family: 'Lora';
    src: url('../font/Lora-Regular.woff2') format('woff2'),
        url('../font/Lora-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Raleway';
    src: url('../font/Raleway-ThinItalic.woff2') format('woff2'),
        url('../font/Raleway-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg1: #ff6600;
    --bg2: #fe0000;
    --bg3:#fdff01;
    --dark: #373435;
    --gray: #222222;
    --light: #fff;
    --bg:#f1dcd3;
    --primary: #c8c2c2;
    --secondary: #fefefe;
    --font1: 'Raleway';
    --font2: 'Lora';
}

::selection {
    color: var(--light);
    background-color: var(--bg1);
}

a {
    text-decoration: none;
    color: var(--dark);
}

.container {
    max-width: 1240px;
}

.container-fluid {
    padding: 0;
}

ul,
li,
a {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1,h2,h3,h4,h5,h6{
    color: var(--bg1);
    text-transform: capitalize;
}

p {
    font-size: 16px;
    color: var(--dark);
    font-family: var(--font2);
    line-height: 1.6;
}

a:hover {
    color: var(--bg1);
}

section {
    padding: 100px 0;
    overflow: hidden;
}

/*-------------*/
.title-sec {
        font-size: 30px;
    background-color: var(--bg2);
    color: var(--bg3);
    font-weight: 700;
    display: inline-block;
    padding: 5px 20px;
    margin-bottom: 0;
    line-height: 43px;
    letter-spacing: 1.1px;
    text-transform: capitalize;
    text-shadow: 0px 1px var(--dark);
    font-family: var(--font2);
    box-shadow: rgba(209, 45, 45, 0.3) 0px 19px 38px, rgba(175, 10, 10, 0.22) 0px 15px 12px;
}


.sub-title {
    margin: 0 0 16px 0;
    font-family: var(--font2);
    line-height: 1.2;
    font-weight: 700;
    font-size: 2rem;
    color: var(--dark);
    text-transform: capitalize
}

.heading-sec {
    font-size: 24px;
    text-transform: capitalize;
    font-family: var(--font2);
    line-height: 1.6;
    font-weight: 600;
    color: var(--gray);
}

.content-sec {
    font-size: 16px;
    word-spacing: 1.3px;
    line-height: 1.8;
    font-family: var(--font2);
    font-weight: 500;
}

.header-part {
    display: block;
    text-align: start;
    margin-bottom: 2rem;
}

.btn-sec {
    align-items: center;
    appearance: none;
    background-color: var(--bg1);
    border-width: 0;
    box-sizing: border-box;
    color: var(--light);
    cursor: pointer;
    display: inline-flex;
    font-family: var(--font2);
    justify-content: center;
    line-height: 1.4;
    letter-spacing: 1.4px;
    list-style: none;
    overflow: hidden;
    position: relative;
    padding: 12px 22px;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 16px;
    text-transform: capitalize;
    z-index: 9;
}

.btn-sec:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    background: var(--bg2);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
}

.btn-sec span {
    color: var(--light);
}
.btn-white{
   background-color: #FFFFFF;
   border-color: #FFFFFF;
   color: #080806;
}
.enquiry-sec {
    display: flex;
    align-items: center;
}

.btn-sec:hover {
    color: var(--light);
}


.btn-sec:hover:after {
    transform: scaleX(1);
    transform-origin: 0% 50%;
}

.btn-sec:active {
    box-shadow: #D6D6E7 0 3px 7px inset;
    transform: translateY(2px);
}


.read-more {
    position: relative;
    padding: 10px 25px 10px 25px;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 21px;
    color: #fff;
    box-shadow: 0 16px 35px 0 rgba(0, 0, 0, .2);
    transition: all .3s;
    margin-top: 20px;
    margin-bottom: 20px;
}

.read-more span {
    color: var(--light);
    font-size: 14px;
    padding-left: 10px;
    transition: all 0.8s ease;
}

.read-more:hover span {
    transform: translateX(5px) !important;
    color: var(--light);
}

/*--------top-header---------*/
/**********/
.th-links {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.t-header {
    display: block;
    position: relative;
    background-color: var(--bg1);
    overflow: hidden;

}

.top-dark {
    height: 100%;
}

.top-header {
    padding: 4px 0;
    position: relative;
}

.top-header::after {
    position: absolute;
    content: '';
    left: -37px;
    height: 200%;
    background-color: var(--bg1);
    width: 21px;
    top: -25%;
    transform: rotate(28deg);
    bottom: -25%;
    display: none;
}

.top-header::before {
    position: absolute;
    content: '';
    right: -37px;
    height: 200%;
    background-color: var(--bg1);
    width: 21px;
    top: -25%;
    transform: rotate(-28deg);
    bottom: -25%;
    display: none;
}

.th-element {
    display: flex;
    color: var(--light);
    gap: 10px;
    font-size:14px;
}

.th-element .th-icon {
    font-size: 15px;
    padding-right:5px;
}

.th-icon img {
    width: 24px;
}

.th-element a {
    color: var(--light);
    font-size: 14px;
    font-weight: 400;
}

.th-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.th-social-links a {
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    line-height: 30px;
}

.th-social-links a:hover {
    color: var(--light);
    transform: scale(1.1);
}

.s-icon {
    border-radius: 50%;
    color: var(--light);
}

.s-icon img {
    width: 24px;
    transition: all 1s ease-in-out;
}


/*--------header---------*/
header {
    background-color: var(--light);
    box-sizing: border-box;
    box-shadow: 0px 1px 1px var(--dark);
    padding: 6px 0;
    position: relative;

}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    box-sizing: border-box;
    width: 100%;
}

.logo img {
    width: 120px;
    position: relative;
    z-index: 999;
    margin-top: -40px;
    transition: 0.2s ease-in-out;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu li {
    display: inline-block;
    position: relative;
}

.nav-menu li::after {
    position: absolute;
    content: '';
    height: 12px;
    top: 36px;
    width: 2px;
    left: 6px;
    background: #020024;
background: linear-gradient(90deg, rgba(2, 0, 36, 0.2) 0%, rgba(9, 9, 121, 0.1) 35%, rgba(0, 212, 255, 0.11) 100%);
    transform: skew(0deg);
    transition: 0.3s;
    opacity: 0;
}

.nav-menu li:hover::after {
    left: 2px;
    color: var(--bg2);
    opacity: 1;
}

.nav-menu li a {
    font-family: var(--font2);
    text-transform: capitalize;
    display: block;
    padding: 36px 18px;
    font-weight: 300;
    line-height: 1;
    font-size: 15px;
    color: var(--dark);
    letter-spacing: 1px;
}

.nav-menu li a :nth-child(last) {
    padding-right: 0px !important;
}

.nav-menu li.drop-menu {
    position: relative;
    display: block;
    transition-delay: 0.6s;
}

.drop-content {
    position: absolute;
    top: 100%;
    width: 260px;
    height: 350px;
    display: none;
    background-color: var(--secondary);
    z-index: 999;
   box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    overflow: auto;
    border: 1px solid var(--secondary);
    transition: all 0.6s ease-in-out 0.4s;
}

.drop-menu:hover .drop-content {
    display: block;
    top: 100%;
}

.drop-content li {
    line-height: 50px;
    display: block;
    transition: all 1.8s ease;
    box-shadow: 0px 0px 1px var(--secondary);
}

.drop-content li a {
    color: var(--gray);
    display: block;
    width: 100%;
    padding: 16px 20px;
    transition: all 0.4s ease;
}

.drop-content li a:hover {
    color: var(--bg3);
    font-weight: 500;
    background-color: var(--bg2);
}

.drop-content::-webkit-scrollbar {
    width: 7px;
    color: var(--bg1);
    background-color: var(--light);
}

.drop-content::-webkit-scrollbar-thumb {
    color: var(--bg1);
    background-color: var(--bg1);
    border-radius: 5px;
}

ul.drop-content li:after {
    display: none;
}

.click-btn {
    position: absolute;
    right: 0;
    top: 33px;
    color: var(--dark);
}

.enq-icon img {
    width: 40px;
    animation: wave 0.8s ease infinite;
}

@keyframes wave {
    from {
        transform: roate(-10deg);
    }

    to {
        transform: rotate(10deg);
    }
}

.enq-number {
    display: inline-block;
    padding: 12px 20px;
}

.enq-number:hover {
    color: var(--light);
}

/*----sticky-header----------*/

/* sticky-header */
#navbar-sec.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    animation: slide-down 1s ease-in-out;
    box-shadow: 0px 0px 1px var(--dark);
}

#navbar-sec.sticky .nav-sec>li>a {
    color: var(--dark);
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#navbar-sec.sticky .nav-sec>li>a:hover {
    color: var(--bg1);
}

#navbar-sec.sticky .logo img {
    width: 80px;
    margin-top: 0;
}

/*=========banner========*/
/*----------------------------------------*/
/*  Home Slider CSS
/*----------------------------------------*/
.hero-slider-area {
  margin: 0 auto;
}

.hero-slide-item {
  align-items: center;
  background-color: #fe0000;
  height: 707px !important;
  display: flex;
  position: relative;
  z-index: 1;
}

/*------banner------- */
.ban-img img {
  height: auto;
}

.banner-slider {
  position: relative;
}

.banner-slider .p-back.slick-arrow,
.banner-slider .p-next.slick-arrow {
  position: absolute;
  top: 50%;
  background-color: var(--bg1);
  padding: 10px;
  color: var(--light);
  z-index: 9;
  font-size: 16px;
  cursor:pointer;
}

.banner-slider .p-back.slick-arrow {
  left: 5px;

}

.banner-slider .p-next.slick-arrow {
  right: 5px
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-item {
    height: 600px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slide-item {
    height: 480px !important;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slide-item {
    height: 400px !important;
  }
}
@media only screen and (max-width: 575px) {
  .hero-slide-item {
    height: auto !important;
    padding: 77px 0 80px;
  }
}
.hero-slide-item .container {
  position: relative;
}
.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-sub-title,
.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-title,
.hero-slide-item.swiper-slide-active .hero-slide-content .btn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-sub-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.hero-slide-item.swiper-slide-active .hero-slide-content .hero-slide-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.hero-slide-item.swiper-slide-active .hero-slide-content .btn {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.hero-slide-item.swiper-slide-active .hero-slide-thumb {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-slide-item.swiper-slide-active .hero-slide-shape-img {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-slide-thumb {
  padding-left: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slide-thumb {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slide-thumb {
    margin-top: 20px;
    padding-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  .hero-slide-thumb {
    text-align: center;
  }
}
.hero-slide-thumb img {
  max-width: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slide-thumb img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slide-thumb img {
    margin-left: 30px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .hero-slide-thumb img {
    max-width: 300px;
  }
}
@media only screen and (max-width: 479px) {
  .hero-slide-thumb img {
    margin-left: -5px;
  }
}

.hero-slide-shape-img {
  bottom: 0;
  padding-left: 77px;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 575px) {
  .hero-slide-shape-img {
    bottom: -120px;
  }
}
@media only screen and (max-width: 479px) {
  .hero-slide-shape-img {
    bottom: -80px;
  }
}
.hero-slide-content {
  margin-top: -6px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-slide-content {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-slide-content {
    margin: 0 auto 60px;
    max-width: 400px;
    text-align: center;
  }
}
.hero-slide-sub-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  font-family: var(--body-font);
}
@media only screen and (max-width: 767px) {
  .hero-slide-sub-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
  }
}
.hero-slide-title {
  color: var(--bg3);
  font-weight: 700;
  margin-bottom: 47px;
  font-size: 72px;
  line-height: 1.15;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slide-title {
    margin-bottom: 30px;
    font-size: 62px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slide-title {
    margin-bottom: 30px;
    font-size: 42px;
  }
}

.hero-two-slide-item {
  align-items: center;
  background-color: #080806;
  height: 707px !important;
  display: flex;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-two-slide-item {
    height: 600px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-two-slide-item {
    border-radius: 30px;
    height: 480px !important;
  }
}
@media only screen and (max-width: 767px) {
  .hero-two-slide-item {
    border-radius: 30px;
    height: 460px !important;
  }
}
@media only screen and (max-width: 575px) {
  .hero-two-slide-item {
    height: auto !important;
    padding: 77px 0 0;
  }
}
.hero-two-slide-item .container {
  position: relative;
}
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-sub-title,
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-title,
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-desc,
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .btn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-sub-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .hero-two-slide-desc {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}
.hero-two-slide-item.swiper-slide-active .hero-two-slide-content .btn {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}
.hero-two-slide-item.swiper-slide-active .hero-two-slide-thumb {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-two-slide-thumb {
  margin-left: -42px;
  position: relative;
  top: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-two-slide-thumb {
    margin-left: -92px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-two-slide-thumb {
    left: 30px;
    margin-left: -112px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-two-slide-thumb {
    left: -10px;
    margin-left: -92px;
    top: 38px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-two-slide-thumb {
    left: 0;
    margin-bottom: -20px;
    margin-left: 0;
    top: 0;
  }
}
@media only screen and (max-width: 479px) {
  .hero-two-slide-thumb {
    margin-bottom: 0;
  }
}
.hero-two-slide-thumb img {
  max-width: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-two-slide-thumb img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-two-slide-thumb img {
    max-width: 130%;
  }
}
@media only screen and (max-width: 575px) {
  .hero-two-slide-thumb img {
    max-width: 100%;
  }
}
.hero-two-slide-content {
  margin-top: -6px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-two-slide-content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .hero-two-slide-content {
    margin-bottom: 50px;
  }
}
.hero-two-slide-sub-title {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.hero-two-slide-title {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 27px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-two-slide-title {
    margin-bottom: 17px;
  }
}
.hero-two-slide-desc {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 47px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-two-slide-desc {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-two-slide-desc {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

.hero-three-slide-item {
  align-items: center;
  background-color: #080806;
  height: 900px !important;
  display: flex;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-three-slide-item {
    height: 600px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-three-slide-item {
    height: 600px !important;
  }
}
@media only screen and (max-width: 767px) {
  .hero-three-slide-item {
    height: 520px !important;
  }
}
@media only screen and (max-width: 575px) {
  .hero-three-slide-item {
    height: auto !important;
    padding: 77px 0 80px;
  }
}
.hero-three-slide-item .container {
  position: relative;
}
.hero-three-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-sub-title,
.hero-three-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-title,
.hero-three-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-desc,
.hero-three-slide-item.swiper-slide-active .hero-three-slide-content .btn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-three-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-sub-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.hero-three-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.hero-three-slide-item.swiper-slide-active .hero-three-slide-content .hero-three-slide-desc {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}
.hero-three-slide-item.swiper-slide-active .hero-three-slide-content .btn {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}
.hero-three-slide-item.swiper-slide-active .hero-three-slide-thumb {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-three-slide-item.swiper-slide-active .hero-three-slide-shape-img {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-three-slide-thumb {
  position: relative;
  text-align: right;
  top: 88px;
}
@media only screen and (max-width: 767px) {
  .hero-three-slide-thumb {
    top: 65px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-three-slide-thumb {
    text-align: center;
  }
}
.hero-three-slide-shape-img {
  bottom: 0;
  left: -85px;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .hero-three-slide-shape-img {
    max-width: 120px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-three-slide-shape-img {
    display: none;
  }
}
.hero-three-slide-content {
  margin-top: 115px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-three-slide-content {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-three-slide-content {
    margin-top: 80px;
    margin-bottom: 0;
  }
}
.hero-three-slide-sub-title {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.hero-three-slide-title {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 27px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-three-slide-title {
    margin-bottom: 17px;
  }
}
.hero-three-slide-desc {
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 47px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-three-slide-desc {
    font-size: 24px;
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-three-slide-desc {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-three-slide-desc {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
 only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-four-slider-area .container {
    width: 100%;
  }
}

.hero-four-wrp .hero-four-slider-container {
  padding-right: 20px;
  width: calc(100% - 530px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
 only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-four-wrp .hero-four-slider-container {
    margin-bottom: 20px;
    padding-right: 0;
    width: 100%;
  }
}
.hero-four-wrp .product-banner-area {
  width: 530px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
 only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .hero-four-wrp .product-banner-area {
    display: flex;
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .hero-four-wrp .product-banner-area {
    display: block;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
 only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-four-wrp .product-banner-area .product-banner-item {
    margin-right: 10px;
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-four-wrp .product-banner-area .product-banner-item .product-banner-title {
    margin-bottom: 3px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-four-wrp .product-banner-area .product-banner-item {
    margin-right: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-four-wrp .product-banner-area .product-banner-item + .product-banner-item {
    margin-left: 10px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 575px) {
  .hero-four-wrp .product-banner-area .product-banner-item + .product-banner-item {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

.hero-four-slide-item {
  align-items: center;
  background-color: #080806;
  height: 640px !important;
  display: flex;
  padding: 0 110px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .hero-four-slide-item {
    overflow: hidden;
    padding: 0 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-four-slide-item {
    height: 600px !important;
    padding: 0 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-four-slide-item {
    height: 480px !important;
    padding: 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-four-slide-item {
    height: 450px !important;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-four-slide-item {
    height: auto !important;
    padding: 70px 0 75px;
  }
}
.hero-four-slide-item .container {
  position: relative;
}
.hero-four-slide-item.swiper-slide-active .hero-four-slide-content .hero-four-slide-title,
.hero-four-slide-item.swiper-slide-active .hero-four-slide-content .hero-four-slide-desc,
.hero-four-slide-item.swiper-slide-active .hero-four-slide-content .btn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-four-slide-item.swiper-slide-active .hero-four-slide-content .hero-four-slide-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.hero-four-slide-item.swiper-slide-active .hero-four-slide-content .hero-four-slide-desc {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}
.hero-four-slide-item.swiper-slide-active .hero-four-slide-content .btn {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}
.hero-four-slide-item.swiper-slide-active .hero-four-slide-thumb {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-four-slide-thumb {
  text-align: right;
}
@media only screen and (max-width: 575px) {
  .hero-four-slide-thumb {
    padding: 0 15px;
    text-align: center;
  }
}
.hero-four-slide-thumb img {
  max-width: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-four-slide-thumb img {
    max-width: 100%;
  }
}
.hero-four-slide-content {
  margin-top: -9px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-four-slide-content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .hero-four-slide-content {
    margin-bottom: 50px;
    padding: 0 15px;
    text-align: center;
  }
}
.hero-four-slide-title {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
@media only screen and (min-width: 1730px) {
  .hero-four-slide-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .hero-four-slide-title {
    font-size: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-four-slide-title {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-four-slide-title {
    font-size: 30px;
  }
}
.hero-four-slide-desc {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 43px;
}
@media only screen and (max-width: 767px) {
  .hero-four-slide-desc {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
  }
}

.hero-five-slide-item {
  align-items: center;
  background-color: #080806;
  height: 453px !important;
  display: flex;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-five-slide-item {
    height: 600px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-five-slide-item {
    height: 480px !important;
  }
}
@media only screen and (max-width: 767px) {
  .hero-five-slide-item {
    height: 360px !important;
  }
}
@media only screen and (max-width: 575px) {
  .hero-five-slide-item {
    height: auto !important;
    padding: 77px 0 120px;
  }
}
.hero-five-slide-item .container {
  position: relative;
}
.hero-five-slide-item.swiper-slide-active .hero-five-slide-content .hero-five-slide-sub-title,
.hero-five-slide-item.swiper-slide-active .hero-five-slide-content .hero-five-slide-title,
.hero-five-slide-item.swiper-slide-active .hero-five-slide-content .hero-five-slide-desc,
.hero-five-slide-item.swiper-slide-active .hero-five-slide-content .btn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-five-slide-item.swiper-slide-active .hero-five-slide-content .hero-five-slide-sub-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.hero-five-slide-item.swiper-slide-active .hero-five-slide-content .hero-five-slide-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.hero-five-slide-item.swiper-slide-active .hero-five-slide-content .hero-five-slide-desc {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}
.hero-five-slide-item.swiper-slide-active .hero-five-slide-content .btn {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}
.hero-five-slide-item.swiper-slide-active .hero-five-slide-thumb {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-five-slide-thumb {
  text-align: right;
}
@media only screen and (max-width: 575px) {
  .hero-five-slide-thumb {
    padding: 0 15px;
    text-align: center;
  }
}
.hero-five-slide-thumb img {
  max-width: none;
}
@media only screen and (max-width: 767px) {
  .hero-five-slide-thumb img {
    max-width: 100%;
  }
}
.hero-five-slide-content {
  margin-top: -7px;
  padding: 0 0 0 50px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-five-slide-content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .hero-five-slide-content {
    margin-bottom: 70px;
    padding: 0 15px;
    text-align: center;
  }
}
.hero-five-slide-sub-title {
  color: var(--primary-clr);
  font-weight: 600;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .hero-five-slide-sub-title {
    margin-bottom: 10px;
  }
}
.hero-five-slide-title {
  font-size: 60px;
  line-height: 68px;
  margin-bottom: 31px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-five-slide-title {
    font-size: 43px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .hero-five-slide-title {
    font-size: 29px;
    line-height: 1.2;
    margin-bottom: 22px;
  }
}

.hero-six-slider-area {
  margin-top: 0;
}
@media only screen and (min-width: 1550px), only screen and (min-width: 1200px) and (max-width: 1549px) {
  .hero-six-slider-area {
    margin-top: 36px;
  }
}
.hero-six-slider-area .hero-six-slider-container {
  max-width: 1620px;
  padding-left: 15px;
  padding-right: 15px;
}

@media only screen and (min-width: 1550px), only screen and (min-width: 1200px) and (max-width: 1549px) {
  .home-six-wrapper .hero-six-slider-area .container {
    max-width: 1380px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1549px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .home-six-wrapper .product-categories-area.section-two-space {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
.product-categories-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.hero-six-slide-item {
  align-items: center;
  background-color: #e7eaf3;
  border-radius: 20px;
  height: 600px !important;
  display: flex;
  padding: 0 105px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .hero-six-slide-item {
    padding: 0 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-six-slide-item {
    height: 550px !important;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-six-slide-item {
    border-radius: 20px;
    height: 480px !important;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-six-slide-item {
    border-radius: 20px;
    height: 400px !important;
    padding: 0;
  }
}
@media only screen and (max-width: 575px) {
  .hero-six-slide-item {
    height: auto !important;
    padding: 77px 0 120px;
  }
}
.hero-six-slide-item .container {
  position: relative;
}
.hero-six-slide-item.swiper-slide-active .hero-six-slide-content .hero-six-slide-sub-title,
.hero-six-slide-item.swiper-slide-active .hero-six-slide-content .hero-six-slide-title,
.hero-six-slide-item.swiper-slide-active .hero-six-slide-content .hero-six-slide-desc,
.hero-six-slide-item.swiper-slide-active .hero-six-slide-content .btn {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-six-slide-item.swiper-slide-active .hero-six-slide-content .hero-six-slide-sub-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.hero-six-slide-item.swiper-slide-active .hero-six-slide-content .hero-six-slide-title {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.hero-six-slide-item.swiper-slide-active .hero-six-slide-content .hero-six-slide-desc {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}
.hero-six-slide-item.swiper-slide-active .hero-six-slide-content .btn {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}
.hero-six-slide-item.swiper-slide-active .hero-six-slide-thumb {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.hero-six-slide-thumb {
  margin-left: -42px;
  position: relative;
  text-align: center;
  top: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-six-slide-thumb {
    margin-left: 0;
    top: 61px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-six-slide-thumb {
    margin-left: 0;
    top: auto;
  }
}
@media only screen and (max-width: 767px) {
  .hero-six-slide-thumb {
    margin-left: 0;
    top: auto;
  }
}
.hero-six-slide-thumb img {
  max-width: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-six-slide-thumb img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .hero-six-slide-thumb img {
    padding: 0 30px;
  }
}
.hero-six-slide-content {
  margin-top: -6px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .hero-six-slide-content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .hero-six-slide-content {
    margin-bottom: 79px;
    text-align: center;
  }
}
.hero-six-slide-content .btn {
  border-radius: 30px;
}
.hero-six-slide-sub-title {
  color: var(--primary-clr);
  font-weight: 400;
  margin-bottom: 13px;
}
.hero-six-slide-title {
  color: #333333;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}
@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .hero-six-slide-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-six-slide-title {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-six-slide-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-six-slide-title {
    font-size: 30px;
  }
}
.hero-six-slide-title span {
  display: block;
}
.hero-six-slide-desc {
  color: var(--primary-clr);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 47px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-six-slide-desc {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-six-slide-desc {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.hero-six-slide-desc span {
  color: #8d8d8d;
  font-size: 18px;
  margin-right: 3px;
  vertical-align: super;
}
@media only screen and (max-width: 767px) {
  .hero-six-slide-desc span {
    font-size: 16px;
  }
}

.hero-slide-five-pagination.swiper-pagination-bullets {
  bottom: 26px;
  left: 50px;
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 575px) {
  .hero-slide-five-pagination.swiper-pagination-bullets {
    left: auto;
    text-align: center;
  }
}
.hero-slide-five-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid var(--primary-clr);
  border-radius: 50%;
  height: 9px;
  opacity: 1;
  transition: all 0.3s ease 0s;
  width: 9px;
}
.hero-slide-five-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background-color: var(--primary-clr);
}
.hero-slide-five-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--primary-clr);
  border-radius: 10px;
  width: 22px;
}
.hero-slide-six-pagination.swiper-pagination-bullets {
  bottom: 27px;
  left: 131px;
  line-height: 1;
  position: absolute;
  width: auto;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  .hero-slide-six-pagination.swiper-pagination-bullets {
    left: 96px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slide-six-pagination.swiper-pagination-bullets {
    left: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-slide-six-pagination.swiper-pagination-bullets {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
.hero-slide-six-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid var(--primary-clr);
  border-radius: 50%;
  height: 12px;
  opacity: 1;
  transition: all 0.3s ease 0s;
  width: 12px;
}
.hero-slide-six-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background-color: var(--primary-clr);
}
.hero-slide-six-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--primary-clr);
  border-radius: 10px;
  width: 32px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -60px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -60px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.about-us p{
  text-transform: capitalize;
  font-family: var(--body-font);
}
.floated-abt{
  max-width: 550px;
  float: left;
  margin-right: 21px;
  margin-bottom: 21px;
}
@media (max-width: 768px) {
  .floated-abt{
    max-width: 100%;
    float: none;
    margin-right: 0px;
    margin-bottom: 21px;
  }
}
.sm-title{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
  color: var(--bg2);
}
/*----------------------------------------*/

/* ------service-section---------- */
.service-box {
    background-color: var(--bg);
    padding: 20px;
    height: 250px;
    position: relative;
    width: 100%;
}

.service-box::after {
    position: absolute;
    left: 0;
    top: -160px;
    width: 25px;
    height: 0;
    content: "";
    background: var(--light);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: bottom left;
    -webkit-transform: rotate(34deg);
    -ms-transform: rotate(34deg);
    transform: rotate(45deg);
    height: calc(100% + 180px);
    z-index: 1;

}

.service-img {
    width: 40%;
    margin: 2rem auto;
    opacity: 0.99;
}

.service-detail {
    background-color: var(--bg);
    border: 5px solid var(--light);
    height: 100%;
    z-index: 2;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.service-inner-section {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.service-card {
    width: 60%;
    padding-top: 32px;
    padding-left: 10px;
}

.service-card h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font2);
    font-size: 1.2rem;
}

.service-card p {
    color: var(--dark);
    font-weight: 300;
    font-family: var(--font2);
}




/* ***************** */

/*----about-us-------*/
.about-sec {
    background-color: var(--secondary);
    position: relative;
}

.about-us {
    z-index: 1;
    text-align: center;
    width: 45%;
    float: left;
}

.about-us img {
    width: 100%;
    padding-right: 1.5rem;
}

.about-box {
    width: 100%;
}

.about-header .sub-title {
    color: var(--dark) !important;
    font-weight: 500;
}

.ab_btn {
    padding-left: 25px;
    padding-right: 25px;
}

.ab_btn:hover {
    color: var(--light) !important;
}

.ab_btn span {
    padding-left: 8px;
    display: flex;
    align-items: center;
    color: var(--light);
    transition: all 0.5s ease;
}

.ab_btn:hover span {
    transform: translateX(5px) !important;
    color: var(--light);
}

.about-box-content p {
    font-family: var(--font2);
    color: var(--dark) !important;
    font-weight: 400;
    margin-top: 20px;
}

.about-btn {
    margin-top: 20px;
}




/*--=====about-sec-end========----*/

/*--=======md-banner========----*/
.md-banner {
    position: relative;
    padding: 2rem 1rem;
}

.md-bg {
    position: absolute;
    left: 10px;
    top: 0px;
    height: 100%;
}

.md-banner-detail {
    position: relative;
    background-color: var(--secondary);
    margin-left: 1.5rem;
    border: 20px solid #ebebeb;
    position: relative;
    background: #fff;
    -webkit-box-shadow: 22px 32px 70px rgba(0, 0, 0, 0.16);
    box-shadow: 22px 32px 70px rgba(0, 0, 0, 0.16);
    padding: 1rem;
}

.md-left-sec {
    width: 100%;
}

.md-right-sec {
    height: 100%;
}

.md-detail {
    margin: 0 auto;
    text-align: left;
    padding: 3rem 0;
}

.md-btn {
    width: 142px;
    height: 50px;
    border-radius: 0;
    text-align: center;
    line-height: 48px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    transition: 0.5s linear;
    background: #fff;
    border: 3px solid var(--bg1);
    padding: 12px 30px;
    color: var(--bg2);
}

.md-btn:hover {
    background-color: var(--bg1);
    color: var(--light);
}

p.md-content {
    font-size: 20px;
    color: #6c6c6c;
    font-weight: 300;
    letter-spacing: 0.25px;
    line-height: 30px;
    margin-bottom: 38px;
    font-family: var(--font1);

}

/* -------------------------- */

/*--=====category-sec-start========----*/
.p-slide {
    margin: 20px;
}

.category-section {
    background-color: var(--light);
}

.category-header .title-sec {
    background-color: var(--secondary);
}

.category-box {
    background-color: var(--secondary);
    padding: 1rem 1rem 0 1.4rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 10px;
    margin: 30px 0;
    transition: all 0.5s ease-in-out;
}

.category-box:hover {
    background-color: var(--bg2);
    transform: translatey(10px);
}


.category-img {
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    border-radius: 50%;
    z-index: 1;
    box-shadow: rgba(17, 17, 12, 0.5) 0px 3px 9px 0px;
}

.category-content {
    margin-top: 20px;
}

.category-img::after {
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--bg1);
    opacity: 0.9;
    border-radius: 50%;

}

.category-img img {
    width: 60px;
    transition: all 0.5s ease-in-out;
}

.category-box:hover .category-img img {
    transform: rotateY(360deg);
}

.category-bottom-sec {
    padding: 30px 10px;
}

.category-bottom-sec a {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
}

.category-box:hover .category-content p {

    color: var(--light);
}

.category-box:hover .category-bottom-sec .read-more,
.category-box:hover .category-bottom-sec .read-more span {
    color: var(--bg1);
}

/*--=====category-sec-end========----*/




/*--=========md-banner_start=========--*/
.md-ban-section {
    background-image: url(../image/img/bg/md.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 9;
}

.md-ban-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    z-index: 0;
}

.md-ban-box {
    position: relative;
    padding: 2rem 4rem 2rem;
    background-color: rgba(253, 113, 21, 0.9)
}

.md-ban-title {
    color: var(--light);
    font-family: var(--font2);
    font-size: 30px;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.md-ban-content {
    margin: 1rem auto;
}

.md-ban-content .heading-sec {
    font-family: var(--font1);
    color: var(--light);
    font-style: italic;
    font-weight: 700;
}

.md-ban-content p {
    font-family: var(--font1);
    color: var(--light);
}

/*--=========md-ban-end=========--*/



/*-------why-us------- */
.why-us {
    position: relative;
    z-index: 9;
    padding-bottom: 280px;
}



.why-header p {
    color: var(--light);
    font-family: var(--font2);
}

.why-box {
    display: flex;
    gap: 1rem;
    background-color: #dfcccc;;
    margin-bottom: 10px;
    align-items: center;
}

.why-content .heading-sec {
    line-height: 1.4;
    color: var(--dark);
    font-weight: 600;
    font-family: var(--font2);
    margin-bottom: 15px;
    min-height: 25px;

}

.why-icon {
    background-color: var(--bg2);
    border-radius: 50%;
    padding: 2rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.why-icon img {
    width: 48px;

}

.why-content {
    padding: 1rem;
}

.why-img {
    border: 1px solid var(--bg);
    border-radius: 50%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(130, 238, 15, 0.3) 0px 30px 60px -30px, rgba(10, 64, 23, 0.35) 0px -2px 6px 0px inset;
}

.why-img img {
    border-radius: 50%;
    width: 100%;
    height: 500px;
}

.why-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 1;
}

/*------product-sec-------*/
.product-sec {
    position: relative;

}

.product-bg {
    position: absolute;
    content: '';
    z-index: -1;
    left: 0;
    top: 0%;
    right: 0;
    height: 50%;
    content: '';
    background-color: var(--bg);
}

.product-bg img {
    opacity: 0.1;
}

.product-slider {
    position: static;
}

.product-img img {
    width: 100%;
    transition: all 0.4s ease-in-out;
    height: 280px;
}

.product-slider .f-back.slick-arrow,
.product-slider .f-next.slick-arrow {
    top: 40%;
    cursor: pointer;
}

.product-img img:hover {
    transform: scale(1.1);
}

.product-box {
    margin: 10px;
    cursor: pointer;

}

.product-img {
    padding: 0.8rem;
    display: block;
    overflow: hidden;
    background-color: var(--light);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.product-name {
    text-align: center;
}

.product-name a {
    display: block;
    text-align: center;
    color: var(--dark);
    padding: 10px 5px;
    text-transform: capitalize;
    font-family: var(--font1);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    background-color: var(--bg);
    margin-top: 1rem;
}


.product-slider .slick-dots button {
    width: 8px;
    height: 8px;
    background-color: var(--dark);
    border-radius: 10%;
    text-indent: -9999px;
    padding: 0;
    border: none;
    border-radius: 5px;
}

.slick-dots {
    text-align: center;
    padding-top: 20px;
}

.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.slick-dots .slick-active button {
    background-color: var(--bg1);
    width: 20px;
}

/*------counter-------*/
.counter-sec {
    position: relative;
    z-index: 1;
    background-color: var(--bg);
}

.counter-element .sub-title {
    color: var(--dark);
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 500;
    letter-spacing: 1.5px;
}

.counter-element p {
    color: var(--dark);
    font-family: var(--font2);
    font-size: 18px;
    letter-spacing: 1.4px;
    line-height: 1.5;
}

.counter-box {
    margin: 15px 0px;
    overflow: hidden;
}

.counter-content {
    color: var(--dark);
    font-family: var(--font1);
    text-align: left;
}

.counter-content .count-number {
    font-size: 70px;
    font-weight: 700;
    font-family: var(--font2);
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: rgba(31, 31, 31, 0.6);
    stroke: rgba(31, 31, 31, 0.6);
    font-weight: 500;
    line-height: 0.8;
}

.counter-content span {
    font-size: 70px;
    position: relative;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    stroke-width: 2px;
    -webkit-text-stroke-color: rgba(31, 31, 31, 0.6);
    stroke: rgba(31, 31, 31, 0.6);
    font-weight: 500;
    line-height: 0.8;
}

.count-name {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--font2);
    text-transform: capitalize;
    padding-top: 0.5rem;
}

.count-line {
    display: block;
    height: 1px;
    color: var(--dark);
    border-top: 1px solid var(--bg3);
    margin: 1rem 0;
}
/* -------------------- */

rectpackr-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 8px;
}

rectpackr-layout > *{
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 8px;
  border-radius: 16px;  
}

@media (min-width: 400px) {
  rectpackr-layout > * {
    width: 50%;
  }
}

@media (min-width: 800px) {
  rectpackr-layout > * {
    width: 33.333%;
  }
}

@media (min-width: 1200px) {
  rectpackr-layout > * {
    width: 25%;
  }
}

@media (min-width: 1600px) {
  rectpackr-layout > * {
    width: 19.999%;
  }
}

@media (min-width: 2000px) {
  rectpackr-layout > * {
    width: 12.5%;
  }
}

@media (min-width: 2400px) {
  rectpackr-layout > * {
    width: 9.999%;
  }
}


/* =========feature-section-========= */
.feature-section{
  background-color: var(--bg2);
}
.feature-item {
  align-items: center;
  display: flex;
  padding: 4px 0;
}
@media only screen and (max-width: 767px) {
  .feature-item {
    border: none;
    justify-content: center;
  }
}
.feature-item p:not(p.h4) {
      color: var(--light);
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-item p {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-item.border-0 {
    border-right: 1px solid #e5e5e5 !important;
  }
}
.feature-icon {
      margin-right: 10px;
    padding: 0px;
    border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-icon {
    margin-right: 10px;
    max-width: 35px;
  }
}
.feature-title {
  color: var(--light);
  margin-bottom: 1px;
  text-transform: uppercase;
}
.feature-two-item {
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  min-height: 81px;
  padding: 4px 17px;
}
.feature-two-item .icon {
  margin-right: 10px;
}
.feature-two-title {
  color: #000000;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 1px;
}

.features-two-area {
  padding: 33px 0 31px;
}


/* ------------------ */
/* ------------------ */

.contact-wrp {
  background-color: #fafafa;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 72px 0 79px;
  position: relative;
  z-index: 1;
  background-image: url(../image/bg4.png);
}
@media only screen and (max-width: 767px) {
  .contact-wrp {
    padding: 50px 0;
  }
}

.contact-info-area {
  padding: 0 11px 0 60px;
}
@media only screen and (max-width: 767px) {
  .contact-info-area {
    padding: 0 15px;
  }
}
.contact-info-area-title {
  border-bottom: 2px solid #e9e9e9;
  margin-bottom: 50px;
  margin-right: 88px;
  padding-bottom: 9px;
  position: relative;
}
.contact-info-area-title:after {
  background-color: var(--bg1);
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100px;
}
.contact-info-item {
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  margin-bottom: 40px;
  padding-bottom: 23px;
}
.contact-info-item:last-child {
  border-bottom: none;
}
.contact-info-item:hover .contact-info-icon {
  background-color: var(--bg1);
}
.contact-info-icon {
  background-color: #121212;
  border-radius: 50%;
  color: #FFFFFF;
  flex: none;
  height: 60px;
  line-height: 60px;
  margin-right: 20px;
  text-align: center;
  transition: all 0.3s ease 0s;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.contact-info-icon img {
  width: 40px;
}
.contact-info-content {
  line-height: 1.5;
}
.contact-info-content a {
  color: #464545;
  display: block;
}
.contact-info-content a:hover {
  color: var(--bg1);
}
.contact-info-content p {
  color: #464545;
}
.contact-info-content span {
  display: block;
}

.contact-form-area {
  padding: 0 60px 0 80px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-area {
    padding: 0 60px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form-area {
    padding: 0 15px;
  }
}
.contact-form-area:before {
  background-color: #e8e8e8;
  content: "";
  height: calc(100% + 47px);
  left: 19px;
  position: absolute;
  top: -20px;
  width: 1px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .contact-form-area:before {
    display: none;
  }
}
.contact-form-title {
  border-bottom: 2px solid #e9e9e9;
  margin-bottom: 50px;
  max-width: 210px;
  padding-bottom: 9px;
  position: relative;
}
.contact-form-title:after {
  background-color: var(--bg1);
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100px;
}

.form-input-item {
  margin-bottom: 30px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .form-input-item {
    margin-bottom: 15px;
  }
}
.form-input-item:focus .icon, .form-input-item:hover .icon {
  color: var(--bg1);
}
.form-input-item .icon {
  color: #d4d4d4;
  font-size: 18px;
  left: 24px;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease 0s;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
.form-input-item .form-control {
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  box-shadow: none;
  color: #000000;
  height: 49px;
  padding: 0 10px 0 55px;
}
.form-input-item .form-control::-webkit-input-placeholder {
  color: #737373;
  font-size: 16px;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .form-input-item .form-control::-webkit-input-placeholder {
    font-size: 14px;
  }
}
.form-input-item .form-control:-moz-placeholder {
  color: #737373;
  font-size: 16px;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .form-input-item .form-control:-moz-placeholder {
    font-size: 14px;
  }
}
.form-input-item .form-control::-moz-placeholder {
  color: #737373;
  font-size: 16px;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .form-input-item .form-control::-moz-placeholder {
    font-size: 14px;
  }
}
.form-input-item .form-control:-ms-input-placeholder {
  color: #737373;
  font-size: 16px;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .form-input-item .form-control:-ms-input-placeholder {
    font-size: 14px;
  }
}
.form-input-item .form-control:active, .form-input-item .form-control:focus {
  border-color: var(--bg1);
}
.form-input-item textarea.form-control {
  min-height: 136px;
  padding: 21px 10px 0 31px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .form-input-item textarea.form-control {
    min-height: 120px;
  }
}

.btn-submit {
  padding: 0 25px;
}
.btn-submit .icon {
  margin-left: 9px;
}


/*----contact-us-------*
.contact-us {
    position: relative;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.2) 23px 20px 36px -28px inset;
}

.contact-right-sec {
    position: absolute;
    height: 100%;
    top: 0;
    inset-inline-end: 0;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-image: url(../image/img/images/why1.jpg);
    right: 0;
    width: calc(40%);
    opacity: 0.5;

}

.contact-us:before {
    position: absolute;
    content: '';
    left: -5rem;
    bottom: -3rem;
    width: 12rem;
    height: 6rem;
    transform: rotate(45deg);
    border-radius: 0%;
    background-color: var(--bg);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.contact-us::after {
    position: absolute;
    content: '';
    right: -5rem;
    bottom: -3rem;
    width: 12rem;
    height: 6rem;
    transform: rotate(-45deg);
    border-radius: 0%;
    background-color: var(--bg);
    opacity: 1;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.contact-box {
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.contact-title {
    color: var(--light);
    font-size: 2.5rem;
    font-weight: 600;
    font-family: var(--font2);
    text-transform: capitalize;
}

.contact-form p {
    font-size: 1.2rem;
    color: var(--light);
    font-family: var(--font1);
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    background-color: var(--bg1);
    padding: 3rem 2rem;
    border-radius: 6px;
}

.contact-heading {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 500;
    padding-bottom: .5rem;
    font-family: var(--font2);
    color: var(--bg1);
}

.rs-contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 45px;
    gap: 30px 50px;
}

.rs-contact-list-item {
    display: flex;
    gap: 30px;
}

.rs-contact-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 80px;
    clip-path: polygon(0% 0%, 78% 0px, 100% 18%, 100% 100%, 0% 100%);
    background: var(--bg1);
    font-size: 30px;
    color: var(--light);
}

.rs-contact-list-content span {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    display: inline-block;
    color: var(--dark);
}

.rs-contact-list-content p {
    margin-bottom: 0.5rem;
    font-family: var(--font1);
    color: var(--gray);
}

input::placeholder {
    color: var(--dark);
}

.rs-contact-list-content a {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font2);
}

/* --------- *
.input-msg {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: var(--light);
    border-radius: 2px;
}

.input-text-area {
    margin-bottom: 40px;
}

.input-msg span {
    padding: 10px;
}

.input-msg input {
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--light);
}

select.input-select.input-text {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 8px;
    background-color: var(--secondary);
}

textarea.input-text {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    height: 140px;
    border-radius: 8px;
    background-color: var(--secondary);
}

.contact-btn {
    background-color: var(--secondary);
    color: var(--gray);
    border: 1px solid var(--light);
}

/********** client ************/
.our-client {
    background-color: var(--secondary);
    z-index: 9;

}

.client-title {
    color: var(--bg2);
}

.c-img {
    overflow: hidden;
    display: block;
    transition: all 0.3s ease;
    border: 2px solid var(--light);
    border-radius: 14px;
    padding: 10px;
    background-color: var(--light);
}

.c-img img {
    height: 100px;
    width: 100%;
    transition: all 0.5s ease;
    object-fit: contain;
    cursor: grab;
    border-radius: 5px;
    background-color: var(--light);
}

.c-box {
    margin: 10px 5px;
    float: left;
    position: relative;
    background-color: var(--light);
    border-radius: 4px;
    padding: 10px;

}

.client-slider {
    padding: 10px;
    background-color: var(--secondary);
}

/* ------------------ */

/*_________testimonail________*/

.testimonial-sec {
    background-color: var(--light);
    position: relative;
    z-index: 1;
}

.testimonial-header .title-sec {
    padding: 5px 10px;
}

.testi-slider {
    position: static;
    background-color: transparent;
}

.testi-slider .f-back.slick-arrow {
    left: 2rem;
}

.testi-slider .f-next.slick-arrow {
    right: 2rem;
}

.testi-box {
    padding: 2rem 1rem;
    background-color: #ffffff;
    background-image: linear-gradient(43deg, var(--dark) 0%, var(--bg2) 100%, var(--bg2) 46%);
    border-radius: 1rem;
    margin: 1rem;
    position: relative;
    z-index: 9;
    border: 2px solid var(--secondary);
    width: 100%;
    height: 360px;
}
.testi-box p{
    color: var(--light);
}
/* .testi-box:after{
    position: absolute;
    left: 0;
    top: 0;
    content: '\f10d';
    font-family: FontAwesome;
    z-index: 1;
    color: var(--bg3);
    font-size: 32px;
    
} */
.testi-quote {
    border-radius: 10px;
    background: var(--bg1);
    transform: rotate(45deg);
    width: 70px;
    height: 70px;
    top: -30px;
    left: 32px;
    position: absolute;
    text-align: center;
    line-height: 100px;
}

.testi-icon {
    transform: translateY(-15px) rotate(-45deg);
    width: 70px;
    height: 70px;
    vertical-align: middle;
    fill: rgb(255, 255, 255);
    text-align: center;
    color: var(--light);
    font-size: 2rem;
}

.testi-slider .content-sec {
    color: var(--light);
}

.testi-img img {
    width: 60px;
    height: 60px;
}

.testi-thumb {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testi-name {
    font-family: var(--font1);
    text-transform: capitalize;
    font-size: 2rem;
    font-weight: 600;
    color: var(--light);
}

.t-name {
    color: var(--light);
    font-family: var(--font2);
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 1.3px;
}

.testi-slider .slick-dots button {
    width: 8px;
    height: 8px;
    background-color: var(--dark);
    border-radius: 10%;
    text-indent: -9999px;
    padding: 0;
    border: none;
    border-radius: 5px;
}

.testi-slider .slick-dots {
    text-align: center;
    padding-top: 20px;
}

.testi-slider ul.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.testi-slider ul.slick-dots .slick-active button {
    background-color: var(--bg1);
    width: 20px;
}

/* ------------ */

.f-next.slick-arrow,
.f-back.slick-arrow {
    position: absolute;
    content: '';
    z-index: 1;
    top: 50%;
    font-size: 26px;
    font-weight: 900;
    padding: 8px;
    color: var(--light);
    background-color: var(--bg1);
    height: 2.4rem;
    width: 2.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5%;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}


.f-back.slick-arrow {
    left: 10px;
}

.f-next.slick-arrow {
    right: 10px;
}

/*_________footer________*/

footer {
    padding: 60px 0;
    position: relative;
    z-index: 9;
}

footer:after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    bottom: 0;
    z-index: -1;
    background-color: var(--bg);
    opacity: 1;
}

.footer-logo img {
    width: 90px;
    padding: 4px;
    border-radius: 2px;
}

.footer-content p {
    color: var(--dark);
    font-family: var(--font1), sans-serif;
    padding: 20px 0;
}

.footer-icons {
    display: flex;
    gap: 16px;
}

ul.footer-icons li a {
    display: flex;
    font-size: 16px;
    color: var(--bg1);
    border: 1px solid var(--bg1);
    padding: 11px;
    border-radius: 15%;
    text-align: center;
    justify-content: center;
    font-family: var(--font2);
}

ul.footer-icons li a:hover {
    background-color: var(--dark);

}

.footer-heading {
    font-size: 20px;
    font-family: var(--font2);
    color: var(--bg3);
    text-transform: uppercase;
    margin-bottom: 30px;
    padding: 3px 10px;
    border-radius: 2px;
    font-weight: 600;
    display: inline-block;
    background-color: var(--bg2);
}

.footer-element li {
    padding: 5px 0;
    margin-bottom: 5px;
    font-size: 18px;
}

.footer-element li a {
    font-family: var(--font2);
    color: var(--dark);
    text-transform: capitalize;
}

li.footer-list {
    display: flex;
    gap: 1rem;
}

li.footer-list span.f-icon {
    color: var(--bg2);
    font-size: 18px;
}

.footer-item {
    height: 270px;
    overflow-x: hidden;
}

ul.footer-element li span {
    color: var(--light);
    padding-right: 10px;
    color: var(--bg1);
}

.footer-item::-webkit-scrollbar {
    width: 5px;
}

.footer-item::-webkit-scrollbar-track {
    background: var(--bg1);
    border-radius: 20px;
}

.footer-item::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 10px;
}

.copyright-sec {
    background-color: var(--bg1);
    color: var(--light);
}

.copy-right {
    padding-top: 1rem;
    text-align: center;
}

.copy-right p {
    color: var(--light);
    font-family: var(--font2);
    font-size: 14px;
}

.copy-right p a {
    color: var(--bg);
    font-family: var(--font2);
    font-weight: 500;
    letter-spacing: 1.3px;
}

.copy-right p span {
    color: var(--light);
    font-family: var(--font2);
    font-weight: 400;
    font-size: 16px;
}


/********scroll-btn**************/
#scroll-top {
    display: inline-block;
    background-color: var(--dark);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    visibility: hidden;
    z-index: 1000;
}

#scroll-top::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 40px;
    color: var(--bg1);
}

#scroll-top:hover {
    cursor: pointer;
    background-color: var(--dark);
    box-shadow: 0px 0px 2px var(--secondary);
    color: var(--bg1);
}

#scroll-top:active {
    background-color: var(--bg2);
    color: var(--light);
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.fixed-wtsp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    text-align: start;
    z-index: 9;
    transition: all 2s ease-in-out;
    transform: translateX(-500px);
    display: none;
}

#slide.active{
    transform: translateX(0px);
    display: none;
}

.fixed-wtsp a.phone {
    background-color: #2067b5;
    padding: 8px 20px;
    border-radius: 20px 0px 20px 0px;
    color: #fff;
    font-size: 15px;
    transition: 0.2s;
    margin: 1rem 0;
    display: inline-block;
}

.fixed-wtsp a {
    background-color: #075e54;
    padding: 8px 20px;
    border-radius: 20px 0px 20px 0px;
    color: #fff;
    font-size: 15px;
    transition: 0.2s;
    display: block;
}



/* --------inner-page----- */

/******breadcrump*******/
.breadcrump-sec {
    background: url('../image/bg4.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 10c0px 0;
    position: relative;
    z-index: 1;
    min-height: 300px;

}

.breadcrump-sec:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(230, 14, 14, 0.9);
    content: '';
    z-index: -1;
}

.bread-title {
    font-family: var(--font2);
    font-size: 35px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    background-color: var(--bg1);
    padding: 5px 12px;

}
.b-title{
    color: var(--bg3);
    text-transform: capitalize;
    font-size:2rem;
    font-family: var(--font1);
    font-weight: 600;
}
.b-links {
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 100%;
    display: inline-block;
    background-color: var(--bg1);
    padding: 14px 30px;
    color: var(--light);
    font-family: var(--font1);
    font-weight: 800;
    text-transform: capitalize;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 1px 4px;
}

.b-links a {
    font-size: 18px;
    letter-spacing: 1.1px;
    padding: 0 5px;
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: none;
    color: var(--light);
    margin-bottom: 50px;
}

.b-item.active {
    color: var(--bg3);
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    letter-spacing: 1.2px;
    font-size: 18px;
    font-weight: 900;
    padding-left: 5PX;
}

span.fa-solid {
    color: var(--bg);
}


.market-place {
    background-color: var(--primary);
    position: relative;
}

a.market-btn {
    display: block;
    border-radius: 5px !important;
    font-family: var(--font2);
}

.market-title {
    color: var(--bg1);
}

.marketing-title {
    font-size: 32px;
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    font-weight: 600;
    margin: 20px auto;
    line-height: 1.1;
}

a.market-btn {
    padding: 18px 30px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light);
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
    display: block;
    height: 60px;
}

/***why-us****/
.why-us {
  background-color: #dfcccc;
  position: relative;
  z-index: 9;
  padding-bottom: 140px;
}

.why-dark {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

.why-box {
  display: flex;
  justify-content: center;
  padding: 20px 10px 30px;
  gap: 1rem;
}

.why-content .w-heading {
  font-size: 22px;
  font-family: var(--font1);
  color: var(--bg1);
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom:0.5rem;
}

.why-content p {
  color: var(--dark);
  font-family: var(--font2), sans-serif;
}

.why-right-border {
  border-right: 1px solid var(--dark);
}

.why-left-box {
  padding: 10px;
  padding-top: 80px;
}

.why-border {
  border-bottom: 1px solid var(--dark);
}

.why-content .content-sec {
  margin: 40px auto !important;
  font-family: var(--font2), sans-serif;
}


/**-----products-----**/

.sp-box {
  transition: all 0.5s ease;
  margin: 15px;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  background-color: var(--light);
  border: 2px solid var(--secondary);
}

.sp-box:hover {
  box-shadow: rgba(26, 25, 25, 0.2) 0px 2px 8px 0px;
}

.sp-content {
  padding: 10px 10px;
  min-height: 180px;
  text-align: center;
}

.sp-content p {
  font-family: var(--font2);
}

.sp-more {
  text-transform: capitalize;
}

.sp-img {
  overflow: hidden;
}

.sp-img img {
  transition: all 0.5s ease;
  overflow: hidden;
  height: 260px;
  object-fit: cover;
  margin: 0 auto;
  background-color: var(--secondary);
}

.sp-img img:hover {
  transform: scale(1.1);
}

label.sp-heading {
  font-size: 23px;
  font-family: var(--font2);
  font-weight: 700;
  padding-bottom: 10px;
  color: var(--dark);
  text-transform: capitalize;
}

.sp-text {
  padding-right: 5%;
  font-family: var(--font2);
  line-height: 1.5;
  font-weight: 500;
  color: var(--dark);
}

.sp-btn {
  margin: 10px;
}

/* ---------------- */
.product-sec {
  position: relative;
}

.product-sec::after {
  content: "";
  position: absolute;
  top: -30px;
  right: 0;
  background: #f9f9f9;
  width: 15%;
  height: 100%;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  border-radius: 15px;
  z-index: -1;
}

.product-slider {
  position: static;
}

.product-slider .p-back.slick-arrow,
.product-slider .p-next.slick-arrow {
  position: absolute;
  top: 50%;
  background-color: var(--bg1);
  padding: 10px;
  color: var(--light);
  z-index: 9;
  font-size: 16px;
  cursor: pointer;
}

.product-slider .p-back.slick-arrow {
  left: 8px;
}

.product-slider .p-next.slick-arrow {
  right: 8px
}

/*-------certificate------- */
.certificate-gallery{
    position: relative;
    background-color: var(--bg);
}

.certificate-slider{
    position: static;
}

.certificate-gallery.gallery-slider.slick-slide{
    margin: 0px 10px;
    background-color: var(--light);
}
.c-next.slick-arrow {
    position: absolute;
    top: 55%;
    right:  10px;
    padding: 5px 2px;
    font-size: 20px;
    background-color: var(--bg1);
    color: var(--light);
    z-index: 999;
    border-radius: 5%;
    height: 40px;
    text-align: center;
    width: 40px;
}

.c-back.slick-arrow {
    position: absolute;
    top: 55%;
    left: 10px;
    background-color: var(--bg1);
    border-radius: 5%;
    padding: 5px 2px;
    font-size: 20px;
    z-index: 999;
    color: var(--light);
    height: 40px;
    width: 40px;
    text-align: center;
}
.slick-slider{
    position: static;
    display: block;
}
.slick-arrow{
    transition: all 0.5s ease;
}
.slick-arrow:hover{
    transform: scale(1.1);
}
.p-img{
    margin: 1rem;
    padding: 0.2rem;
    background-color: var(--gray);
}
.p-img img{
    height: 350px;
}

/* -----glight-box-css--------- */
.gallery-sec{
    background-color: var(--bg);
}
.photos-grid-container {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 0;
  align-items: start;

  @media (max-width: 580px) {
    grid-template-columns: 1fr;
  }

  .img-box {
    border: 1px solid #ffffff;
    position: relative;
  }

  .img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .img-box:hover .caption {
    transform: translateY(-5px);
  }

  img {
    max-width: 100%;
    display: block;
    height: auto;
  }

  .caption {
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 1.5rem;
  }

  .transparent-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-photo {
    grid-row: 1;
    grid-column: 1;
  }

  .sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 0em;

    &:nth-child(0) {
      grid-column: 1;
      grid-row: 1;
    }

    &:nth-child(1) {
      grid-column: 2;
      grid-row: 1;
    }

    &:nth-child(2) {
      grid-column: 1;
      grid-row: 2;
    }

    &:nth-child(3) {
      grid-column: 2;
      grid-row: 2;
    }
  }
}
.hide-element {
  border: 0;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media screen and (min-width: 1280px) {
  .container {
    margin: 0 auto;
    width: 1250px;
  }
}

/*----media_queries-------*/
@media (max-width:992px) {
    section {
        padding: 50px 0;
        overflow: hidden;
    }

    .title-sec {
        color: var(--bg1);
        font-family: var(--font1), sans-serif;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 1.2px;
    }

    .sub-title {
        color: var(--dark);
        font-family: var(--font2);
        text-transform: capitalize;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 500;
        word-spacing: 2px;
        letter-spacing: 1.2px;
    }

    .heading-sec {
        font-size: 16px;
        text-transform: uppercase;
        font-family: var(--font1), sans-serif;
        line-height: 1.5;
        font-weight: 500;
    }

    .content-sec {
        font-size: 15px;
        word-spacing: 1.1px;
        line-height: 1.6;
        font-family: var(--font2);
        font-weight: 300;
        text-align: left;
    }

    .header-part {
        margin-bottom: 0px;
    }

    .btn-sec {
        padding: 12px 20px;
    }

    /*-------top-header--------*/
    .t-header {
        display: none;
    }

    .top-header {
        justify-content: center;
        position: relative;
    }

    .th-links {
        display: none;
    }

    .th-social-links {
        gap: 10px;
    }

    .nav-menu {
        display: none;
    }

    header {
        position: relative;
        width: 100%;
        z-index: 999;
        overflow: visible;
    }

    .header {
        display: flex;
        justify-content: space-between;
    }

    .comp-logo img {
        width: 100px;
        margin-top: 0;
    }

    .enq-icon {
        display: none;
        align-items: center;
    }

    .enq-icon img {
        width: 30px;
    }

    .enq-number {
        font-size: 13px;
        font-family: var(--font1);
    }

    .toggle-btn {
        margin: 10px;
        cursor: pointer;
        height: 30px;
        width: 30px;
        order: 3;
    }

    .toggle-btn>* {
        background-color: var(--dark);
        display: block;
        height: 3px;
        width: 25px;
        margin: 5px 0;
        transition: all 0.5s ease-in-out;
    }

    .toggle-btn.active .span1 {
        transform: rotate(45deg) translate(3px, 10px);
    }

    .toggle-btn.active .span2 {
        opacity: 0;
    }

    .toggle-btn.active .span3 {
        transform: rotate(-45deg) translate(1px, -8px);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        z-index: 999;
        background-color: var(--light);
        flex-direction: column;
        width: 100%;
        left: 0;
    }

    .nav-menu>li {
        display: block;
        line-height: 35px;
        background-color: var(--light);
    }

    .nav-menu>li>a {
        font-family: var(--font1);
        text-transform: capitalize;
        display: block;
        padding: 10px 30px;
        font-weight: 600;
        line-height: 30px;
        border-bottom:1px solid var(--gray);
        color: var(--dark);
    }

    .nav-menu>li>a:hover {
        color: var(--bg1);
    }

    .click-btn {
        position: absolute;
        right: 0px;
        top: 1px;
        display: inline-block;
        color: var(--dark);
        background-color: var(--light);
        padding: 9px 30px;
        line-height: 30px;
    }

    .drop-content {
        position: absolute;
        top: 20px;
        width: 100%;
        height: 300px;
        display: none;
        background-color: var(--bg1);
        z-index: 999;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        overflow: auto;
    }

    .enquiry-sec {
        display: none;
    }

    .nav-menu li::after {
        display: none;
    }

    .drop-content li a {
        color: var(--light);
    }

    /* ----------------- */

    .ban-next.slick-arrow,
    .ban-back.slick-arrow {
        position: absolute;
        content: '';
        z-index: 1;
        top: 50%;
        font-size: 16px;
        font-weight: 900;
        padding: 8px;
        color: var(--bg1);
        background-color: var(--gray);
        height: 1.7rem;
        width: 1.7rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5%;
        transition: all 0.2s ease-in-out;
    }

    /* ------service-section-------- */
    .service-inner-section {
        flex-direction: column;
        gap: 50px;
    }

    /* -------------------- */

    /*-----about-us------ */
    .about-us {
        margin-bottom: 30px;
        background-color: var(--bg);
        width: 100%;

    }

    .about-us img {
        height: auto;
    }

    .c-img img {
        height: 80px;
    }

    /* -------------- */
    .why-us {
        padding-bottom: 40px;
    }

    .why-img img {
        border-radius: 0;
        height: auto;
    }

    .why-bg {
        display: none;
    }

    /*------------- */
    .counter-box {
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--gray);
        margin-top: 3rem;
    }

    .counter-content {
        text-align: center;
        border-bottom: 1px soloid var(--bg3);
    }

    .count-line {
        display: none;
    }

    /*------------- */

    .product-slider .f-back.slick-arrow,
    .product-slider .f-next.slick-arrow {
        top: 50%;
    }

    .f-back.slick-arrow {
        left: 0;
    }

    .f-next.slick-arrow {
        right: 0;
    }

    /*------------- */
    .md-right-sec {
        display: none;
    }

    .md-banner-detail {
        padding: 1rem;
    }

    /*-------why-choose */

    .contact-element a,
    .contact-element p {
        font-size: 15px;
    }

    .contact-right-sec {
        display: none;
    }

    .contact-form {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }

    /* ------------- */
    .footer-heading {
        margin-bottom: 10px;
    }

    .footer-wrapper {
        margin-bottom: 30px;
    }

    .footer-element li {
        font-size: 16px;
    }

    .bread-title {

        color: var(--light);
        background-color: var(--bg1);
        padding: 8px 20px;
        border-radius: 0px 10px 0px 10px;

    }
  
    /* ------------ */
    .testi-box {
        height: auto;
    }

    .testi-slider .f-back.slick-arrow {
        left: 0rem;
    }

    .testi-slider .f-next.slick-arrow {
        right: 0rem
    }
    
     /* ------------- */
     .fixed-wtsp a span{
         display:none;
     }
    .fixed-wtsp{
        left: 5px;
    }
    .fixed-wtsp a.phone,
    .fixed-wtsp a {
    padding: 6px 10px;
    border-radius: 5px 5px;
    animation: all 0.5s ease-in-out;
    }
    .fixed-wtsp a i{
    animation: pop-up 1s ease infinite;
}
@keyframes pop-up {
    0%{
        transform: scale(0.8);
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    }
    50%{
        transform: scale(1);
        box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    }
    100%{
        transform: scale(1.1);
        box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    }
}

}