@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');
:root {
    --purple: #814096;
    --pink: #F83292;
    --gradient: linear-gradient(90deg, var(--purple), var(--pink));
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
}

*::selection {
    background: var(--pink);
    color: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: #f9f9f9;
}

section {
    /* min-height: 100vh; */
    padding: 0 9%;
    padding-top: 7.5rem;
    padding-bottom: 2rem;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 3rem;
    border-radius: 5rem;
    /* background: var(--gradient); */
    font-size: 1.7rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    transition: all .3s linear;
}

.btn:hover {
    transform: scale(1.1);
}

.heading {
    text-align: center;
    background: var(--gradient);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 3.5rem;
    text-transform: uppercase;
    padding: 1rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
header .logo {
    font-size: 2rem;
    color: var(--purple);
}

header .logo span {
    color: var(--pink);
}

header .navbar a {
    font-size: 1.7rem;
    margin-left: 2rem;
    color: var(--purple);
}

header .navbar a:hover {
    color: var(--pink);
}

header input {
    display: none;
}

header label {
    font-size: 3rem;
    color: var(--purple);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}

.home {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(images/MyDownload.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .image .contact {
    width: 44vw;
    /* animation: float 3s linear infinite; */
}

.mailStyle {
    text-transform: lowercase;
}


@keyframes float {
    0%,
    100% {
        transform: translateY(0rem);
    }
    50% {
        transform: translateY(-3.5rem);
    }
}

.home .content h1 {
    font-size: 5em;
    color: #333;
    text-transform: uppercase;  
}

.home .content h1 span {
    color: #9c5789;
    text-transform: uppercase;
}

.home .content h2 {
    font-size: 1.7em;
    color: #666;
    padding: 1rem 0;
    font-weight: 500;
}

.features {
    background: #fff;
}

.features .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.features .box-container .box {
    flex: 2 2 30rem;
    /* background:#fff; */
    /* border-radius: .5rem; */
    /* border:.1rem solid rgba(0,0,0,.2); */
    /* box-shadow: 0 .5rem 1rem rgba(0,0,0,.1); */
    margin: 1rem;
    padding: 1rem 0rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: .2s linear;
}

.features .box-container .box img {
    height: 7rem;
}

.features .box-container .box h5 {
    font-size: 1.5rem;
    color: #333;
    padding-top: 1rem;
    font-weight: 500;
}

.features .box-container .box p {
    font-size: 1.3rem;
    color: #666;
    padding: 1rem 0;
}

.services {
    background: #fff;
}

.services .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.services .box-container .box {
    flex: 1 1 30rem;
    /* background:#fff; */
    /* border-radius: .5rem; */
    /* border:.1rem solid rgba(0,0,0,.2); */
    /* box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1); */
    margin: 3rem;
    /* padding: 5rem 3rem; */
    border-radius: 0.5rem;
    text-align: center;
    transition: .2s linear;
}

.services .box-container .box img {
    height: 25rem;
}

.services .box-container .box .content {
    /* background: url(images/footer-bg.png) no-repeat;
    background-position: 46% 2px; */
    padding: 2rem 0rem;
}

.services .box-container .box h5 {
    font-size: 2rem;
    color: #333;
    padding-top: 1rem;
    font-weight: 500;
}

.services .box-container .box p {
    font-size: 1.5rem;
    color: #666;
    padding: 1rem 0;
}


/* .services .box-container1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.services .box-container1 .box1 {
    flex: 1 1 40rem;
    background: #fff;
    border: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    margin: 4rem;
    padding: 3rem 3rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: .2s linear;
}

.addition {}

.services .box-container1 .box1 img {
    height: 15rem;
}

.services .box-container1 .box1 h5 {
    font-size: 1.5rem;
    color: #333;
    padding-top: 1rem;
}

.services .box-container1 .box1 p {
    font-size: 1.3rem;
    color: #666;
    padding: 1rem 0;
} */

.about {
    background: url(images/about-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 3rem;
}

.about .column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.about .column .image {
    flex: 1 1 40rem;
}

.about .column .image img {
    width: 100%;
}

.about .column .content {
    flex: 1 1 40rem;
}

.about .column .content h3 {
    font-size: 3rem;
    color: #666;
}

.about .column .content p {
    font-size: 1.5rem;
    color: #666;
    padding: 1rem 0;
}

.about .column .content .buttons a:last-child {
    margin-left: 2rem;
}

.newsletter {
    text-align: center;
    padding: 5rem 1rem;
    background: url(images/subscribe-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.newsletter h3 {
    color: #fff;
    font-size: 3rem;
    text-transform: uppercase;
}

.newsletter p {
    color: #fff;
    font-size: 1.6rem;
    margin: 2rem auto;
    width: 70rem;
}

.newsletter form {
    display: flex;
    max-width: 70rem;
    border: .2rem solid #fff;
    padding: .5rem;
    border-radius: 5rem;
    margin: 2rem auto;
    height: 5.5rem;
}

.newsletter form input[type="email"] {
    padding: 0 2rem;
    font-size: 1.7rem;
    background: none;
    width: 100%;
    color: #fff;
    text-transform: none;
    background: none;
}

.newsletter form input[type="email"]::placeholder {
    color: #eee;
    text-transform: capitalize;
}

.newsletter form input[type="submit"] {
    background: #fff;
    width: 20rem;
    font-size: 1.7rem;
    border-radius: 5rem;
    cursor: pointer;
}

.newsletter form input[type="submit"]:hover {
    color: var(--pink);
}

.review .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.review .box-container .box {
    background: #fff;
    margin: 1rem;
    padding: 1rem;
    text-align: center;
    position: relative;
    border: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    flex: 1 1 30rem;
    border-radius: .5rem;
}

.review .box-container .box .fa-quote-right {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    color: var(--pink);
    opacity: .3;
}

.review .box-container .box .user img {
    border-radius: 50%;
    object-fit: cover;
    height: 7rem;
    width: 7rem;
    margin-top: 2rem;
}

.review .box-container .box .user h3 {
    color: var(--pink);
    font-size: 2rem;
}

.review .box-container .box .user .stars i {
    color: var(--purple);
    font-size: 1.5rem;
    padding: 1rem 0;
}

.review .box-container .box .comment {
    color: #666;
    font-size: 1.4rem;
    padding: 1rem;
}

.pricing .box-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing .box-container .box {
    flex: 1 1 27rem;
    margin: 1rem;
    padding: 1rem;
    background: #fff;
    border: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
    text-align: center;
    padding-bottom: 3rem;
}

.pricing .box-container .box:nth-child(2),
.pricing .box-container .box:hover {
    border: .2rem solid var(--pink);
}

.pricing .box-container .box .title {
    color: var(--purple);
    font-size: 2.5rem;
    padding-top: 1rem;
}

.pricing .box-container .box .price {
    font-size: 4rem;
    color: var(--pink);
    padding: 1rem 0;
}

.pricing .box-container .box .price span {
    font-size: 2rem;
}

.pricing .box-container .box ul {
    padding: 1rem 0;
    list-style: none;
}

.pricing .box-container .box ul li {
    font-size: 1.7rem;
    color: #666;
    padding: .5rem 0;
}

.pricing .box-container .box ul li .fa-check {
    color: lightgreen;
}

.pricing .box-container .box ul li .fa-times {
    color: tomato;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 4rem;
    margin-right: -120px;
    /* border-radius: 59px; */
}

.contact .image {
    flex: 1 1 40rem;
}

.contact .image img {
    width: 100%;
    padding: 2rem;
}

.contact form {
    flex: 1 1 40rem;
    padding: 2rem 3rem;
    border: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
    background: #fff;
}

.contact form .heading {
    text-align: left;
    padding: 0;
    padding-bottom: 2rem;
}

.contact form .inputBox {
    position: relative;
}

.contact form .inputBox input,
.contact form .inputBox textarea {
    width: 100%;
    background: none;
    color: #666;
    margin: 1.5rem 0;
    padding: .5rem 0;
    font-size: 1.7rem;
    border-bottom: .1rem solid rgba(0, 0, 0, .1);
    text-transform: none;
}

.contact form .inputBox textarea {
    resize: none;
    height: 13rem;
}

.contact form .inputBox label {
    position: absolute;
    top: 1.7rem;
    left: 0;
    font-size: 1.7rem;
    color: #666;
    transition: .2s linear;
}

.contact form .inputBox input:focus~label,
.contact form .inputBox input:valid~label,
.contact form .inputBox textarea:focus~label,
.contact form .inputBox textarea:valid~label {
    top: -.5rem;
    font-size: 1.5rem;
    color: var(--pink);
}

.footer {
    padding-top: 3rem;
    background: url(images/footer-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.footer .box-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 50px;
}

.footer .box-container .box {
    flex: 1 1 25rem;
    margin: 2rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 1rem;
}

.footer .box-container .box p {
    font-size: 1.5rem;
    padding: .5rem 0;
    color: #eee;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.5rem;
    padding: .5rem 0;
    color: #eee;
}

.footer .box-container .box a:hover {
    text-decoration: underline;
}

.footer .box-container .box .info {
    display: flex;
    align-items: center;
}

.footer .box-container .box .info i {
    margin: .5rem 0;
    margin-right: 1rem;
    border-radius: 50%;
    background: #fff;
    color: var(--pink);
    font-size: 1.5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
}

.footer .credit {
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: .1rem;
    color: #fff;
    border-top: .1rem solid #fff5;
    padding: 2.5rem 1rem;
    text-align: center;
}

.contactNum {
    position: relative;
    top: -20px;
}


/* .whatsapp_media {
    display: none;
} */


/* media queries  */

@media (max-width:1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width:991px) {
    section {
        padding: 0 3%;
        padding-top: 7.5rem;
        padding-bottom: 2rem;
    }
}

@media (max-width:768px) {
    .home .image .contact {
        width: 80vw;
    }
    header label {
        visibility: visible;
        opacity: 1;
    }
    header .navbar {
        position: fixed;
        background-color:white;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1rem 2rem;
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        transition: .2s linear;
        
    }
    .contactNum {
        top: 10px;
        right: 10px;
    }
    header .navbar a {
        display: block;
        margin: 2rem 0;
        font-size: 2rem;
    }
    header input:checked~.navbar {
        transform: scaleY(1);
        opacity: 1;
    }
    header input:checked~label::before {
        content: '\f00d';
    }
    .home,
    .services,
    .services-invert {
        flex-flow: column-reverse;
    }
    .home .image img {
        width: 100%;
    }
    .home .content h3 {
        font-size: 3.6rem;
    }
    .home .content p {
        font-size: 1.5rem;
    }
    .about {
        background-position: right;
    }
    .newsletter p {
        width: auto;
    }
}


/* @media (max-width:600px) {
    .whatsapp_media {
        display: block;
        height: 5rem;
    }
    .whatsapp {
        display: none;
    }
}
@media (max-width:465px) {

} */

@media (max-width:450px) {
    html {
        font-size: 50%;
    }
    .about .column .content .buttons a {
        width: 100%;
        text-align: center;
    }
    .about .column .content .buttons a:last-child {
        margin: 1rem 0;
    }
}

.fa-phone {
    transform: rotate(120deg);
}
ul {
    list-style: circle;
    margin-left: 45px;
    font-size: small;
}
.heading {
    text-align: left;
    background: #9c5789;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 2.5rem;
    text-transform: uppercase;
    padding: 1rem;
}
.Identify{
    background-color: white;
}
ul#ulforIdentify {
    color:#9c5789;
    margin-left: 50%;
    font-size: initial;
    margin-top: 1%;
    list-style-type: none;
}
h1#headingSecond {
    text-align: center;
    color: white;
    font-size: large;
    font-weight: 300;
}
h3#FormHeader {
    color: #9c5789;
    text-align: center;
}
input#submitbutton {
    background-color: #9c5789;
    align-content: center;
    margin-left: 82px;
}
.content {
    margin-left: -52px;
}
img#MyImage {
    width: 37%;
    margin-top: -23%;
    margin-left: 26px;
}
h1.heading {
    text-transform: unset;
}
div#Rectangle {
    background: linear-gradient(to right, #9c5789, #6a054e);
    color: white;
    border-radius: 50px 10px;
    padding: 22px;
    margin-top: -42px;
}
section#MyID {
    background-color: white;
}
span#weprovide {
    margin-left: 29pc;
    text-decoration: underline;
    font-size: 20px;
}

h2#Advantage {
    text-transform: math-auto;
    font-size: xx-large;
    font-weight: 500;
    margin-top: -51px;
    text-align: center;
}
.services .box-container .box img {
    height: 8rem;
}
.a-box {
    display: inline-block;
    width: 240px;
    text-align: center;
  }
  
  .img-container {
      height: 230px;
      width: 200px;
      overflow: hidden;
      border-radius: 0px 0px 20px 20px;
      display: inline-block;
  }
  
  .img-container img {
      transform: skew(0deg, -13deg);
      height: 250px;
      margin: -35px 0px 0px -70px;
  }
  
  .inner-skew {
      display: inline-block;
      border-radius: 20px;
      overflow: hidden;
      padding: 0px;
      transform: skew(0deg, 13deg);
      font-size: 0px;
      margin: 30px 0px 0px 0px;
      background: #c8c2c2;
      height: 250px;
      width: 200px;
  }
  
  .text-container {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    padding: 120px 20px 20px 20px;
    border-radius: 20px;
    background: #fff;
    margin: -120px 0px 0px 0px;
    line-height: 19px;
    font-size: 14px;
  }
  
  .text-container h3 {
    margin: 20px 0px 10px 0px;
    color: #04bcff;
    font-size: 18px;
  }
  .row2 {
    margin-left: 24%;
    margin-top: -27%;
}
.main-container {
    padding: 30px;
  }
  
  /* HEADING */
  
  .heading {
    text-align: center;
  }
  
  .heading__title {
    font-weight: 600;
  }
  
  .heading__credits {
    margin: 10px 0px;
    color: #888888;
    font-size: 25px;
    transition: all 0.5s;
  }
  
  .heading__link {
    text-decoration: none;
  }
  
  .heading__credits .heading__link {
    color: inherit;
  }
  
  /* CARDS */
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .card {
    margin: 20px;
    padding: 20px;
    width: 500px;
    min-height: 200px;
    display: grid;
    /* grid-template-rows: 20px 50px 1fr 50px; */
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
  }
  
  .card:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
    transform: scale(1.01);
  }
  
  .card__link,
  .card__exit,
  .card__icon {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .card__link::after {
    position: absolute;
    top: 25px;
    left: 0;
    content: "";
    width: 0%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.6);
    transition: all 0.5s;
  }
  
  .card__link:hover::after {
    width: 100%;
  }
  
  .card__exit {
    grid-row: 1/2;
    justify-self: end;
  }
  
  .card__icon {
    grid-row: 2/3;
    font-size: 30px;
  }
  
  .card__title {
    /* grid-row: 3/4; */
    font-weight: 400;
    color: #ffffff;
}
  
  .card__apply {
    grid-row: 4/5;
    align-self: center;
  }
  
  /* CARD BACKGROUNDS */
  .card-1,.card-2,.card-3,.card-4,.card-5 {
    background: radial-gradient(#9c5789, #460c36);
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 1600px) {
    .cards {
      justify-content: center;
    }
  }
  .heading__title {
    font-weight: 500;
    font-size: larger;
}
h3#Heading3 {
    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-left: 103px;
}
i#Subpoint {
    margin-right: 20px;
}
ul#Points {
    font-size: 15px;
}
img#ElitbuzzLogo {
    margin-bottom: -86px;
    margin-left: -41%;
    margin-top: -86px;
}
@media only screen and (max-width: 667px) {
    img#ElitbuzzLogo {
        width: 66%;
        margin-left: -23%;
        margin-top: -18px;
        margin-bottom: -51px;
    }
    section#contact {
        margin-right: 20%;
    }
    .home .content h1 {
        font-size: 3em;
        color: #333;
        text-transform: uppercase;
    }
    .content {
        margin-left: 26px;
    }
    span#weprovide {
        margin-left: -4px;
        text-decoration: underline;
        font-size: 20px;
    }
    ul#ulforIdentify {
        color: #1551c1a3;
        margin-left: 9%;
        font-size: initial;
        margin-top: 1%;
        list-style-type: none;
    }
    img#MyImage {
        width: 37%;
        margin-top: -23%;
        margin-left: 26px;
        display: none;
    }
    .card__title {
        /* grid-row: 3/4; */
        font-weight: 400;
        color: #ffffff;
        font-size: 15px;
    }
    h3#Heading3 {
        color: white;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        margin-left: 14px;
    }
}
@media only screen and (max-width: 1180px) {
    .content {
        font-size: 5px;
    }
    .home .content h2 {
        font-size: 3.7em;
        color: #666;
        padding: 1rem 0;
        font-weight: 500;
    }
    .content {
        margin-left: 19px;
    }
    section#contact {
        margin-right: 20px;
    }
    section#Identify {
        margin-top: -75px;
    }
    span#weprovide {
        margin-left: -19pc;
        text-decoration: underline;
        font-size: 20px;
    }

}