/*start
custom dropdown for applications*/
.dropdown-applications {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem 0.5rem 1rem;
  cursor: pointer;
}

.dropdown-applications-content {
  display: none;
  position: absolute;
  background-color: #141414;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown-applications:hover .dropdown-applications-content {
  display: block;
  cursor: pointer;
  color: var(--red1);
}

.navbar a.dropdown-applications-links {
    border-top: none;
    padding: 0;
    text-transform: none;
    color: inherit;
    text-decoration: none;
}



    /*end
custom dropdown for applications*/

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*
    2. Remove default margin
  */
* {
    margin: 0;
}

/*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/*
    5. Improve media defaults
  */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/*
    6. Remove built-in form typography styles
  */
input,
button,
textarea,
select {
    font: inherit;
}

/*
    7. Avoid text overflows
  */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
    overflow: hidden;
}

/*
    8. Create a root stacking context
  */
#root,
#__next {
    isolation: isolate;
}

:root {
    --black: #000;
    --black1: #141414;
    --red: red;
    --red1: rgb(219, 4, 4);
    --red2: rgb(181, 1, 1);
    --orange: orange;
    --white: white;
    --gray: rgb(238, 236, 236);

}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", serif;
    font-weight: 400;
    font-style: normal;
}

p,
li {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: .9em !important;
}

.active-pg{
    color:var(--red1) !important;
}
.no-a{
    color: var(--white) !important;
}
/* fix for certain items*/
.margin-remove{
    margin-left: 0px !important;
    margin-right: 0px !important;
    
}
.padding-remove{
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.btn:focus,.btn:active {
    outline: none !important;
    box-shadow: none;
 }
.img-fit{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.fixed-holder{
    height: 70px !important;
}

#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: green;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    right: 1%;
    /* Center the snackbar */
    top: 3.8rem;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
                However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
    animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

#Negative-snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: green;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    right: 1%;
    /* Center the snackbar */
    top: 3.8rem;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#Negative-snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
                However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
    animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 1%;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 1%;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 1%;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}


#scroll-to-top-btn {
    display: none;
    /* Hide button by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--red1);
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

#scroll-to-top-btn:hover {
    background-color: var(--red2);
}

/*Animations*/
@media (min-width:1000px) {

    .reveal-fade-up-3,
    .reveal-fade-up-2 {
        transition: 1.2s all ease;
    }

}

.reveal-fade-up {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1.5s all ease;
overflow: hidden;

}

.reveal-fade-up.active {
    transform: translateY(0);
    opacity: 1;
    overflow-y: hidden;
}

.reveal-fade-up-2 {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 2s all ease;

}

.reveal-fade-up-2.active {
    transform: translateY(0);
    opacity: 1;
}

.reveal-fade-up-3 {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 2.5s all ease;
}

.reveal-fade-up-3.active {
    transform: translateY(0);
    opacity: 1;
}

.reveal-fade-left {
    /* position: relative;
    transform: translateX(150px);
    opacity: 0;
    transition: 1.5s all ease; */
    position: relative;
    transform: translateX(-150px);
    opacity: 0;
    transition: 1.5s all ease;

}

.reveal-fade-left.active {
    /* transform: translateX(0);
    opacity: 1; */
    transform: translateX(0);
    opacity: 1;
}

.reveal-fade-right {
    position: relative;
    transform: translateX(-150px);
    opacity: 0;
    transition: 1.5s all ease;

}

.reveal-fade-right.active {
    transform: translateX(0);
    opacity: 1;
}

* {
    /* overflow-x: hidden; */
    scroll-behavior: smooth;
}


.iframe {
    width: 100%;
}
.title {
    background-image: url(../Images/title.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    height: 5.5rem;
    flex-wrap: wrap;
    align-content: end;
    /* justify-items: end; */
    display: flex;
}

.title h2 {
    margin-left: 5rem;
    color: var(--white);
    font-size: 2.5rem;
}

/* Navbar */
.icon {
    width: auto;
    height: 60%;
    margin-left: 3vw;
}

nav {
    position: fixed;
    background-color: var(--black1);
    color: var(--gray);
}
#Header{
    background-color: var(--black1);
    color: var(--gray);
    position:fixed;
    top: 0;
    
}
header {
    padding: 5px;
    width: 100%;
    height: 70px;
    background-color: rgb(218, 218, 218);
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}


.navbar a {
    border-top: 1px solid transparent;
    padding: 0.5rem 1rem 0.5rem 1rem;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
}
.navbar a:hover{
    color: var(--red1);
}

header li a:visited {
    color: var(--white);
}

.header li a:hover {
    cursor: pointer;
    color: var(--red);
}
.bgwhite{
    background-color: var(--white);
}

.header-1 {
    width: auto;
    height: 100vh;
    background-image: url(../Images/back-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    align-items: center;
}

.header-1 div {
    width: 70%;
    margin-left: 0rem;
    margin-top: 60vh;
    padding: 1em 0em 0em 0em
}

.header-1 div h1 {
    font-size: 4em;
    color: var(--black);
    margin-left: 0.5em;;

}

.header-1 div h4 {
    color: inherit;
    margin-left: 1.8em;
    margin-top: -.5em
}

.header-1 div h6 {
    color: var(--red);
    margin-top: .5em;
    float:right;
    margin-right: 1em;
}

.button-red {
    color: var(--white);
    background-color: var(--red);
    border: 1px solid var(--red1);
    width: 11rem;
    padding:0.5em;
    border-radius: .3rem;
    margin: 1rem;
}

.button-white {
    color: var(--black);
    background-color: var(--white);
    border: 1px solid var(--red1);
    width: 10rem;
    padding:0.5em;
    border-radius: .3rem;
    margin: auto;
}

.button-white:hover {
    color: var(--red);
    background-color: var(--white);
    border: 1px solid var(--red1);
    width: 10rem;
    border-radius: .3rem;
    margin: auto;
}

.button-white-1 {
    color: var(--white);
    background-color: var(--red);
    border: 1px solid var(--red1);
    width: 10rem;
    padding:0.5em;
    border-radius: .3rem;
    margin: auto;
}

.button-white-1:hover {
    color: var(--black);
    background-color: var(--red);
    border: 1px solid var(--red1);
    width: 10rem;
    border-radius: .3rem;
    margin: auto;
}

.button-red:hover {
    color: #fff;
    background-color: var(--red2);
    border-color: var(--red1);
    cursor: pointer;
}

.header-2 {
    padding: 3rem 8rem;
    text-align: center;
    background-color: var(--white);
    overflow-y: hidden !important;
}
.engagement{
    padding: 3rem 8rem;
}
.space {
    padding-bottom: 1rem;
}

.block-2 {
    /* border: 0.5px solid var(--black); */
    box-shadow: 2px 2px 5px var(--red);
    border-radius: 50%;
    padding: 2rem 1.5rem;
    background-color: var(--white);
}

.block-2 p {
    width: 90%;
    margin: auto;
    font-size: 1rem;
}

.block-2 h4 {
    font-size: 1.2rem;
}

.image-small {
    height: 4rem;
    width: auto;
    margin: auto auto 1rem;
}

.padd {
    padding: 3rem 8rem;
}
.padd-inner {
    padding: 3rem 0rem;
}

.padd-1 {
    padding: 3rem 4rem;
}

.padd-2 {
    padding: 1.5rem 1rem;

}

/* .line-left {
    border-left: 1px solid var(--gray);

} */

.no-line {
    border: none;
}

/* About Us Section*/
.about {
    display: grid;
    text-align: left;
}

.image-smaller {
    height: 1.5rem;
    margin: auto 1em 1em 1em;
}

.image-smallest {
    height: 1rem;
    margin: auto;
}

.image-smaller-x {
    height: 1.8rem;
    margin: auto;
    margin-right: 0.5rem
}


.margin-left {
    margin-left: 3rem;
}

.center-content {
    display: grid;
    align-content: center;
}
.center-content-1 {
    display: grid;
    align-content: center;
    justify-content: center;
}

.button-red-1 {
    color: #fff;
    background-color: var(--red);
    border: 1px solid var(--red1);
    width: 8rem;
    border-radius: .3rem;
    margin-top: 0.5rem;
}

.button-red-1:hover {
    color: #fff;
    background-color: var(--red2);
    border-color: var(--red1);
    cursor: pointer;
}

/*Services*/
.red {
    background-color: var(--red2) !important;
    color: var(--white) !important;
}

.black {
    background-color: var(--black1) !important;
    color: var(--white) !important;
}

.services {
    padding: 2rem 10rem;
    display: grid;
    text-align: left;
}

.header-3 {
    padding: 5rem 10rem;
    text-align: center;
    background-color: var(--black);
    color: var(--white);
}

.block-3 {
    border-radius: 0.2rem;
    padding: 2rem 1.5rem;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid transparent;

}

.block-3:hover h4 {
    color: var(--red);

}

.block-3:hover {
    cursor: pointer;
}

.of-hidden {
    overflow-y: hidden !important;
}

.bg-red {
    background-color: var(--red2);
    color: var(--white);
    border: 1px solid transparent;
}

.bg-red:hover h4 {
    color: var(--black);
}

.bg-white {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid transparent;
}
.block-3 p {
    width: 90%;
    margin: auto;
    font-size: 1rem;
}

.block-3 h4 {
    font-size: 1.2rem;
}

.footer {
    background-color: var(--black1);
    color: var(--white);
   

}

.footer-1 {
    background-color: var(--black1);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-size: x-small;

}

/* .footer h2 {
    padding-bottom: 0.2rem;
} */

.footer ul {
    padding: 0;
    padding-top: 1.5rem;
}

.footer a {
    color: var(--gray);
}

.footer a:hover {
    color: var(--white);
}

.footer a:visited {
    color: var(--white);
}

.footer-1 div {
    margin-top: 0.2rem;
}

.yortek {
    color: var(--white);
    text-decoration: none;
}

.yortek:hover {
    color: var(--red1);
    cursor: pointer;
}

/* About Page */

/* About Us Section*/
.abt {
    display: grid;
    text-align: left;
}

.abt-header-2 {
    padding: 3rem 8rem 3rem;
}

.padd-top {
    padding-top: 7rem;
}

.unique-box {
    background-color: var(--red2);
    gap: 2rem;
    padding: 3rem 15rem 4rem;
}

.unique {
    background-color: var(--red2);
    gap: 2rem;
    padding: 3rem 10rem 4rem;
}

.unique h2 {
    color: var(--white)
}

.unq-box {
    border: 1px solid transparent;
    background-color: var(--white);
    border-radius: .2rem;
    /* max-width: 60% !important; */
    text-align: center;
    padding: 2rem;
    display: grid;
    align-items: center;
}

/* .unq-box:hover {
    background-color: var(--black);
    color: var(--white);
} */

.unq-box h4,
.unq-box-1 h4 {
    font-size: 1rem !important;
    margin: 0rem;
}

.unq-box-1 {
    border: 2px solid var(--black);
    background-color: var(--black);
    color: var(--white);
    border-radius: .2rem;
    /* max-width: 60% !important; */
    text-align: center;
    padding: 2rem 3rem;
    display: grid;
    align-items: center;
}

/* .unq-box-1:hover {
    background-color: var(--white);
    color: var(--black1);
} */

.header-1-1 {
    width: auto;
    height: auto;
    background-image: url(../Images/back-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    align-items: center;
    padding: 4rem;
}

.header-31 {
    padding: 5rem 7rem;
    background-color: var(--black);
    color: var(--white);
    overflow: hidden;
}
.header-31-contact {
    padding: 5rem 1rem;
    background-color: var(--black);
    color: var(--white);
    overflow: hidden;
}
.header-31-2 {
    padding: 4rem 5rem;
    background-color: var(--black);
    color: var(--white);
}

.width-80 {
    width: 90%;
    margin: auto;
    align-items: center;
}

.values li {
    line-height: 2em;
}

/*Contact Page*/
.contact-header {
    padding-top: 5.5rem;
    background-image: url(../Images/background-1.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 12rem
}

.contact-header h3 {
    margin-left: 2rem;
    font-size: 3rem;
    color: var(--white)
}

/* Contact Us Page*/

.form1 {
    /* background-color: var(--gray); */
    height: auto;
    padding: 4rem 8rem 2rem 8rem;
}

.form-group {
    display: inline-block;
    width: 100%;
    margin-top: .5rem;
}

.form {
    padding: 2rem 7rem;
    width: 100%;
}

input[type="date"],
input[type="time"],
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    padding: 1rem 0.5rem;
    border: #ccc;
    border-bottom: 1px solid var(--black);
    outline: var(--white) !important;
    box-sizing: border-box;
    margin-bottom: 0.2rem;
}

.form button {
    margin: auto;
    width: 8rem;
    margin-top: 2rem;
    padding: 0.2rem;
}


      /* Testimonials Section*/
      .testim-sect {
        height: auto;
        padding: 2rem 8.5rem;
        background-color: var(--red1);
        
      }
      .testim-sect p {
        text-align: center;
      }
      .testim-sect h2 {
        color: var(--white);
      }
      .media-scroller {
        display: grid;
        gap: 1rem;
        padding-bottom: 1.5rem;
      }
      .testimonial {
        display: none;
        padding: 1rem;
        width: 70vw;
        text-align: center;
        margin: auto auto;
        color: var(--black);
        background-color: var(--white);
        object-fit: cover;
        border-radius: .2rem;
        box-shadow: 5px 5px 5px rgb(113, 9, 9);
      }
      .testimonial.active {
        display: grid;
      }
      .testimonial h5 {
        text-align: center;
      }

    
  

      .step {
        background-color:var(--red);
        color: white;
        padding: 20px;
        height: 150px;
        display: flex;
        text-align: center;
        align-items: center;
        margin-bottom: 10px;
        box-shadow: -10px -10px 0px 0px var(--black1);
        border: 1px solid var(--red);
    }
    .step:hover{
        background-color: var(--white);
        border: 1px solid var(--black1);
        color: var(--black);
        cursor: pointer;
        
    }
    
    .arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        max-width: fit-content;
    }
    .arrow-1 {
        font-size: 2rem;
        max-width: fit-content;
    }
    .receivable {
        text-align: center;
        margin-top: 2px;
        font-weight: bold;
        display: grid;
        align-items: center;
        width: 100%;
        justify-content: center;
        padding: 0rem 2rem ;
    }
    .long-arrow {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }
    .long-arrow svg {
        width: 100%;
        margin: 0rem 2rem;
    }


        .steps {
            padding-left: 2rem;
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
        }
.sizes{
    min-width: 200px;
}
@media (min-width: 992px) and (max-width: 1150px) {
     .header-3 {
        padding: 5rem 3rem;
    }
    .unique {
        padding: 3rem 3rem 4rem;
    }
    .form1 {
        padding: 4rem 2rem 2rem;
    }
    .form {
        padding: 2rem 2rem;
    }
}

@media screen and (max-width: 990px) {
    .navbar {
        display: none !important;
        visibility: hidden;
    }

}
@media (min-width: 501px) and (max-width: 750px) {

    .testim-sect{
        padding: 1.5rem 3rem;
    }
    .testim-sect .mb-4{
        margin-bottom: 0.5rem !important;
    }
    .header-2 {
        padding: 5rem 3rem;
    }
    .abt-header-2 {
        padding: 3rem 4rem;
    }
    .header-31 {
        padding: 5rem 3rem;
    }
    .header-31-contact {
        padding: 5rem 3rem;
    }
    .header-31-2 {
        padding: 4rem 2rem;
    }
    .header-1-1 {
        padding: 1rem 4rem;
    }
  
}
@media (min-width: 501px) and (max-width: 990px) {

    .padd {
        padding: 3rem 4rem;
    }
    .padd-inner {
        padding: 3rem 4rem;
    }
    .header-3 {
        padding: 5rem 3rem;
    }
    .engagement {
        padding: 3rem 4rem;
    }
    .form {
        padding: 2rem 2rem;
    }
    .form1 {
        padding: 4rem 3rem 2rem;
    }

}
@media screen and (max-width: 500px) {
    .testim-sect{
        padding: 1.5rem 0rem;
    }
    .testim-sect .mb-4{
        margin-bottom: 0.5rem !important;
    }
    .values{
        margin-top: 2rem;
    }
    .header-1 div {
        width: 90%;
        margin-left: 0rem;
        margin-top: 60vh;
        padding: 1em 0em 0em 0em;
    }
    .title{
        height: 5rem;
    }
    /*Index Page 500px*/
    .engagement {
        padding: 3rem 2rem;
    }
    /*Landing Page 500px*/
    .header-1 div h1 {
        font-size: 2em;
    }

    .header-1 div h4 {
        font-size: 1em;
    }

    .header-1 div {
        margin-left: 1rem;
    }

    .header-2 {
        padding: 2em;
    }

    .margin-left {
        margin-left: 0rem;
        ;
    }

    .image-smaller {
        margin-left: 0rem;
    }

    .h2,
    h2 {
        font-size: calc(1.325rem + -0.1vw) !important;
    }

    .button-red-1 {
        margin: auto auto;
    }

    .header-3 {
        padding: 3em 2em;
    }

    .d-flex {
        justify-content: center;
    }

    .padd {
        padding: 2em;
    }

    .padd button {
        margin: auto auto;
    }

    .footer {
        padding: 2em;

    }

    .footer .padd-1 {
        padding: 0em;
        ;
    }

    .margin-left p {
        text-align: center;
    }

   

    /*About Page 500px*/
.abt-header-2{
    padding:2em;
}
.abt-header-2 p{
    text-align: justify;
}
.reverse{
    flex-wrap: wrap-reverse;
}
.unique{
    padding: 2em;;
}
.unq-box-1, .unq-box{
    margin: auto;
    min-width:80% !important;
}
.header-31, .header-31-2{
    padding: 2em;;
}
.header-31 div p{
    text-align: center;
}
.header-31-contact div p{
    text-align: center;
}
.header-1-1{
    padding: 1em;;
}
.header-31-2 div p{
    text-align: justify;
}

#scroll-to-top-btn img{
    margin-bottom: 0.2em;;
}
.col-lg br{
    display: none
}


/* Contact 500px*/
.padd-2{
    padding:.75rem 2rem
}
.padd-2 .margin-left{
    margin-left: 1.5em;
}

.form{
    padding:1em 1.5em 1em 2.8em
}

.form1 {
    padding: 4rem 1rem 2rem;
}
.know img{
    margin-bottom: 0em;
}
}
@media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }

}

/*Whatsapp Button CSS*/
  body {
      font-family: "Lato", sans-serif;

  }

  #send-it a:link,
  .blantershow-chat a:link,
  .close-chat a:link,
  #send-it a:visited,
  .blantershow-chat a:visited,
  .close-chat a:visited,
  .blantershow-chat a {
      color: #444;
      text-decoration: none;
      transition: all 0.4s ease-in-out;
  }

  /* h1 {
      font-size: 20px;
      text-align: center;
      display: block;
      background: linear-gradient(to right top, #6f96f3, #164ed2);
      padding: 20px;
      color: #fff;
      border-radius: 50px;
  } */
 

  /* CSS Multiple Whatsapp Chat */
  .whatsapp-name {
      font-size: 16px;
      font-weight: 600;
      padding-bottom: 0;
      margin-bottom: 0;
      line-height: 0.5;
      align-content: center;
  }
  .whatsapp-name h5{
    margin-bottom: 0 ;
  }

  #whatsapp-chat {
      box-sizing: border-box !important;
      outline: none !important;
      position: fixed;
      width: 350px;
      border-radius: 10px;
      box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
      bottom: 90px;
      left: 30px;
      overflow: hidden;
      z-index: 99;
      animation-name: showchat;
      animation-duration: 1s;
      transform: scale(1);
  }

  a.blantershow-chat {
      /*   background: #009688; */
      background: #fff;
      color: #404040;
      position: fixed;
      display: flex;
      font-weight: 400;
      justify-content: space-between;
      z-index: 98;
      bottom: 25px;
      left: 30px;
      font-size: 15px;
      padding: 10px 20px;
      border-radius: 30px;
      box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
      text-decoration: none;
  }

  a.blantershow-chat svg {
      transform: scale(1.2);
      margin: 0 10px 0 0;
  }

  .header-chat {
      /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
      background: #009688;
      background: #095e54;
      color: #fff;
      padding: 20px;
  }

  .header-chat h3 {
      margin: 0 0 10px;
  }

  .header-chat p {
      font-size: 14px;
      line-height: 1.7;
      margin: 0;
  }

  .info-avatar {
      position: relative;
      display: flex;
      align-items: center;
  }

  .info-avatar img {
      border-radius: 100%;
      width: 50px;
      float: left;
      margin: 0 10px 0 0;
  }

  a.informasi {
      padding: 20px;
      display: block;
      overflow: hidden;
      animation-name: showhide;
      animation-duration: 0.5s;
  }

  a.informasi:hover {
      background: #f1f1f1;
  }

  .info-chat span {
      display: block;
  }

  #get-label,
  span.chat-label {
      font-size: 12px;
      color: #888;
  }

  #get-nama,
  span.chat-nama {
      margin: 5px 0 0;
      font-size: 15px;
      font-weight: 700;
      color: #222;
  }

  #get-label,
  #get-nama {
      color: #fff;
  }

  span.my-number {
      display: none;
  }

  textarea#chat-input {
      border: none;
      font-family: "Arial", sans-serif;
      width: 100%;
      height: 40px;
      outline: none;
      resize: none;
      padding: 10px;
      font-size: 14px;
      margin-bottom: 0%;
  }

  a#send-it {
      width: 45px;
      font-weight: 700;
      padding: 10px 9px 0;
      background: #eee;


      svg {
          fill: #a6a6a6;
          height: 24px;
          width: 24px;
      }
  }

  .first-msg {
      background: transparent;
      padding: 30px;
      text-align: center;

      & span {
          background: #e2e2e2;
          color: #333;
          font-size: 14.2px;
          line-height: 1.7;
          border-radius: 10px;
          padding: 15px 20px;
          display: inline-block;
      }
  }

  .start-chat .blanter-msg {
      display: flex;
  }

  #get-number {
      display: none;
  }

  a.close-chat {
      position: absolute;
      top: 5px;
      right: 15px;
      color: #fff;
      font-size: 30px;
      text-decoration: none;
  }


  @keyframes ZpjSY {
      0% {
          background-color: rgb(182, 181, 186);
      }

      15% {
          background-color: rgb(17, 17, 17);
      }

      25% {
          background-color: rgb(182, 181, 186);
      }
  }
  @keyframes hPhMsj {
      15% {
          background-color: rgb(182, 181, 186);
      }

      25% {
          background-color: rgb(17, 17, 17);
      }

      35% {
          background-color: rgb(182, 181, 186);
      }
  }
  @keyframes iUMejp {
      25% {
          background-color: rgb(182, 181, 186);
      }

      35% {
          background-color: rgb(17, 17, 17);
      }

      45% {
          background-color: rgb(182, 181, 186);
      }
  }
  @keyframes showhide {
      from {
          transform: scale(0.5);
          opacity: 0;
      }
  }
  @keyframes showchat {
      from {
          transform: scale(0);
          opacity: 0;
      }
  }

  
  #whatsapp-chat.hide {
      display: none;
      animation-name: showhide;
      animation-duration: 0.5s;
      transform: scale(1);
      opacity: 1;
  }
  #whatsapp-chat.show {
      display: block;
      animation-name: showhide;
      animation-duration: 0.5s;
      transform: scale(1);
      opacity: 1;
  }
  .whatsapp-message-container {
      display: flex;
      z-index: 1;
  }
  .whatsapp-message {
      padding: 7px 14px 6px;
      background-color: rgb(255, 255, 255);
      border-radius: 0px 8px 8px;
      position: relative;
      transition: all 0.3s ease 0s;
      opacity: 0;
      transform-origin: center top 0px;
      z-index: 2;
      box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
      margin-top: 4px;
      margin-left: -54px;
      max-width: calc(100% - 66px);
  }
  .whatsapp-chat-body {
      padding: 20px 20px 20px 10px;
      background-color: rgb(230, 221, 212);
      position: relative;

      &::before {
          display: block;
          position: absolute;
          content: "";
          left: 0px;
          top: 0px;
          height: 100%;
          width: 100%;
          z-index: 0;
          opacity: 0.08;
          background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
          /*background-image: url(https://res.cloudinary.com/eventbree/image/upload/v1575782560/Widgets/whatsappbg_opt.jpg);*/
      }
  }
  .dAbFpq {
      display: flex;
      z-index: 1;
  }
  .eJJEeC {
      background-color: rgb(255, 255, 255);
      width: 52.5px;
      height: 32px;
      border-radius: 16px;
      display: flex;
      -moz-box-pack: center;
      justify-content: center;
      -moz-box-align: center;
      align-items: center;
      margin-left: 10px;
      opacity: 0;
      transition: all 0.1s ease 0s;
      z-index: 1;
      box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  }
  .hFENyl {
      position: relative;
      display: flex;
  }
  .ixsrax {
      height: 5px;
      width: 5px;
      margin: 0px 2px;
      border-radius: 50%;
      display: inline-block;
      position: relative;
      animation-duration: 1.2s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
      top: 0px;
      background-color: rgb(158, 157, 162);
      animation-name: ZpjSY;
  }
  .dRvxoz {

      height: 5px;
      width: 5px;
      margin: 0px 2px;
      background-color: rgb(182, 181, 186);
      border-radius: 50%;
      display: inline-block;
      position: relative;
      animation-duration: 1.2s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
      top: 0px;
      animation-name: hPhMsj;
  }
  .kAZgZq {
      padding: 7px 14px 6px;
      background-color: rgb(255, 255, 255);
      border-radius: 0px 8px 8px;
      position: relative;
      transition: all 0.3s ease 0s;
      opacity: 0;
      transform-origin: center top 0px;
      z-index: 2;
      box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
      margin-top: 4px;
      margin-left: -54px;
      max-width: calc(100% - 66px);

      &::before {
          position: absolute;
          background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
          background-position: 50% 50%;
          background-repeat: no-repeat;
          background-size: contain;
          content: "";
          top: 0px;
          left: -12px;
          width: 12px;
          height: 19px;
      }
  }
  .bMIBDo {
      font-size: 13px;
      font-weight: 700;
      line-height: 28px;
      color: rgba(0, 0, 0, 0.4);
  }
  .iSpIQi {
      font-size: 14px;
      line-height: 10px;
      margin-top: 4px;
      color: rgb(17, 17, 17);
  }
  .cqCDVm {
      text-align: right;
      margin-top: 4px;
      font-size: 12px;
      line-height: 22px;
      color:
          rgba(17, 17, 17, 0.5);
      margin-right: -8px;
      margin-bottom: -4px;
  }

  @media screen and (max-width: 480px) {
    #whatsapp-chat {
        width: auto;
        left: 5%;
        right: 5%;
        font-size: 80%;
    }
    .header-chat p {
        line-height: 1.2;
    }
}