/* Kalam font */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Kalam:wght@300;400;700&display=swap');

/* karla font */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Kalam:wght@300;400;700&family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kalam', cursive;
    font-style: normal;
}
:root {
    --font: 'Karla', sans-serif;
    --main-color: #ff8819;
    --text-color: #333;
    --third-color: #19c3ff;
    --bg-color: #f5f5f5;
    --padding: 100px 0;
    --border-color: rgba(0, 0, 0, 0.2);
}
body {
    background-color: white;
}
a {
    text-decoration: none !important;
}
ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Selection */
::selection {
    color: white;
    background: var(--main-color);
}

/* text orange */
.txt-orange {
    color: var(--main-color);
}

/* Start main btn */
#mainBtn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    overflow: hidden;
    background-color: #ff7a29;
    z-index: 1;
}

#mainBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--third-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

#mainBtn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
/* End main btn */

/* Start Go to Top */
.go-top {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: auto;
    height: 35px;
    background: transparent;
    position: fixed;
    bottom: 80px;
    right: -100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    transition: all 0.4s ease;
    color: var(--main-color);
}

.go-top span {
    position: relative;
    display: block;
}

.go-top span::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 6px;
    background-color: var(--main-color);
    left: -33px;
}

.go-top.active {
    right: -12px;
    opacity: 1;
    visibility: visible;
}

/* End Go to Top */

/* Start Section Title */
.title-section h2 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 62px;
    margin-bottom: 45px;
}
.title-animation div {
    display: inline-block;
}
.title-animation span {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.title-animation span.show {
    opacity: 1;
    transform: translateY(0);
}
/* End Section Title */

/* Start Reveal */
.reveal {
    position: relative;
    transform: translateY(100px);
    opacity: 0.3;
    transition: all 2s ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}

/* End Reveal */

/* Start modal-search */
.modal-search#exampleModal {
    z-index: 99999999999;
    background-color: #0000008c;
}

.modal-search#exampleModal .modal-header {
    border: 0;
}

.modal-search#exampleModal .modal-body {
    padding-top: 0;
    text-align: center;
}

#exampleModal.modal-search.modal.fade .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
}

.modal-search#exampleModal .modal-content {
    background-color: transparent;
}

.modal-search#exampleModal .modal-content input {
    margin: 0;
    padding: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    outline: none;
}

.modal-search#exampleModal .modal-content button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: var(--text-color);
    border-color: var(--text-color);
    color: white;
    font-weight: bold;
    padding-right: 20px;
    padding-left: 20px;
    transition: 0.5s;
}
.modal-search#exampleModal .modal-content button:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
/* End modal-search */

/* ✅ Toast Modal */
.simple-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background-color: #e6ffed;
    color: #2e7d32;
    padding: 14px 24px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    z-index: 999999999;
    transition: all 0.4s ease;
}

.simple-toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.success-icon {
    color: #4caf50;
    font-size: 20px;
    animation: pop 0.5s ease forwards;
}

@keyframes pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

/* Start modal images */
.modal_view_imgs {
    z-index: 999999999 !important;
    background: rgba(0, 0, 0, 0.697);
}
.modal_view_imgs .modal-dialog {
    top: 50%;
    transform: translateY(-50%) !important;
}
.modal_view_imgs .modal-content {
    overflow: hidden;
    border: none;
    border-radius: 0;
}
/* End modal images */

/* zoom img */
.zoom-image {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    transform-origin: center center;
}
.zoom-image:hover {
    cursor: zoom-in;
}

/* Start nav bar */
#navbar {
    position: absolute;
    width: 100%;
    z-index: 99999999;
    backdrop-filter: blur(12px);
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

#navbar.navFixed {
    position: fixed;
    transition: 0.3s;
    background-color: var(--bg-color);
    box-shadow: var(--border-color) 0px 7px 29px 0px;
}
#navbar.navFixed .navbar-nav li a.nav-link {
    color: black;
}
#navbar.navFixed .search-box span.slash {
    color: black;
}
#navbar.navFixed .searchBtn {
    color: black;
    border-color: black;
}
#navbar.navFixed .searchBtn:hover {
    color: var(--third-color);
    border-color: var(--third-color);
}
#navbar.navFixed .navbar-toggler i {
    color: var(--main-color);
}
#navbar .navbar-brand {
    color: white;
    font-size: 24px;
    font-weight: bold;
    animation: logoNav 2s ease forwards;
    padding: 0;
    margin: 0;
    margin-left: 20px;
}
#navbar .navbar-brand img {
    width: 5rem;
}

#navbar .navbar-nav li {
    overflow: hidden;
    margin-left: 25px;
}

#navbar .navbar-nav li:last-child {
    margin-right: 5px;
}

#navbar .navbar-nav li a.nav-link {
    color: white;
    padding: 20px 7px;
    transition: 0.3s;
    animation: navEl 2s ease forwards;
    font-family: var(--font);
}

#navbar .navbar-nav li a.nav-link:hover {
    color: var(--main-color);
}

#navbar .navbar-nav li.dropdown ul {
    list-style: none;
    padding: 0;
    background: white;
    width: 14rem;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: 0.5s;
    transform: translateX(100px);
    border-radius: 6px;
    transition-delay: 0.1s;
}

#navbar .navbar-nav li:hover {
    overflow: visible;
}

#navbar .navbar-nav li:hover ul {
    visibility: visible;
    opacity: 1;
    z-index: 9999999999;
    transform: translateX(0);
}

#navbar .navbar-nav li.dropdown ul li {
    padding: 15px;
    margin: 0;
    transform: translateX(100px);
    transition: 0.5s;
    transition-delay: 0.1s;
    opacity: 0;
    visibility: hidden;
}
#navbar .navbar-nav li:hover ul li {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    border-bottom: 1px solid #ccc;
}
#navbar .navbar-nav li.dropdown ul li:hover a {
    color: var(--third-color);
    transform: translateX(2px);
    font-weight: bold;
}

#navbar .navbar-nav li.dropdown ul a {
    color: black;
    text-decoration: none;
    transition: 0.3s;
    display: block;
}

#navbar #main-btn {
    color: white;
    color: var(--main-color);
    transition: 0.3s ease-in-out;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    letter-spacing: 0.1em;
    overflow: hidden;
    animation: navEl 2s ease forwards;
    margin-left: 0;
    border-left: 1px solid #ccc;
    border-radius: 0;
    padding-right: 0;
}
#navbar #main-btn.reg {
    border: 0;
    padding-left: 0;
}
#navbar #main-btn:hover {
    color: var(--third-color);
}
.search-box span.slash {
    font-size: 22px;
    color: white;
    animation: navEl 2s ease forwards;
}
#navbar .navbar-toggler {
    color: white;
    border: none;
    box-shadow: none;
    margin-left: auto;
    animation: MoveTop 2s ease forwards;
    margin-right: 10px;
}

.searchBtn {
    background-color: transparent;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid white;
    color: white;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: moveLeftBtn 2s ease forwards;
}

.searchBtn:hover {
    border-color: var(--third-color);
    color: var(--third-color);
}

/* payment in navbar */
.payment_content {
    position: relative;
}
.payment_content .payment_product {
    position: absolute;
    top: 55px;
    right: 0;
    background-color: white;
    padding: 10px 15px;
    border-radius: 6px;
    width: 15rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: 0.4s;
}
.payment_content:hover .payment_product {
    visibility: visible;
    opacity: 1;
    z-index: 99;
}
.payment_content .exist {
    border-bottom: 1px solid var(--border-color);
    padding: 5px;
    text-align: center;
    margin-bottom: 10px;
}
.payment_content .exist a {
    transition: 0.4s;
}
.payment_content .exist a:hover {
    color: var(--main-color);
}
.payment_content .pr_box:not(:last-of-type) {
    margin-bottom: 15px;
}
.payment_content .pr_box img {
    width: 50px;
    height: 50px;
}
.payment_content .pr_box h2 {
    margin: 0;
    font-size: 17px;
}
.payment_content .pr_box h2 a {
    color: var(--third-color);
    transition: 0.5s;
    font-weight: bold;
    /* cursor: pointer; */
}
.payment_content .pr_box h2 a:hover {
    color: var(--main-color);
}
.payment_content .pr_box i {
    color: red;
    cursor: pointer;
    transition: 0.5s;
}
.payment_content .pr_box i:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.payment_content .payment_product .go_cart {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding-top: 5px;
    text-align: center;
    margin-top: 10px;
    transition: 0.5s;
}
.payment_content .payment_product .go_cart a {
    display: block;
    font-weight: 500;
    transition: 0.3s;
}
.payment_content .payment_product .go_cart a:hover {
    color: var(--main-color);
}
.payment_content .payment_product .go_cart:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* End Navbar */

/* start landing */
#landing {
    overflow: hidden;
}

#landing .home1 {
    background-image: url(../img/furniture-banner-collection.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: zoomBackground 30s forwards;
}

#landing .home2 {
    background-image: url(../img/009furniture-banner-11.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: zoomBackground 30s forwards;
}

#landing .home3 {
    background-image: url(../img/ukr_1298584688.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: zoomBackground 30s forwards;
}

#landing .home-lnd {
    height: 100vh;
    position: relative;
    z-index: 9;
}

#landing .home-lnd::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.321);
    z-index: -1;
}

#landing .home-lnd .home-content {
    position: relative;
}

#landing .home-lnd h2 {
    font-size: 90px;
    animation: MoveTop 2s ease forwards;
}

#landing .home-lnd h2 span {
    color: var(--main-color);
    animation: MoveTop 1s ease forwards;
}

#landing .home-lnd p {
    font-size: 18px;
    width: 90%;
    animation: MoveTop 2s ease forwards;
    margin-left: auto;
    margin-right: auto;
}

#landing .slider-btn a:first-child {
    background: var(--main-color);
    padding: 17px 33px;
    transition: 0.3s;
    animation: moveRight 2s ease forwards;
    color: white;
    font-weight: bold;
}

#landing .slider-btn a:last-child {
    padding: 17px 33px;
    transition: 0.3s;
    border: 2px solid rgb(255, 255, 255);
    color: white;
    animation: moveLeft 2s ease forwards;
    text-decoration: none;
    font-weight: bold;
}

#landing .slider-btn a:last-child:hover {
    border-color: var(--main-color);
    color: white;
    background-color: var(--main-color);
}

#landing .swiper-button-next,
#landing .swiper-button-prev {
    color: black;
    width: 53px;
    height: 53px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

#landing .swiper-button-next {
    right: 100px;
}

#landing .swiper-button-prev {
    left: 100px;
}

#landing .swiper-button-next:hover,
#landing .swiper-button-prev:hover {
    background-color: var(--main-color);
}

#landing .swiper-button-next::after,
#landing .swiper-button-prev::after {
    font-size: 17px;
    font-weight: bold;
    transition: 0.5s;
}

#landing .swiper-button-next:hover::after,
#landing .swiper-button-prev:hover::after {
    color: white;
}

/* end landing */

/* Start About Us Section */
#about_us {
    padding: var(--padding);
    background: var(--bg-color);
}
#about_us .title-animation div {
    display: block;
}
#about_us .title-animation div span {
    display: block;
    margin-bottom: 7px;
}
#about_us .title_anim2 {
    font-size: 46px;
    padding-left: 15px;
}
#about_us .title_anim2 div {
    display: inline-block;
    margin-right: 20px;
}
#about_us .title_anim2 div span {
    display: inline-block;
    margin-left: -15px;
}
#about_us .image img {
    width: 100%;
    height: 40rem;
}
#about_us .text h3 {
    font-family: var(--font);
    font-size: 46px;
    font-weight: 700;
}
#about_us .text ul li {
    padding: 6px;
}
#about_us .text ul li i {
    color: var(--main-color);
}
#about_us .text p:first-of-type {
    font-size: 20px;
    margin: 10px;
}
#about_us .text p:last-of-type {
    font-size: 17px;
}
/* End About Us Section */

/* Start Products Section */
.products {
    padding: var(--padding);
}
.products .image {
    position: relative;
    overflow: hidden;
}
.products .image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.649);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    z-index: 2;
}
.products .image:hover::before {
    opacity: 1;
    visibility: visible;
}
.products .image img {
    width: 100%;
    transition: 0.5s;
}
.products .image:hover img {
    transform: scale(1.1);
}
.products .image button {
    position: absolute;
    left: 50%;
    top: -100%;
    transform: translate(-50%, -50%);
    z-index: 4;
    background: var(--main-color);
    transition: 0.5s;
    border: none;
    border-radius: 0;
}
.products .image button:hover {
    background-color: var(--third-color);
}
.products .image:hover button {
    top: 50%;
}
/* End Products Section */

/* Start Services Section */
.Services {
    padding: var(--padding);
    background: var(--bg-color);
}
#serve_box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 4px;
    transition: 0.5s;
    overflow: hidden;
}
#serve_box:hover {
    transform: translateY(-10px);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#serve_box .image {
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 350px;
}
#serve_box .image1 {
    background-image: url(../img/latest-project-05.jpg);
}
#serve_box .image2 {
    background-image: url(../img/latest-project-06.jpg);
}
#serve_box .image3 {
    background-image: url(../img/latest-project-04.jpg);
}
#serve_box img {
    width: 100%;
    height: 25rem;
    transition: 0.5s;
}
#serve_box img:hover {
    transform: scale(1.1);
}
#serve_box .content {
    overflow: hidden;
    padding: 30px;
}
#serve_box .content h3 {
    font-weight: 700;
}
#serve_box .content h3 a {
    color: var(--third-color);
    transition: 0.3s;
}
#serve_box .content h3 a:hover {
    color: var(--main-color);
}
#serve_box .content p {
    font-size: 17px;
}
/* End Services Section */

/* Start Projects Section */
.Projects {
    padding: var(--padding);
}
.Projects .mySwiper2 {
    padding-top: 20px;
}
.Projects .container {
    max-width: 1635px;
}

.Projects #card_Serve {
    margin-bottom: 70px;
}

.Projects .image {
    margin-right: 30px;
    position: relative;
}

.Projects .image .serv_img {
    overflow: hidden;
}

.Projects .image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -20px;
    left: 20px;
    border: 1px solid var(--main-color);
}

.Projects .image img {
    width: 100%;
    position: relative;
    z-index: 1;
    transition: 1s;
    height: 500px;
}

.Projects .image img:hover {
    transform: scale(1.1);
}

.Projects .serve-body {
    padding: 12px 30px 12px;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
    flex-wrap: wrap;
    padding-right: 50px;
    background-color: var(--text-color);
}

.Projects .serve-body a {
    color: rgb(255, 255, 255);
    font-weight: 700;
    transition: 0.3s;
    text-decoration: none;
    font-size: 20px;
}

.Projects .serve-body a:hover {
    color: var(--main-color);
}

.Projects .serve-body i {
    height: 56px;
    width: 56px;
    background-color: var(--third-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.7s;
    color: white;
    font-size: 25px;
    border-radius: 50%;
}

.Projects .serve-body i:hover {
    background-color: var(--main-color);
    color: white;
}

#pagin span {
    background: var(--text-color);
}

#pagin span.swiper-pagination-bullet-active {
    background: var(--main-color);
}

/* End Projects Section */

/* Start faq Section */
.faq {
    padding: var(--padding);
    background: var(--bg-color);
}
.faq .title-animation {
    margin-bottom: 15px;
    font-size: 40px;
}
.faq .title-animation div {
    margin-right: 10px;
}
.faq .title-animation span {
    margin-left: -8px;
}
.faq .image img {
    width: 100%;
}
#accordionExample .accordion-item {
    border: none;
    background: transparent;
}
#accordionExample .accordion-header {
    background: transparent;
}
#accordionExample .accordion-header button {
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    margin-bottom: 10px;
    font-size: 18px;
}
#accordionExample .accordion-header button:not(.collapsed) {
    color: var(--third-color);
}
#accordionExample .accordion-collapse {
    transition: 0.6s;
    transition-delay: 0.1s;
}
#accordionExample .accordion-collapse div {
    background: white;
}
/* End faq Section */

/* Start Blogs */
.Blogs {
    padding: var(--padding);
}

.blog-card .image {
    overflow: hidden;
    margin-bottom: 10px;
}

.blog-card .image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.704);
    transition: 0.6s;
    opacity: 0;
    z-index: 1;
}

.blog-card:hover .image::before,
.blog-card .image:hover::before {
    opacity: 1;
}

.blog-card .image img {
    transition: 0.9s all;
    width: 100%;
}

.blog-card:hover .image img {
    transform: scale(1.1);
}

.blog-card .image .history {
    padding: 3px 10px 3px;
    text-align: center;
    background-color: var(--main-color);
    color: black;
    top: 0;
    left: 0;
    z-index: 5;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
}

.blog-card .content {
    background-color: var(--text-color);
    padding: 33px 30px 40px;
}

.blog-card .content .blog-type {
    padding: 0;
}

.blog-card .content .blog-type li {
    color: white;
}

.blog-card .content .blog-type li i {
    color: var(--third-color);
}

.blog-card .content h3 a {
    color: white;
    /* font-weight: 700; */
    transition: 0.5s all;
    font-size: 26px;
    font-family: var(--font);
    text-decoration: none;
    margin-bottom: 20px;
    display: block;
}

.blog-card .content h3 a:hover {
    color: var(--main-color);
}

.blog-card .person img {
    border-radius: 50%;
}

.blog-card .person .title {
    color: white;
}

.blog-card .person .title h6 {
    color: var(--main-color);
    margin-bottom: 5px;
    font-size: 14px;
}

.blog-card .person .title h5 {
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font);
}

/* End Blogs */

/* Start Team */
.Team {
    padding: var(--padding);
    background: var(--bg-color);
}
.Team .mySwiper4 {
    padding-bottom: 2rem;
}
.team-box {
    position: relative;
}

.team-box .image {
    overflow: hidden;
    position: relative;
}

.team-box .image .team_img {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-box .image .team_img.img1 {
    background-image: url(../img/team1.jpg);
}
.team-box .image .team_img.img2 {
    background-image: url(../img/team2.jpg);
}
.team-box .image .team_img.img3 {
    background-image: url(../img/team3.jpg);
}
.team-box .image .team_img.img4 {
    background-image: url(../img/team4.jpg);
}
.team-box .image .team_img.img5 {
    background-image: url(../img/team5.jpg);
}
.team-box .image .team_img.img6 {
    background-image: url(../img/team6.jpg);
}

.team-box .image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.607);
    z-index: 1;
    opacity: 0;
    transition: 0.6s all ease-in-out;
}

.team-box .image:hover::before {
    opacity: 1;
}
.team-box .image img {
    height: 500px;
}
.team-box .team-info {
    background: #0a0c09;
    padding: 20px;
    text-align: center;
}

.team-box .team-info p {
    color: white;
    color: var(--third-color);
}

.team-box .team-info h3 {
    color: var(--main-color);
    font-weight: 700;
}

.team-box .team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.team-box .team-social a {
    transform: rotateX(90deg);
    transition: 0.7s;
}

.team-box .image:hover .team-social a {
    transform: rotateX(0deg);
}

.team-box .image img {
    width: 100%;
}

.team-box .team-social a:not(:last-child) {
    color: white;
    text-decoration: none;
}

.team-box .team-social a:last-child {
    color: black;
    text-decoration: none;
}

.team-box .team-social a i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.team-box .team-social a i.facebook {
    background: #1877f2;
}

.team-box .team-social a i.vine {
    background: var(--main-color);
}

.team-box .team-social a i.instagram {
    background: white;
}

.team-box .team-social a i.twitter {
    background: #1da1f2;
}

/* End Team */

/* Start Testimonials */
.Testimonial {
    padding: var(--padding);
}

.Testimonial .mySwiper3 {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

#card_Testi {
    padding: 79px 47px 43px;
    border-radius: 20px;
    background: var(--bg-color);
}

#card_Testi .image {
    margin-top: -6rem;
}
#card_Testi .star i {
    color: #ffb310;
}
#card_Testi .image img {
    border-radius: 50%;
    z-index: 2;
    position: relative;
}

#card_Testi h3 a {
    color: var(--third-color);
    text-decoration: none;
    font-weight: 700;
}

#card_Testi p {
    color: var(--main-color);
    font-size: 17px;
}

#card_Testi p.info-text {
    margin-top: 18px;
    font-size: 20px;
    color: var(--text-color);
}

/* End Testimonials */

/* Start Contact Section */
.contact {
    padding: var(--padding);
    background: url(../img/contact.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.356);
}
.contact h2 {
    color: white;
    font-weight: 700;
}
.contact .content #face a {
    padding: 12px 60px;
    border-radius: 40px;
    background: white;
    border: 1px solid white;
    color: black;
    transition: 0.4s;
}
.contact .content #face a:hover {
    color: white;
    border-color: var(--third-color);
}
.contact .content #face i {
    color: #1877f2;
}
.contact .content #mail a {
    padding: 12px 60px;
    border-radius: 40px;
    background: transparent;
    border: 1px solid white;
    transition: 0.4s;
}
.contact .content #mail a:hover {
    border-color: var(--third-color);
}
.contact .content #mail img {
    width: 20px;
}
.contact .content .joinBefore p {
    color: white;
    font-weight: 700;
    font-size: 17px;
}
.contact .content .joinBefore a {
    color: var(--main-color);
    transition: 0.5s;
}
.contact .content .joinBefore a:hover {
    color: var(--third-color);
}
/* End Contact Section */

/* Start Footer */
.site-footer {
    padding: var(--padding);
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 0;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.footer-widget .footer-logo {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 40px;
}
.footer-widget .footer-logo img {
    width: 7rem;
}

.footer-widget p {
    color: var(--text-color);
}

.footer-widget .social {
    display: flex;
    align-items: center;
}

.footer-widget .social p {
    /* margin-bottom: 5px; */
    font-size: 15px;
}

.footer-widget .social a {
    color: var(--text-color);
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    border: 1px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    transition: 0.4s;
    overflow: hidden;
}

.footer-widget .social a:hover {
    border: none;
}

.footer-widget .social a i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.4s;
    width: 50px;
    height: 50px;
}
.footer-widget .social a i:hover {
    color: white;
}

.footer-widget .social a i.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer-widget .social a i.pinterest:hover {
    background: #e60023;
    border-color: #e60023;
}

.footer-widget .social a i.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.footer-widget .social a i.instagram:hover {
    background: #833ab4;
    border-color: #833ab4;
}
.footer-widget h3 {
    font-weight: 600;
    font-size: 30px;
}
.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    padding: 10px 10px 10px 3px;
    transition: 0.3s;
}

.footer-widget ul li:hover {
    background: var(--text-color);
    border-radius: 6px;
}

.footer-widget ul li a {
    color: rgb(0, 0, 0);
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
}

.footer-widget ul li:hover a {
    font-weight: 600;
    transform: translateX(10px);
    display: block;
    color: var(--main-color);
}

.footer-bottom {
    border-top: 1px solid rgb(0 0 0 / 20%);
    padding: 40px 0;
}

.footer-bottom .copyRight p {
    color: var(--text-color);
    padding-right: 5px;
}

.footer-bottom .copyRight p:last-child {
    border-left: 1px solid rgb(0 0 0 / 20%);
    padding-left: 5px;
}

.footer-bottom .copyRight a {
    color: var(--main-color);
    text-decoration: none;
    transition: 0.4s;
}

.footer-bottom .copyRight a:hover {
    color: var(--third-color);
}

.footer-bottom .policy li {
    padding-right: 10px;
    padding-left: 10px;
}

.footer-bottom .policy li:not(:last-child) {
    border-right: 1px solid rgb(0 0 0 / 20%);
}

.footer-bottom .policy li a {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.5s;
}

.footer-bottom .policy li a:hover {
    color: var(--main-color);
}

/* End Footer */

/* Start BreadCrumb */
#BreadCrumb {
    background: url(../img/breadcrumb.jpeg);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: start;
    overflow: hidden;
}

#BreadCrumb::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

#BreadCrumb p {
    color: var(--third-color);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

#BreadCrumb h2 {
    color: white;
    font-weight: 700;
    font-size: 4.5rem;
    display: inline-block;
    animation: bounce 0.6s ease;
}

#BreadCrumb nav {
    position: absolute;
    right: 30px;
    bottom: 30px;
    opacity: 0;
    animation: fadeOut 1s forwards;
}

#BreadCrumb nav li {
    color: white;
    font-weight: 700;
}

#BreadCrumb nav li::before {
    color: white;
}

#BreadCrumb nav li a {
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

#BreadCrumb nav li a:hover {
    color: var(--main-color);
}

/* End BreadCrumb */

/* Start About us Page */
.about_us {
    padding: var(--padding);
}

.about_us .image img {
    width: 100%;
    border-radius: 6px;
}
.about_us .image img:first-of-type {
    height: 620px;
    min-width: 380px;
}
.about_us .image img:last-of-type {
    height: 582px;
    min-width: 380px;
}

.about_us .text {
    padding: 60px 70px 60px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    background: white;
}
.about_us .title-animation div {
    display: inline-block;
    margin-right: 20px;
}
.about_us .title-animation span {
    margin-left: -19px;
}
.about_us .text h2 {
    color: rgb(0, 0, 0);
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--font);
    max-width: 37rem;
}

.about_us .text .design h4 {
    color: rgb(0, 0, 0);
    font-weight: 700;
}

.about_us .text .design p {
    color: rgb(0, 0, 0);
    width: 70%;
    margin: 0;
}

.all-progress {
    max-width: 500px;
}

.all-progress .box {
    margin-bottom: 20px;
}

.all-progress span {
    font-size: 22px;
    color: rgb(0, 0, 0);
    font-weight: 700;
}

.all-progress .progress-par {
    position: relative;
    width: 100%;
    height: 3px;
    background: #63615633;
}

.all-progress .progress-par span {
    height: 100%;
    position: relative;
    background-color: var(--main-color);
    display: block;
}

.all-progress .progress-par span div {
    position: absolute;
    right: 0;
    bottom: 7px;
}
/* End About us Page */

/* Start Services Page */
.Serve-Page {
    padding: var(--padding);
}

.Serve-Page .title-animation {
    font-size: 50px;
}
.Serve-Page .title-animation div {
    margin-right: 10px;
}
.Serve-Page .title-animation span {
    margin-left: -15px;
}
.Serve-Page ul {
    padding: 0;
    margin: 0;
}

.Serve-Page ul li {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 41px 0 41px;
}

.Serve-Page ul li .awards_circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.Serve-Page ul li .awards_circle p {
    font-size: 30px;
    font-weight: 700;
    font-style: normal;
    color: var(--main-color);
    line-height: 30px;
    margin: 0;
}

.Serve-Page ul li .title-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    margin-left: 30px;
    color: rgb(0, 0, 0);
    font-family: var(--font);
}

.Serve-Page ul li .awards_year p {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    font-style: normal;
    color: var(--third-color);
}

.Serve-Page ul li .awards_arrow a {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    font-size: 20px;
    color: rgb(0, 0, 0);
    transition: 0.5s ease;
}

.Serve-Page ul li .awards_arrow a:hover {
    background-color: var(--main-color);
    color: white;
    border-color: var(--main-color);
}

.Serve-Page .image {
    position: relative;
    margin-left: 68px;
    margin-right: 42px;
}

.Serve-Page .image img:first-child {
    width: 100%;
}

.Serve-Page .image img:last-child {
    position: absolute;
    bottom: 0;
    right: -42px;
}

/* End Services Page */

/* Start Coming Soon page */
.Coming_Soon {
    min-height: 100vh;
    position: relative;
    background: url(../img/coming-soon-page-bg.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Coming_Soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.77);
    z-index: 0;
}

.Coming_Soon .coming-content {
    text-align: center;
    z-index: 9;
    position: relative;
}

.Coming_Soon .big-title {
    position: relative;
    display: inline-block;
    color: transparent;
    font-size: 80px;
    line-height: 1.1em;
    font-family: var(--font);
    font-weight: 700;
    text-transform: uppercase;
    /* -webkit-background-clip: text; */
    -webkit-text-stroke: 1px white;
    word-spacing: 15px;
}

.Coming_Soon .timer-box {
    justify-content: center;
    flex-wrap: wrap;
}

.Coming_Soon .timer-box .digit-box {
    border: 1px solid #ffffff47;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.Coming_Soon .timer-box .digit {
    color: white;
    font-weight: 700;
    font-size: 35px;
}

.Coming_Soon .timer-box .sub-digit {
    font-size: 20px;
    color: white;
    font-weight: 600;
}

.Coming_Soon p {
    color: white;
    font-size: 20px;
    font-weight: 400;
}

.Coming_Soon .comson_subscribe {
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
}

.Coming_Soon .comson_subscribe form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.Coming_Soon .comson_subscribe input {
    border: 1px solid var(--border-color);
    background-color: var(--text-color);
    height: 60px;
    width: 32rem;
    max-width: 100%;
    color: #b6b6b6;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    padding-left: 40px;
    padding-right: 40px;
    transition: all 500ms ease 0s;
    outline: none;
}

/* End Coming Soon page */

/* Start Error_page */
.Error_page {
    padding: var(--padding);
}
.Error_page img {
    width: 100%;
}
/* End Error_page */

/* Start contact_page */
.contact_page {
    padding: var(--padding);
    padding-bottom: 0;
}

.contact_page .contact-us-info {
    background-color: var(--bg-color);
    padding: 107px 0 75px;
    border-radius: 10px;
}

.contact_page .contact_info {
    background-color: white;
    padding: 58px 40px 70px;
    border-radius: 10px;
    margin-left: 39px;
    margin-right: 12px;
}

.contact_page .contact_info h3 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font);
    border-bottom: 1px solid var(--border-color);
    font-size: 36px;
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.contact_page .contact_info .contact-box {
    padding: 21px 0 20px 20px;
    background-color: var(--bg-color);
    margin-bottom: 25px;
}

.contact_page .contact_info i {
    color: rgb(255, 255, 255);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    font-size: 20px;
}

.contact_page .contact_info h5 {
    color: rgb(0, 0, 0);
    font-weight: 700;
}

.contact_page .contact_info p {
    color: var(--third-color);
    margin: 0;
}

.contact_page .contact_info p a {
    color: var(--third-color);
    transition: 0.5s;
}

.contact_page .contact_info p a:hover {
    color: var(--main-color);
}

.contact_page .GetQuote {
    margin-left: 20px;
    margin-right: 35px;
    margin-top: -14px;
}

.contact_page .GetQuote h2 {
    font-size: 48px;
    display: inline-block;
    border-bottom: 1px solid var(--border-color);
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin-bottom: 70px;
    padding-bottom: 15px;
}

.box-contact {
    margin-bottom: 20px;
}

.box-contact label {
    color: var(--text-color);
    margin-bottom: 8px;
}

.box-contact input {
    background-color: white;
    width: 100%;
    border: none;
    outline: none;
    text-shadow: none;
    padding-left: 15px;
    padding-right: 15px;
    height: 60px;
    border-radius: 5px;
    color: rgb(0, 0, 0);
}

.box-contact textarea {
    background-color: white;
    width: 100%;
    border: none;
    outline: none;
    text-shadow: none;
    min-height: 150px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 5px;
    padding-top: 13px;
    color: rgb(0, 0, 0);
}

.contact_page #mainBtn {
    width: fit-content;
}

/* End contact_page */

/* Start Blog Details page */
.blog_details {
    padding: var(--padding);
}

.blog_details_left .blgDt_image img {
    width: 100%;
    border-radius: 6px;
}

.blog_details_left .blgDt_content {
    margin-top: 33px;
}

.blog_details_left .blgDt_content ul i {
    color: var(--main-color);
}

.blog_details_left .blgDt_content ul span {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 16px;
}

.blog_details_left .blgDt_content .share i {
    color: rgb(0, 0, 0);
}

.blog_details_left .blgDt_content .blgDt_Title1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 16px;
    margin-bottom: 28px;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}

.blog_details_left .blgDt_content p {
    color: var(--text-color);
    font-size: 17px;
    line-height: 26px;
    margin: 0;
}

.blog_details_left .blgDt_content .text2 {
    margin-top: 35px;
    margin-bottom: 41px;
}

.blog_details_left .tag_box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 35px 25px;
    border-radius: 10px;
}

.blog_details_left .tag_box p {
    color: var(--main-color);
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
    font-family: var(--font);
    margin: 0;
}

.blog_details_left .tag_box a {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: var(--third-color);
    padding: 9px 25px 9px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.5s;
}

.blog_details_left .tag_box a:hover {
    background-color: var(--main-color);
    color: white;
}

.blog_details_left .client_info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 49px;
}

.blog_details_left .client_info img {
    border-radius: 50%;
}

.blog_details_left .client_info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    margin: 0;
}

.blog_details_left .client_info p {
    color: var(--text-color);
    margin-top: 12px;
    margin-bottom: 13px;
}

.blog_details_left .client_info .social {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_details_left .client_info .social p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: rgb(0, 0, 0);
}

.blog_details_left .client_info .social div {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog_details_left .client_info .social a {
    color: var(--third-color);
    transition: 0.5s;
    font-size: 20px;
}

.blog_details_left .client_info .social a:hover {
    color: var(--main-color);
}

.blog_details_left .pagination_box {
    margin-top: 40px;
    padding: 20px 0 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.blog_details_left .pagination_box li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.blog_details_left .pagination_box li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 66px;
    background-color: var(--tecture-black);
    font-size: 26px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: 0.5s;
}
.blog_details_left .pagination_box li a:hover {
    color: var(--main-color);
}

.blog_details_left .pagination_box li p {
    position: relative;
    margin-left: 20px;
    font-weight: 700;
    line-height: 24px;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    margin-bottom: 0;
}

.blog_details_left .comment_one {
    position: relative;
    display: block;
    margin-top: 36px;
    margin-bottom: 61px;
}

.blog_details_left .comment_form {
    margin-bottom: 30px;
}

.blog_details_left .comment-title {
    position: relative;
    display: block;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 61px;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}

.blog_details_left .comment-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 90px;
    height: 2px;
    background-color: var(--main-color);
}

.blog_details_left .comment_one .comment-single {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 35px;
}

.blog_details_left .comment-single img {
    border-radius: 50%;
}

.blog_details_left .comment-single .content {
    position: relative;
    display: block;
    margin-left: 30px;
}

.blog_details_left .comment-single .content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    color: var(--main-color);
}

.blog_details_left .comment-single .content span {
    position: relative;
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--third-color);
}

.blog_details_left .comment-single .content p {
    color: #aeb0b4;
    font-size: 17px;
    line-height: 26px;
    margin: 0;
}

.blog_details_left .comment-single .content a {
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 16px;
    color: var(--third-color);
    font-weight: 400;
    text-transform: capitalize;
}

.blog_details_left .comment-single.child {
    margin-top: 49px;
    margin-left: 70px;
}

.blog_details_left .comment_form .box-form {
    margin-bottom: 30px;
}

.blog_details_left .comment_form .box-form input {
    background-color: var(--bg-color);
    height: 70px;
    width: 100px;
    color: black;
    border-radius: 5px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    border: none;
    box-shadow: none;
    font-weight: 400;
    display: block;
    width: 100%;
}

.blog_details_left .comment_form .box-form textarea {
    background-color: var(--bg-color);
    height: 220px;
    width: 100px;
    color: black;
    border-radius: 5px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    border: none;
    box-shadow: none;
    font-weight: 400;
    display: block;
    width: 100%;
    padding-top: 20px;
}

.blog_details_left .comment_form .checked_box input {
    display: none;
}

.blog_details_left .comment_form .checked_box label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    color: #b6b6b6;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
}

.blog_details_left .comment_form .checked_box label span {
    border-color: #e3e4ea;
    position: absolute;
    display: block;
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #e3e4ea;
    cursor: pointer;
    border-radius: 4px;
    transition: all 300ms ease;
}

.blog_details_left .comment_form .checked_box label span::before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: '';
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    margin: 2px auto 0px;
    transform: scale(0);
    transition: all 300ms ease;
}

.blog_details_left .comment_form .checked_box input[type='checkbox']:checked + label span:before {
    transform: scale(1);
}

.blog_details_left .comment_form a.learnMore {
    margin-top: 25px;
}

.blog_details_right .sidebar_search {
    position: relative;
    display: block;
}

.blog_details_right .sidebar_search input {
    display: block;
    outline: none;
    background-color: var(--bg-color);
    border: none;
    font-weight: 400;
    font-size: 16px;
    height: 70px;
    width: 100%;
    padding-left: 25px;
    padding-right: 70px;
    color: black;
    border-radius: 5px;
}

.blog_details_right .sidebar_search button {
    color: var(--bg-color);
    font-size: 16px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    max-width: 60px;
    width: 100%;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog_details_right .sidebar_search button:hover {
    color: white;
    background-color: var(--third-color);
    border-color: var(--third-color);
}

.blog_details_right .latest_bost {
    margin-top: 30px;
    position: relative;
    display: block;
    padding: 49px 36px 76px;
    background-color: var(--bg-color);
}

.blog_details_right .sidebar-title {
    position: relative;
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 50px;
    color: black;
    text-transform: uppercase;
}

.blog_details_right .sidebar-title::before {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.blog_details_right .sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 70px;
    height: 2px;
    background-color: var(--main-color);
}

.blog_details_right .latest_bost li {
    position: relative;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 5px;
    padding: 16px 26px 16px;
    margin-bottom: 20px;
}

.blog_details_right .latest_bost img {
    border-radius: 3px;
}

.blog_details_right .latest_bost .content {
    margin-left: 15px;
}

.blog_details_right .latest_bost p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--third-color);
    margin: 0;
}

.blog_details_right .latest_bost h3 a {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 3px;
    text-transform: none;
    color: black;
    text-decoration: none;
    transition: 0.5s;
}

.blog_details_right .latest_bost h3 a:hover {
    color: var(--main-color);
}

.blog_details_right .all_category {
    margin-top: 30px;
    position: relative;
    display: block;
    padding: 49px 50px 76px;
    background-color: var(--bg-color);
}

.blog_details_right .all_category li {
    margin-bottom: 23px;
}

.blog_details_right .all_category li:hover a {
    color: var(--main-color);
}

.blog_details_right .all_category li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    color: black;
    padding-bottom: 12px;
    text-transform: none;
    font-size: 16px;
    text-decoration: none;
    transition: 0.5s;
}

.blog_details_right .have_query {
    position: relative;
    display: block;
    background-color: var(--bg-color);
    text-align: center;
    padding: 58px 60px 67px;
    margin-top: 30px;
}

.blog_details_right .have_query h3 {
    font-size: 48px;
    font-weight: 700;
    line-height: 62px;
    text-transform: uppercase;
    color: black;
}

.blog_details_right .have_query p {
    color: var(--text-color);
    margin-top: 12px;
    margin-bottom: 43px;
}

.blog_details_right .have_query a {
    margin: 0 auto;
}

.blog_details_right .tags {
    position: relative;
    display: block;
    padding: 40px 40px 40px;
    background-color: var(--bg-color);
    margin-top: 30px;
}

.blog_details_right .tags .tags-list {
    margin-left: -20px;
}

.blog_details_right .tags .tags-list a {
    color: #000000;
    transition: all 0.4s ease;
    display: inline-block;
    padding: 12px 15px 12px;
    background-color: var(--third-color);
    margin-left: 20px;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 10px;
    text-decoration: none;
}

.blog_details_right .tags .tags-list a:hover {
    background-color: var(--main-color);
    color: rgb(255, 255, 255);
}

/* End Blog Details page */

/* Start Login & Register Pages */
.Account_Page {
    padding-top: 100px;
}

.Account_Page h2 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-family: var(--font);
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.Account_Page h2 a {
    color: inherit;
    text-decoration: none;
    transition: 0.5s;
}

.Account_Page h2 a:hover {
    color: var(--main-color);
}

.Account_Page form {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
}

.Account_Page .form_title {
    text-align: center;
    color: var(--third-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.Account_Page .box-contact {
    position: relative;
}

/* .Account_Page .box-contact input[type='password'] {
    position: relative;
} */

.Account_Page .box-contact .show_hide_pass {
    position: absolute;
    color: rgb(0, 0, 0);
    top: 54px;
    right: 10px;
    cursor: pointer;
}

.Account_Page #mainBtn {
    border: none;
    outline: none;
    box-shadow: none;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.Account_Page .have_account span {
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-family: var(--font);
}

.Account_Page .have_account a {
    text-decoration: none;
    color: var(--third-color);
    font-weight: 700;
    transition: 0.5s;
}

.Account_Page .have_account a:hover {
    color: var(--main-color);
}

/* End Login & Register Pages */

/* Start Policy Page */
.privacy-content {
    padding: 70px 0;
    position: relative;
}

.privacy-content .container {
    max-width: 1300px;
}

.privacy-content .top-wrapper {
    margin-top: -7px;
    margin-bottom: -7px;
}

.privacy-content .top-wrapper h4 {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 41.6px;
    color: rgb(0, 0, 0);
    font-family: var(--font);
    font-weight: 600;
    margin-top: -7px;
}

.privacy-content .top-wrapper p {
    margin: 0;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 30px;
}

.privacy-content .top-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.privacy-content .top-wrapper ul li {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    line-height: 30px;
    margin-bottom: 10px;
}

.privacy-content .safe-data {
    margin: 55px 0;
}

.privacy-content .safe-data ul {
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    list-style-type: decimal !important;
    margin-left: 18px;
}

.privacy-content .safe-data ul li {
    padding-left: 15px !important;
}

.privacy-content .safe-data ul li::marker {
    font-weight: bold !important;
}

/* End Policy Page */

/* Start project_dt Page */
.project_dt {
    padding: var(--padding);
}

.project_dt img {
    width: 100%;
}

.project_dt .project_content {
    margin-top: 48px;
}

.project_dt h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    font-family: var(--font);
    color: rgb(0, 0, 0);
}

.project_dt .proj_dt_text1 {
    margin-top: 24px;
    margin-bottom: 28px;
}

.project_dt p {
    margin: 0;
    color: var(--text-color);
    font-size: 17px;
}

.project_dt .prj_Dt_faq {
    margin-top: 57px;
    margin-bottom: 43px;
}

/* End project_dt Page */

/* Start Services details page */
.Services_Details_Page {
    padding: var(--padding);
    padding-top: 120px;
}

.Services_Details_Page .serve_dtLeft ul {
    margin: 0;
    padding: 0;
    flex-direction: column;
}

.Services_Details_Page .serve_dtLeft li {
    display: block;
    margin-bottom: 20px;
}

.Services_Details_Page .serve_dtLeft button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 19px 30px 19px;
    z-index: 1;
    background-color: var(--bg-color);
    position: relative;
    border-radius: 0;
    color: black;
}

.Services_Details_Page .serve_dtLeft button.active {
    background-color: var(--main-color);
    color: white;
}

.Services_Details_Page .serve_dtLeft button.active span {
    color: white;
}

.Services_Details_Page .serve_dtLeft button.active i {
    color: white;
}

.Services_Details_Page .serve_dtLeft button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--main-color);
    transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transform-origin: bottom right;
    transform: scale(1, 0);
    z-index: -1;
}

.Services_Details_Page .serve_dtLeft li:hover button::before {
    transform: scale(1, 1);
    transform-origin: top center;
}

.Services_Details_Page .serve_dtLeft button span {
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    transition: 0.5s;
}
.Services_Details_Page .serve_dtLeft button:hover span {
    color: white;
}

.Services_Details_Page .serve_dtLeft button i {
    color: var(--main-color);
    transition: 0.5s;
}
.Services_Details_Page .serve_dtLeft button:hover i {
    color: white;
}

.serve_Dt_Contact {
    background-color: #f6d273;
    margin: 30px 0 30px;
    padding: 68px 50px 71px;
    text-align: center;
    position: relative;
}

.serve_Dt_Contact::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--bg-color);
}

.serve_Dt_Contact div {
    position: relative;
    z-index: 5;
}

.serve_Dt_Contact h3 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 33px;
}

.serve_Dt_Contact i {
    width: 80px;
    height: 80px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    font-size: 30px;
    margin: 0 auto;
    margin-bottom: 15px;
    margin-top: 15px;
}

.serve_Dt_Contact i:hover {
    background-color: var(--main-color);
    color: white;
}

.serve_Dt_Contact p {
    color: rgb(0, 0, 0);
    margin-bottom: 5px;
}

.serve_Dt_Contact a {
    color: rgb(0, 0, 0);
    font-size: 25px;
    font-weight: 600;
    transition: 0.5s;
}

.serve_Dt_Contact a:hover {
    color: var(--main-color);
}

.Services_Details_Page a#mainBtn {
    padding: 20px 50px 20px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.Services_Details_Page a#mainBtn i {
    margin-right: 10px;
    font-size: 30px;
}

.Services_Details_Page a#mainBtn:hover {
    color: black;
}

.Services_Details_Page .serve_dtRight .tab-pane img {
    width: 100%;
}

.Services_Details_Page .serve_dtRight h3.title {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 13px;
    font-family: var(--font);
    text-transform: uppercase;
}

.Services_Details_Page .serve_dtRight p {
    color: var(--text-color);
    font-size: 17px;
}

.Services_Details_Page .QuantumTech {
    margin-top: 40px;
}

.Services_Details_Page .QuantumTech img {
    width: 100%;
}

.Services_Details_Page .QuantumTech h3 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    font-size: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-family: var(--font);
    text-transform: uppercase;
}

.Services_Details_Page .QuantumTech ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.Services_Details_Page .QuantumTech li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.Services_Details_Page .QuantumTech li div {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: var(--main-color);
}

.Services_Details_Page .QuantumTech li p {
    color: rgb(0, 0, 0);
    font-size: 17px;
    margin: 0;
}

/* End Services details page */

/* Start team_Details */
.team_Details {
    padding: var(--padding);
}

.team_Details .tmDt-img img {
    width: 100%;
    border-radius: 5px;
}

.team_Details .tmDt-box {
    margin-left: 65px;
    margin-top: 45px;
}

.team_Details .tmDt-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.team_Details .tmDt-box li {
    margin-bottom: 42px;
}

.team_Details .tmDt-box .progress-person h4 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin-bottom: 11px;
}

.team_Details .tmDt-box .progress-person .bar {
    background-color: var(--bg-color);
    width: 100%;
    height: 17px;
}

.team_Details .tmDt-box .progress-person .count-bar {
    position: relative;
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
}

.team_Details .tmDt-box .progress-person .count-text {
    position: absolute;
    color: rgb(0, 0, 0);
    font-weight: 700;
    right: 0;
    top: -25px;
}

.Address-person {
    position: relative;
    display: flex;
    margin-left: -176px;
    background-color: var(--bg-color);
    align-items: center;
    justify-content: space-between;
    padding: 39px 70px 43px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.Address-person .client-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 75px;
    flex-wrap: wrap;
}

.Address-person .client-info ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.Address-person .client-info li p {
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 5px;
}

.Address-person .client-info li h3 {
    color: var(--main-color);
    font-size: 21px;
    font-weight: 600;
}

.Address-person .client-info li a {
    color: var(--third-color);
    transition: 0.5s ease;
}

.Address-person .client-info li a:hover {
    color: var(--main-color);
}

.Address-person .client-social {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.Address-person .client-social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tecture-black);
    border-radius: 50%;
    overflow: hidden;
    transition: 0.5s ease;
    background-color: white;
    text-decoration: none;
}

.Address-person .client-social a:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--main-color);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.4s;
    transition-property: all;
    opacity: 1;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.Address-person .client-social a:hover::after {
    opacity: 1;
    transform: scaleY(1);
}

.Address-person .client-social a:hover {
    color: white;
    background-color: var(--main-color);
}

.Address-person .client-social a i {
    font-size: 16px;
}

/* End team_Details */

/* Start Cart Page */
#cart-page {
    padding: var(--padding);
}

#cart-page h2#head {
    margin: 0 0 0.25em;
    font-size: 60px;
    font-weight: 600;
    color: #041e42;
    font-weight: 700;
    margin-bottom: 50px;
}

#cart-page #step-shop {
    position: relative;
    border: 1px solid #efefef;
    margin-bottom: 2em;
}

#cart-page #step-shop span.line-center {
    position: absolute;
    left: 50%;
    top: 27%;
    transform: translate(-50%, -50%);
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    width: 28rem;
}

#cart-page #step-all {
    text-align: center;
    display: flex;
    align-items: center;
}

#cart-page #step-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 36px 30px;
    font-size: 16px;
    color: #333437;
    font-weight: 700;
    position: relative;
    flex: 1 auto;
    line-height: 1.5em;
    width: 100%;
    padding-inline-start: 20px;
    padding-inline-end: 20px;
}

#cart-page #step-content span.number {
    display: inline-flex;
    width: 24px;
    height: 24px;
    margin-inline-end: 2.273em;
    border-radius: 50em;
    background-color: rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
}

#cart-page #step-content span.number:not(span.number.dis):after {
    content: '';
    display: inline-block;
    height: 1px;
    position: absolute;
    top: 16px;
    left: calc(50% + 16px);
    right: calc(-50% + 16px);
    z-index: -1;
    background-color: #e0e0e0;
    display: none;
}

#cart-page #step-content span.number.active {
    background-color: var(--main-color);
}

#cart-page #step-content b {
    margin: 0;
}

#cart-page #step-content svg {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#cart-page table#product-details {
    margin: 0;
    border: none;
    border-radius: 0;
    text-align: left;
    width: 100%;
    color: #333;
}

#cart-page table#product-details thead {
    background-color: #f8f8f8;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #000;
}

#cart-page table#product-details th {
    border: none;
    padding: 25px 10px;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

#cart-page table#product-details th:first-of-type {
    padding-inline-start: 28px;
}

#cart-page table#product-details tbody tr:nth-child(2) {
    background-color: #fbfbfb;
}

#cart-page table#product-details tbody td:first-of-type {
    padding-inline-start: 28px;
}

#cart-page table#product-details tbody td {
    border: none;
    padding: 25px 0;
    font-weight: 600;
}

#cart-page table#product-details tbody td.product-img img {
    width: 64px;
    margin-inline-end: 25px;
}

#cart-page table#product-details tbody td.product-name a {
    color: var(--main-color);
    font-weight: 600;
}

#cart-page table#product-details tbody td.product-remove a {
    color: red;
}

#cart-page #coupon-box {
    margin-top: 20px;
    margin-bottom: 20px;
}

#cart-page #coupon {
    display: flex;
    position: relative;
    border: 1px dashed #d4d4d4;
    align-items: center;
    padding-inline-start: 25px;
    margin-bottom: 15px;
}

#cart-page #coupon input {
    padding: 13px 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    border: none;
    flex: 1 auto;
    color: #5e5e5e;
}

#cart-page #coupon input:focus {
    border: none;
    box-shadow: none;
    outline: none;
}

#cart-page #coupon button {
    display: inline-flex;
    width: 64px;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #002739;
    border: none;
}

#cart-page #coupon button i {
    font-size: 20px;
}

#cart-page #continueShop {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
}

#cart-page #continueShop a {
    color: black;
    background: transparent;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid #e6e6e6;
    padding: 1.15em 2.1em;
    transition: 0.3s;
}

#cart-page #continueShop a:hover {
    color: white;
    background-color: black;
}

#cart-page #continueShop button {
    padding: 1.15em 2.1em;
    cursor: not-allowed;
    opacity: 0.5;
    background-color: black;
    outline: none;
    border: none;
    color: white;
    font-size: 13px;
    font-weight: 700;
}

#cart-page #cart-total h3 {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.5em;
    margin-bottom: 13px;
    color: #041e42;
}

#cart-page #cart-total table#subTotal {
    margin: 0;
    border: none;
    border-radius: 0;
}

#cart-page #cart-total table#subTotal tbody {
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 500;
    color: #000;
}

#cart-page #cart-total table#subTotal tr {
    background-color: transparent;
}

#cart-page #cart-total table#subTotal th {
    padding: 15px !important;
    background-color: #f8f8f8;
    font-size: 15px;
    font-weight: 400;
    color: #454545;
}

#cart-page #cart-total table#subTotal td {
    width: 100%;
    padding: 15px 25px;
    background-color: #fdfdfd;
}

#cart-page #checkout a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 13px;
    padding: 1.667em;
    font-weight: 700;
    background-color: #002739;
    margin-top: 2.083em;
}

#cart-page #number.number svg > path {
    fill: #ff9800;
}

#cart-page #number.number label {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #191919;
    margin-bottom: 2rem;
    user-select: none;
}

#cart-page #number.number .custom-number-input {
    width: 8rem;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    border: 1px solid #ccc;
}

#cart-page #number.number .counter-input-group {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#cart-page #number.number .counter-input-group i {
    font-weight: 400;
}

#cart-page #number.number .button {
    width: 0;
    height: 0;
    display: inline-block;
    padding: 0.5rem;
    background-color: transparent;
    border-radius: 0.25rem;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}

#cart-page #number.number .button.decrement {
    margin-bottom: 9px;
}

#cart-page #number.number .button svg {
    width: 2rem;
    height: 2rem;
    pointer-events: none;
}

#cart-page #number.number .button:hover,
#cart-page #number.number .button:focus {
    background-color: #f0f0f0;
}

#cart-page #number.number #custom-input-number {
    text-align: center;
    height: inherit;
    width: 5rem;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    color: #2d2d2d;
    background-color: transparent;
}

#cart-page #number.number input[type='number']::-webkit-outer-spin-button,
#cart-page #number.number input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

#cart-page #number.number input[type='number']::-moz-inner-spin-button,
#cart-page #number.number input[type='number']::-moz-outer-spin-button {
    -moz-appearance: none;
    appearance: none;
}

#cart-page #number.number input[type='number']::-ms-inner-spin-button,
#cart-page #number.number input[type='number']::-ms-outer-spin-button {
    -ms-appearance: none;
    appearance: none;
}

/* ------------------------------------- */
/* ------------increase number------------- */
/* ------------------------------------- */
#number svg > path {
    fill: #ff9800;
}

#number label {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #191919;
    margin-bottom: 2rem;
    user-select: none;
}

#number .custom-number-input {
    border-radius: 1rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

#number .counter-input-group {
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#number .button {
    width: 5rem;
    height: 4rem;
    display: inline-block;
    padding: 0.5rem;
    background-color: #f9f9f9;
    border-radius: 0.25rem;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}

#number .button svg {
    width: 2rem;
    height: 2rem;
    pointer-events: none;
}

#number .button:hover,
#number .button:focus {
    background-color: #f0f0f0;
}

#number #custom-input-number {
    text-align: center;
    height: inherit;
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.75rem;
    font-weight: 800;
    color: #2d2d2d;
}

#number input[type='number']::-webkit-outer-spin-button,
#number input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

#number input[type='number']::-moz-inner-spin-button,
#number input[type='number']::-moz-outer-spin-button {
    -moz-appearance: none;
    appearance: none;
}

#number input[type='number']::-ms-inner-spin-button,
#number input[type='number']::-ms-outer-spin-button {
    -ms-appearance: none;
    appearance: none;
}
/* End Cart Page */

/* Start Product_Page */
.Product_Page {
    padding: var(--padding);
}

.Product_Page #myTab {
    padding: 0;
    margin: 0;
    margin-bottom: 55px;
    border: 0;
}

.Product_Page #myTab li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-bottom: 10px;
}

.Product_Page #myTab li button {
    color: rgb(0, 0, 0);
    font-weight: 700;
    background-color: transparent;
    border-color: var(--border-color);
    padding: 12px 25px 12px;
    font-size: 18px;
    transition: 0.4s all ease-in-out;
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.Product_Page #myTab li button.active,
.Product_Page #myTab li button:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: white;
    box-shadow: none;
}

.Product_Page .tab-content-box {
    position: relative;
    overflow: hidden;
    transition: 0.4s all ease-in-out;
}

.Product_Page .tab-content-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(166, 161, 130, 1) 0%, rgba(166, 161, 130, 1) 10%, rgba(166, 161, 130, 0.5970763305322129) 51%, rgba(166, 161, 130, 0.7063200280112045) 80%, rgba(166, 161, 130, 0.10407913165266103) 100%);
    opacity: 0;
    transition: 0.4s all ease-in-out;
    z-index: 1;
}

.Product_Page .tab-content-box:hover::before {
    opacity: 1;
}

.Product_Page .tab-content-box img {
    width: 100%;
    transition: 1.3s ease-in-out all;
}

.Product_Page .tab-content-box:hover img {
    transform: scale(1.1);
}

.Product_Page .tab-content-box .image-det {
    position: absolute;
    padding: 20px;
    background: var(--bg-color);
    text-align: center;
    width: 100%;
    left: -100%;
    bottom: 0;
    transition: 1s all;
    z-index: 2;
}

.Product_Page .tab-content-box:hover .image-det {
    left: 0;
}

.Product_Page .tab-content-box .image-det h2 {
    color: white;
    font-weight: 700;
    font-size: 24px;
    font-family: var(--font);
}

.Product_Page .tab-content-box .image-det h2 a {
    transition: 0.5s;
}

.Product_Page .tab-content-box .image-det h2 a:hover {
    color: var(--main-color);
}

.Product_Page .tab-content-box .image-det p {
    color: var(--text-color);
}

.Product_Page .tab-content-box button#modal {
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    color: white;
    border: none;
    box-shadow: none;
    outline: none;
    transition: 0.5s;
    top: -100%;
    /* right: -100%; */
    transform: translateY(-50%);
    z-index: 990;
    transition-delay: 0.2s;
    position: absolute;
    right: 5px;
}

.Product_Page .tab-content-box button#modal:hover {
    background: var(--third-color);
}

.Product_Page .tab-content-box button#modal i {
    font-size: 15px;
}

.Product_Page .tab-content-box .heart {
    position: absolute;
    top: -100%;
    transform: translateY(-50%);
    z-index: 990;
    transition: 0.6s;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin-bottom: 6px;
}

.Product_Page .tab-content-box .heart i {
    cursor: pointer;
    font-size: 15px;
    color: white;
    transition: 0.5s;
}
.Product_Page .tab-content-box .heart:hover {
    background: var(--third-color);
}

.Product_Page .tab-content-box:hover .heart {
    top: 33%;
    right: 5px;
}

.Product_Page .tab-content-box:hover button#modal {
    top: 45%;
    right: 5px;
}

/* Start modal-img-projects */
#exampleModal2.modal-img-projects {
    z-index: 99999999999;
}

#exampleModal2 .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
}

#exampleModal2 .carousel-control-prev {
    left: -30rem;
}

#exampleModal2 .carousel-control-next {
    right: -30rem;
}

/* End modal-img-projects */

/* End Projects */
