@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

:root{
    
    --primary-color: #fdc201;
    --primary-dull: #f48600;
    --secondary-color: #251449;
    --secondary-dull: rgb(231, 231, 231);
    --black:black;
    --white:white;
}


.page-header {
    height: 400px;
    margin-top: -75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(173, 171, 169, 0.9), rgba(8, 8, 8, 0.9)), url(img/bg-banner.jpg);
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/* ------------------------FORM SECTION --------------------------------------------- */


.form-section {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin: 5%;
    position: relative;
    z-index: 0;
}

.form-section .form-container {
    width: 50%;
    height: auto;
    z-index: 1;
    padding: 2%;
}

.form-section .form-container .form-title {
    margin-bottom: 5%;
}

.form-section .form-container .form-title h3 {
    color: var(--primary-dull);
    font-family: 'Poppins', sans-serif;

}

.form-section .contact-section .section-title {
    margin-bottom: 5%;
}

.form-section .contact-section .section-title h3 {
    color: var(--primary-dull);
    font-family: 'Poppins', sans-serif;

}

.form-section .form-container .form-title p {
    color: black !important;
    font-family: 'Poppins', sans-serif;

}

.form-section .contact-section .section-title p {
    color: var(--gray);
    font-family: 'Poppins', sans-serif;

}

.form-section .contact-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    padding: 2%;
}


.form-section .contact-section .contact-content {
    display: flex;
    width: 100%;
    justify-content: space-between;

}

.form-section .contact-section .contact-content .services-content-container {
    width: 30%;
    position: relative;
    height: 200px;
    background-color: rgb(237, 237, 237);
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.form-section .contact-section .contact-content .services-content-container .services-icons {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-dull);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
}

.form-section .contact-section .contact-content .services-content-container .services-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2%;
    text-align: center;
    bottom: -100%;
    transition: 0.5s;
}

.form-section .contact-section .contact-content .services-content-container .services-text a {
    text-decoration: none;
    color: var(--white);
    font-size: 12px;
    transition: 0.5s;
}


.form-section .contact-section .contact-content .services-content-container .services-text a:hover {
    color: #f48600;
}

.form-section .contact-section .contact-content .services-content-container:hover .services-icons {
    top: -100%;
}

.form-section .contact-section .contact-content .services-content-container:hover .services-text {
    bottom: 0;
}

.services-background {
    width: 100%;
    height: 100%;
    background: white;
    background: linear-gradient(304deg, rgba(236, 110, 7, 0.558) 100%, rgba(0, 0, 0, 0) 100%);
    transition: 1s;
    opacity: 0;
}

.form-section .contact-section .contact-content .services-content-container:hover .services-background {
    opacity: 1;
}

.form-section .form-container form {
    width: 100%;
}

.form-section .form-container form input {
    width: 80%;
    padding: 1%;
    margin-bottom: 2%;
    background: rgb(239, 239, 239);
    border: none;
}

.form-section .form-container form textarea {
    width: 80%;
    padding: 1%;
    margin-bottom: 2%;
    background: rgb(239, 239, 239);

    border: none;
}

.form-section .form-container form button {
    width: 80%;
    border: 1px solid var(--primary-dull);
    padding: 2%;
    color: var(--primary-dull);
    background: transparent;
    transition: 0.5s;
    font-weight: 700;
}

.form-section .form-container form button:hover {
    color: var(--white);
    background-color: #f48600;
}


.form-section .contact-background {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(img/);
    opacity: 40%;
    left: 0;
    top: 0;
}

/* ----------------------iframe section ------------------------------------------------------ */


.iframe-section .iframe-title {
    text-align: center;
    margin-bottom: 5%;
}

.iframe-section .iframe-title h3 {
    font-family: 'Poppins', sans-serif;
    color: #f48600;
}

.iframe-section .iframe-title p {
    font-family: 'Poppins', sans-serif;
    color: var(--gray);
}





@media screen and (max-width:320px) {

    /* ------------------------FORM SECTION --------------------------------------------- */


    .form-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin: 5%;
        position: relative;
        z-index: 0;
        padding: 5% 0;
    }

    .form-section .form-container {
        width: 100%;
        height: auto;
        z-index: 1;
        padding: 2%;
    }

    .form-section .form-container .form-title {
        margin-bottom: 5%;
    }

    .form-section .form-container .form-title h3 {
        color: var(--red);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title {
        margin-bottom: 5%;
    }

    .form-section .contact-section .section-title h3 {
        color: var(--red);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .form-container .form-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        z-index: 1;
        padding: 0%;
    }


    .form-section .form-container form {
        width: 100%;
    }

    .form-section .form-container form input {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form textarea {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form button {
        width: 100%;
        border: 1px solid #f48600;
        padding: 2%;
        color: black !important;
        background: #f48600 !important;
        transition: 0.5s;
        font-weight: 700;
    }



    .form-section .contact-section .contact-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form-section .contact-section .contact-content .services-content-container {
        width: 100%;
        position: relative;
        height: 200px;
        background-color: rgb(237, 237, 237);
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-bottom: 30px;
    }
    .form-section .contact-section .contact-content .services-content-container .services-text a {
        text-decoration: none;
        color: var(--white);
        font-size: 16px;
        transition: 0.5s;
    }
    
}

@media screen and (min-width:321px) and (max-width:425px) {
    /* ------------------------FORM SECTION --------------------------------------------- */


    .form-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin: 5%;
        position: relative;
        z-index: 0;
        padding: 5% 0;
    }

    .form-section .form-container {
        width: 100%;
        height: auto;
        z-index: 1;
        padding: 2%;
    }

    .form-section .form-container .form-title {
        margin-bottom: 5%;
    }

    .form-section .form-container .form-title h3 {
        color: var(--red);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title {
        margin-bottom: 5%;
    }

    .form-section .contact-section .section-title h3 {
        color: var(--red);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .form-container .form-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        z-index: 1;
        padding: 0%;
    }


    .form-section .form-container form {
        width: 100%;
    }

    .form-section .form-container form input {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form textarea {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }
    .form-section .form-container form button {
        width: 100%;
        border: 1px solid #f48600;
        padding: 2%;
        color: black !important;
        background: #f48600 !important;
        transition: 0.5s;
        font-weight: 700;
    }


    .form-section .contact-section .contact-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form-section .contact-section .contact-content .services-content-container {
        width: 100%;
        position: relative;
        height: 200px;
        background-color: rgb(237, 237, 237);
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-bottom: 30px;
    }
    .form-section .contact-section .contact-content .services-content-container .services-text a {
        text-decoration: none;
        color: var(--white);
        font-size: 16px;
        transition: 0.5s;
    }
    
}

@media screen and (min-width:426px) and (max-width:600px) {
    /* ------------------------FORM SECTION --------------------------------------------- */


    .form-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin: 5%;
        position: relative;
        z-index: 0;
        padding: 5% 0;
    }

    .form-section .form-container {
        width: 100%;
        height: auto;
        z-index: 1;
        padding: 2%;
    }

    .form-section .form-container .form-title {
        margin-bottom: 5%;
    }

    .form-section .form-container .form-title h3 {
        color: var(--red);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title {
        margin-bottom: 5%;
    }

    .form-section .contact-section .section-title h3 {
        color: var(--red);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .form-container .form-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        z-index: 1;
        padding: 0%;
    }


    .form-section .form-container form {
        width: 100%;
    }

    .form-section .form-container form input {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form textarea {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form button {
        width: 100%;
        border: 1px solid #f48600;
        padding: 2%;
        color: black !important;
        background: #f48600 !important;
        transition: 0.5s;
        font-weight: 700;
    }



    .form-section .contact-section .contact-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form-section .contact-section .contact-content .services-content-container {
        width: 100%;
        position: relative;
        height: 200px;
        background-color: rgb(237, 237, 237);
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-bottom: 30px;
    }
    .form-section .contact-section .contact-content .services-content-container .services-text a {
        text-decoration: none;
        color: var(--white);
        font-size: 16px;
        transition: 0.5s;
    }
    

}

@media screen and (min-width:601px) and (max-width:768px) {
    .form-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin: 5%;
        position: relative;
        z-index: 0;
        padding: 5% 0;
    }

    .form-section .form-container {
        width: 100%;
        height: auto;
        z-index: 1;
        padding: 2%;
    }

    .form-section .form-container .form-title {
        margin-bottom: 5%;
    }

    .form-section .form-container .form-title h3 {
        color: var(--red);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title {
        margin-bottom: 5%;
    }

    .form-section .contact-section .section-title h3 {
        color: var(--red);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .form-container .form-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        z-index: 1;
        padding: 0%;
    }


    .form-section .form-container form {
        width: 100%;
    }

    .form-section .form-container form input {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form textarea {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form button {
        width: 100%;
        border: 1px solid #f48600;
        padding: 2%;
        color: black !important;
        background: #f48600 !important;
        transition: 0.5s;
        font-weight: 700;
    }


    .form-section .contact-section .contact-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form-section .contact-section .contact-content .services-content-container {
        width: 100%;
        position: relative;
        height: 200px;
        background-color: rgb(237, 237, 237);
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-bottom: 30px;
    }
    .form-section .contact-section .contact-content .services-content-container .services-text a {
        text-decoration: none;
        color: var(--white);
        font-size: 16px;
        transition: 0.5s;
    }
    
}

@media screen and (min-width:769px) and (max-width:900px) {
    .form-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin: 5%;
        position: relative;
        z-index: 0;
        padding: 5% 0;
    }

    .form-section .form-container {
        width: 100%;
        height: auto;
        z-index: 1;
        padding: 2%;
    }

    .form-section .form-container .form-title {
        margin-bottom: 5%;
    }

    .form-section .form-container .form-title h3 {
        color: var(--primary-dull);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title {
        margin-bottom: 5%;
    }

    .form-section .contact-section .section-title h3 {
        color: var(--primary-dull);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .form-container .form-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        z-index: 1;
        padding: 0%;
    }


    .form-section .form-container form {
        width: 100%;
    }

    .form-section .form-container form input {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form textarea {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form button {
        width: 100%;
        border: 1px solid #f48600;
        padding: 2%;
        color: black !important;
        background: #f48600 !important;
        transition: 0.5s;
        font-weight: 700;
    }



    .form-section .contact-section .contact-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form-section .contact-section .contact-content .services-content-container {
        width: 100%;
        position: relative;
        height: 200px;
        background-color: rgb(237, 237, 237);
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-bottom: 30px;
    }
    .form-section .contact-section .contact-content .services-content-container .services-text a {
        text-decoration: none;
        color: var(--white);
        font-size: 16px;
        transition: 0.5s;
    }
    
}

@media screen and (min-width:901px) and (max-width:992px) {
    .form-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin: 5%;
        position: relative;
        z-index: 0;
        padding: 5% 0;
    }

    .form-section .form-container {
        width: 100%;
        height: auto;
        z-index: 1;
        padding: 2%;
    }

    .form-section .form-container .form-title {
        margin-bottom: 5%;
    }

    .form-section .form-container .form-title h3 {
        color: var(--primary-dull);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title {
        margin-bottom: 5%;
    }

    .form-section .contact-section .section-title h3 {
        color: var(--primary-dull);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .form-container .form-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        z-index: 1;
        padding: 0%;
    }


    .form-section .form-container form {
        width: 100%;
    }

    .form-section .form-container form input {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form textarea {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form button {
        width: 100%;
        border: 1px solid #f48600;
        padding: 2%;
        color: black !important;
        background: #f48600 !important;
        transition: 0.5s;
        font-weight: 700;
    }


    .form-section .contact-section .contact-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form-section .contact-section .contact-content .services-content-container {
        width: 100%;
        position: relative;
        height: 200px;
        background-color: rgb(237, 237, 237);
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-bottom: 30px;
    }
    .form-section .contact-section .contact-content .services-content-container .services-text a {
        text-decoration: none;
        color: var(--white);
        font-size: 16px;
        transition: 0.5s;
    }
    
}

@media screen and (min-width:993px) and (max-width:1024px) {
    .form-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin: 5%;
        position: relative;
        z-index: 0;
        padding: 5% 0;
    }

    .form-section .form-container {
        width: 100%;
        height: auto;
        z-index: 1;
        padding: 2%;
    }

    .form-section .form-container .form-title {
        margin-bottom: 5%;
    }

    .form-section .form-container .form-title h3 {
        color: var(--primary-dull);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title {
        margin-bottom: 5%;
    }

    .form-section .contact-section .section-title h3 {
        color: var(--primary-dull);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .form-container .form-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        z-index: 1;
        padding: 0%;
    }


    .form-section .form-container form {
        width: 100%;
    }

    .form-section .form-container form input {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form textarea {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form button {
        width: 100%;
        border: 1px solid #f48600;
        padding: 2%;
        color: black !important;
        background: #f48600 !important;
        transition: 0.5s;
        font-weight: 700;
    }

    .form-section .contact-section .contact-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form-section .contact-section .contact-content .services-content-container {
        width: 100%;
        position: relative;
        height: 200px;
        background-color: rgb(237, 237, 237);
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-bottom: 30px;
    }
    .form-section .contact-section .contact-content .services-content-container .services-text a {
        text-decoration: none;
        color: var(--white);
        font-size: 16px;
        transition: 0.5s;
    }
    .form-section .contact-section .contact-content .services-content-container .services-text a {
        text-decoration: none;
        color: var(--white);
        font-size: 16px;
        transition: 0.5s;
    }
    
}

@media screen and (min-width:1025px) and (max-width:1140px) {
    .form-section {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        margin: 5%;
        position: relative;
        z-index: 0;
        padding: 5% 0;
    }

    .form-section .form-container {
        width: 100%;
        height: auto;
        z-index: 1;
        padding: 2%;
    }

    .form-section .form-container .form-title {
        margin-bottom: 5%;
    }

    .form-section .form-container .form-title h3 {
        color: var(--primary-dull);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title {
        margin-bottom: 5%;
    }

    .form-section .contact-section .section-title h3 {
        color: var(--primary-dull);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .form-container .form-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section .section-title p {
        color: var(--gray);
        font-family: 'Poppins', sans-serif;

    }

    .form-section .contact-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        z-index: 1;
        padding: 0%;
    }


    .form-section .form-container form {
        width: 100%;
    }

    .form-section .form-container form input {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form textarea {
        width: 100%;
        padding: 1%;
        margin-bottom: 2%;
        background: rgb(196, 196, 196);
        border: none;
    }

    .form-section .form-container form button {
        width: 100%;
        border: 1px solid var(--red);
        padding: 2%;
        color: var(--red);
        background: transparent;
        transition: 0.5s;
        font-weight: 700;
    }



    .form-section .contact-section .contact-content {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form-section .contact-section .contact-content .services-content-container {
        width: 100%;
        position: relative;
        height: 200px;
        background-color: rgb(237, 237, 237);
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-bottom: 30px;
    }
    .form-section .contact-section .contact-content .services-content-container .services-text a {
        text-decoration: none;
        color: var(--white);
        font-size: 16px;
        transition: 0.5s;
    }
    
}

/* blinking  */

.blinking {
    position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    opacity: 70%;
    z-index: 12;
}

.blick {
    width: 40px;
    height: 40px;
}

.blinking .blick img{
    width: 100%;
    animation: blink 2s linear infinite;
    border-radius: 50%;
    opacity: 100%;
    margin-top: 0;
}

@keyframes blink {
    0%{
        box-shadow: 
        0 0 0 0.7rem var(--green),
        0 0 0 1rem var(--green),
        0 0 0 5rem var(--green),;
    }

    100%{
        box-shadow: 
        0 0 0 1rem var(--green),
        0 0 0 3rem var(--green),
        0 0 0 5rem var(--green);
    }
}


.blinking-2 {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    opacity: 70%;
    z-index: 12;
}

.blick-2 {
    width: 40px;
    height: 40px;

}

.blinking-2 .blick-2 img{
    width: 100%;
    border-radius: 50%;
    animation: blink-1 2s linear infinite;
    opacity: 100%;
    margin-top: 0;
}

@keyframes blink-1 {
    0%{
        box-shadow: 
        0 0 0 0.7rem var(--blue),
        0 0 0 1rem var(--blue),
        0 0 0 5rem var(--blue),;
    }

    100%{
        box-shadow: 
        0 0 0 1rem var(--blue),
        0 0 0 3rem var(--blue),
        0 0 0 5rem var(--blue);
    }
}







