/* font-family: "Rajdhani", serif; */
/* font-family: "Poppins", serif; */
/* font-family: "Roboto", serif; */
/* @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&amp;family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
}
html,
body{
    background-color: #fff;
    overflow-x: hidden;
    font-family: "Roboto", serif;
}
html {
    scroll-behavior: smooth;
}

:root {
    --main-color: #dd682d;
	  --color-two: #00aa58;
    --color-primary-rgb: 33, 205, 173;
    --color-secondary-rgb: 0, 38, 120;
    --thm-common-white: #ffffff;
    --thm-common-black: #000229;
    --thm-common-orange: #FF7A41;
    --thm-common-purple: #FF75F9;
    --thm-common-green: #5FC33B;
    --thm-common-green-2: #21B641;
    --thm-common-yellow: #FFAB0A;
    --thm-common-yellow-2: #FFCE57;
    --thm-common-yellow-3: #F8FF35;
    --thm-common-yellow-4: #FFC530;
    --thm-common-blue: #6865FF;
    --thm-common-blue-2: #1117A0;
    --thm-common-blue-3: #5138EE;
    --thm-common-blue-4: #600EE4;
    --thm-common-red: #FF3C82;
    --thm-heading-primary: #000229;
    --thm-grey-1: #5F6368;
    --thm-grey-2: #9A9DA7;
    --thm-grey-3: #F5F5F5;
    --thm-grey-4: #F2F3F5;
    --thm-grey-5: #888B95;
    --thm-grey-6: #EEEEF5;
    --thm-grey-7: #F6F5FA;
    --thm-grey-8: #F7F9FB;
    --thm-text-body: #5F6368;
    --thm-theme-1: #6865FF;
    --thm-theme-2: #AEE87C;
    --thm-theme-3: #FFA8B8;
    --thm-theme-4: #F1A0AF;
    --thm-border-1: #EDF5FA;
    --thm-border-2: #EBECF0;
}
img{
    max-width: 100%;
}
a {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

button,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none !important;
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    position: relative;
    margin: 0px;
    background: none;
    color: var(--color-four);
    font-weight: 600;
    line-height: 1.31;
    font-family:  "Roboto", serif;
}

textarea {
    overflow: hidden;
}

.text,
p {
    position: relative;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--color-four);
    font-size: 15px;
}

/* Typography */

.h1,
h1 {
    font-size: 36px;
}

.h2,
h2 {
    font-size: 32px;
}

.h3,
h3 {
    font-size: 28px;
}

.h4,
h4 {
    font-size: 24px;
}

.h5,
h5 {
    font-size: 20px;
}

.h6,
h6 {
    font-size: 18px;
}

/* common css */
.section-space{
  padding: 80px 0;
}
.eg-title-tag{
  position: relative;
}
.section-title{
  margin-bottom: 21px;
}

.section-title .sm-title {
color: var(--color-two);
font-size: 15px;
font-weight: 500;
padding: 3px 0px;
margin-bottom: 6px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
display: inline-block;
position: relative;
}
/* .section-title .sm-title-boxed::before{
content: "";
position: absolute;
left: 5px;
top: 0;
width: 32px;
transform: scale(0.75);
height: 32px;
background: url(../img/icon/title.png);
} */
.section-title .title{
  font-size: 35px;
  color: black;
  font-weight: 600;
  line-height: 1.18;
  font-family:  "Roboto", serif;
}
.section-title .title span{
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-style: italic;
}
.section-title.text-center .title{
  text-align: center;
  max-width: 650px;
  margin: auto;
}


.scrolltop{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--main-color);
    cursor: pointer;
    position: fixed;
    z-index: 99;
    bottom: 60px;
    right: -15px;
    line-height: 1;
    opacity: 0;
    transform: rotate(-90deg);
    transition: all 250ms linear;
}
.scrolltop.active{
    opacity: 1;
}
.list-style-none{
    list-style: none;
}
.text-clamp1 {
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.text-clamp2 {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.text-clamp3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.text-clamp4 {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical !important;
    display: block !important;
    display: -webkit-box !important;
    overflow: hidden !important;
}

.thm-btn {
  display: inline-block;
  color: white;
  height: 52px;
  line-height: 52px;
  padding: 0 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  transition: 0.5s;
  background: linear-gradient(180deg, #B1FF36 -23%, #1D863C 100%);
  box-shadow: 0px 2px 3px rgba(3, 22, 3, 0.2);
  border-radius: 10px;
}
.thm-btn:hover {
  box-shadow: 0px 8px 24px 0px rgba(25, 118, 41, 0.3);
  transform: translateY(-2px);
  color: white;
}

.socaial-icons{
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
}
.socaial-icons li{
    display: inline-block;
    margin-right: 22px;
}
.socaial-icons li a{
    color: var(--main-color);
    transition: all 250ms ease;
    text-decoration: none;
    font-size: 22px;
}
.conts-head .socaial-icons li a{
  font-size: 17px;
}
.socaial-icons li:nth-child(1) a {
  color: #16599b;
}

.socaial-icons li:nth-child(2) a {
  color: red;
}

.socaial-icons li:nth-child(3) a {
  color: #ea4c89;
}

.socaial-icons li:nth-child(4) a {
  color: black;
}
.socaial-icons li:nth-child(5) a {
  color: red;
}
.socaial-icons li:nth-child(6) a {
  color: black;
}

.socaial-icons li:nth-child(7) a {
  color: green;
}
.socaial-icons-sidebar{
    margin-top: 25px;
    position: absolute;
    left: 22px;
    bottom: 21px;
    width: 100%;
}

.fas fa-shopping-cart  {
	background-color:#FFF;}	
#myBtn {
	height:50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align:center;
  padding:10px;
  text-align:center;
	line-height:40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}
.fa-arrow-circle-up  {
	font-size:30px;}

#myBtn:hover {
  background-color: #555;
}			


@media (max-width: 768px) {
  .sticky-icon{
    display: none;
  }
}

/* nav bar css */
.navbar{
  /* border-top: 1px solid gray; */
  /*border-bottom: 1px solid gray;*/
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 0;
  padding-top: 10px;
}
.navbar.sticky-nav{
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 30 !important;
    background: #f0f3f3;
    width: 100%;
    padding: 0px;
    animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-90px);
	}
	100% {
		transform: translateY(0px);
	}
}
.navbar-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
    width: 100%;
}
.navbar-box .logo {
    max-width: 200px;
    min-width: 150px;
    position: relative;
}

.navbar-box .logo a{
    position: relative;
    z-index: 2;
}
.navbar-box .logo img{
    max-height: 80px;
}
.navbar-box .hamburger{
    font-size: 28px;
    color: black;
    cursor: pointer;
    display: none;
}
.navbar-box .nav-links{
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0px;
}
.navbar-box .nav-links li{
  padding: 15px 30px 15px 15px;
  position: relative;
  color: black;
  display: flex;
  align-items: center;
  gap: 5px;
}
.navbar-box .nav-links .dwn-arrow{
  position: absolute;
  right: 5px;
}
.navbar.sticky-nav .navbar-box .nav-links li{
  padding: 15px 30px 15px 15px;
  position: relative;
  color: black;
}
.navbar-box .nav-links li a{
  font-size: 13px;
  font-weight: 500;
  color: black;
  text-transform: uppercase;
}
.navbar-box .nav-links > li > ul > li > ul,
.navbar-box .nav-links > li > ul{
  list-style: none;
  position: absolute;
  top: 100%;
  z-index: 4;
  border-radius: 0px;
  overflow: visible;
  left: 0;
  padding-left: 0;
  width: 280px;
  border: 1px solid rgb(246, 243, 243);
  transition: all 260ms ease;
  transform: scaleY(0);
  transform-origin: top;
  background: white;
}

.navbar-box .has-sub-menu .has-sub-menu:hover > ul,
.navbar-box .has-sub-menu:hover > ul{
    transform: scaleY(1);
}
.navbar-box .has-sub-menu .has-sub-menu ul{
    left: 280px;
    top: 0;
}
.navbar.sticky-nav .navbar-box .nav-links li ul li,
.navbar-box .nav-links li ul li{
    padding: 0;
}
.navbar-box .nav-links li ul li a{
    padding: 10px 25px;
    display: block;
    position: relative;
    color: black;
    width: 100%;
}
.navbar-box .nav-links li ul li:not(:last-child) a {
    border-bottom: 1px solid #DED8D3;
}
.navbar-box .nav-links li a::before,
.navbar-box .nav-links li ul li a::before{
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--color-two);
    z-index: -1;
    transition: all 250ms ease;
}
.navbar-box .nav-links li:hover > .dwn-arrow,
.navbar-box .nav-links li:hover > a{
    color: var(--color-two);
}
/*.sticky-nav .navbar-box .nav-links li:hover > .dwn-arrow,*/
/*.sticky-nav .navbar-box .nav-links li:hover > a{*/
/*    color: white;*/
/*}*/
.sticky-nav .navbar-box .nav-links .sub-menu li:hover > .dwn-arrow,
.sticky-nav .navbar-box .nav-links .sub-menu li:hover > a{
    color: var(--color-two);
}
.navbar-box .nav-links li a:hover::before,
.navbar-box .nav-links li ul li a:hover::before{
    width: 100%;
    right: unset;
    left: 0;
}
.logo-search .logo img{
  max-height: 65px;
}
.logo-search{
  display: flex;
  align-items: center;
  padding: 4px 12px;
  justify-content: space-between;
}
.serch-box {
  position: relative;
  width: fit-content;
}
.serch-box button{
  position: absolute;
  right: 17px;
  background: transparent;
  top: 8px;
  border: none;
  z-index: 2;
  color: gray;
  outline: none;
}
.serch-box button:focus{
  outline: none;
  border: none;
}
.serch-box input{
  background: #f2f2f2;
  font-size: 14px;
  padding: 10px 35px 10px 16px;
  height: fit-content;
  border-radius: 28px;
  min-width: 300px;
  width: fit-content;
  outline: none;
  line-height: 1;
  border: 1px solid rgb(213, 210, 210) !important;
}
.serch-box2{
  margin: 12px auto;
}
.serch-box2 input{
  padding: 16px 15px;
}
.serch-box2 button{
  color: black;
  right: 24px;
  background: transparent;
  top: 15px;

}
.search_box {
    position: absolute;
    z-index: 100;
    background: white;
    max-height: 400px;
    overflow-y: auto;
}
.search_box a h6,
.search_box a{
    transition: all 250ms linear;
    font-size: 16px;
    color: black;
}
.search_box a h6:hover,
.search_box a:hover{
    color: var(--color-two) ;
}
/* mobile menu */
.cstm-mobile-menu{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    height: 100Vh;
    background: rgba(0, 0, 0, 0.663);
    z-index: 500;
    transition: all 190ms ease-in-out;
    transform: translateX(-101%);
}
.cstm-mobile-menu.active{
    transform: translateX(0);
}
.cstm-mobile-menu .cstm-mobile-overlay{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: url(../image/img/icon/cross-out.png), pointer;
    z-index: 2;
}
.cstm-menu-wrapper{
    width: 400px;
    max-width: 92%;
    background: white;
    height: 100%;
    position: relative;
    padding: 25px;
    z-index: 4;
}
.close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--main-color);
    font-size: 20px;
    z-index: 4;
    cursor: pointer;
}
.cstm-mobile-menu-nav {
    margin-top: 28px;
    display: none;
}
.desktop-sidebar{
    margin-top: 28px;
    display: flex;
}
.cstm-mobile-menu-nav ul li{
    position: relative;
    padding: 6px;
    border-bottom: 1px dotted gray;
}
.cstm-mobile-menu-nav ul li:last-child{
    border-bottom: none;
}
.cstm-mobile-menu-nav ul{
    list-style: none;
    padding-left: 6px;
}
.cstm-mobile-menu-nav ul li .dwn-arrow{
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 5px;
    padding: 5px;
    background: white;
    color: black;
    line-height: 1;
}
.cstm-mobile-menu-nav ul li a{
    color: var(--main-color);
    font-size: 16px;
    padding: 4px;
    display: inline-block;
    font-weight: 600;
}
.cstm-mobile-menu-nav ul.sub-menu {
    padding-left: 8px;
    transition: max-height 300ms ease-in-out, opacity 200ms ease-in-out;
    max-height: 0;
    opacity: 0;
}
.cstm-mobile-menu-nav ul.sub-menu.active {
    max-height: fit-content;
    opacity: 1;
    overflow-y: auto;
}
.cstm-mobile-menu .logo img{
    max-height: 80px;
}
.conts-head{
  background: var(--color-two);
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}
.header-btn{
  display: flex;
  gap: 5px;
  align-items: center;
}
.header-btn:not(:first-child){
  margin-left: 21px;
}
.header-btn span{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgb(202, 202, 202);
}
.header-btn,
.header-btn a{
  font-size: 16px;
  font-weight: 400;
  color: white;
}
.header-btn img{
  max-height: 15px;
  width: auto;
}
@media (max-width: 1200px) {
    .navbar-box .nav-links{
        padding-left: 0px;
    }
}
/*.navbar-box .logo a{*/
/*  display: none;*/
/*}*/
@media (max-width: 1000px) {
    .desktop-sidebar,
    .nav-menu-header .nav-links{
        display: none;
    }
    .navbar-box .logo{
        min-width: 85px;
    }
    .cstm-mobile-menu-nav{
        display: block;
    }
    .navbar-box .hamburger,
    .navbar-box .logo a,
    .header-btn{
        display: flex;
    }
    .navbar-box .logo img{
        max-height: 50px;
    }
 
    .serch-box input{
      min-width: 300px;
    }
}
@media (max-width: 767px) {
    .serch-box input{
      min-width: 190px;
      margin-right: 8px;
      padding: 7px 35px 7px 16px;
    }
    .serch-box button{
      top: 4px;
    }
    .cstm-mobile-menu .logo img {
        max-height: 55px;
    }   
    .navbar-box{
      justify-content: space-between;
    } 
    .logo-search .logo{
      display: none;
    }
}

/* hero  banner start */
.hero-area{
  padding: 170px 0 70px 0;
}
.hero-area .content-box{
  position: relative;
  z-index: 5;
}
.hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  width: 100%;
}
.hero-left-shape{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.hero-title-box .hero-title{
  font-size: 85px;
  font-weight: 800;
  color: black;
  line-height: 1;
}
.hero-title-box .hero-title span{
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-style: italic;
}

.hero-title-box p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.01em;
  color: #595B62;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .hero-title-box p {
    font-size: 15px;
    line-height: 22px;
  }
  .hero-title-box .hero-title {
    font-size: 36px;
  }
  .hero-title-box p br {
    display: none;
  }
}
.hero-3-shape-5 {
  position: absolute;
  top: 12%;
  left: 22%;
  z-index: 33;
}
.hero-3-shape-5 img {
  transform-origin: bottom right;
  animation: jumpTwo 5s infinite linear;
}
@-webkit-keyframes jumpTwo {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	40% {
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}


.hero-3-border-wrap .redius-shape-1 {
  height: 500px;
  width: 500px;
  background-color: var(--color-two);
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 132px;
  left: 25px;
  will-change: border-radius, transform, opacity;
  animation: sliderShape 8s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-3-border-wrap .redius-shape-1 {
    top: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-3-border-wrap .redius-shape-1 {
    height: 300px;
    width: 330px;
    top: 100px;
  }
}

.hero-3-border-wrap .redius-shape-1 {
  height: 500px;
  width: 500px;
  background-color: rgb(244, 242, 242);
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 132px;
  left: 25px;
  will-change: border-radius, transform, opacity;
  animation: sliderShape 8s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-3-border-wrap .redius-shape-1 {
    top: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-3-border-wrap .redius-shape-1 {
    height: 300px;
    width: 330px;
    top: 100px;
  }
}
.hero-3-border-wrap .redius-shape-2 {
  top: 62%;
  left: 38%;
  height: 200px;
  width: 200px;
  background-color: #65CB7B;
  position: absolute;
  border-radius: 36% 64% 43% 57%/34% 45% 55% 66%;
  display: inline-block;
  will-change: border-radius, transform, opacity;
  animation: sliderShape 15s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-3-border-wrap .redius-shape-2 {
    top: 48%;
  }
}
.hero-3-border-wrap .redius-shape-3 {
  top: 2%;
  right: 8%;
  height: 375px;
  width: 375px;
  background-color: #807DFB;
  position: absolute;
  border-radius: 50%;
  display: inline-block;
  will-change: border-radius, transform, opacity;
  animation: sliderShape 7s linear infinite;
}

@keyframes sliderShape {
  0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  34% {
    border-radius: 36% 64% 41% 59% / 54% 41% 59% 46%;
    transform: translate3d(1px, 5px, 2px) rotateZ(0.01deg);
  }

  50% {
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    transform: translate3d(-1px, -3px, -2px) rotateZ(0.01deg);
  }
}


.hero-3-main-thumb{
  position: relative;
  display: flex;
  justify-content: center;
}
.z-index-5{
  z-index: 5;
}
.hero-3-shape-6 {
  position: absolute;
  top: 21%;
  right: -2%;
  z-index: 3;
}
.hero-3-shape-6 span svg path {
  stroke: var(--common-black);
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: section_stroke 2s linear forwards;
  -webkit-animation: section_stroke 2s linear forwards;
}

/* counter start */
.counter-area{
  position: relative;
  z-index: 4;
}
.counter-wrapper {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0px 20px 80px rgba(7, 13, 32, 0.08);
  backdrop-filter: blur(5px);
  border-radius: 100px;
  border: 1px solid white;
}
@media (max-width: 767px) {
  .counter-space {
    padding-bottom: 100px;
  }
}
.counter-item p {
  margin-bottom: 0;
  font-family: var(--ff-urban);
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .counter-item p {
    font-size: 16px;
  }
}
.counter-item p.h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  font-style: normal;
  margin-bottom: 0;
  font-family: var(--ff-dm);
}
.counter-item p.h3 span {
  font-family: var(--ff-dm);
  font-style: italic;
  font-weight: 600;
  font-size: 60px;
  line-height: 50px;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .counter-item p.h3 span {
    font-size: 45px;
  }
}
.counter-item h4 em {
  font-weight: 400;
  font-size: 60px;
  line-height: 50px;
  font-style: italic;
  font-family: var(--ff-dm);
}
.counter-shape-1 {
  position: absolute;
  top: 17%;
  left: 16.5%;
  z-index: -1;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .counter-shape-1 {
    left: 9.5%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .counter-shape-1 {
    left: 9.5%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-shape-1 {
    left: 2.5%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-shape-1 {
    left: -0.5%;
  }
}
.counter-shape-2 {
  position: absolute;
  bottom: 37%;
  right: 36%;
  z-index: -1;
  animation: rotate2 10s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-shape-2 {
    top: -5%;
    left: 22%;
  }
}
.counter-shape-3 {
  position: absolute;
  top: -19%;
  right: 21%;
  z-index: -1;
}
.counter-shape-4 {
  position: absolute;
  top: 27%;
  left: 18.5%;
  z-index: -1;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .counter-shape-4 {
    right: 12.5%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .counter-shape-4 {
    right: 11.5%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-shape-4 {
    right: 9.5%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-shape-4 {
    top: -12%;
    right: 0.5%;
  }
}

.counter-wrap {
  border-right: 1px solid #EDEFF5;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .counter-wrap {
    margin-bottom: 20px;
    border-right: none;
  }
}

.counter-wrapper .row [class*=col-]:last-child .counter-wrap {
  border-right: 0;
}
@keyframes rotate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate3 {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

/* Services Start */
.service-3-title-sm a,
.service-3-title-sm {
  font-weight: 700;
  font-size: 34px;
  line-height: 38px;
  color: white;
  padding-bottom: 25px;
}
.service-3-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .service-3-title-sm a,
  .service-3-title-sm{
    font-size: 18px;
    line-height: 21px;
  }
  .service-3-title-sm br{
    display: none;
  }
}
.service-3-item {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px;
  border-radius: 30px;
  overflow: hidden;
}
.service-3-content span {
  font-weight: 600;
  font-size: 13px;
  line-height: 12px;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--common-white);
  font-family: var(--ff-urban);
  padding-bottom: 10px;
  display: inline-block;
}
.service-3-icon {
  margin-bottom: 55px;
}

.service-sm-item {
  border: 1px solid #E9EBF1;
  border-radius: 20px;
  padding: 45px;
  min-height: 425px;
  overflow: hidden;
  transition: 0.3s;
  margin-bottom: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(rgba(249, 249, 249, 0.653), rgba(247, 244, 244, 0.867)) , url(../image/img/bg/srv-bg.jpg);
}
.service-sm-item:hover {
  box-shadow: 0px 8px 16px -2px rgba(32, 33, 36, 0.06), 0px 16px 32px -2px rgba(32, 33, 36, 0.1);
  background: linear-gradient(rgba(0, 0, 0, 0.653), rgba(0, 0, 0, 0.867)) , url(../image/img/bg/srv-bg.jpg);
}
.service-sm-item:hover .service-sm-link {
  opacity: 1;
  visibility: visible;
}
.service-sm-item:hover .service-sm-content {
  margin-bottom: 0px;
}
.service-sm-icon svg {
  transition: 0.3s;
  color: black;
}
.service-sm-item:hover .service-sm-icon svg {
  color: var(--color-two);
  width: 45px;
}
.service-sm-icon img{
  transition: 0.3s;
  width: 125px;
}
.service-sm-item:hover .service-sm-icon img{
  width: 105px;
}
.service-sm-content {
  margin-bottom: -47px;
  transition: 0.3s;
}
.service-sm-content span {
  font-weight: 700;
  font-size: 11px;
  line-height: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid var(--color-two);
  border-radius: 100px;
  height: 26px;
  line-height: 24px;
  display: inline-block;
  padding: 0px 15px;
  margin-bottom: 13px;
  color: black;
}
.service-sm-item:hover .serv-desc,
.service-sm-item:hover .serv-desc p,
.service-sm-item:hover .service-sm-title,
.service-sm-item:hover .service-sm-title a,
.service-sm-item:hover  .service-sm-content span{
  color: white;
}
.service-sm-title {
  font-family: var(--ff-urban);
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: black;
  margin-bottom: 0;
  padding-bottom: 20px;
  transition: 0.3s;
}

.service-sm-title a{
  color: black;
}
.service-sm-title a:hover {
  color: var(--theme-1);
}
.serv-desc{
  margin-bottom: 21px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-sm-title {
    font-size: 22px;
    line-height: 28px;
  }
  .service-sm-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-sm-title {
    font-size: 18px;
    line-height: 23px;
  }
  .service-sm-title br {
    display: none;
  }
}
.service-sm-link {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.service-sm-link a {
  font-weight: 600;
  font-size: 16px;
  line-height: 14px;
  color: var(--main-color);
  transition: 0.3s;
}
.service-sm-link a i {
  margin-left: 4px;
  transition: 0.3s;
  position: relative;
  top: 0;
}
.service-sm-link a:hover {
  color: var(--color-two);
}
.service-sm-link a:hover i {
  animation: tfLeftToRight 0.4s forwards;
}
.service-sm-link a span::before {
  content: "";
  height: 1px;
  width: 20px;
  background-color: var(--common-black);
  display: inline-block;
}

/* plans start */


/*industry*/
.industrysection{
    background: #d3d4d4;
}
.indstry-content{
    padding: 21px;
    background: white;
}
.indstry-sm-title a,
.indstry-sm-title {
    font-family: var(--ff-urban);
    font-weight: 700;
    font-size: 19px;
    line-height: 30px;
    color: black;
    margin-bottom: 0;
    padding-bottom: 2px;
    transition: 0.3s;
}

.plan-section-box p {
  padding-right: 10px;
}
@media (max-width: 767px) {
  .plan-section-box p {
    padding-right: 0;
  }
  .plan-section-box p br {
    display: none;
  }
}
.plan-img-box {
  margin-right: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .plan-img-box {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .plan-img-box {
    margin-right: 0px;
  }
}
.plan-img-1 img {
  border-radius: 30px;
  width: 100%;
}
.plan-img-2 {
  position: absolute;
  top: 18%;
  left: 18%;
  z-index: 1;
}
.plan-img-3 {
  position: absolute;
  top: 11%;
  right: 12%;
  animation: tptranslateX2 4s forwards infinite alternate;
}

@keyframes tptranslateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .plan-img-3 {
    top: 9%;
    right: 7%;
  }
}
.plan-img-4 {
  position: absolute;
  bottom: 12%;
  right: 13%;
  z-index: 2;
  animation: tptranslateY2 4s forwards infinite alternate;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .plan-img-4 {
    bottom: 3%;
    right: 5%;
  }
}
.plan-img-5 {
  position: absolute;
  bottom: 33%;
  left: 15%;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .plan-img-5 {
    left: 12%;
    bottom: 27%;
  }
}
.plan-img-5 img {
  box-shadow: 0px 20px 50px rgba(32, 33, 36, 0.14);
  border-radius: 10px;
  animation: tptranslateX2 4s forwards infinite alternate;
}
.plan-img-6 {
  position: absolute;
  bottom: 25%;
  left: 20%;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .plan-img-6 {
    bottom: 20%;
  }
}
.plan-img-6 img {
  box-shadow: 0px -30px 50px rgba(29, 12, 7, 0.1);
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .plan-wrapper {
    margin-bottom: 100px;
  }
}
.plan-section-box .title{
  font-size: 55px;
}
@media (max-width: 767px) {
  .plan-wrapper {
    margin-bottom: 50px;
  }
  .plan-section-box .title{
    font-size: 35px;
  }
}
.plan-feature ul li {
  list-style-type: none;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
  font-weight: 400;
  font-size: 17px;
  color: #595B62;
}
.plan-feature ul li i {
  height: 22px;
  width: 22px;
  background-color: rgba(20, 17, 37, 0.08);
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 10px;
  color: var(--common-black);
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .plan-section-box {
    margin-bottom: 40px;
  }
}
@keyframes tpupdown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}


/* contact start */
.contact-overlay {
  position: relative;
}
.container-bg {
  background: #f2f5f3;
  padding: 3.4%;
  border-radius: 21px;
  /* position: absolute; */
  /* background: linear-gradient(359.33deg, rgba(67, 68, 69, 0.9) 0.59%, rgba(13, 92, 225, 0) 99.43%); */
  /* background: linear-gradient(rgba(0, 0, 0, 0.458), rgba(0, 0, 0, 0.458)), url(../image/img/bg/conta-bg.jpg); */
  /* background-position: center;
  background-repeat: no-repeat;
  transform: matrix(1, 0, 0, -1, 0, 0);
  top: -6%;
  left: -3%;
  width: 106%;
  height: 112%;
  content: "";
  z-index: -1; */
}
.contact-overlay .container{
  position: relative;
  z-index: 4;
}
.contact-glob-img {
  position: absolute;
  top: -11%;
  left: 5%;
  animation: animationglob 30s cubic-bezier(1, 0.99, 0.03, 0.01) infinite;
}
.contact-info-box ul li {
  position: relative;
  padding-left: 0px;
  margin-bottom: 15px;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.contact-info-box ul li:first-child a {
  font-weight: 600;
  font-size: 22px;
  line-height: 16px;
  letter-spacing: -0.06em;
  color: black;
}

.contact-info-box ul li:nth-child(2) svg {
  top: 4px;
}
.contact-info-box ul li:nth-child(3) svg {
  top: 4px;
}
.contact-info-box ul li a {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: rgba(72, 72, 72, 0.8);
      max-width: calc(100% - 46px);
}
.contact-info-box ul li:nth-child(2) a{
  font-size: 22px;
  color: black;
}
.contact-info-box ul{
  padding-left: 4px;
}
.contact-info-box ul li i{
  margin-right: 10px;
  background: rgba(128, 128, 128, 0.329);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-box ul li svg {
  position: absolute;
  top: 0;
  fill: black;
  left: 0;
}
.contact-input-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0px -1px 1px rgba(7, 7, 7, 0.529), 0px 1px 1px rgba(23, 23, 24, 0.408);
  backdrop-filter: blur(6px);
  border-radius: 30px;
  padding: 60px 50px;
}
@media (max-width: 767px) {
  .contact-input-wrapper {
    padding: 30px 20px;
  }
}
.contact-input select,
.contact-input input {
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0px 1px 1px rgba(4, 4, 4, 0.516);
  border-radius: 14px;
  padding: 20px 30px;
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
  color: gray;
  width: 100%;
}
.contact-input select::-webkit-input-placeholder,
.contact-input input::-webkit-input-placeholder {
  color: rgba(72, 71, 71, 0.774);
}
.contact-input select:-moz-placeholder,
.contact-input input:-moz-placeholder {
  color: rgba(72, 71, 71, 0.774);
}
.contact-input select::-moz-placeholder,
.contact-input input::-moz-placeholder {
  color: rgba(72, 71, 71, 0.774);
}
.contact-input select:-ms-input-placeholder,
.contact-input input:-ms-input-placeholder {
  color: rgba(72, 71, 71, 0.774);
}
.contact-input select:focus,
.contact-input input:focus {
  border-color: gray;
}
.contact-input textarea {
  margin-top: 20px;
  width: 100%;
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0px 1px 1px rgba(4, 4, 4, 0.516);
  border-radius: 14px;
  padding: 20px 30px;
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
  color: gray;
  width: 100%;
  resize: none;
  height: 160px;
}
.contact-input textarea:focus {
  border-color: gray;
}
.contact-input textarea::-webkit-input-placeholder {
  color: gray;
}
.contact-input textarea:-moz-placeholder {
  color: gray;
}
.contact-input textarea::-moz-placeholder {
  color: gray;
}
.contact-input textarea:-ms-input-placeholder {
  color: gray;
}

.contact-info-title-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #848587;
}

.contact-shape {
  position: absolute;
  bottom: -1%;
  right: -8%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-info-box {
    margin-bottom: 50px;
  }
}

.contact-inner-title-sm-wrap p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #5F6168;
}
.contact-inner-title-sm {
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
  color: var(--common-black);
}
.contact-inner-wrapper {
  background: #F7F7F7;
  border-radius: 100px;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .contact-inner-wrapper {
    border-radius: 30px;
    padding-left: 0;
  }
}
.contact-inner-wrapper .row [class*=col-]:last-child .contact-inner-item {
  border-right: 0;
}
.contact-inner-item {
  padding: 45px 50px;
  border-right: 2px solid var(--common-white);
  height: 100%;
}
@media (max-width: 767px) {
  .contact-inner-item {
    flex-wrap: wrap;
    padding: 30px 20px;
  }
}
.contact-inner-img {
  margin-right: 20px;
  flex: 0 0 auto;
}
.contact-inner-img img {
  filter: drop-shadow(-10px 20px 20px rgba(13, 70, 85, 0.3));
}
.contact-inner-img.contact-img-2 img {
  filter: drop-shadow(10px 20px 20px rgba(100, 62, 11, 0.2));
}
.contact-inner-img.contact-img-3 img {
  filter: drop-shadow(-10px 20px 20px rgba(77, 10, 74, 0.25));
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-inner-img {
    margin-right: 10px;
  }
}
.contact-inner-link a {
  font-weight: 400;
  font-size: 20px;
  line-height: 16px;
  color: #5F6168;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .contact-inner-link a {
    font-size: 16px;
  }
}

.contact-form-section-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #5F6168;
}
@media (max-width: 767px) {
  .contact-form-section-box p br {
    display: none;
  }
}
.contact-form-social-item {
  padding-bottom: 40px;
  border-bottom: 1px solid #E5E5E5;
}
.contact-form-social-item a {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  border: 1px solid var(--color-two);
  display: inline-block;
  font-size: 14px;
  transition: 0.3s;
  margin-right: 6px;
}
.contact-form-social-item a:hover i{
  color: white;
}
.contact-form-social-item a:hover {
  background-color: black;
  border-color: var(--main-color);
  color: white;
}
.contact-form-social-item a i{
  color: black;
}
.contact-form-section-img {
  position: absolute;
  top: -35px;
  right: 50px;
}
@media (max-width: 767px) {
  .contact-form-section-img {
    right: 0;
  }
}
.contact-form-right-warp {
  padding: 0px 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-form-right-warp {
    padding: 0px 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-right-warp {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .contact-form-right-warp {
    padding: 0;
  }
}
.contact-form-right-warp .postbox__btn-box .submit-btn {
  border-radius: 12px;
}
.contact-form-left {
  padding-left: 50px;
  padding-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-left {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-left {
    padding-left: 0;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .contact-form-left {
    padding: 0;
    margin-bottom: 80px;
  }
}

.contact-info-item {
  border: 1px solid #b7b4b4;
  border-radius: 12px;
  text-align: center;
  padding: 55px 30px;
  overflow: hidden;
}
.contact-info-img {
  margin-bottom: 35px;
  display: inline-block;
}
.contact-info-title-sm {
  font-weight: 600;
  font-size: 20px;
  line-height: 16px;
  color: var(--common-black);
  padding-bottom: 6px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-info-title-box p br {
    display: none;
  }
}
.contact-info-badge {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}
.contact-info-badge span {
  background: rgba(107, 20, 250, 0.06);
  border-radius: 0px 0px 24px 24px;
  transform: matrix(1, 0, 0, -1, 0, 0);
  padding: 8px 30px;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--common-blue-4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-info-badge span {
    padding: 8px 25px;
  }
}
@media (max-width: 767px) {
  .contact-info-badge span {
    padding: 8px 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-section-box .section-title br {
    display: none;
  }
}

/* payment sect */


.payment-method__space {
  padding-bottom: 250px;
}
@media (max-width: 767px) {
  .payment-method__space {
    padding-bottom: 100px;
  }
}
.payment-method__main-img {
  display: inline-block;
}
.payment-method__main-img img {
  border-radius: 50%;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__title-box {
    padding-bottom: 30px;
  }
}
.payment-method__circle::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--color-two);
  border-radius: 50%;
  top: -3px;
  right: 0;
}
.payment-method__circle.circle-1::after {
  animation: circle-animation 30s linear infinite;
}
.payment-method__circle.circle-2::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.payment-method__circle.circle-3::after {
  animation: circle-animation 30s linear infinite;
}
.payment-method__circle.circle-4::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.payment-method__circle.circle-5::after {
  animation: circle-animation 30s linear infinite;
}
.payment-method__circle.circle-6::after {
  animation: circle-animation 30s linear infinite;
}
.payment-method__circle.circle-7::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.payment-method__circle.circle-8::after {
  animation: circle-animation 30s linear infinite;
}
.payment-method__circle.circle-9::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.payment-method__circle.circle-10::after {
  animation: circle-animation 30s linear infinite;
}
.payment-method__circle.circle-11::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.payment-method__circle.circle-12::after {
  animation: circle-animation 30s linear infinite;
}
.payment-method__circle.circle-13::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.payment-method__circle.circle-14::after {
  animation: circle-animation 30s linear infinite;
}
.payment-method__circle.circle-15::after {
  left: 0;
  animation: circle-animation-2 20s linear infinite;
}
.payment-method__circle.circle-16::after {
  animation: circle-animation 30s linear infinite;
}
.payment-method__main-circle {
  display: inline-block;
}
.payment-method__line-1 {
  position: absolute;
  left: -150%;
  top: 50%;
  transform: translate(-50%) rotate(-14deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 610px;
  background-color: var(--color-two);
}
.payment-method__line-1 span {
  transform: translateY(-50%) rotate(14deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .payment-method__line-1 {
    width: 510px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .payment-method__line-1 {
    width: 380px;
    left: -68%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-1 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(-18deg);
  }
  .payment-method__line-1 span {
    transform: translateY(-50%) rotate(18deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-1 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-2 {
  position: absolute;
  left: -9%;
  top: 50%;
  transform: translate(-50%) rotate(-44deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 190px;
  background-color: var(--color-two);
}
.payment-method__line-2 span {
  transform: translateY(-50%) rotate(44deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-2 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(-72deg);
  }
  .payment-method__line-2 span {
    transform: translateY(-50%) rotate(72deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-2 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-3 {
  position: absolute;
  left: -74%;
  top: 50%;
  transform: translate(-50%) rotate(-24deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 380px;
  background-color: var(--color-two);
}
.payment-method__line-3 span {
  transform: translateY(-50%) rotate(24deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-3 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(-51deg);
  }
  .payment-method__line-3 span {
    transform: translateY(-50%) rotate(51deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-3 {
    width: 140px;
    left: 6%;
    transform: translate(-50%) rotate(-43deg);
  }
  .payment-method__line-3 span {
    transform: translateY(-50%) rotate(43deg);
  }
}
.payment-method__line-4 {
  position: absolute;
  left: -90%;
  top: 50%;
  transform: translate(-50%) rotate(-2deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 430px;
  background-color: var(--color-two);
}
.payment-method__line-4 span {
  transform: translateY(-50%) rotate(2deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-4 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(-9deg);
  }
  .payment-method__line-4 span {
    transform: translateY(-50%) rotate(9deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-4 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-5 {
  position: absolute;
  left: -137%;
  top: 50%;
  transform: translate(-50%) rotate(10deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 570px;
  background-color: var(--color-two);
}
.payment-method__line-5 span {
  transform: translateY(-50%) rotate(-10deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .payment-method__line-5 {
    width: 380px;
    left: -68%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-5 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(14deg);
  }
  .payment-method__line-5 span {
    transform: translateY(-50%) rotate(-14deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-5 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-6 {
  position: absolute;
  left: -63%;
  top: 50%;
  transform: translate(-50%) rotate(26deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 350px;
  background-color: var(--color-two);
}
.payment-method__line-6 span {
  transform: translateY(-50%) rotate(-26deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-6 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(41deg);
  }
  .payment-method__line-6 span {
    transform: translateY(-50%) rotate(-41deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-6 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-7 {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translate(-50%) rotate(51deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 140px;
  background-color: var(--color-two);
}
.payment-method__line-7 span {
  transform: translateY(-50%) rotate(-51deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-7 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(63deg);
  }
  .payment-method__line-7 span {
    transform: translateY(-50%) rotate(-63deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-7 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-8 {
  position: absolute;
  left: 1%;
  top: 50%;
  transform: translate(-50%) rotate(130deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 160px;
  background-color: var(--color-two);
}
.payment-method__line-8 span {
  transform: translateY(-50%) rotate(-130deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-8 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(90deg);
  }
  .payment-method__line-8 span {
    transform: translateY(-50%) rotate(-90deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-8 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-9 {
  position: absolute;
  left: -73%;
  top: 50%;
  transform: translate(-50%) rotate(150deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 380px;
  background-color: var(--color-two);
}
.payment-method__line-9 span {
  transform: translateY(-50%) rotate(-150deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-9 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(116deg);
  }
  .payment-method__line-9 span {
    transform: translateY(-50%) rotate(-116deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-9 {
    width: 140px;
    left: 6%;
    transform: translate(-50%) rotate(99deg);
  }
  .payment-method__line-9 span {
    transform: translateY(-50%) rotate(-99deg);
  }
}
.payment-method__line-10 {
  position: absolute;
  left: -146%;
  top: 50%;
  transform: translate(-50%) rotate(160deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 600px;
  background-color: var(--color-two);
}
.payment-method__line-10 span {
  transform: translateY(-50%) rotate(-160deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .payment-method__line-10 {
    width: 380px;
    left: -68%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-10 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(142deg);
  }
  .payment-method__line-10 span {
    transform: translateY(-50%) rotate(-142deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-10 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-11 {
  position: absolute;
  left: -89%;
  top: 50%;
  transform: translate(-50%) rotate(170deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 430px;
  background-color: var(--color-two);
}
.payment-method__line-11 span {
  transform: translateY(-50%) rotate(-170deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-11 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(160deg);
  }
  .payment-method__line-11 span {
    transform: translateY(-50%) rotate(-160deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-11 {
    width: 140px;
    left: 6%;
    transform: translate(-50%) rotate(148deg);
  }
  .payment-method__line-11 span {
    transform: translateY(-50%) rotate(-148deg);
  }
}
.payment-method__line-12 {
  position: absolute;
  left: -146%;
  top: 50%;
  transform: translate(-50%) rotate(180deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 600px;
  background-color: var(--color-two);
}
.payment-method__line-12 span {
  transform: translateY(-50%) rotate(-180deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .payment-method__line-12 {
    width: 560px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .payment-method__line-12 {
    width: 380px;
    left: -68%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-12 {
    width: 250px;
    left: -35%;
  }
}
@media (max-width: 767px) {
  .payment-method__line-12 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-13 {
  position: absolute;
  left: -45%;
  top: 50%;
  transform: translate(-50%) rotate(190deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 300px;
  background-color: var(--color-two);
}
.payment-method__line-13 span {
  transform: translateY(-50%) rotate(-190deg);
}
.payment-method__line-13 img {
  box-shadow: 0px 10px 50px rgba(32, 33, 36, 0.1);
  border-radius: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-13 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(198deg);
  }
  .payment-method__line-13 span {
    transform: translateY(-50%) rotate(-198deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-13 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-14 {
  position: absolute;
  left: -129%;
  top: 50%;
  transform: translate(-50%) rotate(199deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 550px;
  background-color: var(--color-two);
}
.payment-method__line-14 span {
  transform: translateY(-50%) rotate(-199deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .payment-method__line-14 {
    width: 380px;
    left: -68%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-14 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(215deg);
  }
  .payment-method__line-14 span {
    transform: translateY(-50%) rotate(-215deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-14 {
    width: 140px;
    left: 6%;
  }
}
.payment-method__line-15 {
  position: absolute;
  left: -70%;
  top: 50%;
  transform: translate(-50%) rotate(211deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 370px;
  background-color: var(--color-two);
}
.payment-method__line-15 span {
  transform: translateY(-50%) rotate(-211deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-15 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(236deg);
  }
  .payment-method__line-15 span {
    transform: translateY(-50%) rotate(-236deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-15 {
    width: 140px;
    left: 6%;
    transform: translate(-50%) rotate(236deg);
  }
  .payment-method__line-15 span {
    transform: translateY(-50%) rotate(-236deg);
  }
}
.payment-method__line-16 {
  position: absolute;
  left: -3%;
  top: 50%;
  transform: translate(-50%) rotate(228deg);
  text-align: center;
  display: inline-block;
  transform-origin: right center;
  height: 1px;
  width: 170px;
  background-color: var(--color-two);
}
.payment-method__line-16 span {
  transform: translateY(-50%) rotate(-228deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .payment-method__line-16 {
    width: 250px;
    left: -35%;
    transform: translate(-50%) rotate(273deg);
  }
  .payment-method__line-16 span {
    transform: translateY(-50%) rotate(-273deg);
  }
}
@media (max-width: 767px) {
  .payment-method__line-16 {
    width: 140px;
    left: 6%;
    transform: translate(-50%) rotate(276deg);
  }
  .payment-method__line-16 span {
    transform: translateY(-50%) rotate(-273deg);
  }
}
.payment-method__line-1 span, .payment-method__line-2 span, .payment-method__line-3 span, .payment-method__line-4 span, .payment-method__line-5 span, .payment-method__line-6 span, .payment-method__line-7 span, .payment-method__line-8 span, .payment-method__line-9 span, .payment-method__line-10 span, .payment-method__line-11 span, .payment-method__line-12 span, .payment-method__line-13 span, .payment-method__line-14 span, .payment-method__line-15 span, .payment-method__line-16 span {
  position: absolute;
  left: -40px;
  top: 50%;
}
.payment-method__line-1 span:hover img, .payment-method__line-2 span:hover img, .payment-method__line-3 span:hover img, .payment-method__line-4 span:hover img, .payment-method__line-5 span:hover img, .payment-method__line-6 span:hover img, .payment-method__line-7 span:hover img, .payment-method__line-8 span:hover img, .payment-method__line-9 span:hover img, .payment-method__line-10 span:hover img, .payment-method__line-11 span:hover img, .payment-method__line-12 span:hover img, .payment-method__line-13 span:hover img, .payment-method__line-14 span:hover img, .payment-method__line-15 span:hover img, .payment-method__line-16 span:hover img {
  transform: scale(1.1);
}
.payment-method__wrapper {
  padding-top: 170px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .payment-method__wrapper {
    padding-top: 130px;
  }
}
.z-index-3{
  z-index: 3;
  position: relative;
}
@keyframes circle-animation {
  0% {
    right: 0;
  }
  50% {
    right: 100%;
  }
  100% {
    right: 0%;
  }
}
@keyframes circle-animation-2 {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes circle-animations {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}













/* banbelow start */
.ban-below{
  background: var(--color-two);
  padding: 50px 0 130px;
  position: relative;
}
.curve-top-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  transform: rotate(180deg);
}
.curve-top-shape .curve-svg {
  height: 48px;
  width: 100%;
  fill: white;
}
.brands_slider{
  margin-bottom: 45px;
}
.brands_slider img{
  /*filter: brightness(100);*/
  padding: 10px 21px;
  background: white;
  border-radius: 6px;
}
.brands_slider .swiper-wrapper {
  transition-timing-function: linear !important;
  animation-delay: 0 !important;
}
.cta-layout{
  margin-top: -110px;
}
.cta-banner{
  background: white;
  padding: 25px;
  position: relative;
  z-index: 4;
  margin-bottom: 35px;
  border-radius: 12px;
  border: 0.1px solid rgb(223 228 228);
  box-shadow: 10px 10px 1px rgb(223 228 228);
  transition: all 250ms linear;
}
.cta-banner:hover{
  box-shadow: -10px 10px 1px rgb(223 228 228);
}
.cta-banner .cta-icon{
  max-width: 150px;
}

/* About  */
.floated-abt{
  max-width: 550px;
  float: left;
  margin-right: 21px;
}
.location-name{
    position: relative;
    padding-left: 35px;
    font-size: 20px;
    color: black;
}
.location-name::before{
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--color-two);
    position: absolute;
    left: 11px;
    top: -2px;
}
/*--------------milestone------------------*/

.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem
}

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted #ec5e36;
        width: 3.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted #ec5e36;
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5px;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #039d5b
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: #00b36f;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}

.timeline-steps .timeline-content .inner-circle1 {
    border-radius: 1.5px;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ec5e36
}



.timeline-steps .timeline-content .inner-circle1:before {
    content: "";
    background-color: #ec5e36;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}

.timeline-steps .timeline-content .inner-circle2 {
    border-radius: 1.5px;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fbd21a
}
.timeline-steps .timeline-content .inner-circle2:before {
    content: "";
    background-color: #fbd21a;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}

.timeline-steps .timeline-content .inner-circle3 {
    border-radius: 1.5px;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0387db
}

.timeline-steps .timeline-content .inner-circle3:before {
    content: "";
    background-color: #0387db;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}

.timeline-steps .timeline-content .inner-circle4 {
    border-radius: 1.5px;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e6404d
}

.timeline-steps .timeline-content .inner-circle4:before {
    content: "";
    background-color: #e6404d;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}

.timeline-steps .timeline-content .inner-circle5 {
    border-radius: 1.5px;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #9de0dd
}

.timeline-steps .timeline-content .inner-circle5:before {
    content: "";
    background-color: #9de0dd;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}


.partner-benifit{
    background: white;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 19px;
    color: black;
}
.partner-benifit img{
    max-width: 55px;
}

@media (max-width: 767px) {
  .floated-abt{
    max-width: 100%;
    margin-right: 0;
    float: none;
    margin-bottom: 25px;
  }
  .navbar{
      padding-top: 2px;
  }
}
.infra_col_sm2{
    padding: 10px;
    border: 1px solid gray;
    border-radius: 21px;
}
.infra_col_sm2 .h3{
    font-size: 21px;
    color: #00ab5b;
}
.infra_col_sm2 img{
    max-height: 70px;
}


/* testimonial section start */

.testi-block{
  background: white;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid gray;
  border-radius: 25px;
  min-height: 300px;
}
/*.testi-block::before{*/
/*  content: '';*/
/*  position: absolute;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  clip-path: polygon(15% 63%, 100% 60%, 100% 100%, 0% 100%);*/
/*  z-index: 2;*/
/*  background: url(../images/products/demo.gif);*/
/*  width: 60%;*/
/*  height: 48px;*/
/*}*/
.testi-block::after{
  content: '\275E';
  position: absolute;
  right: 21px;
  top: 5px;
  z-index: 2;
  font-size: 85px;
  color: var(--color-two);
}
.stars{
  color: rgb(242, 206, 28);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.testi-img{
  max-width: 46px;
  margin-right: 10px;
  border-radius: 50%;
}
.testi-block .h6{
    font-size: 15px;
    max-width: 90%;
}



/* footer start */
.footer-section{
  background: #f2f5f3;
  padding-top: 80px;
}
.footer-logo img{
  max-height: 75px;
  margin-bottom: 21px;
}
.footer-widget .links{
  list-style: none;
  padding-left: 6px;
}
.footer-widget .links li a{
  margin-bottom: 10px;
  font-weight: 500;
  color: rgb(61, 60, 60);
  display: inline-block;
}
.footer-contact a{
  color: rgb(61, 60, 60);;
  transition: all 0.26s;
}
.footer-copyright{
  background: black;
  padding: 16px 0;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-social a {
  font-size: 19px;
}
.footer-social a i.fa-facebook-f {
  color: #16318a;
}
.footer-social a i.fa-youtube {
  color: red;
}
.footer-social a i.fa-instagram {
  color: red;
}
.footer-social a i.fa-pinterest {
  color: red;
}
.footer-social a i.fa-whatsapp {
  color: rgb(72, 170, 26);
}
.copyright-text p,
.copyright-text{
  color: white;
  margin-bottom: 0;
  text-align: center;
}
.copyright-text a{
  color: white;
  margin-left: 8px;
  font-weight: 600;
}

.breadcrumb-area{
  padding: 150px 0 100px 0;
  background: url(../image/img/bg/hero-gradient-3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

/* share and whatsapp */
.share-btn-box{
  position: relative;
  z-index: 5;
}
.share-btn {
  font-size: 26px;
  font-weight: 600;
  color: black;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-share {
  width: fit-content;
  height: fit-content;
}

.social-share ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}

.social-share ul li button,
.social-share ul li a {
  color: #fff;
  font-size: 19px;
  line-height: 24px;
  height: 24px;
  width: 34px;
  text-align: center;
  padding: 4px 8px !important;
  border-radius: 3px;
  text-transform: capitalize;
  display: block;
  height: fit-content;
  box-shadow: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.social-share ul li button:hover,
.social-share ul li a:hover {
  opacity: 0.8;
}

.social-share ul li button.facebook,
.social-share ul li a.facebook {
  background: #3B5999;
}

.social-share ul li button.twitter,
.social-share ul li a.twitter {
  background: #1DA1F2;
}

.social-share ul li button.whatsapp,
.social-share ul li a.whatsapp {
  background: #20cb45;
}

.social-share ul li a.google-plus {
  background: #fe6d4c;
}

.social-share ul li button.linkedin,
.social-share ul li a.linkedin {
  background: #0a66c2;
}

.social-share ul li button.telegram {
  background: #0a9ac2;
}

.social-share ul li button.email {
  background: #c2410a;
}




.what-app {
  position: fixed;
  z-index: 99;
}

.btn-whatsapp-pulse-border {
  bottom: 30px;
  left: 20px;
  animation-play-state: paused;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 30px;
  right: 20px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 34px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.what-app i {
  font-size: 54px;
  color: #fff;
}

@keyframes pulse-border {
  0% {
      padding: 25px;
      opacity: 0.75;
  }

  75% {
      padding: 50px;
      opacity: 0;
  }

  100% {
      opacity: 0;
  }
}