@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,100;1,300;1,400&display=swap');
*{
 margin:0;
 padding:0;
 scroll-behavior: smooth;
}
body{
 font-family:'Roboto',sans-serif;
  overflow-x:hidden;
}
nav{
display:flex;
/*background-color: white;*/
justify-content: space-around;
padding:20px 0;
color:white;

align-items: center;
}
nav.active{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #4A0E64;
  z-index: 1000;
}
nav.logo{
letter-spacing: 3px;
}
.logo h2{
  margin-top: 10px;
}
nav ul{
display:flex;
list-style: none;
width:40%;
justify-content: space-evenly;
margin-bottom: 0;
}
nav ul li a {
  color:white;
  text-decoration: none;
  font-size: 1.1em;
  font-weight:600;
  text-transform: uppercase;
}
nav ul li a:hover {
  color:white;
  text-decoration: line-through black;
}
.btn{
border-radius: 40px;
}
.menu-bars{
display:none;
flex-direction: column;
height:20px;
justify-content: space-between;
position:relative;
  z-index:999;
}
.menu-bars input{
position: absolute;
width:40px;
height:28px;
left:-5px;
top:-3px;
opacity: 0;
cursor:pointer;
z-index: 2;
}

.menu-bars span{
display:block;
width:28px;
height:3px;
background-color:white !important;
border-radius: 3px;
transition: all 0.3s;
}

.menu-bars span:nth-child(2){
transform-origin: 0 0 ;
}

.menu-bars span:nth-child(4){
  transform-origin: 0 100% ;
  }

.menu-bars input:checked ~ span:nth-child(2){
background-color: white;
transform: rotate(45deg) translate(-1px, -1px);
}
.menu-bars input:checked ~ span:nth-child(4){
  background-color: white;
  transform: rotate(-45deg) translate(-1px,0); 
  }

  .menu-bars input:checked ~ span:nth-child(3){
    opacity: 0;
    transform: scale(0); 
    }

.main-div{
  background: url('../img/bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hand-image img{
  width: 100%;
  margin-bottom: -7px;
}
.main-heading{
  padding:20px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.main-heading h1{
  font-size: 55px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  width: 100%;

}
.main-heading h1 span{
  color: #f0de32;
  text-transform: capitalize;
  font-family: 'Love Ya Like A Sister', cursive;
}
.main-heading p{
  color: white;
  text-align: justify;
}
.main-heading a{
  padding:10px 35px;
  background: #f0de32;
  color: #4A0E64;
  font-weight: bold;
  border-radius: 60px;
  letter-spacing: 1px;
  transition: 0.5s;
  text-decoration: none;
}
.main-heading a:hover{
  letter-spacing: 5px;
  text-decoration: none;
  transition: 0.5s;
}
section{
  padding: 60px 20px;
}
.heading{
  text-align: center;
  color: #4A0E64;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.heading h1{
  font-weight: 800 !important;
  text-transform: uppercase;
  margin-bottom: 0;
}
.heading h1 span{
   /*background: ;*/
   padding:0 5px;
   /*border-left: 5px solid #f0de32;*/
}
.heading .line{
  height: 5px;
  background: #f0de32;
  width:100px;
  margin:20px;
}
.heading i{
  height: 35px;
  width: 35px;
  background: #4A0E64;
  color: #f0de32;
  text-align: center;
  line-height: 35px;
  border-radius: 50% 30% 60% 30%;
  margin-top: -40px;
  animation: radius 1s infinite alternate-reverse ease-in-out;
  transition: 0.5s;
}
.about .inner-content{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
}
.about .inner-content h2 span{
  font-weight: 700;
}
.about .inner-content h2{
  color: #4A0E64;
  font-weight: 300;
  border-left: 5px solid #f0de32;
  font-size: 40px;
  padding-left: 10px;
}
.heading h1 span{
  font-weight: 300;
}
.why-us{
  background: #F2F5F8;
  padding: 60px 20px 0 20px;
}
.why-us .inner-content h4{
  color: #4A0E64;
  border-left: 5px solid #f0de32;
  padding-left: 10px;
}
.about .inner-content p{
  text-align: justify;
}
.bottom-design{
  margin-top: -70px;
  position: relative;
  z-index: 10;
}
.about{
  padding: 60px 20px 0 20px;
}
@keyframes radius{
  from{
    border-radius: 50% 30% 60% 30%;
    transition: 0.5s;
  }
  to{
    border-radius: 30% 60% 30% 50%;
    transition: 0.5s;
  }
}
.instructions{
  background: #e0e2e4;
}
.flex{
  display: flex;
  justify-content: flex-start;
  align-items: center;  
  margin-bottom: 10px;
}
.flex span{
  margin-right: 8px;
 /* height: 25px;
  width: 25px;*/
  padding: 3px 5px;
  border-radius: 50% 30% 60% 30%;
  text-align: center;
  color:#f0de32;
  font-weight: 600;
  background: #4A0E64;
}
.slick-next {
    right: -15px;
}
.flex p{
  margin-bottom: 0;
}
.instructions .box{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}.instructions .box.left{
  align-items: flex-end;
  text-align: right;
}
.instructions .box.right{
  align-items: flex-start;
  text-align: left;
}
.instructions .box i{
  height: 60px;
  width: 60px;
  line-height: 60px;
  background:#4A0E64;
  color: #f0de32;
  border-radius: 50% 30% 60% 30%;
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;
}
.instructions .box.left:hover i{
  border-radius: 30% 60% 30% 50%;
  transition: 0.5s;
}
.instructions .box.right i{
  border-radius: 30% 60% 30% 50%;
  transition: 0.5s;
}
.instructions .box.right:hover i{
  border-radius: 50% 30% 60% 30%;
  transition: 0.5s;
}
.instructions .box p{
  margin-bottom: 0;
}
.mobile{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.examples{
  background: #F2F5F8;
}
.slider{
  position: relative;
  margin-top: 100px;
  margin-bottom: 50px;
}
.frame{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 5;
}
.frame img{
  max-width: 250px;
  margin-top: -85px;
}
.multiple-items div{
 /* display: flex !important;*/
 margin-bottom: 0 auto;
  justify-content: center;
  align-items: center;
}
.multiple-items .center{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.multiple-items .center h3{
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
}
/*.multiple-items div img{
  filter: blur(5px);
}
.multiple-items div.active img{
 filter: blur(0px); 
}*/
.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 30px;
    line-height: 1;
    opacity: 1;
    color: #4A0E64;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.multiple-items img{
  width: 256px;
}
.how-it-works{
  background: #4A0E64;
}
.heading2 h1{
  color: #f0de32;
}
.heading2 .line{
  background: white;
}
.heading2 i{
 color: #4A0E64;
 background: #f0de32;
}
.how-it-works .box{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: white;
}
.how-it-works .box .iconbox{
  width: 100px;
    height: 100px;
    padding: 2px;
    border-radius: 50%;
    background: #f0de32;
    border: 2px dashed#f0de32;
    background-clip: content-box;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
    color: white;
}
.how-it-works .box .iconbox i{
  line-height: 100px;
  font-size: 40px;
  color: #4A0E64;
}
.beneficial .box{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.beneficial .box i{
  height: 80px;
  width: 80px;
  color:  #f0de32;
 background:#4A0E64;
 border-radius: 30% 60% 30% 50%;
 font-size: 28px;
 line-height: 80px;
 text-align: center;
 transition:0.5s;
 margin-bottom: 10px;
}
.pricing{
  background: url('../img/price-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 60px 60px 60px;

}
.upper-slider{
  position: relative;
  height: 100%;
}
.circle{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; 
  animation: up-down 3s alternate-reverse infinite ease-in-out;
}
@keyframes up-down{
  from{
    transform: translateY(-20px);
  }
  to{
    transform: translateY(20px);
  }
}
.inner-slider .carousel-indicators{
  display: none !important;
}
.inner-slider .carousel-control-prev{
 display: none !important; 
}
.inner-slider .carousel-control-next{
 display: none !important; 
}
.inner-slider{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.pricing .inner-content{
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  color: white;
}
.modal-footer .button{
    padding: 10px 35px;
    background: #f0de32;
    color: #4A0E64;
    font-weight: bold;
    border-radius: 60px;
    letter-spacing: 1px;
    transition: 0.5s;
    text-decoration: none;
    margin-top: 10px;
    border: none;
}
.button{
      /*padding: 10px 35px;*/
    background: #f0de32;
    color: #4A0E64;
    font-weight: bold;
    border-radius: 60px;
    letter-spacing: 1px;
    transition: 0.5s;
    text-decoration: none;
    /*margin-top: 10px;*/
    border: none;
}
textarea{
  border-radius: 8px !important;
}
.button:hover{
  letter-spacing: 5px;
    transition: 0.5s;
}
.contact-page-section {
    padding-top: 30px !important;
}
.pricing .inner-content h1{
  color: #f0de32;
  font-weight: 600;
}
.plan-hdr>i {
    color: #fff;
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
}
.plan-hdr>h6 {
    font-size: 24px;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 25px;
}
.plan-hdr>span {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    font-family: poppins;
    letter-spacing: -2px;
    display: inline-block;
}
.plan-hdr>span sup {
    font-size: 16px;
    top: -33px;
    left: -4px;
    font-weight: 400;
}
.plan-hdr>span i {
    font-style: normal;
    font-size: 18px;
    letter-spacing: -.4px;
}
.pln-fctr-lst {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    width: 100%;
}
.pln-fctr-lst>li {
    font-size: 14px;
    color: #e4e4e4;
    letter-spacing: 0;
    font-family: poppins;
    width: 100%;
    margin-top: 15px;
}
.price-card{
  padding: 20px;
  background: #4A0E64;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 8px;
  transform: translateY(-20px);
}
.price-card a{
  padding: 7px 35px;
    background: #f0de32;
    color: #4A0E64;
    font-weight: bold;
    border-radius: 60px;
    letter-spacing: 1px;
    transition: 0.5s;
    text-decoration: none;
    margin-top: 10px;
}
.price-card a:hover{
  letter-spacing: 5px;
    transition: 0.5s;
}
.beneficial .box:hover i{
 transition:0.5s;
 border-radius: 50% 30% 60% 30%;
}
.upper-footer{
  padding: 20px;
  border-radius: 60px;
  width: 100%;
  background: #F0DE32;
  color: #4A0E64;
  transform: translateY(-56px);
}
footer{
  background: #222222;
  padding: 20px;
}
.upper-form input::placeholder{
  color: black;
}
.upper-footer p{
  font-weight: bold;
}
.upper-form{
  border:1px solid #4A0E64;
  border-radius: 60px;
  overflow: hidden;
}
.upper-form .input input{
  width: 100%;
  border:none;
  background: transparent;
  padding: 10px 15px;
  border:none;
  outline: none;
  margin-bottom: -1px;
}
.upper-form .button input{
  width: 100%;
  padding: 10px 0;
  border-radius: 0px 60px 60px 0px;
  border:none;
  background: #4A0E64;
  color: #F0DE32;
  margin-bottom: -1px;
}
.footer-logo{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.icons{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
.icons i{
  height: 40px;
  width: 40px;
  border: 1px solid white;
  border-radius:50%;
  color: white;
  line-height: 40px;
  text-align: center;
  margin:10px 5px;
}
.copyright{
  width: 100%;
  padding: 20px;
  text-align: center;
  color: white;
}
.contact-page-section .info-column .list-info{
  padding-inline-start:0;
}
.contact-page-section .info-column .list-info li i{
  position: relative !important;
}
.contact-page-section .info-column .list-info li {
    position: relative;
    margin-bottom: 25px;
    font-size: 18px;
    color: #fff;
    line-height: 1.8em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.contact-page-section .info-column .list-info li i{
  margin-bottom: 15px;
}
.contact-page-section .form-column .inner-column{
  height: 100%;
}

nav ul.slide{
    transform: translateX(0);
  }
  .pay {
    height: 60px;
    width: 130px;
    background: #f0de32;
    padding: 20px;
    position: fixed;
    right: -40px;
    text-align: center;
    font-weight: bold;
    color: #4A0E64;
    border-radius: 7px;
    transform: rotate( 
-90deg
 );
    bottom: 15%;
    z-index: 1000;
}
.pay a, .pay a:hover, .pay a:active, .pay a:focus {
    color: #4A0E64;
}
.modal-content {
    border: none !important;
    background-clip:;
}
.modal-header {
    background: #4A0E64;
    color: white;
}
button.close {
    font-size: 30px;
    font-weight: 400;
}
.form-group {
    margin-bottom: 1rem;
}
.modal-form label {
    font-weight: 600;
}
.modal-form .form-control {
    padding: 0.6rem .75rem;
    border-radius: 60px;
}
select.form-control:not([size]):not([multiple]) {
    height: calc(2.8rem + 2px);
}
.modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.close{
  color: white;
}
.form-div{
  background:#F0F2F5;
  padding: 60px 0;

}
.form-div .outer-form-div{
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow:0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);

}
.input-group-text{
  height: 45px;
  width: 45px;
  position: relative;
  border-radius: 50% !important;
  z-index: 5;
  background: #4A0E64;
  color: #f0de32;
}
.input-group .form-control:hover,.input-group-text .form-control:focus{
  border:none;
}
.input-group-text i{
  text-align: center;
  width: 100%;
  font-size: 20px;
}
.social-links .input-group{
  border:1px solid #ced4da;
  border-radius: 60px;
  overflow: hidden;
}
.form-button{
  display: flex;
  justify-content: space-around;
  align-items: center; 
  flex-wrap: wrap; 
}
.form-button a{
  border: 2px solid #4A0E64;
  color: #4A0E64;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 45px;
  border-radius: 60px;
  letter-spacing: 1px;
  transition: 0.5s;
  margin-top: 5px;
}
.hide{
  display: none;
}
.form-button a:hover{
  letter-spacing: 5px;
  transition: 0.5s; 
}
.form-button input{
  padding: 10px 45px;
  border-radius: 60px;
  border: none;
  background: #4A0E64;
  color: #f0de32;
  font-weight: bold;
  transition:0.5s;
  letter-spacing: 1px;
}
.form-button input:hover{
  transition:0.5s;
  letter-spacing: 5px;
}
::-webkit-file-upload-button{
  background: #4A0E64;
  color: #f0de32;
  height: 100%;
  font-weight: bold;
  border: none;
  
}
input[type="file"]{
  padding: 0;
  height: 45px;
  overflow: hidden;
}
.social-links .input-group .form-control{
  height: 45px;
}
.social-links .form-control{
  border:0;
}
.left-side-form{
  background: #4A0E64;
  height: 100%;
  padding:40px 20px;
}
.right-side-form{
  padding:40px 30px;
}
.right-side-form .form-control{
  border-radius: 60px;
  height: 45px;
}
.right-side-form label{
  font-weight: 500;
  letter-spacing: 1px;
}
.right-side-form textarea{
  height: 110px !important;
}
.form-control,.form-control:hover,.form-control:focus{
  box-shadow: none;
}
.form-control:hover,.form-control:focus{
  border:1px solid #ced4da;
}
/*.right-side-form input[type="file"]{

}*/
.btn-dark{
  padding: 8px 35px;
  background: #4A0E64;
  letter-spacing: 1px;
  transition:0.5s;
  color: #f0de32;
}
.btn-dark:hover,.btn-dark:focus{
  background: #4A0E64;
  letter-spacing: 5px;
  transition:0.5s;
  color: #f0de32;
}

.small,.medium{
  display: none;
}
@media screen and (max-width: 991px){
  .hand-image {
    display: flex;
    justify-content: center;
    align-items:flex-end;
    height: 100%;
}
.hide{
  position: absolute;
  top: 20px;
  left:20px;
  width: 100%;
  display: block;
}
.outer-hide{
  display: flex;
  justify-content: center;
  align-items: center;
}
.big,.small{
  display: none;
}
.medium{
  display: block;
}
/*.menu-bars.active span{
  background-color: #7d3f98 !important;
}*/
nav ul li a {
    color: #f0de32;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    text-transform: uppercase;
}
.menu-bars span{
  background: white important;
}
.upper-footer p {
  margin-bottom: 10px !important;
}
.thinking-div {
    display: flex;
    justify-content: center;
    align-items:flex-end;
    height: 100%;
}
/*.hand-image img {
    width: 48%;
    margin-bottom: -28px;
}*/
.mob-div {
    display: flex;
    justify-content: center;
    align-items:flex-end;
    height: 100%;
}
/*.mob-div img {
    width: 48%;
}*/
.pricing {
    padding: 60px 20px;
}
.price-card{
  transform: scaleY(1);
  margin-bottom: 20px;
}
.menu-bars{
  display:flex;
  }
  nav ul{
  position:fixed;
  left:0;
  top:0;
  width:300px;
  height:100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #4A0E64;
  z-index: 100;
  transform: translateX(-100%);
  transition: all 1s;
  }
  nav ul li{
    margin:15px 0;
  }
}
@media screen and (max-width: 767px){
  .instructions .box.left {
    align-items: center;
    text-align: center;
}
.left-side-form{
  background: #4A0E64;
  height: 100%;
  padding:0px;
}
section{
  overflow: hidden;
}
.contact-page-section .form-column {
    position: relative;
    padding: 0 !important;
}
.contact-page-section .form-column .inner-column {
    padding: 20px;
}
.contact-page-section .info-column .inner-column {
    padding: 20px;
}
.instructions .box.right {
    align-items: center;
    text-align: center;
}
.upper-footer{
  border-radius: 8px;
  text-align: center;
}
}

@media only screen and (max-width: 576px){
  .menu-bars{
  display:flex;
  }
  .modal-dialog {
    max-width: 390px;
    margin: 1.75rem auto;
}
.bottom-design{
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
  }
  @media only screen and (max-width: 480px){
    .main-heading h1{
      font-size: 32px;
    }
    .big,.medium{
  display: none;
    }
    .small{
      display: block;
    }
    .heading h1{
      font-size: 32px;
    }
    .about .inner-content h2{
      font-size: 32px;
    }
    .pricing .inner-content h1{
      font-size: 32px;
    }
    .bottom-design{
  margin-top: -20px;
  position: relative;
  z-index: 10;
}
  }