* {

    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background: var(--white);
    color: var(--black);
}

:root {
    --white: #fdfdfa;
    --black: #000;
    --primary: #dbc270;
    --grey--dark: #555555;
}



.dark-mode-toggle {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    display: inline-block;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    overflow: hidden;
    border-radius: 50%;
    /* border: .2rem solid var(--grey--dark); */
    position: fixed;
    right: 10px;
    top: 45%;
    background-color: #000;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 999;
}

.dark-mode-toggle:focus {
    outline: none;
    border-color: var(--primary);
}

:root[data-theme="dark"] .dark-mode-toggle__text:before {
    content: "deactivate ";
}

:root[data-theme="light"] .dark-mode-toggle__text:before {
    content: "activate ";
}

.dark-mode-toggle__icon {
    display: block;
    background: #fff;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    position: relative;
    transition: width 0.3s, height 0.3s;
    z-index: 1;
    transform: rotate(-20deg);
}

.dark-mode-toggle__icon:before {
    z-index: 0;
    content: "";
    position: absolute;
    display: block;
    border-right: none;
    border-radius: 50%;
    width: 2.4rem;
    height: 2.4rem;
    top: 50%;
    left: 50%;
    transition: opacity 0.3s, background-image 03s;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: spin__rays 4s linear infinite;
    background-image: linear-gradient(0deg,
            transparent 46%,
            #fff 46%,
            #fff 54%,
            transparent 54%),
        linear-gradient(90deg,
            transparent 46%,
            #fff 46%,
            #fff 54%,
            transparent 54%),
        linear-gradient(45deg,
            transparent 47%,
            #fff 47%,
            #fff 53%,
            transparent 53%),
        linear-gradient(135deg,
            transparent 47%,
            #fff 47%,
            #fff 53%,
            transparent 53%);
}

.dark-mode-toggle__icon:after {
    content: "";
    position: absolute;
    display: block;
    background: #000;
    border-radius: 0.7rem;
    width: 1.4rem;
    height: 1.4rem;
    top: 50%;
    left: 200%;
    transform: translateY(-50%);
    transition: left 0.3s;
}

/* .dark-mode-toggle:hover .dark-mode-toggle__icon {
    background: var(--primary);
} */


:root[data-theme="light"] .dark-mode-toggle__icon:after {
    left: 40%;
}

:root[data-theme="dark"] .dark-mode-toggle__icon {
    width: 1.3rem;
    height: 1.3rem;
}

:root[data-theme="dark"] .dark-mode-toggle__icon:before {
    opacity: 1;
}

@keyframes spin__rays {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

/* Hide only visually, but have it available for screenreaders */
.hidden--visually {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}










@font-face {
    font-family: 'Archivo';
    src: url('../fonts/Archivo-SemiBold.woff2') format('woff2'),
        url('../fonts/Archivo-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Varela Round';
    src: url('../fonts/VarelaRound-Regular.woff2') format('woff2'),
        url('../fonts/VarelaRound-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




img {
    width: 100%;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
    font-family: "Archivo", sans-serif;
}

ul {
    padding-left: 0;
}

a {
    text-decoration: none;
    font-family: "Archivo", sans-serif;
    transition: ease-in-out .5s;
}

span {
    display: block;
    font-family: 'Varela Round';
}

p {
    font-size: 16px;
    line-height: 30px;
}

.img {
    overflow: hidden;
}

.img:hover img {
    /* transform: scale(1.1); */
    animation-name: elementor-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}




.top_contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    align-items: center;
    padding: 10px 0;
}

.contact-list-one {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 10px;
}

.contact-list-one li {
    position: relative;
    font-size: 18px;
    line-height: 25px;
    color: #000;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 18px;
    border-right: 1px solid #6f6f6f
}

.contact-list-one li i {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 20px;
    line-height: 30px;
    color: var(--primary);
}

.contact-list-one li:last-child {
    border: none;
}

.contact-list-one li a {
    color: #000;
}

.contact-list-one li a:hover {
    color: #e33b12;
}


.socal_media {
    display: flex;
    gap: 20px;
}

.socal_media a {
    color: #000;
    font-size: 18px;
}

.nav_bar .nav_bar_nav {
    display: flex;
}


#myHeader.sticky {
    position: fixed;
    background-color: #000;
    width: 100%;
    top: 0;
    z-index: 9999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
#myHeader.sticky .nav_bar_n{
    border-radius: 0;
    box-shadow: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .top_1 {
    display: none;
}

#myHeader.sticky .logo {
    margin-top: 0;
}

#myHeader.sticky .logo img {
    width: 110px;
}

.togal {
    background: #ffffff;
    width: 37px;
    height: 33px;
    cursor: pointer;
    display: none;
    order: 3;
}

.btn-icon {
    width: 100%;
    height: 31px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #ffffff;
}

.btn-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000000;
    transition: .35s ease-in-out;
}

.open .btn-icon span:nth-of-type(1) {
    transform: translateY(10px) rotate(315deg);
}

.open .btn-icon span:nth-of-type(2) {
    width: 0;
    left: 50%;
}

.open .btn-icon span:nth-of-type(3) {
    transform: translateY(-11px) rotate(-315deg);
    ;

}




.nav_bar_n {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 50px;
    padding: 0 30px;
    z-index: 99;
    background-color: #fff;
}

nav {
    border-top: 1px solid #ffffff33;
    border-bottom: 1px solid #ffffff33;
    background-color: #fff;
}

.nav_bar .nav_bar_nav li a {
    color: #000;
    padding: 15px 6px;
    transition: ease-in-out .3s;
}

.nav_bar .nav_bar_nav li {
    padding: 25px 15px;
}

.nav_bar_nav li {
    position: relative;
}

.nav_bar_nav li a:hover {
    color: var(--primary);
}

.nav_bar_nav .droupdown {
    position: absolute;
    background-color: #fff;
    width: 250px;
    top: 110%;
    visibility: hidden;
    opacity: 0;
    transition: ease-in-out .5s;
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 30%;
    color: #000;
    cursor: pointer;
}

.nav_bar_nav .droupdown li {
    padding: 0;
}

.nav_bar_nav li:hover .droupdown {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.nav_bar_nav .droupdown li a {
    display: block;
    padding: 10px 15px;
    transition: ease-in-out .5s;
    color: #000;
}

.nav_bar_nav .droupdown li a:hover {
    background-color: var(--primary);
    color: #fff;
}

.nav_bar_nav {
    margin-bottom: 0;
}

.logo img {
    padding: 2px 0px;
    width: 164px;
    background-color: #000;
}
.top_line{
    background-color: #000;
    padding: 5px;
}

.slick-nav.next-arrow.slick-arrow {
    position: absolute;
    left: 1%;
    top: 45%;
    color: #fff;
    z-index: 9;
    border: 1px solid #fff;
    padding: 5px 12px;
    transform: rotate(45deg);
    cursor: pointer;
    transition: ease-in-out .5s;
}

.slick-nav.prev-arrow.slick-arrow i,
.slick-nav.next-arrow.slick-arrow i {
    transform: rotate(-45deg);
}

.slick-nav.prev-arrow.slick-arrow {
    position: absolute;
    right: 1%;
    top: 45%;
    color: #fff;
    z-index: 9;
    border: 1px solid #fff;
    padding: 5px 12px;
    transform: rotate(45deg);
    cursor: pointer;
    transition: ease-in-out .5s;
}

.slick-nav.prev-arrow.slick-arrow:hover,
.slick-nav.next-arrow.slick-arrow:hover {
    background-color: #e33b12;
    border: 1px solid #e33b12;
}


.head_banner .slick-slide.slick-current.slick-active .small_line {
    animation: 1.5s linear 0s alternate headerline;
}

.head_banner .slick-slide.slick-current.slick-active .big_line {
    animation: 2s linear 0s alternate headerline;
}

.head_banner .slick-slide.slick-current.slick-active p {
    animation: 3s linear 0s alternate headerline;
    transition-delay: .2s;
}

.head_banner .slick-slide.slick-current.slick-active .all_btn {
    animation: 4s linear 0s alternate headerline;
    transition-delay: .2s;
}

.head_banner .slick-slide.slick-current.slick-active .img {
    animation: 4s linear 0s alternate headerimg;
    transition-delay: .2s;
}

@keyframes headerline {

    0%,
    25% {
        transform: translateY(-20%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes headerimg {

    0%,
    25% {
        transform: translateY(-20%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.head_btn img {
    width: 35px;
    border-radius: 50%;
}

.head_btn {
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.head_btn a {
    color: #000;
}

.container-fluid {
    padding: 0 4%;
}

.banner_item img {
    object-fit: cover;
}

.main_banner {
    position: relative;
    margin-top: -35px;
}

.dotted {
    position: absolute;
    width: auto;
    top: 20%;
    left: -30px;
    z-index: 9;
    animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
    animation-duration: 3s;
}


@keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0)
    }

    50% {
        transform: rotateX(0deg) translateY(-40px)
    }

    to {
        transform: rotateX(0deg) translateY(0)
    }
}

.client_item img{
    width: auto;
    margin: auto;
}
.client_item {
    text-align: center;
}

.client{
    margin: 20px 0;
}
.ab_img{
    float: left;
    width: 45%;
    position: relative;
    padding: 75px 45px 30px;
}
.ab_img img{
    height: 500px;
    object-fit: cover;
}
.ab_img::after{
    content: "";
    width: 70%;
    height: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary);
    z-index: -1;
}
.margin{
    margin: 60px 0;
}

.ab_home{
    display: flex;
}

.small_head{
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}
.big_head{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.products{
    background-color: #f4f5fa;
    padding: 70px 0;
    position: relative;
}
.products::after{
    content: "";
    width: 35%;
    height: 65%;
    position: absolute;
    right: 0;
    top: -50px;
    background-color: var(--primary);
}
.pro_item{
    padding: 8px;
    background-color: #fff;
    margin: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.pro_item .img{
    background-color: #f4f5fa;
    margin-bottom: 15px;
}
.pro_item .img img{
    height: 200px;
    object-fit: cover;
}

.pro_item span{
    font-size: 15px;
    margin: 8px 0;
    color: var(--primary);
}
.pro_item a{
    font-size: 13px;
    color: #000;
    font-weight: 500;
}
.pro_item a i{
    margin-left: 5px;
}
.producr-slider{
    z-index: 9;
}
.card_box{
    position: relative;
}
.card_text{
    position: absolute;
    left: 10%;
    top: 10%;
    max-width: 50%;
}
.pasent{
    font-size: 16px;
    color: var(--primary);
}
.offer{
    font-size: 25px;
    font-weight: 600;
    margin: 8px 0;
}
.card_text a{
    color: #000;
    font-size: 14px;
}
.vestibulum{
    position: relative;
    padding: 150px 0 250px;
    color: #fff;
    background-position: bottom;
}
.all_week {
    position: relative;
}
.all_week::after{
    content: "";
    width: 35%;
    height: 90%;
    position: absolute;
    right: 0;
    bottom: -50px;
    background-color: var(--primary);
    z-index: -1;
}

.ves_text{
    max-width: 45%;
}
.rotate{
    position: absolute;
    left: -50px;
    top: 30%;
    font-size: 25px;
    font-weight: 600;
    transform: rotate(-90deg);
    letter-spacing: 5px;
}
.all_btn{
    color: #000;
    background-color: var(--primary);
    padding: 15px 35px;
    border-radius: 5px;
    border: none;
}
.all_btn:hover{
    background-color: #000;
    color: #fff;
}
.test_img img{
    width: 80px;
    border-radius: 50%;
}
.test_item{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px;
    margin: 10px;
    text-align: left;
}
.test_img{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}
.test_img .name{
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.all_week .img{
    position: relative;
}

.max_decor{
    position: absolute;
    top: 5%;
    left: 10%;
    color: #000;
}
.max_decor2{
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.max_decor span{
    font-size: 30px;
    font-weight: 600;
}
.max_decor2 span{
    font-size: 40px;
}





.contact {
    background-color: #f4f5fa;
    padding: 60px 0;
  }
  
  .contact_text .big_head {
    color: #000;
  }
  
  
  .head_con {
    font-size: 35px;
    margin-bottom: 20px;
    color: #000;
  }
  
  .contact form {
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  
  .contact form input,
  select,
  textarea {
    width: 100%;
    padding: 8px;
    outline: none;
    margin-bottom: 15px;
    border: none;
    border-bottom: 1px solid #000;
  }

  .contact_text li a{
    color: #000;
  }

  .contact_text li{
    color: #000;
    margin: 15px 0;
  }
  .contact_text ul{
    margin: 30px 0;
  }
  .contact_text li i{
    margin-right: 8px;
  }

.sec_box img{
    height: 300px;
    object-fit: cover;
    margin-bottom: 10px;
}

.ligulate{
    position: relative;
    background-attachment: fixed;
}
.light_bg{
    padding: 10% 30%;
    background-color: #000000ab;
}
.light_text{
    position: relative;
    z-index: 9;
    color: #fff;
}



  
footer {
    background-color: #000;
    padding-top: 60px;
  }
  
  footer .row {
    align-items: center;
  }
  
  .foot_logo img {
    width: 200px;
  }
  
  .foot_logo {
    border-right: 1px solid #494949;
  }
  
  .foot_nav ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
  }
  
  .foot_nav ul li a {
    color: #fff;
    padding: 0 13px;
  }
  
  .foot_nav ul li a:hover {
    color: var(--primary);
  }
  
  .foot_cont ul li a {
    color: #fff;
    font-size: 14px;
  }
  
  .foot_cont ul li a:hover {
    color: var(--primary);
  }
  
  .foot_cont ul li {
    margin: 15px 0;
  }
  
  .foot_cont ul li i {
    margin-right: 8px;
  }
  
  .copyright_area {
    margin-top: 60px;
    background-color: #242424;
  }
  
  .copyright_area p {
    margin-bottom: 0;
    color: #fff;
    padding: 10px;
  }
  
  .copyright_area p a {
    color: #fff;
    text-decoration: underline !important;
  }
  
  .foot_text {
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid #494949;
  }
  
  .foot_text p {
    color: #fff;
  }

  footer .socal_icon {
    justify-content: right;
    display: flex;
  }
  footer .socal_icon a {
    color: #000;
    font-size: 16px;
    margin: 0 3px;
    background-color: var(--primary);
    padding: 3px 8px;
    border-radius: 3px;
  }


  @keyframes elementor-animation-wobble-horizontal {
    16.65% {
        transform: translateX(8px)
    }

    33.3% {
        transform: translateX(-6px)
    }

    49.95% {
        transform: translateX(4px)
    }

    66.6% {
        transform: translateX(-2px)
    }

    83.25% {
        transform: translateX(1px)
    }

    100% {
        transform: translateX(0)
    }
}

.elementor-animation-wobble-horizontal:active,.elementor-animation-wobble-horizontal:focus,.elementor-animation-wobble-horizontal:hover {
    animation-name: elementor-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}










.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 45px;
    color: #fff;
}



@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.inner_header::after {
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.719) 32%, rgb(0 0 0 / 4%) 59%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header {
    position: relative;
    margin-top: -30px;
}

.inner_header .inner_text {
    position: absolute;
    top: 45%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 40px;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.brade_crom {
    display: flex;
}

.brade_crom a {
    color: #fff;
}

.brade_crom span {
    color: #fff;
}

.inner_header img {
    height: 350px;
    object-fit: cover;
}

.main_img {
    width: 50%;
    padding-right: 40px;
    float: left;
}

.share-btn-box {
    margin-top: 10px;
}

.social-share ul {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.social-share ul li button {
    border: none;
    background-color: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
}

.experience{
    padding: 80px 0;
    position: relative;
}
.experience::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0000009c;
}
.exp_box{
    background-color: #fff;
    width: 60%;
    margin: auto;
    text-align: center;
    padding: 40px 35px;
    position: relative;
    z-index: 9;
}
.exp_box p{
    color: #000;
}
.exp_box::after{
    content: "";
    width: 94%;
    height: 86%;
    position: absolute;
    left: 3%;
    top: 7%;
    border:1px solid #e33b12;
}
button.slick-prev.slick-arrow{
    display: none !important;
}
button.slick-next.slick-arrow{
    display: none !important;
}






@media only screen and (max-width: 991px) {
    .nav_bar_n .socal_media{
        display: none;
    }
    .nav_bar .nav_bar_nav li a{
        font-size: 15px;
    }
    .nav_bar .nav_bar_nav li {
        padding: 25px 9px;
    }
    .ab_img {
        float: left;
        width: 60%;
    }
    .offer {
        font-size: 17px;
    }
    .max_decor2 span {
        font-size: 20px;
    }
    .max_decor span {
        font-size: 20px;
    }
    .contact form{
        margin-top: 20px;
    }
    .foot_logo img {
        width: 100%;
    }
}





@media only screen and (max-width: 900px) {
    .togal {
        display: block;
    }

    nav {
        padding-right: 8px;
    }

    .nav_bar {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        width: 100%;
        display: none;
    }

    .nav_bar .nav_bar_nav {
        flex-direction: column;
    }

    .nav_bar .nav_bar_nav li {
        padding: 11px 5px;
        border-bottom: 1px solid #b1b1b1;
    }

    .clk_btn {
        top: 10px;
        width: 45px;
        text-align: center;
    }

    .nav_bar_nav .droupdown {
        position: revert;
        width: 100%;
        display: none;

    }

    .nav_bar_nav .droupdown li {
        padding: 3px 5px;
    }
    .nav_bar_n{
        padding: 8px 30px;
    }
}



@media only screen and (max-width: 767px) {
    .contact-list-one li:last-child{
        display: none;
    }
    .ab_img {
        float: left;
        width: 100%;
        padding: 75px 45px 30px;
    }
    .products::after{
        display: none;
    }
    .ves_text {
        max-width: 85%;
        background: #00000068;
        padding: 20px;
    }
    .vestibulum {
        padding: 60px 0 250px;
    }
    .light_bg {
        padding: 8% 6%;
    }
    .inner_hrad {
        font-size: 25px;
    }
    .inner_header img {
        height: 250px;
    }
}

@media only screen and (max-width: 600px) {
    .big_head {
        font-size: 20px;
    }
    .small_head {
        font-size: 15px;
    }
    .rotate {
        position: revert;
        transform: rotate(0deg);
    }
    .dotted{
        left: -50px;
    }
    .margin{
        margin: 30px 0;
    }
    .top_1{
        text-align: center;
    }
    .contact-list-one{
        display: none;
    }
    .foot_logo img{
        width: 150px;
    }
    .foot_nav ul li{
        width: 100%;
        margin: 5px 0;
    }
    .copyright_area {
        margin-top: 50px;
    }
    .logo img{
        width: 120px;
    }
    .ab_img img {
        height: auto;
    }
}