@import url('https://fonts.googleapis.com/css2?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&display=swap');

body
{
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 100px;
}

/* Track */
::-webkit-scrollbar-track {
      background: linear-gradient(143deg, rgba(57, 70, 194, 1) 0%, rgba(181, 53, 212, 1) 100%);
      border-radius: 100px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #323085;
  border-radius: 100px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

/* Preloader Start */

.loader-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

.loader {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 50px;
  height: 50px;
  font-size: 0;
  color: #00c9d0;
  display: inline-block;
  margin: -25px 0 0 -25px;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.lead{
font-size:13px;
}
/* .loader div {
  background-color: #d9b06a;
  display: inline-block;
  float: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  opacity: .5;
  border-radius: 50%;
  -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
  animation: ballPulseDouble 2s ease-in-out infinite;
} */

.loader div:last-child {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {
  0%,
  100% {
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  50% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}

@keyframes ballPulseDouble {
  0%,
  100% {
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  50% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}

/* Preloader End */



/* Page Animation */
.animatable {
  /* initially hide animatable objects */
  visibility: hidden;

  /* initially pause animatable objects their animations */
  animation-play-state: paused;
}

/* show objects being animated */
.animated {
  visibility: visible;

  animation-fill-mode: both;
  animation-duration: 1s;
  animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@keyframes fadeIn {
  0%,
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    transform: translateX(20px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    transform: translateX(-20px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveUp {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeBgColor {
  0%,
  70% {
    background: none;
  }
  100% {
    background: #464646;
  }
}

.animated.animationDelay {
  animation-delay: 0.4s;
}
.animated.animationDelayMed {
  animation-delay: 1.2s;
}
.animated.animationDelayLong {
  animation-delay: 1.6s;
}
.animated.fadeBgColor {
  animation-name: fadeBgColor;
}
.animated.bounceIn {
  animation-name: bounceIn;
}
.animated.bounceInRight {
  animation-name: bounceInRight;
}
.animated.bounceInLeft {
  animation-name: bounceInLeft;
}
.animated.fadeIn {
  animation-name: fadeIn;
}
.animated.fadeInDown {
  animation-name: fadeInDown;
}
.animated.fadeInUp {
  animation-name: fadeInUp;
}
.animated.moveUp {
  animation-name: moveUp;
}














a
{
  text-decoration: none;
}

ul,li
{
  list-style-type: none;
}

ol, ul
{
  padding-left: 0;
}

.main-wrapper
{
  max-width: 1600px;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
  margin-right: auto;
  margin-left: auto;
  padding: 0 30px;
}

.logo 
{
	width: 100%;
	display: inline-block;
}

.logo img
{
	width: 100%;
	max-width: 130px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  box-shadow: var(--shadow-medium);
  background-color: var(--color-white-100);
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 2rem;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.menu
{
  width: 100%;
  float: left;
    display: block;
    text-align: center;
    
}

nav{
  width: 100%;
  background: #fff;
  padding: 15px 0;
  position: fixed;
  z-index: 9;
  -webkit-box-shadow: 0px 0px 93px -36px rgba(0,0,0,1);
-moz-box-shadow: 0px 0px 93px -36px rgba(0,0,0,1);
box-shadow: 0px 0px 93px -36px rgba(0,0,0,1);
}
nav .wrapper{
  position: relative;
  /* max-width: 1300px; */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
  margin: 0;
  padding: 13px 0;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  color: #415CDC;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 0;
  right: 10px;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 1058px) {
  .wrapper .btn{
    display: block;
  }
  .logo
  {
    padding-left: 20px;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: -100%;
    background: rgb(57,70,194);
background: linear-gradient(141deg, rgba(57,70,194,1) 0%, rgba(209,50,216,1) 100%);
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    z-index: 9;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
    color: #fff;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
  .download-app-header
  {
    width: auto !important;
    position: absolute;
    top: 0%;
    right: 53px;
  }
  .logo
  {
    padding-left: 0;
  }
  .logo img
  {
    text-align: left;
  }
  nav .wrapper
  {
    padding: 0;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

.download-app-header
{
  width: 100%;
  display: inline-block;
  text-align: right;
}

.app-store-icon
{
  width: auto;
  display: inline-block;
  text-align: center;
}

.app-store-icon a
{
  width: 50px;
  height: 50px;
  /* background: rgb(57,70,194);
background: linear-gradient(141deg, rgba(57,70,194,1) 0%, rgba(220,184,255,1) 50%, rgba(209,50,216,1) 100%); */
  display: inline-block;
  text-align: center;
  vertical-align: top;
  border-radius: 100%;
}

.app-store-icon a img
{
  width: 30px;
  display: inline-block;
    vertical-align: top;
    margin: 9px;
}


/* Menu End */








/* Banner Start */
banner
{
  width: 100%;
  display: inline-block;
  background: #f0f8ff;
}
.banner-text
{
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.banner-text h1
{
  font-size: 20px;
  font-weight: bold;
  color: #3946C2; 
  background-image: linear-gradient(135deg, #3946C2 15%, #D132D8 42%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  margin-bottom: 25px;
}

.banner-text h2
{
  font-size: 65px;
  line-height: 120%;
  color: #323085;
  font-weight: bold;
  margin-bottom: 45px;
}

.banner-text p
{
  font-size: 19px;
  font-weight: 500;
  line-height: 150%;
  color: #000;
}

.banner-text p i
{
  color: #3946C2;
  background-image: linear-gradient(135deg, #3946C2 15%, #D132D8 42%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 10px;
  padding-top: 5px;
}
.country-free
{
  width: 100%;
  display: inline-block;
  position: absolute;
  z-index: 0;
  top: 50%;
  text-align: center;
}

.country-free img
{
  width: 100%;
  max-width: 300px;
}
/* Banner Round Circle */
.main-container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: 100vh;
  overflow: hidden;
}
.round-circle {
  margin: 0px auto;
  width: 680px;
  height: 680px;
  position: relative;
}
.big-circle {
  height: 100%;
  width: 100%;
  position: relative;
  border: 3px solid #bbc0ef;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  animation: Rotate 20s linear infinite;
  -webkit-animation: Rotate 20s linear infinite;
}
.icon-block {
  width: 64px;
  height: 64px;
  position: absolute;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
  -webkit-background-image: linear-gradient(180deg, #4967e6 0%, #627bf4 100%);
  box-shadow: 0 2px 4px 0 #3e5ada;
  -webkit-box-shadow: 0 2px 4px 0 #a7a7a7;
}
.icon-block img {
  margin: 0px auto;
  width: 86%;
  animation: Rotate-reverse 20s linear infinite;
  -webkit-animation: Rotate-reverse 20s linear infinite;
}
.icon-block:first-child {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.icon-block:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  -webkit-transform: translate(50%, -50%);
}
.icon-block:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
}
.icon-block:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
/* circle content */
.circle {
  animation: circle-rotate 20s linear infinite;
  -webkit-animation: circle-rotate 20s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  width: 75%;
  height: 75%;
  border: 3px solid #bbc0ef;
  border-radius: 50%;
  z-index: 2;
}
.circle .icon-block img {
  animation: img-rotate 20s linear infinite;
  -webkit-animation: img-rotate 20s linear infinite;
}
/* center logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}
.center-logo img {
  max-width: 70%;
}

.kivo-click-button
{
  width: auto;
  display: inline-block;
  font-size: 20px;
  color: #fff;
  background: rgb(57,70,194);
  background: linear-gradient(143deg, rgba(57,70,194,1) 0%, rgba(181,53,212,1) 100%);
  padding: 15px 40px;
  border-radius: 5px;

}

.kivo-click-button:hover
{
  background: rgb(57,70,194);
  background: linear-gradient(143deg, rgba(181,53,212,1) 0%, rgba(57,70,194,1) 100%);
}

/* keyframe animation */

@keyframes Rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes Rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes Rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes Rotate-reverse {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes circle-rotate {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

@-webkit-keyframes circle-rotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(405deg);
  }
}

@keyframes img-rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(-405deg);
  }
}

@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-45deg);
  }
  to {
    -webkit-transform: rotate(-405deg);
  }
}

.netflix-bg-color
{
  background: #000;
}

.instagram-bg-color
{
  background: #833ab4;
  background: linear-gradient(
    to right,
    #833ab4,#fd1d1d,#fcb045
  );
}

.prime-video-bg-color
{
  background: rgb(52,204,245);
background: linear-gradient(170deg, rgba(52,204,245,1) 0%, rgba(34,72,119,1) 100%);
}

.apple-tv-bg-color
{
  background: #000;
}

.facebook-bg-color
{
  background: rgb(23,170,253);
background: linear-gradient(143deg, rgba(23,170,253,1) 0%, rgba(0,98,224,1) 100%);
}

.disnep-bg-color
{
  background: rgb(118,120,161);
background: linear-gradient(143deg, rgba(118,120,161,1) 0%, rgba(37,40,93,1) 100%);
}

.tiktok-bg-color
{
  background: #000;
}

.youtube-bg-color
{
  background: #FF0000;
}
/* Banner Round Circle End */

/* Banner END */


/* Pricing Section Start */
.clear {
  background: #f0f8ff;
  -webkit-box-shadow: 0px 0px 93px -36px rgba(0,0,0,0);
  -moz-box-shadow: 0px 0px 93px -36px rgba(0,0,0,0);
  box-shadow: 0px 0px 93px -36px rgba(0,0,0,0);

}

pricing
{
  width: 100%;
  display: inline-block;
  background: #f0f8ff;
  padding: 100px 0 60px;
}

pricing .kivo-heading h3
{
font-size: 48px;
}

pricing .kivo-heading p.subhead{
  font-size: 18px;
}

.pricing-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 15px;
  text-align: center;
  background: rgb(57,70,194);
  background: linear-gradient(143deg, rgba(57,70,194,1) 0%, rgba(181,53,212,1) 100%);
}

.pricing-card .card-title{
font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card .card-body{
  background: #fff;
  border-radius: 14px;
}

.pricing-card:hover, .pricing-card:focus {
padding: 4px;
cursor: pointer;
}

.pricing-card .disc-code{
  color:#fff;
  padding: 12px 0;
  margin: 0;
  font-size: 12px;
}

.pricing-card button{
  border-radius: 50px;
  color: #5e24a0;
  font-weight: 600;
  font-size: 17px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.pricing-card:hover button{
background-color: rgb(84, 199, 49);
color: #fff;
border:1px solid rgb(84, 199, 49) ;
}

.pricing-card:hover button.gradient-custom {
  background: rgb(84, 199, 49);
  background: linear-gradient(143deg, rgb(53, 184, 59) 0%, rgb(84, 199, 49) 100%);
}

.feature-list li {
  margin-bottom: 0.8rem;
  color: #6c757d;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  border-radius: 20px;
}

.gradient-custom {
  background: rgb(57,70,194);
  background: linear-gradient(143deg, rgba(57,70,194,1) 0%, rgba(181,53,212,1) 100%);
}

.highlight-card{
  padding: 4px;
}

.hilt{
  color:#82c11e;
}

.disc-code .hilt{
  color: #a1fa4e;
}

.save-txt{
  background-color: #f2f2f2;
  padding: 6px 12px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  text-transform:uppercase;
  color:#858484;
}

.pricing-card h1{
  font-size: 35px;
  font-weight: 600;
}

.pricing-card.highlight-card h1{
  font-size: 52px;
  font-weight: 600;
  color: #8a64d1; 
}

.pricing-card h1 small{
  font-size: 16px;
}

.pricing-card h1 b{
  font-size: 22px;
  font-weight: bold;
  margin-right: 3px;
}

.pricing-card p{
  font-size: 13px;
  color:#83898b;
  margin-bottom: 5px;
}


.pricing-card .badge {
  position: absolute;
  top: -18px;
  right: -4px;
  border-radius: 14px 14px 14px 0px;
  left: 0px;
  width: 90px;
}

.disc-tag-box{
  width: 90px;
  height: 90px;
  background-size: cover;
  position: absolute;
  right: -2px;
  top: -4px;
  display: none;
}

.disc-tag-active{
  background-image: url(../images/tag-disc.png);
  
}

.pricing-card .disc-tag-active p{
color:#ffffff ;
}

.disc-tag-box p{
  font-size: 16px;
  text-align: center;
  line-height: 16px;
  margin-top: 15px;
  margin-left: 15px;
}

.disc-tag-box p strong{
font-weight: bold;
font-size: 20px;
}



.disc-tag-default{
  background-image: url(../images/tag-normal.png);
}

.pricing-card .disc-tag-default p{
  color:#222 ;
  }




/* Pricing END */

/* Service Section Start */

service
{
  width: 100%;
  display: inline-block;
  background: #fff;
  padding: 100px 0;
}

.kivo-heading
{
  width: 100%;
  display: inline-block;
  text-align: center;
  margin-bottom: 50px;
}

.kivo-heading h3
{
  font-size: 40px;
  font-weight: bold;
  color: #323085;
}

.kivo-heading p
{
  font-size: 16px;
  color: #5e5d89;
  margin-top: 25px;
}

.service-icon-kivo-vpn
{
  width: 50px;
  height: 50px;
  font-size: 22px;
  background: #E4E9FD;
  border-radius: 500px;
  color: #2F57EF;
  margin-bottom: 20px;
}

.kivo-vpn-service-box
{
  width: 100%;
  display: inline-block;
}

.kivo-vpn-service-box h4
{
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

.kivo-vpn-service-box p
{
  font-size: 16px;
  color: #5c5c5c;
  text-align: justify;
}

/* Service Section End */



/* Speed Section Start */
speed
{
  width: 100%;
  display: inline-block;
  background: #F0F8FF;
  padding: 100px 0;
  border-radius: 0 500px 0 0;
}

.kivo-vpn-content-box
{
  width: 100%;
  display: inline-block;
}

.kivo-vpn-content-box h4
{
  font-size: 40px;
  color: #000;
  margin-bottom: 20px;
  font-weight: bold;

}

.kivo-vpn-content-box p
{
  font-size: 16px;.
  line-height: 26px;
  color: #5c5c5c;
}

.kivo-vpn-content-box span
{
  width: 100%;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #5c5c5c;
  padding: 20px 0 20px 55px;
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-size: 41px;
  background-position: 0 9px;

}


/* Speed Section End */



/* KIvo Download */
.kivo-download-box {
  background-image: linear-gradient(to bottom right, #4b44c5, #b800ff);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  color: white;
  font-family: sans-serif;
  font-weight: 200;
  z-index: 1;
  text-align: center;
  padding: 100px 0;
}

.kivo-download-box * {
  z-index: 2;
}

.kivo-download-box h5
{
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.kivo-download-box h6
{
  font-size: 64px;
  color: #fff;
  font-weight: bold;
  margin-top: 30px;
  /* text-transform: uppercase; */
}

.background-shapes {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 5076px;
  background-size: 100%;
  animation: 120s infiniteScroll linear infinite;
  background-repeat-x: repeat;
  background-image: url(../images/download-bg.svg);
}

@-webkit-keyframes infiniteScroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -1692px, 0);
    transform: translate3d(0, -1692px, 0);
  }
}

@keyframes infiniteScroll {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(0, -1692px, 0);
    transform: translate3d(0, -1692px, 0);
  }
}
/* Kivo Download End */




/* What is a VPN? */
sub-banner
{
  width: 100%;
  display: inline-block;
  text-align: center;
  background: #F0F8FF;
  padding: 100px 0;
  margin-top: 80px;
}

.sub-banner-text-kivo-vpn
{
  width: 100%;
  display: inline-block;
  text-align: center;
}

.sub-banner-text-kivo-vpn h1
{
  font-size: 60px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.sub-banner-text-kivo-vpn p
{
  font-size: 22px;
  color: #6e6e6e;
}

need-vpn
{
  width: 100%;
  display: inline-block;
  padding: 100px 0;
}

.need-vpn-box
{
  width: 100%;
  display: inline-block;
}

/* What is a VPN? End */

/* Support */
.support-text-for-kivo-vpn
{
  width: 100%;
  display: inline-block;
}

.support-text-for-kivo-vpn h2
{
  font-size: 32px;
  font-weight: bold;
  color: #323085;
}

.support-text-for-kivo-vpn p
{
  font-size: 16px;
  color: #5c5c5c;
  margin-top: 25px;
}

.support-text-for-kivo-vpn img
{
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.support-text-for-kivo-vpn h4
{
  font-size: 20px;
  color: #000;
  margin-top: 30px;
}

.support-text-for-kivo-vpn a
{
  display: inline-block;
  color: #323085;
  margin-top: 20px;
}

.kivo-msg-box
{
  width: 100%;
  height: 200px;
  display: inline-block;

}
.form-control
{
  padding: 14px 20px;
}
.kivo-form-submit
{
  width: 100%;
  display: block;
}
.kivo-form-submit h4
{
  font-size: 32px;
  color: #323085;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Support End */

/* Footer Start */
.main-footer{
  position: relative;
  background: #1e2129;
}

.footer-content{
  position: relative;
  padding: 85px 0px 80px 0px;
}
.footer-content:before{
  position: absolute;
  content: '';
  background: url(https://i.ibb.co/jyRLrBZ/world-map.png);
  width: 744px;
  height: 365px;
  top: 50px;
  right: 0px;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  animation-name: float-bob;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
.footer-content .logo-widget{
  position: relative;
  margin-top: -5px;
}
.footer-content .logo-widget .footer-social li{
  position: relative;
  display: inline-block;
  margin-right: 9px;
}
.footer-content .logo-widget .footer-social li:last-child{
  margin-right: 0px;
}
.footer-content .logo-widget .footer-social li a{
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: #2e3138;
  color: #9ea0a9;
  text-align: center;
  border-radius: 50%;
}
.footer-content .logo-widget .footer-social li a:hover{
  color: #ffffff;
  background: #8E1AE9;
}
.footer-content .logo-widget .logo-box{
  margin-bottom: 25px;
}
.footer-content .logo-widget .text p{
  color: #9ea0a9;
  margin-bottom: 32px;
}
.footer-content .footer-title{
  position: relative;
  font-size: 24px;
  line-height: 35px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 27px;
}
.footer-content .service-widget .list li{
  display: block;
  margin-bottom: 12px;
}
.footer-content .service-widget .list li a{
  position: relative;
  display: inline-block;
  color: #9ea0a9;
}
.footer-content .service-widget .list li a:hover{
  color: #ff5e14;
}
.footer-content .contact-widget p{
  color: #9ea0a9;
  margin-bottom: 15px;
}
.footer-content .contact-widget{
  margin-left: 90px;
}
.footer-content .contact-widget .footer-title{
  margin-bottom: 29px;
}

/** footer-bottom **/

.footer-bottom{
  position: relative;
  background: #13151a;
  padding: 25px 0px 22px 0px;
}
.footer-bottom .copyright,
.footer-bottom .copyright a,
.footer-bottom .footer-nav li a{
  position: relative;
  color: #9ea0a9;
}
.footer-bottom .copyright a:hover,
.footer-bottom .footer-nav li a:hover{
  color: #ff5e14;
}
.footer-bottom .footer-nav{
  position: relative;
  text-align: right;
}
.footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  margin-left: 29px;
}
.footer-bottom .footer-nav li:first-child{
  margin-left: 0px;
}
.footer-bottom .footer-nav li:before{
  position: absolute;
  content: '';
  background: #9ea0a9;
  width: 1px;
  height: 14px;
  top: 7px;
  left: -18px;
}
.footer-bottom .footer-nav li:first-child:before{
  display: none;
}
.logo-box img {
    max-width: 220px;
}
/* Footer End */

.lan i{
  font-size: 23px;
  color: #451d55;
  margin-top: 13px;
}

.lite-check-txt{
  font-size: 12px;
  color: #61778b;
}

.check-i{
  font-size: 23px;
}

.pay-btn-option img{
  height: 33px;
  border-radius: 5px;
  margin-right: 10px;
}


/* 


input[type="radio"][id^="cb"] {
  display: none;
}

label {
  border: 1px solid #fff;
  padding: 10px;
  display: block;
  position: relative;
  margin: 10px;
  cursor: pointer;
}

label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -5px;
  left: -5px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 28px;
  transition-duration: 0.4s;
  transform: scale(0);
}

label img {
  height: 100px;
  width: 100px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

:checked + label {
  border-color: #ddd;
}

:checked + label:before {
  content: "✓";
  background-color: grey;
  transform: scale(1);
}

:checked + label img {
  transform: scale(0.9);
  box-shadow: 0 0 5px #333;
  z-index: -1;
} */




/* Media Screen */

@media screen and (max-width: 1664px)
{
  banner
  {
    padding: 50px 0px;
  }

  .round-circle
  {
    width: 500px;
    height: 500px;
  }
}

@media screen and (max-width: 986px)
{
  .round-circle
  {
    width: 600px;
    height: 600px;
  }
  .country-free
  {
    display: none;
  }
  .wrapper .btn
  {
    right: -11px;
  }
}

@media screen and (max-width:767px) {

  pricing .kivo-heading h3 {
    font-size: 32px;
  }

  .disc-tag-box{
    display: block;
  }

  .pricing-card .save-txt{
    display: none;
  }

  .footer-content{
    padding: 85px 0px 80px 0px;
  }

  .kivo-download-box {
    padding: 60px 0;
  }

  service {
    padding: 60px 0;
  }

  .kivo-heading h3 {
    font-size: 30px;
  }

  .download-app-header {
    right: 0px;
  }

  pricing .kivo-heading p.subhead {
    font-size: 16px;
    margin-top:6px;
  }

  .disc-tag-box {
    width: 70px;
    height: 70px;
  }

  .kivo-heading {
    margin-bottom: 20px;
  }


}


@media screen and (max-width: 700px)
{
  .main-wrapper
  {
    padding: 0 20px;
  }
  .main-container
  {
    height: auto;
    padding: 50px 0;
  }
  .banner-text h1
  {
    margin-bottom: 15px;
  }
  .banner-text h2
  {
    font-size: 29px;
    line-height: 42px;
    margin-bottom: 15px;
  }
  .banner-text p
  {
    font-size: 17px;
    display: flex;
  }
  .round-circle
  {
    width: 300px;
    height: 300px;
  }
  .icon-block
  {
    width: 50px;
    height: 50px;
  }
  .center-logo img
  {
    width: 143px;
  }
  .footer-content .contact-widget
  {
    margin-left: 0px;
  }
  speed
  {
    border-radius: 0;
  }
  .kivo-heading p
  {
    font-size: 15px;
  }
  .kivo-download-box h6
  {
    font-size: 33px;
  }
  .kivo-download-box h5
  {
    font-size: 16px;
  }
  .sub-banner-text-kivo-vpn h1
  {
    font-size: 40px;
  }
  .kivo-click-button
  {
    font-size: 17px;
  }
  .sub-banner-text-kivo-vpn p
  {
    font-size: 18px;
  }
}