@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700&display=swap');
@import url('./splide.min.css');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: #f4f5f6 !important;
    position: relative;
}

button:focus {
    outline: none !important;
}

ul {
    list-style: none;
}

.tcw-logo-header {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tcw-logo-header .logo-section {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
    background: #fff;
    border-radius: 0 50%;
    overflow: hidden;
}

.tcw-logo-header .logo-section img {
    width: 100%;
}

.splide__slide img {
    width: 100%;
}

.splide__arrow {
    background: #099992;
    height: 50px;
    width: 50px;
    border-radius: 0;
}

.splide__arrow svg {
    fill: #fff;
}

.splide__arrow--next {
    right: 0;
}

.splide__arrow--prev {
    left: 0;
}

.splide__pagination__page {
    background: #fff;
}

.splide__pagination__page.is-active {
    background: #099992;
    border: 1px solid #fff;
}

.tcw-products {
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    margin: auto;
}

.tcw-products .tcw_products_container {
    position: relative;
    width: 90%;
    /* display: flex; */
    padding: 30px 10px;
    margin: auto;
}

.tcw-products .tcw_products_container .tcw_product_card {
    /* width: 250px; */
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #fff;
    transition: 0.5s ease-in-out;
}

.tcw-products .tcw_products_container .tcw_product_card .image-box {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.tcw-products .tcw_products_container .tcw_product_card .image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in-out;
    transform-origin: right;
}

.tcw-products .tcw_products_container .tcw_product_card:hover {
    border-color: #099992;
}

.tcw-products .tcw_products_container .tcw_product_card:hover .image-box img {
    transform: scale(1.5);
}

.tcw-products .tcw_products_container .tcw_product_card .image-box .actions {
    position: absolute;
    top: 10px;
    right: 10px;
}

.tcw-products .tcw_products_container .tcw_product_card .image-box .actions li {
    position: relative;
    list-style: none;
    transition: transform 0.5s;
    transform: translateX(120px);
    visibility: hidden;
}

.tcw-products .tcw_products_container .tcw_product_card:hover .actions li {
    transform: translateX(0px);
    visibility: visible;
}

.tcw-products .tcw_products_container .tcw_product_card:hover .actions li:last-child {
    transition-delay: 0.15s;
}

.tcw-products .tcw_products_container .tcw_product_card .image-box .actions li.disscont {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #099992;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
}

.tcw-products .tcw_products_container .tcw_product_card .image-box .actions li a {
    width: 85px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    background-color: #099992;
    border: 1px solid #099992;
    border-radius: 3px;
    text-decoration: none;
    transition: 0.5s ease-in-out;
}

.tcw-products .tcw_products_container .tcw_product_card .image-box .actions li a:hover {
    background-color: #fff;
    color: #099992;
}

.tcw-products .tcw_products_container .tcw_product_card .content {
    padding: 20px 15px;
}

.tcw-products .tcw_products_container .tcw_product_card .content .title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 5px 0;
}

.tcw-products .tcw_products_container .tcw_product_card .content .title p {
    font-size: 14px;
    color: #74808b;
    margin: 5px;
}

.tcw-products .tcw_products_container .tcw_product_card .content .price h2 {
    font-size: 20px;
    color: #099992;
    font-weight: 500;
    margin: 5px;
}

.tcw-products .tcw_products_container .tcw_product_card .content .price h2 .old-price {
    font-size: 18px;
    color: #bbb;
    font-weight: 400;
    text-decoration: line-through;
    margin: 0 8px;
}



.tcw-home-ad-banner,
.tcw-shopping-with-us {
    width: 100%;
    padding: 20px 0;
    direction: rtl;
    text-align: center;
}

.tcw-home-ad-banner .title h3,
.tcw-shopping-with-us .title h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #099992;
}

.tcw-home-ad-banner .banner-image {
    width: 100%;
    margin: 20px auto;
}

.tcw-shopping-with-us .shopping-with-us-content {
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    padding: 25px;
}

.tcw-shopping-with-us .shopping-with-us-content .item {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    transition: 0.5s ease-in-out;
}

.tcw-shopping-with-us .shopping-with-us-content .item:hover {
    box-shadow: 0px 0 5px 2px #c5c5d1d1;
}

.tcw-shopping-with-us .shopping-with-us-content .title h4 {
    font-size: 18px;
    color: #121212;
}

.tcw-shopping-with-us .shopping-with-us-content .title h4 span.counter {
    color: #099992;
    font-size: 30px;
    font-weight: 700;
}

.tcw-shopping-with-us .shopping-with-us-content .title h4 span.counter::after {
    content: '';
    width: 5px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: #099992;
    display: inline-block;
    margin: 0 3px 0 10px;
}

.tcw-shopping-with-us .shopping-with-us-content .description p {
    color: #757474;
}

/* TCW Main Footer */

footer.tcw-footer {
    width: 100%;
    background: #099992;
    direction: rtl;
	text-align: right;
    color: #fff;
}

footer.tcw-footer .tcw-footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    padding: 25px;
}

footer.tcw-footer .tcw-footer-container .footer-item .title h4 {
    font-size: 20px;
    font-weight: 400;
}

footer.tcw-footer .tcw-footer-container .footer-item .footer-links-list {
    padding: 10px 0;
}

footer.tcw-footer .tcw-footer-container .footer-item .footer-links-list ul li {
    display: flex;
    align-items: center;
}

footer.tcw-footer .tcw-footer-container .footer-item .footer-links-list ul li a {
    color: #fff;
    text-decoration: none;
}

footer.tcw-footer .tcw-footer-container .footer-item .footer-links-list ul li a:hover {
    color: #FA944B;
}

footer.tcw-footer .tcw-footer-container .footer-item .footer-links-list ul li i {
    font-size: 20px;
    margin-left: 8px;
}

footer.tcw-footer .copyRight {
    width: 100%;
    height: 35px;
    font-size: 13px;
    direction: ltr;
    background: #027c77;
}

footer.tcw-footer .copyRight .copyrightText {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer.tcw-footer .copyRight .copyrightText span.fa-copyright {
    font-size: 14px;
    margin-inline-end: 5px;
    margin-bottom: -2px;
}

footer.tcw-footer .copyRight a {
    text-decoration: none;
    color: #FA944B;
    font-weight: 600;
}

/* TCW About Us Page */

.tcw-about-us-page {
    width: 100%;
    background: #fff;
    direction: rtl;
    text-align: right;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.tcw-about-us-page .tcw-artical {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
}

.tcw-about-us-page .tcw-artical:nth-child(even) .artical-image {
    order: 2;
}

.tcw-about-us-page .tcw-artical .artical-image img {
    width: 100%;
    object-fit: contain;
}

.tcw-about-us-page .tcw-artical .artical-info {
    width: 80%;
    padding: 2.5rem 1rem;
}

.tcw-about-us-page .tcw-artical:nth-child(even) .artical-info {
    padding-inline-start: 4rem;
}

.tcw-about-us-page .tcw-artical .artical-info span.hint {
    display: block;
    color: #a3a3a3;
    font-size: 18px;
}

.tcw-about-us-page .tcw-artical .artical-info h2.title {
    font-size: 2.5rem;
    color: #121212;
    margin: 10px 0 30px;
}

.tcw-about-us-page .tcw-artical .artical-info h4.sub-title {
    font-size: 22px;
    font-weight: 500;
    color: #121212;
    margin-bottom: 25px;
}

.tcw-about-us-page .tcw-artical .artical-info p.desc {
    color: #777777;
    font-size: 18px;
}


/* TCW Contact Us Page */

.tcw-contact-us-page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    direction: rtl;
    text-align: right;
}

.tcw-contact-us-page .tcw-contact-us-page-banner {
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
    background-image: url(./../images/360_F_203791136.jpg);
    background-size: cover;
    background-position: 0 65%;
    background-blend-mode: darken;
    background-color: #121212b3;
}

.tcw-contact-us-page .tcw-contact-us-container {
    position: relative;
    min-width: 1200px;
    min-height: 650px;
    display: flex;
    z-index: 1000;
    margin: 50px 0;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info {
    position: absolute;
    top: 40px;
    width: 450px;
    height: calc(100% - 80px);
    background: #099992;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info .contacts_info {
    padding: 70px 40px;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form {
    position: absolute;
    padding: 40px 50px;
    padding-right: 280px;
    margin-right: 200px;
    width: calc(100% - 150px);
    height: 100%;
    background: #fff;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.25);
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info h2.contact-us-title,
.tcw-contact-us-page .tcw-contact-us-container .contact-form h2.contact-us-title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 50px;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form h2.contact-us-title {
    color: #099992;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info h2.contact-us-title::after,
.tcw-contact-us-page .tcw-contact-us-container .contact-form h2.contact-us-title::after {
    content: '';
    width: 75px;
    height: 2px;
    display: block;
    border-radius: 10px;
    background: #FA944B;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info ul.info {
    list-style: none;
    margin: 20px 0;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info ul.info li a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info ul.info li a i {
    font-size: 24px;
    margin-left: 15px;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info ul.info li a:hover {
    color: #FA944B;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info .social {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info .social .social-item {
    width: calc(100% / 3);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info .social .social-item:hover {
    background-color: #FA944B;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-info .social .social-item a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box {
    position: relative;
    margin-bottom: 35px;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box.w50 {
    width: 47%;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box.w100 {
    width: 100%;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box input,
.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box textarea {
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    border: none;
    border-bottom: 1px solid #777777;
    outline: none !important;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box textarea {
    height: 120px;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box span.input-label {
    position: absolute;
    right: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 18px;
    font-weight: 400;
    transition: 0.4s;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box input:focus~span.input-label,
.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box input:valid~span.input-label,
.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box textarea:focus~span.input-label,
.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box textarea:valid~span.input-label {
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #099992;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box button {
    width: 130px;
    height: 45px;
    background-color: #099992;
    border: 1px solid #099992;
    border-radius: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box button:hover {
    background-color: #FA944B;
    border-color: #FA944B;
}

.tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* TCW Privacy Policy Page */

.tcw-privacy-policy-page {
    width: 100%;
    background: #fff;
    min-height: 100vh;
    direction: rtl;
    text-align: right;
}

.tcw-privacy-policy-page .privacy-policy-container {
    padding: 50px;
}

.tcw-privacy-policy-page .privacy-policy-container .page-title h2 {
    color: #099992;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 50px;
}

.tcw-privacy-policy-page .privacy-policy-container .page-title h2::after {
    content: '';
    width: 85px;
    height: 2px;
    display: block;
    border-radius: 10px;
    background: #FA944B;
}

.tcw-privacy-policy-page .privacy-policy-container .content-item,
.tcw-privacy-policy-page .privacy-policy-container .content-item .desc-list .item {
    padding: 0 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.tcw-privacy-policy-page .privacy-policy-container .content-item .desc-list .item {
    width: 100%;
    margin-bottom: 10px;
}

.tcw-privacy-policy-page .privacy-policy-container .content-item .count {
    display: block;
    width: 20px;
    color: #099992;
    font-size: 18px;
    font-weight: 600;
    direction: ltr;
}

.tcw-privacy-policy-page .privacy-policy-container .content-item .desc {
    display: block;
    width: calc(100% - 20px);
    color: #777777;
    font-size: 16px;
}

.tcw-privacy-policy-page .privacy-policy-container .content-item .desc a {
    text-decoration: none;
    color: #099992;
}

.tcw-privacy-policy-page .privacy-policy-container span.title {
    display: block;
    font-size: 18px;
    color: #121212;
    font-weight: 600;
    margin-bottom: 15px;
}

.tcw-privacy-policy-page .privacy-policy-container span.title::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #099992;
    display: inline-block;
    transform: rotate(45deg);
    margin-inline-end: 10px;
}

.tcw-privacy-policy-page .privacy-policy-container span.hint {
    font-weight: 500;
    color: #121212;
    display: block;
    margin-bottom: 8px;
}

/* Mobile View */

@media (max-width: 768px) {
    .tcw-about-us-page .tcw-artical {
        grid-template-columns: repeat(auto-fit, minmax(55%, 1fr));
    }

    .tcw-about-us-page .tcw-artical .artical-info {
        width: 100%;
        padding: 1rem 2rem;
    }

    .tcw-about-us-page .tcw-artical:nth-child(even) .artical-image {
        order: unset;
    }

    .tcw-about-us-page .tcw-artical:nth-child(even) .artical-info {
        padding-inline-start: 2rem;
    }

    .tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box.w50,
    .tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box .input-box.w100 {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .tcw-contact-us-page .tcw-contact-us-container {
        width: 90%;
        min-width: auto;
        margin: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

    .tcw-contact-us-page .tcw-contact-us-container .contact-info {
        top: 0;
        height: inherit;
        position: relative;
        box-shadow: none;
    }

    .tcw-contact-us-page .tcw-contact-us-container .contact-form {
        position: relative;
        width: 100%;
        padding-right: 0;
        margin-right: 0;
        padding: 40px;
        box-shadow: none;
        height: inherit;
    }
}

@media (max-width: 991px) {
    .tcw-contact-us-page .tcw-contact-us-container {
        display: flex;
        flex-direction: column;
    }

    .tcw-contact-us-page .tcw-contact-us-container .contact-info,
    .tcw-contact-us-page .tcw-contact-us-container .contact-form {
        width: 100%;
    }

    .tcw-contact-us-page .tcw-contact-us-container .contact-form {
        padding: 20px;
    }

    .tcw-contact-us-page .tcw-contact-us-container .contact-info .contacts_info {
        padding: 40px 20px;
    }

    .tcw-contact-us-page .tcw-contact-us-container .contact-form .form-box {
        padding: 0;
    }
}


