@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Red+Rose:wght@300..700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    scroll-behavior: smooth;
    font-size: 14px;
    line-height: 1.4;
    font-family: 'Mulish', sans-serif;
}

@font-face {
    font-family: 'Red Rose';
    src: url('../font/RedRose-Bold.woff2') format('woff2'),
        url('../font/RedRose-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Red Rose';
    src: url('../font/RedRose-Regular.woff2') format('woff2'),
        url('../font/Figtree-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('../font/Figtree-Regular.woff2') format('woff2'),
        url('../font/Figtree-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('../font/Figtree-SemiBold.woff2') format('woff2'),
        url('../font/Figtree-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


:root {
    --bg1: #feee07;
    --bg2: #49759b;
    --blue: #0d275e;
    --light-blue: #24547c;
    --dark: #000;
    --light: #fff;
    --secondary: #e5f1fd;
    --secondary: #e8f0fe;
    --bg: #f6fcfe;
    --bg: #f1f3f4;
    --font1: 'Red Rose';
    --font2: 'Figtree';
}

::selection {
    color: var(--bg1);
    background-color: var(--blue);
}

a {
    text-decoration: none;
    color: var(--dark);
}

.container {
    max-width: 1240px;
}

ul,
li,
a {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family:var(--font1);
}

p {
    font-size: 15px;
    font-family: var(--font1);
    color: var(--dark);
    line-height: 1.4;
}

section {
    padding: 100px 0;
    overflow: hidden;
}

/*-------------*/
.ml-10 {
    margin-left: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.mr-20 {
    margin-right: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pl-10 {
    padding-left: 10px;
}

.pr-10 {
    padding-left: 10px;
}

.pb-10 {
    padding-left: 10px;
}

.pt-10 {
    padding-left: 10px;
}

.pl-20 {
    padding-left: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pr-20 {
    padding-right: 20px;
}

/*-------------*/
.title-sec {
    font-family: var(--font2), sans-serif;
    /*text-transform: uppercase;*/
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 1.3px;
    position: relative;
    color: var(--bg1);
    -webkit-text-stroke: 1px var(--blue);
    text-shadow: 0px 3px solid var(--bg1);
}

.title-sec::after {
    position: absolute;
    right: 20px;
    bottom: 3px;
    height: 2px;
    width: 0px;
    background-color: var(--bg1);
    content: '';
}

.sub-title {
    color: var(--blue);
    font-family: var(--font2), sans-serif;
    text-transform: capitalize;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.heading-sec {
    font-size: 20px;
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

.content-sec {
    font-size: 16px;
    font-family: var(--font2);
    color: var(--dark);
}

.btn-sec {
    border-radius: 5px;
    color: var(--light);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 30px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transition: all 0.3s ease 0.9s;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(to bottom left, var(--blue), var(--bg1));
    background: #1a2a6c;
    background: -webkit-linear-gradient(to left, #fdbb2d, #b21f1f, #1a2a6c);
    background: linear-gradient(to left, #fdbb2d, var(--blue), #1a2a6c);
    border: 0;
    display: inline-block;
    font-family: var(--font1);
    font-size: 16px;
    font-weight: 500;
    line-height: 2.5;
    outline: transparent;
    padding: 0 1rem;
    text-decoration: none;
    transition: box-shadow .2s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
}

.btn-sec span {
    margin-left: 5px;
}


.btn-sec:not([disabled]):focus {
    box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(219, 205, 10, 0.5), .125rem .125rem 1rem rgba(28, 118, 220, 0.5);
}

.btn-sec:not([disabled]):hover {
    box-shadow: 0 0 .25rem rgba(223, 21, 21, 0.5), -.125rem -.125rem 1rem rgba(235, 235, 54, 0.5), .125rem .125rem 1rem rgba(27, 111, 206, 0.5);
    color: var(--light);
}

.learn-more {
    font-size: 18px;
    color: var(--blue);
    font-family: var(--font1);
    padding: 10px 20px 10px 0;
    text-transform: capitalize;
    font-weight: 800;
}

.learn-more span {
    color: var(--bg1);
    transition: all 0.5s ease;
}

.learn-more:hover.learn-more span {
    color: var(--bg1);
    padding-left: 5px;
}


.header-part {
    display: block;
    text-align: left;
    margin-bottom: 30px;
}

/***********/
.t-header {
    background-color: var(--blue);
    height: 36px;
}

.top-header {
    line-height: 50px;
    display: flex;
    justify-content: space-between;
}

.th-element {
    display: flex;
    color: var(--light);
    height: 36px;
    align-items: center;
    text-align: center;
}

.th-element .th-icon {
    font-size: 18px;
    color: var(--bg1);
}

.th-element a {
    color: var(--light);
    font-family: var(--font2);
    letter-spacing: 0.5px;
}

.th-gst {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(248, 246, 246, 0.2);
}

.th-email {
    border-right: 1px solid rgba(248, 246, 246, 0.2);
}

.social-links span {
    font-size: 18px;
    text-transform: capitalize;
}

.social-icon {
    margin-left: 10px;
    font-size: 16px;
}

/*---header---*/
/* navbar-header */


header {
    position: relative;
    width: 100%;
    left: 0;
    background-color: transparent;
    z-index: 999;
}

.header {
    display: flex;
    justify-content: space-between;
    line-height: 90px;
    height: 90px;
    align-items: center;
    vertical-align: middle;
    font-family: var(--font2);
    background-color: transparent;
}

.c-logo img {
    object-fit: contain;
    width: 300px;
    margin-top: -2.5rem;
    padding: 1rem 0;
}

.logo-sec {
    display: inline-block;
    position: relative;
    z-index: 999;
    padding-right: 50px;
}

.logo-sec .bg-color {
    position: absolute;
    z-index: -1;
    top: -1rem;
    right: 0px;
    width: 5000px;
    height: calc(100% + 3rem);
    background: var(--light);
    margin-top: -38px;
    clip-path: polygon(0% 0%, 100% 0%, 98% 100%, 0% 100%, 0px 0px);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    display: block;
    position: relative;
}

.nav-menu li a {
    font-family: var(--font1);
    text-transform: capitalize;
    display: block;
    padding: 36px 16px;
    font-weight: 400;
    line-height: 1;
    font-size: 16px;
    color: var(--dark);
    letter-spacing: 0.5px;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--blue);
}

.nav-menu li a :nth-child(last) {
    padding-right: 0px !important;
}

.nav-menu li.drop-menu a {
    padding-right: 1.5rem;
}

.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(--light);
    z-index: 999;
    box-shadow: rgba(9, 9, 9, 0.2) 0px 2px 2px 0px;
    overflow: auto;
    border-top: 3px solid var(--bg1);
    transition: all 0.6s ease-in-out 0.4s;
    z-index:999;

}

.drop-menu:hover .drop-content {
    display: block;
    top: 100%;
}

.drop-content li {
    line-height: 50px;
    display: block;
    transition: all 0.8s ease;
    border-bottom: 1px dotted var(--bg2);
}

.drop-content li a {
    color: var(--dark);
    display: block;
    width: 100%;
    font-family: var(--font2);
    font-weight: 400;
    padding: 16px;
    transition: all 0.4s ease;
}

.drop-content li a:after {
    height: 0;
}

.drop-content li a:hover {
    color: var(--blue);
    font-weight: 500;
    border: none !important;
}

.drop-content::-webkit-scrollbar {
    width: 7px;
    background-color: var(--bg);
    box-shadow: 1px solid var(--dark);
}

.drop-content::-webkit-scrollbar-thumb {
    color: var(--dark);
    background-color: var(--blue);
    border-radius: 5px;
}

ul.drop-content li:after {
    display: none;
}

.click-btn {
    position: absolute;
    right: 1px;
    top: 0px;
    color: var(--dark);
    cursor: pointer;
}

/*----sticky-header----------*/
#my-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    animation: slide-down 1s ease-in-out;
    box-shadow: 0px 0px 1px var(--dark);
    background-color: var(--light);
}

#my-header.sticky .nav-sec>li>a {
    color: var(--dark);
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#my-header.sticky .nav-sec>li>a:hover {
    color: var(--bg1);
}

#my-header.sticky .logo img {
    margin-top: 0;
}

/****bannner_start****/
.banner {
    position: relative;
    width: 100%;
    z-index: 100;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(11, 18, 40);
    background: linear-gradient(112deg, rgba(11, 18, 40, 0.7009803921569) 0%, rgba(255, 255, 255, 0) 86%);
    z-index: 0;
}

.banner-content {
    position: absolute;
    top: 20%;
    left: 60px;
    color: var(--light);
    width: 60%;
    text-align: left;
    z-index: 9;
    box-sizing: border-box;
}

.ban-content1 {
    text-transform: capitalize;
    display: block;
    font-family: var(--font1), sans-serif;
    font-weight: 800;
    line-height: 1.1;
    text-transform: capitalize;
    transition: all 1s ease 0.6s;
    font-size: 38px;
    color: var(--blue);
    margin-bottom: 30px;
    letter-spacing: 1.3px;
    opacity: 0;
    transform: translate(1000px, -300px);
    text-shadow: 0 0 2px var(--light);
    display: inline-block;
    background-color: var(--bg1);
    padding: 5px 15px;
}

.ban-content2 {
    color: var(--light);
    text-transform: capitalize;
    display: block;
    transition: all 1s ease 0.6s;
    color: var(--light);
    margin-bottom: 30px;
    opacity: 0;
    transform: translate(900px, -150px);
    top: 50%;
}
.ban-content2 p{
    color:var(--light);
    font-family: var(--font1), sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 18px;
    
    letter-spacing: 1.1px;
    line-height: 1.8;}

.ban-btn {
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: all 1s ease 1s;
    transform: translate(1500px, -50px);
}

.ban-img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: all 5s ease-in-out;
    transform: scale(1);
    z-index: 199;
}

.swiper-slide-active .ban-img img {
    transform: scale(1);
}

.swiper-slide-active .ban-content1,
.swiper-slide-active .ban-content2,
.swiper-slide-active .ban-btn {
    transform: scale(1.0);
    opacity: 1;
    visibility: visible;
}

.next-btn,
.back-btn {
    position: absolute;
    top: 40%;
    width: 2rem;
    height: 2rem;
    padding: 1rem;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    color: var(--bg1);
    font-weight: 100;
    font-family: var(--font2);
    font-size: 25px;
    opacity: 0.9;
    background-color: var(--blue);
    padding: 20px;
}

.next-btn {
    right: 0px;
    bottom: 0;
    background-position: center;
    z-index: 999;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.back-btn {
    left: 0px;
    border-left: none;
    bottom: 0;
    background-position: center;
    z-index: 999;
    background-size: 1.5rem 1.5rem;
    background-repeat: no-repeat;
    border-radius: 0px 10px 10px 0;
}

.next-btn:hover,
.back-btn:hover {
    width: 3rem;
    color: var(--light);
    box-shadow: 0px 0px 2px var(--light);
    opacity: 1;
}

/******slick banner******/
.ban-item {
    position: relative;
}

.slider-bg {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.8);
    background: linear-gradient(90deg, rgba(30, 0, 0, 0.4), rgba(238, 226, 226, 0.1));
    z-index: 0;
}

.slider-content {
    position: absolute;
    content: '';
    top: 30vh;
    left: 5vw;
    padding: 40px;
    z-index: 9;
}

.slider-content1,
.slider-content2 {
    color: var(--light);
    text-transform: capitalize;
    display: block;
    font-family: var(--font1), sans-serif;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    transition: all 0.8s ease-in 0.6s;
    font-size: 66px;
    color: var(--light);
    padding-right: 300px;
    margin-bottom: 30px;
    letter-spacing: 1.3px;
    opacity: 0;
    transform: translate(0px, -150px);
    text-shadow: 0 0 2px var(--light);
}

.slider-content2 {
    font-size: 16px;
    transform: translate(0px, 250px);
    font-family: var(--font2);
    line-height: 1.5;
}

.slider-btn {
    margin: 40px;
}

.ban-item.slick-slide.slick-current.slick-active .slider-content1,
.ban-item.slick-slide.slick-current.slick-active .slider-content2 {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.b-next.slick-arrow {
    position: absolute;
    right: 1vw;
    top: 50%;
    content: '';
    background-color: var(--dark);
    color: var(--light);
    display: inline-block;
    padding: 10px 15px;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    z-index: 99;
    cursor: pointer;
}

.b-back.slick-arrow {
    position: absolute;
    left: 1vw;
    top: 50%;
    content: '';
    background-color: var(--dark);
    color: var(--light);
    display: inline-block;
    padding: 10px 15px;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    z-index: 99;
    cursor: pointer;
}
.about-content ul{
    margin:2rem 0;
}
.about-content li{
    list-style:disc;
    padding-bottom:0.8rem;
}
/*--------feature-section---------*/

.feature-sec {
    background: #fff;
    background: -webkit-linear-gradient(to right, var(--bg), var(--secondary));
    background: linear-gradient(to right, var(--bg), var(--secondary));
}

.feature-box {
    background-color: var(--blue);
    color: var(--light);
    padding: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    min-height:370px;
}

.feature-item {
    display: flex;
    justify-content: space-evenly;
    color: var(--light);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--light);
    font-family: var(--font2);
    text-align: center;
    font-size: 1.1rem;
}

.feature-heading {
    color: var(--bg1);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--font1);
    padding-left: 1rem;
}

.feature-icon {
    width: 40%;
    z-index: 99;
    position: relative;
    font-size: 1.5rem;
}

.feature-icon img {
    width:2.5rem;
}
.feature-icon::after {
    position: absolute;
    content: '';
    top: -1.5rem;
    left: -1.5rem;
    width: 80px;
    height: 80px;
    z-index: -1;
    background-color: var(--light-blue);
    border-radius: 50%;
}

/* ======================== */
/*--------welcome-area---------*/
.welcome-area {
    background-color: var(--bg1);
}

.welcome-area p.welcome-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
    text-align: right;
    padding: 5px 20px;
}

.welcome-content {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 24px;
    color: var(--dark);
    font-weight: 400;
    padding-left: 35px;
    border-left: 1px solid #222222;
}

/******about-us**********/
.about-us {
    position: relative;
    z-index: 9;
}

.about-us::before {
    position: absolute;
    left: -120px;
    bottom: -100px;
    width: 400px;
    height: 520px;
    background-image: url(../image/img/bg/service_bg_1.png);
    background-repeat: repeat;
    background-position: left top;
    content: "";
    z-index: -1;
    opacity: 0.6;
    ;
}

.about-us::after {
    position: absolute;
    right: -100px;
    top: 100px;
    width: 500px;
    height: 80px;
    transform: rotate(45deg);
    background-position: left top;
    background-color: var(--secondary);
    content: "";
    z-index: -1;
    opacity: 0.4;
}

.about-img {
    width: 50%;
    float: left;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.about-img img {
    object-fit: cover;
}

.about-btn {
    display: flex;
    justify-content: space-between;
}

.about-number img {
    width: 40px;
    object-fit: contain;
}

.about-number span {
    font-size: 20px;
    font-family: var(--font2);
    font-weight: 700;
    color: var(--blue);
}

/*---------service-section------*/
.service-sec {
    background: #fff;
    background: -webkit-linear-gradient(to right, #fff, var(--secondary));
    background: linear-gradient(to right, #fff, var(--secondary));
    padding-bottom: 180px;
}
.service-slider{
    margin:0 -10px;
}

.service-box {
    display: flex;
    flex-direction: column;
    background-color: var(--light);
    padding: 10px 10px 20px 10px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.service-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.service-img img {
    height: 250px;
    object-fit: contain;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.84) 0px 3px 8px;
}

.service-box:hover .service-img img {
    transform: scale(1.1);
}

.service-box:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.title-sec.service-title {
    color: var(--dark);
    font-weight: 600;
}

.service-slider {
    padding-bottom: 80px;
}

.serv-next.slick-arrow {
    position: absolute;
    bottom: 10px;
    right: 45%;
    padding: 8px 18px;
    font-size: 18px;
    background-color: var(--blue);
    color: var(--bg1);
    z-index: 9;
    border-radius: 5%;
    width: 50px;
    cursor: pointer;
}

.serv-back.slick-arrow {
    position: absolute;
    bottom: 10px;
    right: 50%;
    background-color: var(--blue);
    border-radius: 5%;
    padding: 8px 18px;
    font-size: 18px;
    z-index: 9;
    cursor: pointer;
    color: var(--bg1);
    width: 50px;
    cursor: pointer
}
.service_product{
     margin: 3rem 0;
    text-align: center;
    overflow: hidden;
    box-shadow: rgba(43, 20, 44, 0.3) 0px 0px 0px 1px;
    box-sizing: border-box;
}
.service_product:first-child{
    margin-top:0!important;
}
.service_product_name{
    text-transform:capitalize;
    font-family:var(--font1);
    font-weight:600;
    background-color:var(--blue);
    color:var(--light);
    font-size:1.3rem;
    padding:0.5rem;
}
.service_product_img{
    padding:1rem;
}

.service_title {
  min-height: 40px; /* ya jitni height chahiye */
}
.service_product_name {
  min-height: 35px;
}


.service_product_img img{
    width:100%;
}
.service_title{
    white-space:nowrap;
}
/*------testimonial----------*/
.testimonial {
    background-image: url(../image/img/bg/client.webp);
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding: 130px 0 100px 0;
    z-index: 9;
}

.testi-bg {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    opacity: 0.85;
    z-index: -1;
}

.testi-box {
    display: flex;
    padding: 40px 40px 35px;
    border-radius: 35px 0;
    background-color: var(--light);
    box-sizing: border-box;
    outline: 2px solid var(--light);
    border: 2px solid var(--dark);
    margin: 1rem;
}

.client-content {
    color: var(--light);
    font-family: var(--font2);
    font-size: 16px;
}

.testi-img-box {
    display: inline-block;
    width: 28%;
}

.client-content-box {
    margin-left: 20px;
    display: inline-block;
    width: 65%;
}

.client-name {
    text-transform: uppercase;
    font-family: var(--font1);
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    color: var(--blue);
}

.testi-img {
    margin-bottom: 20px;
}

.testi-img img {
    height: 150px;
    object-fit: contain;
}

.client-subtitle {
    margin: 10px 0;
    color: var(--dark);
    font-family: var(--font2);
    font-weight: 500;
    font-size: 17px;
    text-transform: capitalize;
}

.client-rating>span>i {
    color: var(--bg1);
}

.testi-client {
    overflow-y: scroll;
    height: 100px;
    margin-top: 20px;
}

.testi-client::-webkit-scrollbar {
    width: 2px;
}

.testi-client::-webkit-scrollbar-track {
    background: var(--secondary);
}

.testi-client::-webkit-scrollbar-thumb {
    background-color: var(--light);
    border-radius: 5px;
}

/* .testi-slider.slick-initialized .slick-slide {
    margin: 50px;
} */

.slick-dots>li {
    display: inline-block;
    margin: 7px;
}

.testi-slider .slick-dots {
    text-align: center;
    padding-top: 20px;
}


.testi-slider .slick-dots button {
    width: 12px;
    height: 12px;
    background-color: var(--light);
    border-radius: 10%;
    text-indent: -9999px;
    padding: 0;
    border: none;
}

.slick-dots .slick-active button {
    background-color: var(--light);
}

.slick-dots {
    text-align: center;
    padding-top: 20px;
}

.slick-dots>li {
    display: inline-block;
    margin: 4px;
}

.slick-dots button {
    width: 12px;
    height: 12px;
    background-color: gray;
    border-radius: 50%;
    text-indent: -9999px;
    padding: 0;
    border: none;
}

.slick-dots .slick-active button {
    background-color: var(--bg1);
    height: 22px;
    width: 12px;
}

/*--===========why-choose-us=========---*/
.why-us {
    background-image: url(../image/img/bg/service_bg_1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.why-content {
    font-family: var(--font2), sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.why-img img {
    height: 600px;
    object-fit: cover;
}

.why-element {
    padding-bottom: 40px;
    display: flex;
    width: 50%;
    padding-right: 1rem;
    float: left;
    gap: 10px;
}

.we-box {
    width: 80px;
    height: 80px;
    padding: 10px;
    position: relative;
    z-index: 99;
    border-radius: 4px;
    border: 1px solid var(--bg2);
    background-color: var(--secondary);
    box-shadow: 0px 2px 1px var(--blue);
}

.we-icon {
    height: 60px;
    width: 60px;
    color: var(--light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.we-icon img {
    z-index: 9;
    width: 100%;
}

/* .we-box::after {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    background-color: var(--bg1);
    width: 80px;
    height: 80px;
    z-index: -1;
} */

.we-content p {
    font-family: var(--font2), sans-serif;
    color: var(--dark);
    text-align: justify;
    text-transform: capitalize;
}

/******clients*******/
.our-client {
    position: relative;
}
.client-header{
    padding:2rem 0;
    text-align:center;
    display:flex;
    align-items:center;
}

.our-client::after {
    background-image: url(../image/img/bg/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    animation: move-client 12s linear infinite;
}

@keyframes move-client {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }

    80% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.client-slider {
    background-color: var(--secondary);
}

.client-img {
    padding: 10px;
}

.client-img img {
    object-fit: contain;
    height: 150px;
    width: 100%;
    margin: 10px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: var(--light);
}

.major-client {
    background-color:var(--secondary);
    padding:10px;
}
.major-client img {
    padding:0.2rem;
}
.client-title{
    margin-bottom:0;
}
.client-box {
    height: 120px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 22px;
    border-radius: 3px;
}

.client-heading {
    color: var(--blue);
    font-family: var(--font2), sans-serif;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 900;
    padding-bottom: 10px;
    display: inline-block;
    line-height: 1.5;
    letter-spacing: 1.3px;
    position: relative;
}

/*---------contact-----------*/
.contact-us {
    background-color: var(--blue);
    padding: 60px 0;
    position: relative;
    z-index: 9;
    background-image: url(../image/img/bg/contactbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    opacity: 0.8;
    background-color: var(--blue);
}

.c-social-links {
    background-color: var(--light);
    display: block;
    padding: 10px;
    margin-top: 80px;
    padding-top: 30px;
    padding-bottom: 30px;

    box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10);
}

.c-social-item {
    background-color: var(--secondary);
    padding: 10px;
    font-size: 30px;
    margin: 20px auto;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c-social-item a {
    transition: all 0.3s ease-in-out;
}

.c-social-item:hover.c-social-item a {
    transform: scale(1.1);
}

.contact-form {
    border-radius: 5px;
    z-index: 1;
    border-radius: 5px;
    position: relative;
    padding: 20px 40px;
    box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10);
    padding-bottom: 30px;
    background: #fff;
    background: -webkit-linear-gradient(to right, var(--bg), var(--secondary));
    background: linear-gradient(to right, var(--bg), var(--secondary));
}

.contact-title {
    font-size: 30px;
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-form .input-text {
    display: block;
    outline: none;
    border: none;
    width: 100%;
    padding: 0px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    height: 50px;
    border-radius: 2px;
    margin: 0 0 10px 0;
    font-family: var(--font2);
    box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10);
    transition: all 0.5s linear;
}

.contact-form .input-select {
    color: rgba(34, 37, 36, 0.629);
}

.contact-address {
    font-family: sans-serif;
}

.contact-sec a {
    color: var(--white);
}

.contact-form textarea.input-text {
    height: 170px;
    padding-top: 30px;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.contact-email,
.contact-number {
    margin: 5px 0 15px 0;
    font-weight: 500;
}

.contact-btn {
    color: #fff;
    font-size: 14px;
    display: inline-block;
    margin: 50px o;
}

.c-content-box {
    background: #fff;
    background: -webkit-linear-gradient(to right, #fff, var(--secondary));
    background: linear-gradient(to right, #fff, var(--secondary));
    padding: 10px 40px;
    margin-top: 20px;
    box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10);
}

.c-contact-box {
    display: flex;
    gap: 20px;
}

.c-icon {
    padding: 20px;
    font-size: 20px;
    height: 50px;
    width: 50px;
    background-color: var(--blue);
    text-align: center;
    color: var(--bg1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--light);
    outline: 2px solid var(--blue);
}

.c-social-links .fb a {
    color: #3b5999;
}

.c-social-links .twit a {
    color: var(--dark);
}

.c-social-links .link a {
    color: #0077b5;
}

.c-social-links .insta a {
    color: #e4405f;
}

.c-social-links .pin a {
    color: #bd081c;
}

.contact-header p {
    font-family: var(--font2), sans-serif;
    color: var(--light);
}

/******footer*******/
footer {
    padding: 50px 0 30px 0;
    background-color: var(--bg);
    background-image: url(../image/img/bg/service_bg_1.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 9;
}

footer::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #fff;
    background: -webkit-linear-gradient(to right, var(--light), var(--secondary));
    background: linear-gradient(to right, var(--light), var(--secondary));
}

.footer-element {
    margin-top: 20px;
}

.footer-element p {
    font-family: var(--font2), sans-serif;
    font-weight: 600;
}

.f-logo img {
    background-color: var(--dark);
    width: 140px;
    object-fit: cover;
}

.f-heading {
    color: var(--bg1);
    text-transform: capitalize;
    font-size: 20px;
    border-radius: 2px;
    font-family: var(--font1), sans-serif;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding: 0px 15px;
    background-color: var(--blue);
    border: 5px solid var(--light);
    outline: 2px solid var(--blue);
}

.product-content {
    height: 260px;
    overflow-x: hidden;
    overflow-y: scroll;
}

ul.product-content li {
    width: 95%;
}

.product-content::-webkit-scrollbar {
    width: 7px;
    background-color: var(--bg1);
    box-shadow: 0px 1px solid var(--dark);
}

.product-content::-webkit-scrollbar-thumb {
    color: var(--dark);
    background-color: var(--blue);
    border-radius: 5px;
    cursor: pointer;
}

.f-content {
    margin-top: 20px;
    font-family: var(--font1), sans-serif;
    color: var(--dark);
    line-height: 1.5;
}

.f-content li {
    padding: 4px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--dark);
    margin-bottom: 14px;
    font-weight: 700;
}

.f-content li a {
    color: var(--dark);
    transition: all 0.2s ease-in-out;
   
    font-size: 15px;
    font-weight: 700;
}

.f-content li a:hover {
    color: var(--blue);
}

.f-content>li>a>span {
    margin-right: 10px;
    color: var(--blue);

}

.f-content>li>span {
    margin-right: 15px;
    color: var(--blue);
    font-size: 22px;
}

/*****copyright********/
.footer-bottom {
    background-color: var(--blue);
    padding: 5px 0;
}

.copyright {
    text-align: center;
    font-family: var(--font1);
    text-transform: capitalize;
    color: var(--light);
}

.copyright span {
    font-weight: 700;
    padding: 0 5px;
}

.copyright a {
       color: var(--bg1);
    font-size: 17px;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
    visibility: hidden;
}

.footer-bottom p {
    color: var(--light);
    margin: 0;
}

/********scroll-btn**************/
#scroll-top {
    display: inline-block;
    background-color: var(--blue);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 1px;
    position: fixed;
    bottom: 30px;
    right: 10px;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.6s ease;
}

#scroll-top::after {
    content: "\f077";
    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(--bg);
    color: var(--light);
    transform: translateY(-5px);
}

#scroll-top:active {
    background-color: var(--bg);
    color: #777;
}

#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);
}

#slide.active{
    transform: translateX(0px);
    display: block;
}

.fixed-wtsp a.phone {
    background-color: var(--blue);
    padding: 8px 20px;
    border-radius: 20px 0px 20px 0px;
    color:var(--bg1);
    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;
}
.fixed-wtsp span{
    padding-right: 0.2rem;
}



/***inner-page*****/

/******breadcrump*******/
.breadcrump-sec {
     background: url('../image/img/bg/bg4.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background-color: var(--d);
}
.breadcrump-sec::after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    content: '';
    opacity: 0.8;   
    z-index: -1;

}
.breadcrump{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breadcrump .title-sec::after{
    width: 0;
}
.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;
    text-align: left;
    text-shadow: 0px  1px var(--light);
    display: block;
}

.b-links {
    position: relative;
     display: inline-block;
    background-color: var(--blue);
    padding: 14px 30px;
    color: var(--light);
    font-family: var(--font1);
    font-weight: 800;
    text-transform: capitalize;
}

.b-links a {
    font-size: 18px;
    letter-spacing: 1.1px;
    padding: 0 5px;
    text-transform: capitalize;
    font-weight: 800;
    text-decoration: none;
    color: var(--light);
    margin-bottom: 50px;
}

.b-item.active {
    color: var(--bg1);
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    letter-spacing: 1.2px;
    font-size: 18px;
    font-weight: 900;
    padding-left: 5PX;
}
.b-links span.fa-solid{
    color: var(--light);
}

span.fa-solid {
    color: var(--light);
}

/****marketing-butoon***/
.market-place {
    background-color: var(--bg);
    padding: 40px 0;
    position: relative;
}
a.market-btn {
    display: block;
}
.market-title{
    color: var(--bg1);
}
.marketing-title {
    font-size: 32px;
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 600;
    margin: 20px auto;
    line-height: 1.1;
}

a.market-btn {
    padding: 18px 30px;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light);
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 600;
    line-height: 1.2;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;

}
/********** media-queries ************/
@media (max-width:992px) {
    section {
        padding: 50px 0;
        overflow: hidden;
    }

    .title-sec {
        font-family: var(--font2);
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 15px;
        letter-spacing: 1.3px;
    }

    .sub-title {
        color: var(--dark);
        font-family: var(--font2), sans-serif;
        text-transform: capitalize;
        font-size: 20px;
        line-height: 1.4;
        font-weight: 500;
        margin-bottom: 10px;
        word-spacing: 1.3px;
        letter-spacing: 0.3px;
    }

    .heading-sec {
        font-size: 18px;
        text-transform: uppercase;
        font-family: var(--font1), sans-serif;
        line-height: 1.1;
        font-weight: 500;
    }

    .content-sec {
        font-size: 15px;
        word-spacing: 1.1px;
        line-height: 1.5;
        font-family: var(--font2), sans-serif;
        text-align: left;
    }

    .btn-sec {
        font-size: 15px;
    }

    .header-part {
        justify-content: center;
        display: block;
        text-align: left;
        margin-bottom: 25px;
    }

    header {
        position: absolute;
        top: 0px;
        width: 100%;
        left: 0;
        background-color: var(--light);
        z-index: 999;
    }

    .header-btn {
        display: none;
    }

    /* ---------------- */

    .th-element,.t-header{
        height: 32px;
        justify-content:center!important;
    }
    .th-email,
    .th-number {
        display: none;
    }
    .th-element1 {
        display:none;
    }
    .th-element .th-icon {
        font-size: 16px;
    }

    .th-element a {
        font-size: 14px;
    }
    
    /* ========== */
    .c-logo img{
        width: 200px;
        margin-top:0;
    }
.logo-sec .bg-color{
    width:0;
}
    .nav-menu {
        display: none;
    }

    header {
        position: relative;
        width: 100%;
        z-index: 999;
        overflow: visible;
    }

    .header {
        display: flex;
        justify-content: space-between;
    }

    .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 0;
        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;
        height: 100vh;
        background-color: var(--blue);
    }

    .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;
        box-shadow: rgba(99, 99, 99, 0.8) 0px 1px 1px 0px;
        color: var(--bg1);
        background-color: var(--blue);
        border-bottom: 1px solid var(--bg);
    }

    .nav-menu>li>a:hover {
        color: var(--bg1);
    }

    .click-btn {
        position: absolute;
        right: 0px;
        top: 1px;
        display: inline-block;
        color: var(--light);
        background-color: var(--dark);
        padding: 9px 30px;
        line-height: 30px;
    }

    .drop-content {
        position: absolute;
        top: 100%;
        width: 100%;
        height: 300px;
        display: none;
        background-color: var(--secondary);
        z-index: 999;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        overflow: auto;
        border: none;
    }

    .drop-content li a {
        color: var(--dark);
    }

    .enquiry-sec {
        display: none;
    }

    .nav-menu li::after {
        display: none;
        height: 0;
        color: var(--dark);
    }

    .drop-content li a:hover {
        color: var(--light);
        background-color: var(--dark);
    }

    .nav-menu li a:hover::after {
        width: 0;
        height: 0;
    }

    /******banner******/
    .banner-content {
        position: absolute;
        top: 50px;
        left: 5%;
        color: var(--light);
        width: 92%;
        text-align: left;
        z-index: 99;
        box-sizing: border-box;
        padding-right: 10vw;
    }

    .ban-content1 {
        font-weight: 600;
        line-height: 1.2;
        font-size: 22px;
        margin-bottom: 20px;
        letter-spacing: 1.1px;
    }

    .ban-content2 p{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 15px;
        letter-spacing: 1px;
        word-spacing: 1px;
        line-height: 1.5;
    }

    .ban-btn {
        font-weight: 200;
        padding: 5px 12px;
        font-size: 14px;
        margin-top: 20px;
    }

    .next-btn,
    .back-btn {
        position: absolute;
        top: 50%;
        width: 1rem;
        height: 1rem;
        padding: 0.7rem;
        z-index: 999;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        color: var(--light);
        font-weight: 100;
        font-family: var(--font2);
        font-size: 14px;
        padding: 16px 10px;
    }

    .next-btn {
        right: 0;
        background-size: 1.5rem 1.5rem;
        background-repeat: no-repeat;
    }

    .next-btn:hover,
    .back-btn:hover {
        width: 2rem;
        color: var(--light);
        box-shadow: 0px 0px 2px var(--light);
        opacity: 1;
    }


    .back-btn {
        left: 0;
        background-size: 1.5rem 1.5rem;
        background-repeat: no-repeat;
    }

    .ban-img img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        transition: all 5s ease-in-out;
        transform: scale(1);
        z-index: 199;
    }

    .serv-back.slick-arrow {
        right: 60%;
    }


    /******about-us**********/
    .about-us {
        position: relative;
        z-index: 9;
    }

    .about-number span {
        font-size: 16px;
        font-family: var(--font2), sans-serif;
        font-weight: 700;
    }

    .about-img {
        margin-bottom: 40px;
        width: 100%;
    }

    /*----------========----------- */
    .feature-box {
        margin-bottom: 2rem;
    }

    /* -------------- */
    .why-img img {
        height: auto;
        margin-bottom: 2rem;
    }

    /* -=========- */
    .why-element {
        width: 100%;
    }

    /*------inner-page--------- */
    .breadcrump-sec {
        padding: 50px 0;

    }

    .bread-title {
        color: var(--light) !important;
        font-weight: 600;
        margin-bottom: 30px !important;
        font-size: 20px;
    }

    .b-links {
        width: 100%;
        font-weight: 700;
    }

    .b-links a {
        font-size: 16px;
    }

    .b-item.active {
        color: var(--bg1);
        text-transform: capitalize;
        font-family: var(--font2), sans-serif;
        letter-spacing: 0.2px;
        font-size: 16px;
        font-weight: 700;
        padding-left: 5PX;
        flex-wrap: wrap;
    }

    /*---------service-section------*/
    .service-box {
        margin: 0;
    }

    /*---------testimonial-----------*/

    .testi-slider.slick-initialized .slick-slide {
        display: flex;
        margin: 4px;
    }

    .testi-box {
        display: flex;
        padding: 10px 20px 8px;
        border-radius: 35px 0;
        background-color: var(--light);
        box-sizing: border-box;
        outline: 1px solid var(--light);
        border: 1px solid var(--dark);
    }

    .testi-img {
        margin-bottom: 5px;
    }

    .testi-img img {
        height: 150px;
        object-fit: contain;
    }

    .client-rating>span>i {
        color: var(--bg1);
        font-size: 10px;
    }

    .client-name {
        margin-bottom: 2px;
    }

    .client-subtitle {
        margin: 2px;
    }

    .testi-client {
        overflow-y: scroll;
        max-height: 130px;
        margin-top: 10px;
        font-size: 14px;
    }

    .slick-dots>li {
        display: inline-block;
        margin: 2px;
    }

    .testi-slider .slick-dots button {
        width: 12px;
        height: 12px;
        border-radius: 10%;
        text-indent: -9999px;
        padding: 0;
        border: none;
    }

    .slick-dots {
        text-align: center;
        padding-top: 16px;
    }

    .slick-dots>li {
        display: inline-block;
        margin: 4px;
    }

    .slick-dots button {
        width: 12px;
        height: 12px;
        background-color: gray;
        border-radius: 50%;
        text-indent: -9999px;
        padding: 0;
        border: none;
    }

    /*-------- why-us-------*/
    .why-us {
        padding-top: 0;
    }

    /*------contact-us------- */
    .contact-us {
        padding-bottom: 0;
        background-color: var(--bg);
    }

    .contact-header p {
        font-weight: 200;
    }

    .c-content>.heading-sec {
        font-weight: 700;
    }

    .contact-form {
        margin-top: 40px;
        border-radius: 0px;
        padding: 16px;
    }

    .c-social-links {
        display: flex;
        background-color: #f7f7f7;
        padding: 10px;
        margin-top: 0px;
        padding-top: 5px;
        padding-bottom: 5px;
        box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10);
    }

    .c-social-item {
        background-color: var(--light);
    }

    footer {
        padding: 20px 0 20px 0;
        background-color: rgba(0, 0, 0, 0.15);
    }

    .f-heading {
        padding-bottom: 0;
        font-weight: 800;
    }

    .f-heading:webkit-text .f-content {
        margin-top: 5px;
    }

    .footer-element p {
        font-weight: 800;
        margin-bottom: 5px;
    }

    .f-content li {
        font-weight: 700;
    }

    .footer-element {
        margin-top: 40px;
        padding-right: 0%;
    }
    /* -------- */
        /* ------------- */
    .fixed-wtsp 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;
        }
    }
}