* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #9e8353;
    --bg_color_2: #f5eca8;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
}

.img:hover img {
    transform: scale(1.1);
}

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

.my {
    margin: 70px 0;
}

.toggle {
    display: none;
}

.nav_close {
    display: none;
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #000000a4;
    z-index: 99;
}

.toggle .line {
    width: 33px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: ease-in-out .4s;
}

/* .toggle.toggle_active .line:nth-child(1){
    transform: rotate(45deg);
        margin-top: 8px;
}
.toggle.toggle_active .line:nth-child(2){
    display: none;
}
.toggle.toggle_active .line:nth-child(3){
        transform: rotate(-45deg);
            margin-top: -8px;
} */

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    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;
    background-color: #000000e3;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo img {
    width: 120px;
}

.nav_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_nav .nab_flex {
    display: flex;
}

.navbar_nav ul li {
    position: relative;
    padding: 20px 20px;
}

.navbar_nav ul a {
    color: var(--white);
}

.navbar_nav ul li:hover>.dropdown {
    display: block;
    transition: ease-in-out .5s;
}

.dropdown {
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0;
    background-color: #000000db;
    transition: ease-in-out .5s;
    display: none;
}

.navbar_nav ul .dropdown li {
    padding: 10px 20px;
}

.navbar_nav ul .dropdown li:hover {
    background-color: var(--bg_color);
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown_btn {
    position: absolute;
    right: 0;
    top: 35%;
    color: var(--white);
    cursor: pointer;
}

.show_dropdown {
    display: block;
}

.search_btn {
    background-color: #fff;
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
}

.search {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000000e2;
    padding: 6% 10% 0% 9%;
    transition: ease-in-out .5s;
    visibility: hidden;
}

.show {
    top: 0%;
    visibility: visible;
}

.search input {
    width: 96%;
    border: none;
    outline: none;
    padding: 10px 15px;
}

.magnifying {
    background-color: #a8a8a8;
    padding: 10px 15px;
    cursor: pointer;
}

.magnifying:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.cancal {
    color: var(--white);
    position: absolute;
    right: 3%;
    top: 5%;
    font-size: 30px;
    cursor: pointer;
}

.banner_item img {
    width: 100%;
}

.banner_item {
    position: relative;
}

.banner_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00000032;
}

.banner_text {
    position: absolute;
    top: 35%;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 9;
    color: var(--white);
    padding: 0 15%;
}

.head_line {
    font-size: 100px;
    font-weight: 900;
    color: var(--white);
    font-family: "Merriweather Sans", sans-serif;
    font-style: italic;
}

.banner_text p {
    font-size: 20px;
    line-height: 35px;
}

.nextarrow {
    position: absolute;
    right: 5%;
    top: 50%;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

.prevarrow {
    position: absolute;
    left: 5%;
    top: 50%;
    color: var(--white);
    font-size: 30px;
    z-index: 9;
    cursor: pointer;
}

.malti_item .img {
    background-color: #f1f1f1;
    border-radius: 50%;
    padding: 20px;
    overflow: hidden;
}

.malti_item {
    margin: 0 10px;
}

.malti_item span {
    display: block;
    margin: 10px 0;
    font-size: 20px;
}

.ab_img {
    float: left;
    width: 46%;
    padding-right: 40px;
}

.small_head {
    display: block;
    font-size: 20px;
    color: var(--bg_color);
    font-family: "Merriweather Sans", sans-serif;
}

.big_head {
    display: block;
    font-size: 35px;
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.showcase .img img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.showcase .img {
    margin: 7px 0;
}

.showcase {
    background-color: #f6f6f6;
    padding: 60px 0;
}

.pro_item {
    margin: 8px;
    text-align: left;
}

.pro_item .img {
    background-color: #f1f1f1;
    padding: 15px;
}

.pro_text span {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin: 5px 0;
}

.pro_text a {
    color: var(--bg_color);
    display: block;
    font-weight: 600;
}

.product_slider .prevarrow {
    color: var(--black);
    top: 38%;
    left: -20px;
}

.product_slider .nextarrow {
    color: var(--black);
    top: 38%;
    right: -20px;
}

.video {
    position: relative;
}

.video_text {
    position: absolute;
    width: 100%;
    top: 30%;
    text-align: center;
    padding: 0 25%;
}

.client_item img {
    opacity: .25;
}

.client_item {
    margin: 0 8px;
}



.get-in-touch {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.get-in-touch i {
    background-color: var(--bg_color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    color: #fff;
    font-size: 20px;
}

.contact-information .get-in-touch span {
    font-weight: 600;
    color: #000;
    display: block;
}

.contact-information .get-in-touch a {
    color: var(--black);
    font-size: 20px;
    word-break: break-all;
}


ul.social-media {
    display: flex;
    margin-top: 30px;
}

ul.social-media li {
    position: relative;
    margin-left: 0px;
}

ul.social-media li a {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

ul.social-media li a i:hover {
    background-color: var(--bg_color);
}

ul.social-media li a i {
    color: #ffffff;
    font-size: 15px;
    width: 45px;
    border: 1px solid #444;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 14px;
    padding: 0;
    transition: 0.5s ease-in-out;
}

.contact-information ul.social-media li a i {
    color: #000;
}

.content-info {
    border-left: 1px solid #d4d4d4;
    padding-left: 60px;
}

.content-info input,
select {
    width: 100%;
    height: 60px;
    border: 0;
    outline: none;
    padding-left: 20px;
    border: 1px solid #d4d4d4;
    margin-bottom: 20px;
}

.content-info textarea {
    width: 100%;
    border: 0;
    outline: none;
    padding-top: 15px;
    padding-left: 20px;
    border: 1px solid #d4d4d4;
    margin-bottom: 20px;
}



.all_btn {
    display: inline-flex;
    background: var(--bg_color);
    padding: 15px 40px;
    color: hsl(0, 0%, 100%);
    font-size: 18px;
    position: relative;
    transition: 0.25s ease-in-out;
    border: none;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.all_btn:before {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color_2);
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.all_btn:hover:before {
    width: 100%;
}

.all_btn:hover {
    color: var(--black);
}


.tab_section {
    position: relative;
}

.tab_item {
    z-index: 9;
}

.tab_item li {
    margin: 13px 0;
    padding: 10px 0;
    cursor: pointer;
    border-bottom: 1px solid #e7e7e7;
}

.tab_item li a {
    color: var(--black);
    font-weight: 600;
    font-size: 25px;
}

.tab_item li a:hover {
    text-decoration: underline;
}

.tab_item li a.active {
    text-decoration: underline;
}



.test_item {
    padding: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    margin: 10px;
    margin-top: 60px;
    position: relative;
    text-align: left;
    height: 300px;
}

.test_item .name {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--bg_color);
}

.name_box {
    border-bottom: 1px solid #d1d1d1;
    padding: 10px 0;
    margin-bottom: 10px;
}

.test_item .img img {
    border-radius: 50%;
    width: 90px;

}

.test_item .img {
    position: absolute;
    right: 25px;
    top: -50px;
    border: 2px solid var(--bg_color);
    border-radius: 50%;
    padding: 5px;
}


footer {
    background-position: center;
}

.foot_bg {
    padding-top: 60px;
    color: var(--white);
    background-color: #0000005b;
}

.foot_logo img {
    width: 150px;
    margin-bottom: 10px;
}

.foot_logo p {
    font-size: 14px;
}

.foot_head {
    font-size: 24px;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.foot_nav ul li a {
    color: var(--white);
}

.foot_nav ul li a:hover {
    color: var(--bg_color);
}

.foot_nav ul li i {
    margin-right: 7px;
    color: var(--bg_color);
}

.foot_nav ul li {
    margin: 14px 0;
    font-size: 15px;
}

.foot_nav ul {
    max-height: 250px;
    overflow: auto;
}

.foot_contact ul li a {
    color: var(--white);
}

.foot_contact ul li i {
    margin-right: 8px;
    color: var(--bg_color);
}

.foot_contact ul li {
    margin: 28px 0;
    font-size: 14px;
}

.foot_contact .socal_media {
    gap: 8px;
    margin-top: 15px;
}

.foot_contact .socal_media a {
    background-color: var(--bg_color);
    padding: 8px 11px;
    border-radius: 50%;
    color: var(--white);
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #2e4e74;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--white);
}

.copy_right p a {
    color: var(--white);
}

.inner_text {
    position: absolute;
    bottom: 20%;
    width: 100%;
    z-index: 9;
    color: var(--white);
    text-align: center;
    padding: 0 10px;
}

.ab_item {
    width: 47%;
    float: left;
    padding-right: 30px;
}

.share-btn-box ul {
    display: flex;
    gap: 8px;
}

.share-btn-box ul button {
    border: none;
    background-color: var(--bg_color);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 3px;
}




.inner_header img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.inner_header {
    position: relative;
}

.inner_header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000a8;
}

.brade_crom a {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.back-to-top {
   background: #fff;
   position: fixed;
   right: 1%;
   bottom: 3%;
   width: 45px;
   height: 45px;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50%;
   cursor: pointer;
   transition: ease-in-out .5s;
   box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
   transform: scale(0);
}
.back-to-top.scroll_show{
    transform: scale(1);
    bottom: 3%;
}

.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: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}



@media only screen and (max-width: 991px) {
    .head_line {
        font-size: 65px;
    }

    .banner_text p {
        font-size: 17px;
        line-height: 29px;
    }

    .ab_img {
        width: 55%;
    }

    .showcase .img img {
        height: 290px;
    }
}


@media only screen and (max-width: 780px) {
    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 50%;
        height: 100vh;
        overflow: auto;
        transition: ease-in-out 0.5s;
        padding-top: 20px;
    }

    .navbar_nav.show_nav {
        left: 0;
    }

    .navbar_nav .nab_flex {
        flex-direction: column;
    }

    .nav_close {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #fff;
        padding: 5px 11px;
        font-weight: 900;
        z-index: 99;
    }

    .toggle {
        display: block;
    }

    .dropdown {
        position: absolute;
        width: 100%;
        top: 100%;
        left: -100%;
        background-color: #000;
        z-index: 99;
        padding-top: 20px;
        display: block;
        background-color: #fff;
        overflow: auto;
    }

    .navbar_nav .dropdown a {
        color: #000;
    }

    .dropdown_btn {
        background-color: #fff;
        color: #000;
        padding: 4px 8px;
    }

    .dropdown_btn_show i {
        transform: rotate(180deg);
        transition: ease-in-out .5s;
    }

    .show_dropdown {
        left: 0;
    }

    .navbar_nav ul li {
        padding: 12px 20px;
        border-bottom: 1px solid #2e2d2d;
    }

}


@media only screen and (max-width: 767px) {
    .banner_item img {
        height: 400px;
        object-fit: cover;
    }

    .head_line {
        font-size: 42px;
    }

    .banner_text p {
        font-size: 15px;
    }

    .prevarrow {
        font-size: 20px;
    }

    .nextarrow {
        font-size: 20px;
    }

    .ab_img {
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .showcase .img img {
        height: auto;
    }

    .contact-information {
        margin-bottom: 30px;
    }

    .content-info {
        padding-left: 0;
        border: none;
    }

    .my {
        margin: 40px 0;
    }

    footer {
        background-size: cover;
    }

    .video_text {
        top: 20%;
        padding: 0 15%;
    }

}

@media only screen and (max-width: 700px) {
    .big_head {
        font-size: 25px;
    }

    .product_slider .nextarrow {
        right: 0;
    }

    .product_slider .prevarrow {
        left: 0;
    }

    .foot_contact {
        margin-top: 20px;
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 15px;
    }

    .ab_text h2 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 500px) {
    .navbar_nav {
        width: 100%;
    }

    .banner_text {
        top: 30%;
    }

    .prevarrow {
        left: 0;
    }

    .nextarrow {
        right: 0;
    }

    .banner_text {
        padding: 0 5%;
    }

    .video_text {
        display: none
    }

    .tab_item li a {
        font-size: 17px;
    }

    .tab_item li {
        margin: 7px 0;
        padding: 6px 0;
    }

    .malti_item span {
        font-size: 16px
    }

    .small_head {
        font-size: 16px;
    }

    .big_head {
        font-size: 20px;
    }

    .showcase {
        padding: 24px 00;
    }

    .logo img {
        width: 100px;
    }

    .inner_header img {
        height: 280px;
    }

    .inner_text .inner_hrad {
        font-size: 20px;
    }

    .brade_crom {
        font-size: 15px;
    }
}






.wave-text {
    font-family: math;
}

.wave-text span {
    display: inline-block;
    font-size: 7rem;
    animation: wave 2s ease-in-out infinite;
    color:#967d4e;
    font-weight: 800;
}

.wave-text span:nth-child(1) {
    animation-delay: 0s;
}
.wave-text span:nth-child(2) {
    animation-delay: 0.2s;
}
.wave-text span:nth-child(3) {
    animation-delay: 0.4s;
}
.wave-text span:nth-child(4) {
    animation-delay: 0.6s;
}
.wave-text span:nth-child(5) {
    animation-delay: 0.8s;
}
.wave-text span:nth-child(6) {
    animation-delay: 1s;
}
.wave-text span:nth-child(7) {
    animation-delay: 1.2s;
}
.wave-text span:nth-child(8) {
    animation-delay: 1.4s;
}
.wave-text span:nth-child(9) {
    animation-delay: 1.6s;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}





@media only screen and (max-width: 600px) {
    .wave-text span {
    font-size: 4rem;
}
}


@media only screen and (max-width: 500px) {
    .wave-text span {
    font-size: 3rem;
}
}




