:root {
    --Green-color: #b22324;
    --Green-thin-color: #b22324;
    --yellow-color: #ffd95e;
    --gold-color: #408A40;
    --gold-Bold-color: #cb821b;
    --black-color: #000;
    --white-color: #fff;
}

@font-face {
    font-family: 'Quicksand';
    src: url('Quicksand/Quicksand-VariableFont_wght.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Quicksand', Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    text-decoration: none;
    color: var(--black-color);
    padding: 0;
    margin: 0;
    font-family: 'Quicksand', Arial, sans-serif;
}

ul {
    padding: 0;
}

ul li {
    list-style: none;
}

.bar {
    font-size: 25px;
    color: var(--Green-thin-color);
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: transparent;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0;
}


/* logo  */
.logo {
    width: 150px;
}

.flag {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


.button-group .button {
    -webkit-animation: fadeUp 3s alternate;
    animation: fadeUp 3s alternate;
}

.button {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--Green-color);
    color: #fff;
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: var(--Green-thin-color);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.button:hover {
    background-color: var(--Green-thin-color);
}

.button:hover .button__icon-wrapper {
    color: var(--Green-color);
}

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}



/* Button // --------------- >>  */

.button-group .button-transparent {
    -webkit-animation: fadeUp 4s forwards;
    animation: fadeUp 4s forwards;
}


.button-transparent {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
    margin-left: 20px;
}

.button-transparent__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: var(--white-color);
    background-color: var(--Green-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.button-transparent:hover {
    background-color: var(--black-color);
    border-color: transparent;
    color: var(--white-color);
}

.button-transparent:hover .button-transparent__icon-wrapper {
    color: var(--Green-color);
    background-color: var(--white-color);
}

.button-transparent__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.button-transparent:hover .button-transparent__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.button-transparent:hover .button-transparent__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}


.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}


/* NAVBAR STYLE  // ---------------------- // */

.navbar {
    background-color: #ffffff67;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0;
}

.animate {
    background-color: var(--white-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1px 0;
    -webkit-animation: translateY 1s alternate;
    animation: translateY 1s alternate;
}

.dropdown-menu {
    background-color: var(--white-color);
}



.navbar-nav .nav-link.show {
    color: var(--white-color);
    background-color: var(--Green-color);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}


@keyframes translateY {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        -moz-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}


.navbar .nav-link,
.navbar .nav-link.active {
    color: var(--black-color);
}

.nav-link {
    position: relative;
    margin: 0 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
    font-weight: 700;
}

.nav-link::after {
    position: absolute;
    top: 50%;
    left: -5px;
    background-color: var(--Green-color);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    height: 5px;
    width: 5px;
    content: '';
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}

.nav-link:hover::after {
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0%;
    left: 0px;
}

.nav-link:hover,
.nav-link.active:hover {
    color: var(--white-color);
}

.dropdown-menu {
    border-top: 2px solid var(--Green-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    padding: 8px 5px;
    width: 200px;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}

.dropdown-menu .dropdown-item {
    color: var(--Green-thin-color);
    padding: 7px 5px;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--Green-color);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}


.dropdown-submenu>.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 992px) {
    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: 0;
        display: none;
        position: absolute;
    }

    .dropdown-submenu:hover .dropdown-menu {
        display: block;
    }
}


/* carousel STYLE  // ---------------------- // */


.carousel-section {
    position: relative;
}

.carousel-item {
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

.carousel-item .Intro-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
}

.Intro-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000054;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Intro-image-layer-pragraph {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Intro-image-layer-pragraph img {
    width: 50px;
    margin-left: 20px;
}

.Intro-image-layer-pragraph p {
    color: var(--white-color);
    font-size: 25px;
    text-shadow: 2px 2px 0 #000000, 4px 4px 0 #555555;
    margin-bottom: 15px;
    transform: translateY(30px);
    -webkit-animation: fadeUp 2s ease-in-out forwards;
    animation: fadeUp 2s ease-in-out forwards;
}

.Intro-image-layer-title h1 {
    color: var(--white-color);
    font-size: 40px;
    text-shadow: 2px 2px 0 #000000, 4px 4px 0 #555555;
    margin-bottom: 20px;
    transform: translateY(30px);
    -webkit-animation: fadeUp 2s ease-in-out forwards;
    animation: fadeUp 2s ease-in-out forwards;
    text-align: center;
}

/* Animation // ---------------- >>  */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 1;
    transition: opacity .15s ease;
}



.arrow-left {
    position: relative;
    left: 10px;
    display: flex;
    justify-items: center;
    align-items: center;
    font-size: 35px;
}

.arrow-right {
    position: relative;
    right: 10px;
    display: flex;
    justify-items: center;
    align-items: center;
    font-size: 35px;
}


.arrow {
    color: var(--Green-thin-color);
    font-size: 30px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot:hover {
    background-color: transparent !important;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 1;
}



.zoom {
    animation: zoomIn 10s;
    -webkit-animation: zoomIn 10s;
    transform: translate3d(0px, 0px, 0px);
    transform-origin: 0% 0% 0px;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    transform-origin: 0% 0% 0px;
}

@keyframes zoomIn {
    0% {


        transform: translate3d(0px, 0px, 0px) scale(1.1, 1.1);
        -webkit-transform: translate3d(0px, 0px, 0px) scale(1.1, 1.1);
        -moz-transform: translate3d(0px, 0px, 0px) scale(1.1, 1.1);
        -ms-transform: translate3d(0px, 0px, 0px) scale(1.1, 1.1);
        -o-transform: translate3d(0px, 0px, 0px) scale(1.1, 1.1);
        transform-origin: 0% 0% 0px;
    }
}

/* End // --------------- >>  */

/*  Under slider // group-company Section  ---------------- >>  */

.group-company {
    background-color: #fafafa;
    padding: 25px;
}

.card-company {
    background-color: var(--white-color);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    margin: 15px auto;
    box-shadow: 0px 2px 10px #ddd;
    width: 100%;
    height: 230px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.card-company-body {
    padding: 7px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;

}

.card-company-body p {
    font-size: 14px;
    text-align: center;
    font-weight: 800;
    color: var(--black-color);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}


.card-company-slid-image {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.card-company-slid-image img {
    width: 100%;
    max-width: 100%;
    margin: auto;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.card-company:hover .card-company-slid-image img {
    transform: scale(1.01);
    -webkit-animation: rotate 0.6s alternate;
    animation: rotate 0.6s alternate;
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -ms-transform: scale(1.01);
    -o-transform: scale(1.01);
}


.group-company-title h3 {
    font-weight: bold;
    color: var(--Green-thin-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    margin-left: 10px;
}



.group-company-title h3::after {
    position: absolute;
    left: -35px;
    top: -10px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f2d1';
    z-index: -1;
    color: var(--black-color);
}

.card-company:hover .card-company-body p {
    color: var(--Green-thin-color);
}

/* @keyframes rotate {
    0% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
} */

/* Contact Icons (hidden initially)  // ------------------ */
.contact-icons {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

/* Contact Icon Styling */
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--black-color);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: var(--gold-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-decoration: none;
    -webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.contact-icon:hover {
    transform: scale(1.2);
    background: var(--black-color);
}

.contact-icons.active {
    display: flex;
    opacity: 1;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

/* End   // ---------------------- >>  */


/* .why-choose-ARAD // ----------------- >>  */
.why-choose-ARAD {
    background: var(--white-color);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.aboutsection {
    background-color: #f7f7f7;
    padding: 50px 0;
    margin: 20px 0;
}

.why-choose-ARAD::after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    content: '';
    z-index: -1;
    background-image: url(images/right-leaf-first.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.why-choose-leftImage {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    position: relative;
}

.why-choose-leftImage-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--white-color);
    padding: 20px;
    border-top-right-radius: 30px;
}

.why-choose-leftImage-layer::after {
    position: absolute;
    bottom: 0px;
    right: -30px;
    height: 30px;
    width: 30px;
    content: '';
    box-shadow: -10px 15px 0 0 var(--white-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
}

.why-choose-leftImage-layer::before {
    position: absolute;
    top: -30px;
    left: -1px;
    height: 30px;
    width: 30px;
    content: '';
    box-shadow: -10px 10px 0 0 var(--white-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(9deg);
}

.why-choose-leftImage-box {
    background-color: var(--Green-color);
    padding: 20px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
}

.why-choose-leftImage-box span {
    font-size: 30px;
    color: var(--white-color);
    font-weight: 800;
}

.why-choose-leftImage-box span i {
    font-size: 25px;
    margin-right: 5px;
}

.why-choose-leftImage-box h5 {
    font-size: 25px;
    font-weight: 800;
    color: var(--white-color);
}

.why-choose-rightText {
    padding: 20px;
}

.why-choose-rightText .button {
    margin-top: 20px;
}

.why-choose-rightText h4 {
    font-weight: 800;
    margin-bottom: 5px;
}


.why-choose-rightText-branch {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-rightText-child {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.why-choose-rightText-child img {
    background-color: var(--white-color);
    width: 60px;
    height: 60px;
    padding: 5px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.why-choose-rightText-child h4 {
    color: var(--black-color);
    margin-left: 5px;
}

.why-choose-rightText-child p {
    margin-left: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
}

.why-choose-ARAD .button {
    background-color: var(--Green-color);
    color: var(--white-color);
}

/* END // Why Choose ARAD // ------------------>>  */

.services-arad {
    padding: 25px 0;
}

.services-arad-title h3 {
    font-weight: bold;
    color: var();
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-size: 40px;
}

.services-arad-title p {
    color: var(--white-color);
}


.services-arad .container-fluid {
    background-color: var(--black-color);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
    padding: 25px 25px;
    width: 98%;
    background-image: url(images/footer-bg-img.png);
    background-position: top left;
    background-repeat: no-repeat;
}

.services-arad .container-fluid .row.g-3 {
    padding: 150px 25px;
}

.services-arad-card {
    border: 1px solid #dadada9d;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-arad-card-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    position: relative;
}

.services-arad-card-layer {
    position: absolute;
    bottom: 0;
    right: 30px;
    background-color: var(--black-color);
    padding: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1;
}

.services-arad-card-layer::after {
    position: absolute;
    right: -30px;
    bottom: 0;
    height: 30px;
    width: 30px;
    content: '';
    box-shadow: -10px 10px 0 0 var(--black-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
}

.services-arad-card-layer::before {
    position: absolute;
    left: -30px;
    bottom: 0px;
    height: 30px;
    width: 30px;
    content: '';
    box-shadow: 10px -10px 0 0 var(--black-color);
    transform: rotate(85deg);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(85deg);
    -moz-transform: rotate(85deg);
    -ms-transform: rotate(85deg);
    -o-transform: rotate(85deg);
    z-index: -1;
}

.services-arad-card-layer a {
    font-size: 25px;
    color: var(--gold-color);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.services-arad-card:hover a {
    color: var(--white-color);
}

.services-arad-card:hover .services-arad-card-body h4 {
    color: var(--white-color);
}


.services-arad-card-body {
    padding: 20px;
}

.services-arad-card-body h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-color);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.services-arad-card-body p {
    color: #ffffff;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Our-Team // -------------- >>  */

.Our-Team-arad {
    padding: 25px 0;
}

.Our-Team-arad .row {
    justify-content: center;
}

.Our-Team-arad-title h3 {
    font-weight: bold;
    color: var(--white-color);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-size: 40px;
}


.Our-Team-arad-card {
    border: 1px solid #dadada9d;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;

}

.Our-Team-arad-card-image {
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    /* border-top-left-radius: 20px; */
    border-top-right-radius: 30px;
    position: relative;
}

.Our-Team-arad-card-layer {
    position: absolute;
    bottom: 0;
    right: 30px;
    background-color: var(--Green-thin-color);
    padding: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transform: translatey(40px);
    -moz-transform: translatey(40px);
    -ms-transform: translatey(40px);
    -o-transform: translatey(40px);
    transform: translatey(40px);
}

.Our-Team-arad-card-layer::after {
    position: absolute;
    right: -30px;
    bottom: 0;
    height: 30px;
    width: 30px;
    content: '';
    box-shadow: -10px 10px 0 0 var(--Green-thin-color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
}

.Our-Team-arad-card-layer::before {
    position: absolute;
    left: -30px;
    bottom: 0px;
    height: 30px;
    width: 30px;
    content: '';
    box-shadow: 10px -10px 0 0 var(--Green-thin-color);
    transform: rotate(85deg);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(85deg);
    -moz-transform: rotate(85deg);
    -ms-transform: rotate(85deg);
    -o-transform: rotate(85deg);
    z-index: -1;
}

.Our-Team-arad-card-top-layer {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--Green-color);
    padding: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 2px 1px 4px #00000077;
}

.Our-Team-arad-card-top-layer span {
    color: var(--white-color);
}

.Our-Team-arad-card:hover .Our-Team-arad-card-layer {
    opacity: 1;
    -webkit-transform: translatey(0);
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    transform: translatey(0);
}

.Our-Team-arad-card-layer a {
    font-size: 25px;
    color: var(--white-color);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.Our-Team-arad-card:hover a {
    color: var(--white-color);
}

.Our-Team-arad-card:hover .Our-Team-arad-card-body h4 {
    color: var(--white-color);
}


.Our-Team-arad-card-body {
    padding: 20px;
    text-align: center;
    background-color: var(--Green-thin-color);
    height: 100px;
    border-bottom-left-radius: 30px;
    /* border-bottom-right-radius: 20px; */
}

.Our-Team-arad-card-body h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--white-color);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.Our-Team-arad-card-body p {
    color: var(--white-color);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
}

/* END Our TEAM // ----------------- >> */

.our-partners {
    padding: 25px 0;
}

.card-our-partners {
    background-color: var(--white-color);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 1px 5px 5px #ddd;
    margin: 20px 0;
}

.card-our-partners-image {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.card-our-partners-image img {
    width: 100%;
    max-width: 100%;
    margin: auto;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    object-fit: cover;
    object-position: center;
}

/* why-choose--ARAD-rightText // ------------------ */

.why-choose--ARAD-rightText {
    padding: 20px;
    background-color: #f5f5f5;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    height: 100%;
}

.accordion-button:not(.collapsed) {
    color: var(--white-color);
    background-color: var(--black-color);
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button {
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
    border-radius: 20px !important;
    padding: 10px !important;
    color: var(--black-color);
    background-color: #efefef;
}

.accordion-item {
    margin: 5px 0;
    border: 0px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
    border-radius: 20px !important;
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--gold-color) !important;
    outline: 0;
    box-shadow: 1px 1px 1px var(--gold-color);
}

.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "\f055";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background-image: unset !important;
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}


.accordion-button:not(.collapsed)::after {
    background-image: unset !important;
    content: "\f056";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-body P {
    font-size: 13px;
}

.why-choose--ARAD-rightText .button {
    background-color: var(--Green-thin-color);
    color: var(--white-color);
    margin-top: 10px;
}


/* / / --------------------- */


.qute {
    padding: 20px 0;
    position: relative;
}

.quate-section {
    margin: 20px 0;
}

.qute h2 {
    color: var(--blue-color);
}


.qute {
    position: relative;
    background-color: var(--black-color);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 20px;
}

.qute h5 {
    font-weight: 600;
    color: var(--white-color);
}

.qute h4 {
    font-size: 20px;
    color: var(--gold-color);
}

.qute::after {
    position: absolute;
    top: 0;
    right: 0px;
    background-image: url(images/testimonial-bg-icon-01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 100px;
    content: "";
    opacity: 0.2;
}

.qout-image {
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.qout-group {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 15px;
}



/* FOOTER // ------------------------ //  */

.footer-address p {
    color: var(--white-color);
    opacity: 0.6;
    font-size: 12px;
    margin-top: 10px;
}

.footer-contatc h5 {
    color: var(--white-color);
    opacity: 0.6;
    font-size: 15px;
    text-decoration: none;
    margin: 10px 0;
}

.footer-contatc a {
    color: var(--white-color);
    font-size: 20px;
    margin: 10px 0;
    text-decoration: none;
}

.footer-social {
    text-align: center;
    margin-top: 20px;
}

.footer-social a i {
    color: var(--white-color);
    font-size: 20px;
    margin: 0 5px;
    padding: 15px 0;
}

.footer-social a {
    padding: 10px 5px;
    border-radius: 50px;
    background-color: #ffffff48;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.footer-social a:hover {
    background-color: var(--white-color);
    color: var(--red-thin-color);
}

.footer-social a:hover i {
    color: var(--red-thin-color);
}

.logo-footer {
    width: 180px;
}

.footer-black {
    background-color: var(--black-color);
    padding: 8rem 0 0 0;
    /* margin: 40px 0 0 0; */
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-black .row {
    display: flex;
    justify-content: space-between;
}


.footer-black::after {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(images/slide03.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    content: '';
    z-index: -1;
    opacity: 0.1;
}


.footer-link h3 {
    color: var(--white-color);
    border-bottom: 2px solid var(--Green-thin-color);
    font-size: 25px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 5px 0;
}

.footer-link p {
    color: var(--white-color);
    font-size: 13px;
    margin-bottom: 7px;
}

.input-group-text {
    background-color: var(--red-thin-color);
    color: var(--white-color);
    border-color: var(--red-thin-color);
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--red-thin-color);
    outline: 0;
    box-shadow: 0 0 0 0 var(--red-thin-color);
}

.footer-link a {
    text-decoration: none;
    color: var(--white-color);
    font-size: 15px;
}

.footer-link li i {
    color: var(--Green-thin-color);
}

.footer-link a i {
    text-decoration: none;
    color: var(--Green-color);
    font-size: 15px;
}

.footer-link ul li {
    list-style: none;
    margin: 10px 0;
}

.footer-black .col-lg-3 {
    border-left: 1px solid #9292926c;
}

.footer-black .col-lg-3:first-child {
    border-left: 1px solid transparent;
}

.footer-black .col-lg-3:nth-child(2) {
    border-left: 1px solid transparent;
}

.footer-link.pading {
    padding-left: 15px;
}


.copyright {
    color: var(--white-color);
    text-align: center;
}

.copyright a,
.copyright span {
    color: var(--white-color);
    text-decoration: none;
}

.footer-link-contact i {
    color: var(--Green-color);
    font-size: 18px;
    background-color: var(--white-color);
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    margin-right: 7px;
}

.footer-link-contact a,
.footer-link-contact p {
    display: flex;
    align-items: center;
}


.footer-link-contact p span {
    color: var(--white-color);
    margin-right: 3px;
    font-size: 12px;
}

.footer-link-contact {
    padding: 7px 0;
}

.lastFooter {
    background-color: var(--black-color);
    padding: 15px;
    margin-top: 30px;

}



/* End Footer // --------------- */



/* ABOUT US BAGES // ------------------ >> //  */

/* intro-bage */
.intro-bage {
    height: 70vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    clip-path: polygon(30% 0%, 100% 0, 100% 30%, 100% 90%, 87% 100%, 13% 100%, 0 90%, 0 0);
}

.intro-bage-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-bage-layer h1 {
    color: var(--white-color);
    font-weight: bold;
    font-size: 25px;
    text-shadow: -4px 4px 4px #000;
}

.rev:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #F5F5F5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    margin: 15px 0;
}

.why-choose-ARAD .row {
    padding: 20px;
}

.why-choose-ARAD-title h3 {
    color: var(--gold-color);
    font-weight: 900;
    font-size: 28px;
}

.why-choose-ARAD-title p {
    font-size: 17px;
    margin-top: 10px;
    line-height: 2;
    font-weight: 600;
}


/* END ABOUT BAGE // ----------------- >>  */


.certificates {
    background: transparent;
    border: 1px solid #ddd;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px #bebebe;
}
.certificates-name {
    padding: 5px;
}

/*  CONTACT BAGE // -------------------- >>  */

.form-control:focus {
    color: var(--gold-Bold-color);
    background-color: var(--bs-body-bg);
    border-color: var(--red-color);
    outline: 0;
    box-shadow: 0 0 0 0;
}

.form-control {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    background-color: #ffffff;
}

.form-bg {
    background-color: #f7f7f7;
    padding: 2rem 2rem;
    box-shadow: 0px 0px 1px #00000074;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}

.form-bg h3 {
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--Green-color);
}

.contact-bg h5 {
    color: var(--Green-color);
}

.contact-bg h3 {
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 20px;
}

.contact-back {
    position: relative;
    padding: 4rem 2rem;
    background-color: #ffffff;
    z-index: 1;
}

.contact-back::after {
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(images/icon-bg-pattern.png);
    content: '';
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* opacity: 0.1; */
    z-index: -1;
}

.contact {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.contact-icon {
    background: #ededed;
    color: var(--Green-color);
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 30px;
}

.contact-info h5 {
    color: var(--black-color);
    font-weight: 600;
    font-size: 27px;
    margin-bottom: 0;
}

.contact-info a {
    color: var(--black-color);
    text-decoration: none;
}

/* END // CONTACT BAGE // -------------------- >>  */


/* industries BAGE  //- ------------------ >>  */




.card-industries-image {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    height: 250px;
    max-width: 100%;
    box-shadow: 0px 4px 4px #00000046;
    /* margin: auto; */
}

.card-industries-image img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}

.indusrty-section {
    padding: 20px 0;
}

.indusrty-section .row {
    justify-content: center;
}

.card-industries p {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

/* End // ---------------------- >>  */

/* Loading // -------------------- >>  */

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader {
    display: inline-block;
    transform: translateZ(1px);
    -webkit-animation: coin-flip 3.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: coin-flip 3.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader img {
    width: 100px;
    height: 100px;
}


@keyframes coin-flip {

    0%,
    100% {
        animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    }

    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(1800deg);
        animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    }

    100% {
        transform: rotateY(3600deg);
    }
}



/* Media Query // -------------- >>  */

@media (min-width:993px) and (max-width: 1200px) {

    .nav-link {
        font-size: 13px;
    }

    .button {
        line-height: 1;
        text-decoration: none;
        display: inline-flex;
        border: none;
        cursor: pointer;
        align-items: center;
        gap: 0.75rem;
        color: #fff;
        border-radius: 10rem;
        font-weight: 600;
        padding: 0.3rem 0.5rem;
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .Intro-image-layer .Intro-image-layer-pragraph {
        flex-direction: column-reverse;
    }

    .Intro-image-layer .Intro-image-layer-pragraph p {
        font-size: 17px;
        text-align: center;
    }

    .Intro-image-layer .Intro-image-layer-title h1 {
        font-size: 20px;
        text-align: center;
    }


    .carousel-item {
        height: 70vh;
    }

    .carousel-control-next,
    .carousel-control-prev {
        position: absolute;
        top: 0px;
        bottom: 30px;
        z-index: 1;
        display: flex;
        align-items: end;
        justify-content: center;
        width: 3%;
        padding: 0;
        color: #fff;
        text-align: center;
        background: 0 0;
        border: 0;
        opacity: 1;
        transition: opacity .15s ease;
    }

    .button {
        padding: 0.75rem 0.5rem
    }

    .button-transparent {
        margin-left: 5px;
        padding: 0.3rem 0.5rem
    }

    .nav-link:hover::after {
        top: 0;
        left: -5px
    }

    .nav-link::after {
        top: 50%;
        left: -10px;
    }

    .nav-link {
        font-size: 13px;
    }

    .button {
        line-height: 1;
        text-decoration: none;
        display: inline-flex;
        border: none;
        cursor: pointer;
        align-items: center;
        gap: 0.75rem;
        background-color: var(--Green-thin-color);
        color: #fff;
        border-radius: 10rem;
        font-weight: 600;
        padding: 0.3rem 0.5rem;
        font-size: 12px;
    }

    .why-choose-rightText-branch {
        flex-direction: column;
    }

    .services-arad-title p {
        width: 100%;
        float: unset;
    }

    .card-our-partners,
    .card-company {
        padding: 10px;
    }

    .why-choose-leftImage-layer {
        position: absolute;
        bottom: -1px;
        left: -1px;
        padding: 10px;
    }

    .why-choose-leftImage-box {
        padding: 10px;
    }

    .why-choose-leftImage-box span {
        font-size: 25px;
    }

    .why-choose-leftImage-box span i {
        font-size: 20px;
    }

    .why-choose-leftImage-box h5 {
        font-size: 20px;
    }

    .why-choose-rightText h4 {
        font-size: 16px;
    }

    .why-choose-rightText p {
        font-size: 13px;
    }

    .services-arad .container-fluid .row.g-3 {
        padding: 50px 0;
    }

    .our-partners .group-company-title {
        padding: 30px;
    }

    .Our-Team-arad .group-company-title h3 {
        margin-left: 25px;
    }

    .qute h4 {
        font-size: 15px;
    }

    .qute h5 {
        font-size: 15px;
    }

    .navbar-nav.nav-social {
        display: flex;
        flex-direction: row;
    }

    .navbar-nav.nav-social .nav-item {
        margin: 0px;
    }

    .nav-link::after {
        background-color: unset;
    }

    .navbar-nav.nav-social .nav-item .nav-link {
        color: var(--white-color);
        background-color: var(--black-color);
        padding: 7px 13px;
        font-size: 17px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link:hover {
        color: var(--Green-thin-color);
    }

    .dropdown-menu {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    .why-choose-ARAD .row {
        padding: 5px;
    }
}




/*****************whats*********************/
.wa__r_button.wa__btn_w_img .wa__btn_txt {
    padding: 8px 20px 8px 100px;
    display: table-cell;
    vertical-align: middle;
    height: 66px
}

.wa__r_button.wa__btn_w_img .wa__cs_info .wa__cs_status {
    margin-left: 3px;
}

.wa__popup_chat_box {
    width: 351px;
    border-radius: 5px 5px 8px 8px;
    -webkit-border-radius: 5px 5px 8px 8px;
    -moz-border-radius: 5px 5px 8px 8px;
    position: fixed;
    overflow: hidden;
    box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, 0.04);
    bottom: 102px;
    right: 25px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    -moz-transform: translate(0, 50px);
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    will-change: transform, visibility, opacity;
    max-width: calc(100% - 50px);
    -ms-transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -o-transform: translate(0, 50px);
    -ms-border-radius: 5px 5px 8px 8px;
    -o-border-radius: 5px 5px 8px 8px;
    background-color: var(--Green-color);
}

.wa__popup_chat_box.wa__active {
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
    -o-transform: translate(0, 0);
}

.wa__popup_chat_box .wa__popup_heading {
    position: relative;
    padding: 15px 70px 17px 74px;
    color: #d9ebc6;
    background: var(--Green-color);
}

.wa__popup_chat_box .wa__popup_heading .wa__popup_title {
    padding-top: 2px;
    padding-bottom: 3;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 800;
}

.wa__popup_chat_box .wa__popup_notice {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    padding: 0 3px;
    text-align: right;
    font-weight: 600;
}

.wa__popup_chat_box .wa__popup_content {
    background: #ffffff;
    padding: 13px 20px 20px 19px;
    text-align: left;
}

.wa__popup_chat_box .wa__stt.wa__stt_online {
    transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -ms-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
}

.wa__popup_content_list .wa__popup_content_item {
    margin: 14px 0 0;
    transform: translate(0, 20px);
    -webkit-transform: translate(0, 20px);
    -moz-transform: translate(0, 20px);
    will-change: opacity, transform;
    opacity: 0;
    -ms-transform: translate(0, 20px);
    -o-transform: translate(0, 20px);
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item {
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition-delay: 2.1s;
    -webkit-transition-delay: 2.1s;
    -moz-transition-delay: 2.1s;
    -ms-transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
}

.wa__popup_chat_box.wa__pending .wa__popup_content_list .wa__popup_content_item:nth-child(1) {
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
}

.wa__popup_chat_box.wa__lauch .wa__popup_content_list .wa__popup_content_item {
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
}

.wa__popup_content_list .wa__popup_content_item .wa__member_name {
    font-size: 14px;
    color: #363c47;
    line-height: 1.188em !important;
}

.wa__popup_content_list .wa__popup_content_item .wa__popup_txt {
    text-align: right;
    min-height: 48px;
    height: 48px;
}

.wa__popup_txt i {
    font-size: 40px;
    margin-left: 8px;
}

.wa__popup_chat_box_ct .wa__popup_ct_avatar img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.wa__popup_chat_box_ct .wa__popup_ct_call_btn {
    width: 97px;
    font-size: 11px;
    padding: 9px 10px 11px;
    margin: 15px 0 15px;
}



.wa__btn_popup {
    position: fixed;
    left: 10px;
    bottom: 10px;
    cursor: pointer;
    z-index: 5555;
}

.wa__btn_popup .wa__btn_popup_icon {
    width: 56px;
    height: 56px;
    background: var(--Green-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.14);
    -webkit-box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0px 6px 8px 2px rgba(0, 0, 0, 0.14);
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.wa__btn_popup .wa__btn_popup_icon:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent url('images/comment-svgrepo-com.png') center center no-repeat;
    filter: brightness(100);
    background-size: 30px auto;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    transition: 0.4s ease all;
    -webkit-transition: ;
    -moz-transition: ;
    -ms-transition: ;
    -o-transition: ;
    -webkit-filter: brightness(100);
}

.wa__btn_popup .wa__btn_popup_icon:after {
    content: '';
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    filter: brightness(100);
    background: transparent url('images/close-svgrepo-com.png') center center no-repeat;
    background-size: 35px auto;
    -webkit-background-size: 35px auto;
    -moz-background-size: 35px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -ms-transform: scale(0) rotate(-360deg);
    transform: scale(0) rotate(-360deg);
    -webkit-transform: scale(0) rotate(-360deg);
    -moz-transform: scale(0) rotate(-360deg);
    -webkit-filter: brightness(100);
}

.wa__btn_popup.wa__active .wa__btn_popup_icon:before {
    opacity: 0;
    -ms-transform: scale(0) rotate(360deg);
    transform: scale(0) rotate(360deg);
    -webkit-transform: scale(0) rotate(360deg);
    -moz-transform: scale(0) rotate(360deg);
}

.wa__btn_popup.wa__active .wa__btn_popup_icon:after {
    opacity: 1;
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
}

.wa__btn_popup .wa__btn_popup_txt {
    position: absolute;
    width: 160px;
    right: 100%;
    background-color: #ffff;
    font-size: 15px;
    color: #43474e;
    top: -46px;
    padding: 15px;
    margin-right: 7px;
    letter-spacing: -0.03em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
}

.wa__btn_popup.wa__active .wa__btn_popup_txt {
    -ms-transform: translate(0, 15px);
    transform: translate(0, 15px);
    -webkit-transform: translate(0, 15px);
    -moz-transform: translate(0, 15px);
    opacity: 0;
    visibility: hidden;
}

.wa__btn_popup {
    /* right: 37px; */
    /* bottom: 110px; */
}

.wa__btn_popup .wa__btn_popup_txt {
    left: 100%;
    right: unset;
    margin-left: 7px;
    margin-right: unset;
    display: none;
}

.wa__popup_chat_box {
    left: 25px;
}

.wa__popup_chat_box .wa__popup_heading {
    position: relative;
    padding: 15px 74px 17px 25px;
}

.wa__popup_chat_box .wa__popup_notice,
.wa__popup_content_list .wa__popup_content_item .wa__popup_txt {
    text-align: left;
}

.wa__popup_txt i {
    margin-left: unset;
    margin-right: 8px;
}

.contact-a {
    color: #10526a;
    text-decoration: none;
    float: left;
}

.contact-a:hover {
    color: #86b14c;
    text-decoration: none;
    float: left;
}


.text-decoration-none-contact i {
    color: var(--Green-color);
    font-size: 20px;
}

.text-decoration-none-contact {
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.wow.fadeInRight {
    margin-bottom: 10px;
}

/*****************whats*********************/


.boxs {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    text-align: center;
    margin: 0 5px;
    background: transparent;
    box-shadow: 0 5px 15px rgba(165, 165, 165, 0.5);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    z-index: 1;
}

.boxs::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    box-sizing: border-box;
    transform: translateX(0);
    z-index: -1;
}

.boxs::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    box-sizing: border-box;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    z-index: -1;
}

.boxs:hover {
    box-shadow: 0 5px 15px rgba(165, 165, 165, 0.5);
}

.boxs:hover::before {
    border-color: var(--Green-color);
    height: 100%;
    transform: translateX(0);
    transition: 0.3s transform linear, 0.3s height linear;
    -webkit-transition: 0.3s transform linear, 0.3s height linear;
    -moz-transition: 0.3s transform linear, 0.3s height linear;
    -ms-transition: 0.3s transform linear, 0.3s height linear;
    -o-transition: 0.3s transform linear, 0.3s height linear;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}

.boxs:hover::after {
    border-color: var(--black-color);
    height: 100%;
    transform: translateX(0);
    transition: 0.3s transform linear, 0.3s height linear;
    -webkit-transition: 0.3s transform linear, 0.3s height linear;
    -moz-transition: 0.3s transform linear, 0.3s height linear;
    -ms-transition: 0.3s transform linear, 0.3s height linear;
    -o-transition: 0.3s transform linear, 0.3s height linear;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}

.info-box img {
    width: 100px;
}

.info-box p {
    display: -webkit-box;
    display: -moz-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 15px;
}

.svg-img {
    height: 70px;
    width: 70px;
}

.svg-img img {
    width: 100%;
    height: 100%;
}



.card-details .tap-link {
    color: var(--Blue-color);
    margin: 10px 0;
    font-weight: 600;
    background-color: #ffffff;
    width: 100%;
    padding: 7px 15px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--Green-color);
}

.nav-pills .nav-link.active::after,
.nav-pills .show>.nav-link::after {
    content: unset;
}

.card-details {
    background-color: #F5F5F5;
    padding: 30px;
    border: 0;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin: 15px 0
}

.card-details ul {
    list-style: none;
    padding: 5px;
}

.card-details ul li {
    margin: 15px 0;
}

.about-images {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.about-text p {
    opacity: 0.6;
}

.about-text {
    margin-top: 10px;
    padding: 10px;
}

.date i {
    color: var(--Green-thin-color);
    font-size: 20px;
}

.date {
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 0 10px;
}

.date h6 {
    color: var(--black-color);
    opacity: 0.7;
    margin: 10px;
}

.categoryaddress p {
    color: var(--black-color);
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    margin-top: 15px;
}


.perant {
    border: 1px solid #ddd;
    padding: 20px;
    overflow: hidden;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: -4px 5px 5px #0000002c;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

.perant:hover {
    box-shadow: -1px 0px 0px #0000002c;
}

.Icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Icon span {
    font-weight: 700;
    background-color: var(--orange-color);
    padding: 10px;
    color: var(--white-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.Icon i {
    font-size: 20px;
    color: #fdbe36;
}

.name h3 {
    margin: 15px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.name p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: var(--orange-color);
}

.ServImage {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}



.carousel-item.product-item {
    height: unset !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.info-det span {
    margin-bottom: 15px !important;
    color: var(--Green-thin-color);
}

.fa-arrow-circle-right {
    color: var(--white-color);
    font-size: 20px;
    background-color: var(--Green-thin-color);
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.fa-arrow-circle-left {
    color: var(--white-color);
    font-size: 20px;
    background-color: var(--Green-thin-color);
    padding: 15px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}



.product-specs {
    margin: 60px 0;
}

.product-specs h3 {
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
}

.product-specs h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #198754;
    display: block;
    margin-top: 8px;
}

.specs-table {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.specs-table table {
    margin: 0;
}

.specs-table th {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    width: 30%;
}

.specs-table td {
    background-color: #fff;
    color: #333;
}

.specs-table tr:nth-child(even) td {
    background-color: #f8f9fa;
}

   .table-scroll {
        width: 100%;
        overflow-x: auto;
    }

.table-scroll table {
    min-width: 600px;
}

@media(max-width:992px) {
    .table-scroll {
        width: 100%;
        overflow-x: scroll;
    }
}