:root {
    --orange: #ffb500;
    --purple: #3E4095;
    --dark-purple: #131e32;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.website_container {
    max-width: 1170px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: var(--purple);
    font-weight: bold;
}

.font-rubik {
    font-family: 'Rubik', sans-serif !important;
}

.text-gold {
    color: var(--orange);
}

.first-word {
    color: var(--purple);
}

.last-word {
    color: var(--orange);
}

.section-mb {
    margin-bottom: 120px !important;
}

.section-mt {
    margin-top: 120px !important;
}

.section-pb {
    padding-bottom: 120px !important;
}

.section-pt {
    padding-top: 120px !important;
}

.mb-10 {
    margin-bottom: 40px;
}

.section_border {
    border-bottom: 1px solid #bababa;
}

/*///////////////////////////////////////////////*/
/*///////////////////// HEADER //////////////////*/
/*///////////////////////////////////////////////*/

.wraper_header.static-header {
    position: relative;
}

.wraper_header {
    z-index: 999;
    width: 100%;
    direction: initial;
}

.header_top {
    align-items: center;
}

.header_top_item {
    margin-bottom: 15px;
    margin-top: 15px;
}

.header_top_item ul.header-contact {
    margin-top: 12px;
    font-size: 0;
}

.header_top_item ul.header-contact {
    display: flex;
    align-items: center;
}

.header_top_item ul.header-contact li.phone {
    color: #595959;
}

.header_top_item ul.header-contact li:first-child {
    padding-left: 0;
}

.header_top_item ul.header-contact li:last-child {
    padding-right: 0;
}

.header_top_item ul.header-contact li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-left: 22px;
    padding-right: 22px;
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    color: #595959;
    line-height: 26px;
}

.header_top_item ul.header-contact li:first-child:before,
.header_top_item ul.header-contact li:nth-child(2):before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 0;
    content: " ";
    width: 1px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.2);
}

.header_top_item ul.header-contact li.phone strong,
.header_top_item ul.header-contact li .has-icon .icon svg {
    color: var(--orange) !important;
    font-size: 32px;
}

.header_top_item ul.header-contact li.phone strong {
    font-family: "Rubik", sans-serif;
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: #202c45;
    line-height: 28px;
}

.header_top_item ul.header-contact li .has-icon {
    display: flex;
    align-items: center;
}

.header_top_item ul.header-contact li .has-icon .icon {
    padding-right: 13px;
}

.header_top_item ul.header-contact li .has-icon .icon i {
    color: #14a09d;
    font-size: 33px;
    line-height: 1;
}

.header-logo {
    width: 250px;
}

/* Navigation */

.dropdown-menu {
    padding: 0;
    border-radius: 0;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border: none;
    overflow: hidden;
}

.navbar-dark .navbar-toggler {
    border: none;
}

.navbar {
    background: var(--purple) !important;
}

.navbar-nav {
    display: flex;
    gap: 25px !important;
}

.nav-link {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding: 23px 10px !important;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--orange) !important;
}

.active {
    color: var(--orange) !important;
}

.active.nav-link:before {
    transform: scaleX(1) !important;
}

.nav-link:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    content: " ";
    height: 3px;
    background-color: var(--orange);
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.nav-item {
    padding: 20px 0;
}

.nav-item:hover .nav-link::before {
    transform: scaleX(1);
}

.dropdown-menu {
    box-shadow: 1px 1px 21px -8px black;
}

.dropdown-menu:last-child {
    border-bottom: none;
}

.dropdown-item {
    padding: 10px 20px !important;
    border-bottom: 1px solid #dbdbdb;
}

.dropdown-item {
    padding: 10px 20px !important;
    border-bottom: 1px solid #dbdbdb;
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        margin-top: 0;
    }

    .navbar .nav-item:hover .nav-link {
        color: #fff;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: 0.3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
}

/**========================================================================
 *                               MOBILE NAV
 *========================================================================**/

.mob-navbar {
    background-color: var(--purple);
    padding: 20px 0 0;
}

.mob-logo {
    width: 190px;
}

.navbar-toggler {
    background-position: center;
    background-size: cover;
    padding: 18px;
}

.mob-navbar .navbar-nav {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0 !important;
    margin: 0px 0 0;
}

.mob-navbar .mob-nav-item {
    padding: 15px 0;
    border-bottom: 1px solid rgb(162, 162, 162);
}

.mob-navbar .mob-nav-item {
    padding: 15px 0;
    border-bottom: 1px solid rgb(162, 162, 162);
}

.mob-navbar .mob-nav-link {
    font-family: 'Rubik';
    font-size: 14px;
    letter-spacing: 1px;
    color: white;
    padding: 0 10px;
    text-transform: uppercase;
}

.mob-navbar .mob-nav-link:hover {
    color: var(--orange);
}

.mob-navbar .mob-nav-item.active .mob-nav-link {
    color: var(--orange);
}

/**========================================================================
*                                BREADCRUMB
*========================================================================**/


.breadcrumb {
    background-position: center bottom;
    background-size: cover;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: center;
    margin: 0;
}

.breadcrumb .title {
    font-family: Poppins;
    line-height: 40px;
    letter-spacing: 0px;
    word-spacing: 8px;
    font-weight: 800;
    color: #ffffff;
    font-size: 40px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}

.breadcrumb .current-page {
    font-family: Rubik;
    line-height: 26px;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    font-size: 16px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}


/**========================================================================
*                                HOME PAGE
*========================================================================**/

.hebe.tparrows {
    cursor: pointer;
    min-width: 70px;
    min-height: 70px;
    position: absolute;
    display: block;
    z-index: 100;
}

.hebe.tparrows:before {
    font-family: "revicons";
    font-size: 30px;
    color: #fff;
    display: block;
    line-height: 70px;
    text-align: center;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
    z-index: 2;
    position: relative;
    background: var(--purple);
    min-width: 70px;
    min-height: 70px;
}

.hebe.tparrows.tp-leftarrow:before {
    content: "\e824";
}

.hebe.tparrows.tp-rightarrow:before {
    content: "\e825";
}

.tp-title-wrap {
    position: absolute;
    z-index: 0;
    display: inline-block;
    background: #000;
    background: rgba(0, 0, 0, 0.75);
    min-height: 60px;
    line-height: 60px;
    top: -10px;
    margin-left: 0px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transform: scalex(0);
    -webkit-transform: scalex(0);
    transform-origin: 0% 50%;
    -webkit-transform-origin: 0% 50%;
}

.hebe.tp-rightarrow .tp-title-wrap {
    right: 0px;
}

.hebe.tparrows:hover .tp-title-wrap {
    transform: scalex(1);
    -webkit-transform: scalex(1);
}

.hebe .tp-arr-titleholder {
    position: relative;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 12px;
    line-height: 90px;
    white-space: nowrap;
    padding: 0px 20px 0px 90px;
}

.hebe.tp-rightarrow .tp-arr-titleholder {
    margin-left: 0px;
    padding: 0px 90px 0px 20px;
}

.hebe.tparrows:hover .tp-arr-titleholder {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
    transition-delay: 0.1s;
    opacity: 1;
}

.hebe .tp-arr-imgholder {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 100%;
    display: block;
    background-size: cover;
    background-position: center center;
    top: 0px;
    right: -90px;
}

.hebe.tp-rightarrow .tp-arr-imgholder {
    right: auto;
    left: -90px;
}

/**============================================
 *               SECTION SERVICES
 *=============================================**/

.home_page .section_services .services_cont {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.home_page .section_services .services_cont .services_item {
    width: 380px;
    box-shadow: 0 2px 18px rgb(0 0 0 / 20%);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    background: var(--purple);
    color: white;
}

.home_page .section_services .services_item .services_img {
    height: 250px;
    background-size: cover;
    margin-bottom: 30px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 15%);
}

.home_page .section_services .services_item .services_text {
    padding: 10px 25px;
    height: 220px;
}

.home_page .section_services .services_item .services_text p {
    text-align: justify;
    line-height: 1.7;
}

/**============================================
 *               SECTION WHY US
 *=============================================**/

.home_page .section_why_us .boxed-item {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 0 0 1px #e2e9ed;
    box-sizing: border-box;
    margin-top: 40px;
    padding: 50px 30px;
    transition: all 0.4s ease 0s;
    border: 1px solid #f1f1f1;
}

.home_page .section_why_us .boxed-item:hover {
    box-shadow: 0 20px 25px -12px rgb(0 0 0 / 15%);
    border: 1px solid var(--purple);
}

.home_page .section_why_us .boxed-item .sirial-number {
    font-family: 'Rubik';
    display: block;
    text-align: right;
    font-size: 52px;
    color: #ddd;
}

.home_page .section_why_us .boxed-item .single-boxed {
    border-radius: 50%;
    box-shadow: 0 15px 20px 0 rgb(0 0 0 / 6%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    width: 65px;
    transition: all 0.2s ease-in-out 0s;
    background-color: var(--purple);
    color: var(--orange);
}

.home_page .section_why_us .boxed-item .single-boxed svg {
    font-size: 26px !important;
    line-height: 53px;
}

.home_page .section_why_us .boxed-item h3 {
    color: var(--purple);
    font-size: 20px;
    margin: 30px 0 20px;
    text-transform: capitalize;
    font-weight: 500;
}

.home_page .section_why_us .boxed-item p {
    color: #777777;
}

/**============================================
 *               SECTION TESTIMONIAL
 *=============================================**/

.section-testimonial {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
    margin-top: auto;
}

.section-testimonial .testimonial {
    cursor: grab;
}

.section-testimonial .testimonial-space {
    margin: auto;
    max-width: 800px;
    padding: 40px 5%;
}

.section-testimonial .testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 42px;
}

.section-testimonial .testimonial-img img {
    border-radius: 50%;
    width: 140px;
    height: auto;
    overflow: hidden;
    transition: all 0.3s ease;

}


.section-testimonial .testimonial-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-testimonial .testimonial-text * {
    color: white;
    font-style: italic;
}

.section-testimonial .testimonial-text .testimonial-message {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 18px;
}

.section-testimonial .testimonial-text .testimonial-name {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    text-align: center;
    color: #ccc
}

.section-testimonial .testimonial-text .testimonial-name::before {
    content: "";
    height: 1.5px;
    width: 25px;
    background-color: #ccc;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);

}

.section-testimonial .slick-arrow {
    z-index: 9;
    width: 40px;
    bottom: 50%;
    width: 40px;
    padding: 8px;
    border: none;
    font-size: 26px;
    position: absolute;
    transform: translateY(50%);
    background-color: transparent;
    transition: all 0.3s ease;
    color: #ddd;
}

.section-testimonial .slick-prev {
    left: 0;
}

.section-testimonial .slick-next {
    right: 0;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.section-testimonial .slick-dots button {
    font-size: 0;
    width: 7px;
    height: 7px;
    background-color: var(--purple);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.section-testimonial .slick-dots li {
    padding: 4px;
}

.section-testimonial .slick-dots li:hover button {
    background-color: #666;
}

.section-testimonial .slick-dots li.slick-active button,
.section-testimonial .slick-dots li:hover .slick-active button {
    width: 10px;
    height: 10px;
    background-color: var(--orange);
}


/**========================================================================
*                               CONTACT US PAGE
*========================================================================**/

.section-contact {
    padding: 73px 0px;
}

.section-contact-form {
    margin-bottom: 70px;
}

.section-contact .contact_top_item {
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    padding: 50px 24px;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-contact .icon {
    font-size: 50px;
    color: var(--orange);
    text-align: center;
}

.section-contact .contact-heading {
    font-size: 15px;
    color: #0c121f;
    line-height: 40px;
    text-align: center;
    font-weight: 500;
}

.section-contact .contact-desc {
    text-align: center;
}

.section-contact .contact-number {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    text-align: center;
    font-weight: 500;
}

.contact-form-s-heading {
    font-size: 16px;
    line-height: 35px;
    text-align: center;
    font-weight: 500;
}

.contact-form-heading {
    text-align: center;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-row {
    margin-right: 5px;
    margin-bottom: 24px;
    margin-left: 5px;
}

.form-row input[type="text"] {
    border: 1px solid #e1e1e1;
    padding: 10px 10px;
    color: #515359;
    background-color: #ffffff;
    border-radius: 4px;
    width: 100%;
    height: 45px;
    resize: none;
    appearance: none;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.form-row input:focus-visible {
    border-color: var(--purple);
}

.form-row textarea {
    border: 1px solid #e1e1e1;
    color: #515359;
    background-color: #ffffff;
    padding: 6px 10px;
    border-radius: 4px;
    width: 100%;
    height: 125px;
    appearance: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.form-select {
    height: 45px;
    border: 1px solid #e1e1e1 !important;
}

.btn {
    color: black;
    background-color: transparent;
    border: 1px solid var(--orange);
    border-width: 1px;
    padding: 12px 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn:hover {
    color: white !important;
    background-color: var(--orange);
}

.btn-submit {
    color: black;
    background-color: white;
    border: 1px solid var(--orange);
    border-width: 1px;
    padding: 12px 35px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    color: white;
    background-color: var(--orange);
}

/**========================================================================
*                              SERVICES PAGE
*========================================================================**/

.section_services {
    padding: 60px 0 0;
}

.section_services .section_one p,
.section_services .section_two p,
.section_services .section_four p,
.section_services .section_five p,
.section_services .section_six p,
.section_services .section_seven p {
    line-height: 1.9;
    text-align: justify;
}

.section_services .section_one,
.section_services .section_two {
    border-bottom: 1px solid rgb(178, 178, 178);
}

.fixed-image {
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    height: 500px;
}

/**========================================================================
*                              PRODUCTS PAGE
*========================================================================**/

.page_products .section_product {
    border-bottom: 1px solid #bababa;
    padding-bottom: 70px;
}

.page_products .section_product .product_cont {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.page_products .section_product .product_cont .product_item {
    width: 400px;
    box-shadow: 0 2px 18px rgb(0 0 0 / 20%);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    background: var(--purple);
    color: white;
}

.page_products .section_product .product_item .product_img {
    height: 250px;
    background-size: cover;
    margin-bottom: 30px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 15%);
}

.page_products .section_product .product_item .product_text {
    padding: 10px 25px;
}

.page_products .section_product .product_item .product_text p {
    text-align: justify;
    line-height: 1.7;
}

.page_products .section_grid_style .veterinary_grid_cont {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.page_products .section_grid_style p {
    line-height: 1.7;
    margin-bottom: 50px;
}

.page_products .section_grid_style .veterinary_grid_cont .second_sect {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page_products .section_grid_style .veterinary_grid_cont .veterinary_grid_item img {
    width: 845px;
}

.page_products .section_grid_style .veterinary_grid_cont .second_sect img {
    width: 400px;
}

/**========================================================================
*                               ABOUT US PAGE
*========================================================================**/

.section_ceo_message .ceo-heading {
    color: white;
    background-color: var(--orange);
    padding: 3px 16px;
    position: relative;
    margin-bottom: 70px;
    margin-top: 30px;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0px;
}

.section_ceo_message .ceo-img {
    width: 200px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(10%, -50%);
    filter: brightness(1.1);
}

.section_ceo_message .ceo-text {
    line-height: 2;
}

.section-counter {
    background-image: url('../img/about-us/counter_img.jpg');
    background-position: center;
    background-size: cover;
}

.section-counter .counter-bg {
    display: flex;
    justify-content: center;
    gap: 150px;
    width: 100%;
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.section-counter .counter-box {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-counter .counter-box .counter {
    font-family: 'Rubik', sans-serif;
    font-size: 50px;
    color: var(--orange);
}

.section-counter .counter-box .counter-text {
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    margin-bottom: 0;
}

.page_about_us .section_services {
    padding: 0;
}

.section_services .services_container {
    display: flex;
    row-gap: 80px;
    column-gap: 60px;
    flex-wrap: wrap;
}

.section_services .services_container .services_item {
    display: flex;
    gap: 20px;
    width: 392px;
}

.section_services .services_container .services_item img {
    height: 50px;
}

.section_services .services_container .services_item .services_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_services .services_container .services_item .services_content h3 {
    font-size: 25px;
    font-family: 'Rubik', sans-serif;
    margin-bottom: 0;
}

.section_services .services_container .services_item .services_content p {
    color: #787878;
}


/**========================================================================
*                                FOOTER
*========================================================================**/

.footer {
    background-image: url('../img/footer_img.jpg');
    background-position: bottom;
    background-size: cover;
    color: white;
    background-color: var(--purple);
}

.footer .black-bg {
    width: 100%;
    height: 100%;
    background-color: rgb(17 18 69 / 85%);
}

.footer hr {
    color: rgba(225, 225, 225, 0.8);
    height: 1px !important;
    margin: 0;
    opacity: 1;
}

.footer_main {
    padding: 60px 0 40px;
    display: flex;
    gap: 170px;
}

.footer-logo-cont {
    display: flex;
    justify-content: start;
}

.footer-logo {
    width: 230px;
}

.footer-text {
    margin-top: 45px;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    line-height: 26px;
}

.f-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.f-social a {
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: white;
    color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-heading {
    font-family: "Poppins", sans-serif;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    line-height: 30px;
    letter-spacing: 0.4px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 0;
    list-style: none;
    margin-bottom: 30px;
    line-height: 1;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    color: white;
}

.footer-arrow {
    font-size: 12px;
    margin-right: 10px;
}

.footer_main_item.text-start.matchHeight {
    height: 315px;
    /* width: 320px; */
    display: flex;
    flex-direction: column;
}

.f-text-with-mb {
    margin-bottom: 28px;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    line-height: 26px;
}

.quick_links_cont {
    display: flex;
    justify-content: end;
}

.follow_us_cont {
    display: flex;
    justify-content: center;
}

.head_office_cont p {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: 0.7px;
}

.footer-copyright {
    width: 100%;
    margin: 0 !important;
    padding: 20px 0px;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright p a {
    color: var(--orange);
}

.footer-copyright p a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer .footer_main .footer_logo_cont {
    --animate-duration: 0.9s;
    width: 300px;
}

.footer .footer_main .quick_links_cont {
    --animate-duration: 1.1s;
}

.footer .footer_main .follow_us_cont {
    --animate-duration: 1.3s;
}

.footer .footer_main .head_office_cont {
    --animate-duration: 1.5s;
}

/**========================================================================
*                                FOOTER WHATSAPP ICON
*========================================================================**/

.widget-call-wrap {
    position: fixed;
    bottom: 2%;
    left: 1%;
    z-index: 99;
}

.widget-call-wrap a {
    display: block;
    position: relative;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-bottom: 10px;
    height: 48px;
    width: 48px;
    text-align: center;
    background-color: green;
    color: #fff;
    border-radius: 100%;
}

.widget-call-wrap.minimize .action .icon-close,
.widget-call-wrap.minimize .btn-chat {
    display: none;
}

.widget-call-wrap svg {
    line-height: 47px;
    font-size: 1.4em;
}

.widget-call-wrap a.contact1 {
    background-color: #4ec248;
}

.widget-call-wrap a.contact2 {
    background-color: #0093ff;
}

.widget-call-wrap a.contact3 {
    background-color: #113f6d;
}

.widget-call-wrap.active a {
    text-decoration: none;
}

.widget-call-wrap.minimize .action .btn-icon-close {
    display: none;
}

.widget-call-wrap.active .action {
    transform: rotate(360deg);
    transition: transform 0.4s ease;
}

.widget-call-wrap.active .action .btn-icon-open {
    display: none;
}

.widget-call-wrap.active .action .btn-icon-close {
    display: inline;
}