* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #7b2f00;
    --bg_color_2: #eae3d0;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;

}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    overflow: hidden;
    position: relative;
}

.img:hover::after {
    transition: all 400ms linear;
    visibility: visible;
    animation: fadeInUp 1s;
}

.img:after {
    background: rgba(255, 255, 255, 0.369);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 9;
}

@keyframes fadeInUp {
    from {
        opacity: 1;
        height: 0;
    }

    to {
        opacity: 0;
        height: 100%;
    }
}

@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%;
    z-index: 99;
    padding: 0 4%;
}

.toggle .line {
    width: 33px;
    height: 4px;
    background-color: #000;
    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: var(--bg_color_2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .logo img {
    width: 100px;
}

#myHeader.sticky .navbar_nav ul a {
    color: var(--bg_color);
}

#myHeader.sticky .contact a {
    color: var(--bg_color);
}

.logo img {
    width: 120px;
}

.logo {
    position: relative;
}

.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: var(--bg_color_2);
    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);
}

.navbar_nav ul .dropdown li:hover a {
    color: var(--white);
}

#myHeader.sticky .navbar_nav .dropdown li:hover a {
    color: var(--white);
}

.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: var(--bg_color);
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
    color: var(--white);
}

.navbar_nav .dropdown a {
    color: var(--bg_color)
}

.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;
    z-index: 999;
}

.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: #0000007b;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.all_btn {
    background-color: var(--bg_color);
    padding: 12px 30px;
    color: var(--white);
    border-radius: 50px;
}

.all_btn:hover {
    background-color: var(--bg_color_2);
    color: var(--black)
}

.banner_contant {
    position: absolute;
    top: 30%;
    width: 100%;
    text-align: center;
    z-index: 9;
    padding: 0 10%;
    color: var(--white);
}

.banner_head {
    font-family: "Cal Sans";
    font-size: 15px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    border: 1px solid var(--bg_color_2);
    padding: 5px 20px;
    border-radius: 30px;

}

.banner_tittle {
    font-size: 130px;
    font-family: "Cal Sans", sans-serif;
    color: var(--white);
    display: block;
    line-height: 140px;
    margin: 20px 0;
    transform: translateY(-200px);
    transition: ease-in-out .9s;
}

.banner_contant p {
    font-size: 17px;
    font-weight: 500;
}

.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;
}

.slick-vertical .slick-slide {
    border: none
}

.banner_item.slick-slide.slick-current.slick-active .banner_tittle {
    animation: stickySlideDown 1.5s ease-in-out;
    transform: translateY(0px);
    transition: ease-in-out .9s;
}

@keyframes stickySlideDown {
    0% {

        transform: translateY(200px);

        opacity: 0;
    }

    100% {

        transform: translateY(0);

        position: 1;
    }
}

.contact a {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.contact a i {
    margin-right: 5px;
    font-size: 25px;
}

.small_head {
    font-family: "Cal Sans";
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    border: 1px solid var(--bg_color);
    padding: 5px 20px;
    padding-left: 30px;
    border-radius: 30px;
    position: relative;
}

.small_head::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 40%;
    background-color: var(--bg_color);
}

.big_head {
    font-size: 60px;
    line-height: 68px;
    font-family: "Cal Sans";
    display: block;
    color: #1c1c1d;
    margin: 20px 0;
}

.big_head span {
    color: var(--bg_color);
}

.ab_home {
    padding: 70px 4%;
    background-repeat: no-repeat;
    background-position: bottom;
    display: flex;
}

.ab_home .img {
    border-radius: 15px;
}

.ab_home .img img {
    border-radius: 15px;
}

.counter-number {
    font-size: 360px;
    line-height: 300px;
    font-family: "Cal Sans";
    color: #7b2f009a;
    text-shadow: 1px 1px 0 #444;
}

.heading-title {
    font-size: 22px;
    line-height: 30px;
    color: #1c1c1d;
    display: block;
    text-align: left;
    font-weight: 600;

}

.ab_num {
    padding-right: 50px;
}

.left_img {
    text-align: center;
}

.left_img .img {
    margin-top: 100px;
    animation: small-animation 5s infinite linear;
}

.right_img .img {
    margin-bottom: 40px;
}

.ab_left {
    padding-right: 90px;
}

@keyframes small-animation {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.products {
    background-color: #eae3d043;
    padding: 80px 0;
}

.pro_item {
    margin: 15px;
}

.pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro_tittle {
    display: block;
    font-size: 25px;
    font-family: "Cal Sans";
    margin: 10px 0;
}

.pro_item a {
    font-size: 18px;
    color: var(--bg_color);
    font-weight: 600;
}

.pro_item img {
    border-radius: 15px;
}

video {
    width: 100%;
}

.ab_home_2 {
    padding: 70px 3%;
    display: flex;
    background-repeat: no-repeat;
    background-position: right;

}

.ab_img {
    float: right;
    width: 50%;
    padding-left: 40px;
    margin-bottom: 50px;
}

.ab_img img {
    border-radius: 15px;
}

.ab_img .img_1 {
    text-align: right;
}

.ab_img .img_2 {
    margin-top: -150px;
    animation: small-animation 5s infinite linear;
}


.video-right-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-vedio-button {
    display: flex;
    justify-content: center;
}

.cta-vedio-button a {
    position: relative;
    background-color: var(--bg_color);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-vedio-button a i.fas.fa-play {
    color: #ffffff;
    font-size: 28px;
}

.cta-vedio-button a::before {
    position: absolute;
    content: '';
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px dashed var(--bg_color_2);
}

.cta-vedio-button a:after {
    content: '';
    position: absolute;
    border: 30px solid var(--bg_color_2);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
    animation: cta-anim 1.5s linear infinite;
    opacity: 0;
}

@keyframes cta-anim {
    0% {
        transform: scale(.5);
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }

}

.youtube {
    background-attachment: fixed;
}

.you_bg {
    padding: 230px 4% 100px;
    background-color: #0000008a;
}

.you_heading-title {
    font-family: "Cal Sans", Serif;
    font-size: 105px;
    font-weight: 400;
    line-height: 130px;
    margin-bottom: 10px;
    color: #fff;
    display: block;
}

.you_contant {
    width: 80%;
    margin-top: 100px;
    color: var(--white);
}

.you_contant p {
    font-size: 18px;
}

.our_skils {
    padding: 80px 4%;
    background-repeat: no-repeat;
    background-position: right;
}

.our_skils_text ul li span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--bg_color);
}

.our_skils_text ul li {
    position: relative;
    padding: 20px 0;
    padding-left: 65px;
    border-bottom: 1px solid #b7b7b7;
}

.our_skils_text ul li img {
    width: 50px;
    position: absolute;
    top: 20%;
    left: 0;
}

.testmoinal {
    padding: 80px 4%;
}

.name_box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.name_box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.name_box .name {
    display: block;
    font-size: 22px;
    font-weight: 600;
}

.name_box {
    margin-top: 30px;
}

.testmoinal .img img {
    border-radius: 15px;
}

.test_slider {
    margin-left: 40px;
}

.contact_page {
    padding: 80px 4%;
    background-color: #f6f6f6;
    background-repeat: no-repeat;
    background-position: right;
}

.contact_page input,
select,
textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-size: 1rem;
    background-color: #fff;
    border: 1px solid #9f9fa42e;
    color: #9f9fa4;
    backdrop-filter: blur(29px);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #59585d;
    border-radius: 24px;
    outline: none;
    margin: 8px 0;
}


.contact_details {
    background-color: var(--bg_color);
    color: var(--white);
    padding: 60px 80px;
    text-align: center;
    position: relative;
}

.contact_details li {
    text-align: left;
    margin: 40px 0;
    padding-bottom: 30px;
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid #d9d9d958;
    font-size: 18px;
}

.contact_details li a {
    color: var(--white);
}

.contact_details li i {
    margin-right: 30px;
}

.contact_details::before {
    content: "";
    width: 35px;
    height: 55%;
    position: absolute;
    top: 20%;
    right: 0;
    background-color: var(--bg_color_2);
    border-radius: 30px 0 0 30px;
}

.contact_details::after {
    content: "";
    width: 35px;
    height: 55%;
    position: absolute;
    top: 20%;
    left: 0;
    background-color: var(--bg_color_2);
    border-radius: 0 30px 30px 0;
}

.contact_page form {
    padding-left: 60px;
}

.socal_media a {
    color: var(--white);
    padding: 0 10px;
    font-size: 20px;
}

.information span {
    font-size: 20px;
    font-weight: 600;
}

.clients {
    padding: 80px 0;
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: auto;
    position: relative;
    z-index: 9;
}

.clients::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/footer-demo2.png);
    --background-overlay: '';
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
}

.client_slider {
    margin-top: 50px;
}

.client_item {
    padding: 10px;
}

.foot_bg {
    padding: 0 4%;
    padding-top: 70px;
    background-color: #000000a5;
    color: var(--white);
}

.foot_logo img {
    width: 150px;
    margin-bottom: 10px;
}

.foot_head {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.foot_nav ul a {
    color: var(--white);
    display: block;
    padding: 7px 0;
}

.foot_nav ul {
    max-height: 280px;
    overflow: auto;
}

.foot_contact_details a {
    color: var(--white);
    word-break: break-all;
}

.foot_contact_details ul li {
    margin: 25px 0;
}

.foot_contact_details ul li i {
    margin-right: 10px;
}

.foot_contact_details .socal_media a {
    background-color: var(--bg_color);
    color: var(--white);
    padding: 7px 12px;
    border-radius: 5px;
}

.copy_right {
    padding: 18px 0;
    background-color: #000000ae;
    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: 1200px) {
    .contact {
        display: none;
    }
}


@media only screen and (max-width: 992px) {
    nav {
        position: relative;
    }

    .navbar_nav ul a {
        color: var(--bg_color);
    }

    .contact {
        display: none;
    }

    .banner_tittle {
        transform: translateY(0px);
        font-size: 80px;
        line-height: 80px;
    }

    .banner_contant {
        top: 22%;
    }

    .counter-number {
        font-size: 215px;
        line-height: 220px;
    }

    .big_head {
        font-size: 35px;
        line-height: 40px;
    }

    .img.img_2 img {
        width: 252px;
    }

    .ab_img .img_2 {
        margin-top: -92px;
    }

    .you_heading-title {
        font-size: 63px;
        line-height: initial;
    }

    .navbar_nav ul li {
        padding: 20px 12px;
    }
}



@media only screen and (max-width: 780px) {
    .navbar_nav {
        position: absolute;
        left: -100%;
        top: 0;
        background-color: #000;
        width: 70%;
        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;
    }

    .navbar_nav ul a {
        color: var(--white);
    }

    .inner_header img {
        height: 200px;
    }

    .ab_item {
        width: 100%;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 768px) {
    .banner_tittle {
        font-size: 43px;
        line-height: initial;
    }

    .big_head {
        font-size: 23px;
        line-height: initial;
    }

    .ab_left {
        padding-right: 0px;
    }

    .counter-number {
        font-size: 76px;
        line-height: normal;
    }

    .ab_num .d-flex.justify-content-end {
        justify-content: left !important;
    }

    .left_img .img {
        margin-top: 15px;
    }

    .ab_img {
        width: 60%;
    }

    .you_bg {
        padding: 73px 4% 40px;
    }

    .you_heading-title {
        font-size: 40px;
    }

    .you_contant {
        width: 100%;
        margin-top: 70px;
    }

    .our_skils_text {
        margin-bottom: 20px;
    }

    .test_slider {
        margin-left: 0;
        margin-top: 20px;
    }

    .contact_page form {
        padding-left: 0px;
        margin-top: 20px;
    }

    .my {
        margin: 30px 0;
    }

    .ab_item {
        margin-bottom: 20px;
    }
}



@media only screen and (max-width: 650px) {
    .banner_contant {
        position: relative;
        padding: 30px 3%;
        background-color: var(--bg_color);
    }

    .banner_item::after {
        display: none;
    }

    nav {
        padding: 0 0;
    }

    .ab_home {
        padding: 40px 0%;
    }

    .products {
        padding: 40px 0;
    }

    .pro_tittle {
        font-size: 20px;
    }

    .ab_img {
        width: 100%;
        padding-left: 0px;
    }

    .ab_home_2 {
        padding: 40px 0;
    }

    .you_heading-title {
        font-size: 30px;
    }

    .you_contant p {
        font-size: 16px;
    }

    .our_skils,
    .testmoinal,
    .contact_page {
        padding: 40px 0;
    }

    .foot_bg {
        padding: 0 0;
        padding-top: 40px;
    }

}


@media only screen and (max-width: 500px) {
    .left_img {
        display: none;
    }

    .nab_btn {
        display: none;
    }

    .contact_details {
        padding: 43px 36px;
    }

    .contact_details::before,
    .contact_details::after {
        display: none;
    }

    .contact_details li i {
        margin-right: 10px;
    }

    .banner_tittle {
        font-size: 25px;
    }

    .banner_contant {
        padding: 30px 0%;
    }

    .banner_contant p {
        font-size: 15px;
    }
}