* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #1b1b1b;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Rubik", sans-serif;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

.img::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #fff;
    transition: 1s;

}


@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 {
    margin: 70px 0;
}


.logo img {
    width: 200px;
    position: relative;
    z-index: 9;
    background: #ffffff;
    border-radius: 5px;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 999;
    background-color: #fff;
}

.search i {
    margin-right: 5px;
}

.search a {
    color: #ffc1b1;
    background: linear-gradient(to bottom, rgb(20 20 20) 0%, #545454 100%);
    padding: 10px;
    border-radius: 50%;
}

.nab_bar {
    display: flex;
    justify-content: center;
}


#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: #fff;
}

#myHeader.sticky nav {
    top: 8px;
    background-color: var(--white);
    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 .logo img{
    width: 150px;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 32%;
    color: var(--black);
    cursor: pointer;
    font-size: 14px;
}

.nab_bar li a {
    color: var(--black);
    padding: 24px 30px;
    display: inline-block;
    font-size: 16px;
}

.nab_bar li {
    position: relative;
    z-index: 9;
}


nav {
    position: absolute;
    width: 100%;
    top: 22px;
    left: 0;
}

.navbar_nav {
    height: 70px;
    padding:  0 20px;
}

nav::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 48%;
    background-color: var(--white);
    z-index: -1;
}

nav::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 53%;
    background-color: var(--white);
    z-index: -1;
}

nav .container {
    max-width: 1250px;
}

.main_banner {
    position: relative;
}


.droupdown {
    position: absolute;
    background-color: #000;
    border-top: 2px solid var(--bg_color);
    padding: 10px 0;
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 490px;
    overflow: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.droupdown li {
    padding: 0;
}

.droupdown li a {
    display: block;
    padding: 8px 15px;
    color: var(--white);
    font-size: 15px;
}

.droupdown li a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.banner_text {
    color: var(--white);
    z-index: 99;
    position: relative;
    text-align: center;
    padding: 18% 23% 8%;
    background-color: #0000005c;
}

.head_item {
    background-size: cover;
    background-position: center center;
}

.nav_contact i {
    background-color: var(--bg_color);
    padding: 12px;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 5px;
    color: var(--white);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner_pera {
    margin: 15px 0;
}

.ab_text ul li {
    list-style: unset !important;
}

.ab_text ul {
    padding-left: 14px;
}

/* Search Style */
#search {
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;

}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
    top: 0
}

.form_box {
    margin: auto;
    width: 60%;
    display: flex;
    padding-top: 10%;
    justify-content: center;
}

.form_box input {
    width: 100%;
    padding: 12px;
    border-radius: 5px 0px 0px 5px;
    border: none;
    outline: none;
}

.form_box button {
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 20px;
    color: var(--black);
    cursor: pointer;
    background-color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
}


.head_banner .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    left: 40%;
    position: absolute;
    bottom: 20px;
    gap: 8px;
}

.head_banner .slick-dots li button {
    border-radius: 7px;
    background-color: var(--white);
    font-size: 0;
    padding: 4px 10px;
    margin: 2px 0;
    border: none;
}

.head_banner .slick-dots li.slick-active button {
    background-color: var(--white);
    border-radius: 7px;
    padding: 4px 20px;
}

.head_banner {
    background-size: cover;
    background-position: center center;
}

/* Search Style */


.all_btn {
    background-color: var(--bg_color);
    color: #ffc1b1;
    padding: 10px 28px;
    border-radius: 25px;
    position: relative;
    z-index: 1;
    background: linear-gradient(40deg,rgba(19, 19, 19, 1) 0%, rgba(31, 31, 31, 1) 71%, rgba(84, 84, 84, 1) 98%);
    border: none;
}

.all_btn::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background:linear-gradient(330deg,rgba(19, 19, 19, 1) 0%, rgba(31, 31, 31, 1) 71%, rgba(84, 84, 84, 1) 98%);
    border-radius: 25px;
    z-index: -1;
    transform: scale(0);
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    transform: scale(1);
}

.banner_pera {
    text-align: center;
}

.banner_head_1 {
    padding: 0 65px;
    font-size: 60px;
    display: block;
    font-weight: 700;
}

.banner_text p {
    font-size: 17px;
    line-height: 32px;
}


.head_item.slick-slide.slick-current.slick-active .banner_head_1 {
    animation-name: fadeInUpSD;
    animation-duration: 2s;
    opacity: 1;
}

.head_item.slick-slide.slick-current.slick-active p {
    animation-name: fadeInUpSD;
    animation-duration: 3s;
    opacity: 1;
}


@keyframes fadeInUpSD {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


.process {
    position: relative;
    padding: 80px 0;
}

.process .icon {
    background: #d8d8d8;
    width: 130px;
    height: 130px;
    border-radius: 10px;
    line-height: 130px;
    margin: auto;
    position: relative;
}

.process .icon img {
    width: 110px;
}

.process span {
    display: block;
    margin: 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.process .icon p {
    position: absolute;
    right: -5px;
    top: -5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-weight: 600;
    border-radius: 50%;
    background-color: var(--white);
}

.process_line {
    position: relative;
}

.process_line::after {
    content: "";
    width: 100%;
    height: 1.5px;
    position: absolute;
    left: 50%;
    top: 28%;
    background-color: #000;
    z-index: -1;
}

.process_line:last-child::after {
    display: none;
}

.pattern {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    height: 70px;
    background-repeat: repeat-x;
    animation: slideBackground 10s linear infinite;
}

@keyframes slideBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}


.ab_img {
    width: 45%;
    float: left;
    padding-right: 80px;
    margin-right: 40px;
    position: relative;
}

.ab_img .img-2 {
    position: absolute;
    top: 20%;
    right: 0;
    border: 5px solid #fff;
    border-radius: 5px;
    animation: up-down linear 6s;
    animation-iteration-count: infinite;
}

.img-line {
    position: absolute;
    right: 6%;
    bottom: 2%;
    z-index: -1;
}

.ab_img::after {
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    right: 5%;
    top: 10%;
    border: 8px solid var(--bg_color);
    z-index: -1;
}

@keyframes up-down {
    0% {
        top: 20%;
    }

    50% {
        top: 30%;
    }

    100% {
        top: 20%;
    }
}

.small_head {
    display: block;
    font-size: 20px;
    font-family: "Josefin Sans", sans-serif;
    color: #a96656;
    font-weight: 600;
}

.big_head {
    display: block;
    font-size: 35px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
}

.main_head {
    margin-bottom: 10px;
}

.count-area {
    position: relative;
    padding: 60px 0 0;
}

.count-digit {
    font-size: 60px;
    font-weight: 600;
    color: var(--black);
}

.count-area .pattern2 {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-position: center bottom;
    background-repeat: repeat-x;
    animation: slideBackground 10s linear infinite;
    z-index: -1;
}

.coount_num {
    font-size: 40px;
    font-weight: 800;
    color: var(--bg_color);
}

.count-area-content {
    position: relative;
    padding-bottom: 80px;
    height: 100%;
}

.count-area-content::after {
    content: "";
    width: 2px;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #7c7c7c;
}

.count-area-content::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    left: -6px;
    bottom: 46%;
    background-color: #7c7c7c;
}

.product {
    position: relative;
    padding: 60px 0;
}

.product::after {
    content: "";
    width: 100%;
    height: 62.1%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    z-index: -1;
}

.pro_item {
    margin: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.pro_text {
    padding: 20px;
    background-color: var(--white);
}

.pro_head {
    display: block;
    margin: 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--bg_color);
    margin-top: 0;
}

.pro_item .pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 20px 0;
}

.pro_item .pera p {
    color: #777777;
    font-size: 14px;
}

.pro_item a {
    color: #242424;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
}

.title-column {
    position: relative;
    float: right;
    width: 32%;
    padding-top: 80px;
    padding-right: 30px;
}

.testimonial-column {
    position: relative;
    width: 100%;
    max-width: 65%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 0 40px 40px 0;
    overflow: hidden;
    z-index: 9;
    color: var(--white);
}

.testimonial-column::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000d7;
    z-index: -1;
}

.test_item {
    padding: 120px 50px;
    text-align: right;
}

.test_pera .name {
    display: block;
    font-size: 23px;
    margin-top: 40px;
}

.test_item .img img {
    margin: auto;
}

.tabs-panel {
    margin: 0;
    padding: 0;
    border: none;
}

.tab_section {
    position: relative;
}

.tab_item {
    position: absolute;
    left: 10%;
    top: 25%;
    z-index: 9;
}

.tab_item li {
    margin: 15px 0;
    cursor: pointer;
}

.tab_item li a {
    color: var(--white);
    font-weight: 600;
    font-size: 40px;
}

.tab_item li a:hover {
    text-decoration: underline;
    color: var(--white);
}

.tab_item li a.active {
    text-decoration: underline;
}

.contact form input,
select,
textarea {
    width: 100%;
    padding: 15px 18px;
    background-color: #f5f5f5;
    border: none;
    outline: none;
    margin: 8px 0;
    border-radius: 30px;
}

.contact_details a {
    display: block;
    color: var(--black);
    margin-top: 10px;
}

.contact_details ul li {
    margin: 25px 0;
}

.contact_details ul li i {
    font-size: 20px;
    color: var(--bg_color);
    margin-right: 8px;
}

.contact_details ul li span {
    font-size: 18px;
    font-weight: 600;
}

footer {
    background: linear-gradient(27deg,rgba(19, 19, 19, 1) 0%, rgba(31, 31, 31, 1) 71%, rgba(84, 84, 84, 1));
    padding-top: 60px;
    color: #b7b7b7;
}

.foot_head {
    display: block;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}
.foot_logo p{
    font-size: 14px;
}
.foot_logo img{
    width: 200px;
    margin-bottom: 8px;
}
footer a {
    color: #b7b7b7;
}

footer a:hover {
    color: #a96656;
}

.foot_product li {
    margin: 10px 0;
    font-size: 15px;
}

.foot_product ul {
    height: 240px;
    overflow: auto;
}

footer .contact_details a {
    color: var(--white);
}

footer .contact_details ul li i {
    color: var(--white);
}

.foot_nav {
    border: 1px solid var(--white);
    border-radius: 50px;
    margin: 30px 0;
}

.foot_nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.foot_nav ul li a {
    color: #b7b7b7;
    padding: 20px 30px;
    display: inline-block;
    font-size: 16px;
}


.copy_right {
    padding: 18px 0;
    border-top: 1px solid #fff;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--white);
}

.copy_right p a {
    color: var(--white);
}



.card{
    background-color: #026ab3;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    display: inline-block;
    vertical-align: top;
    color: var(--white);
    cursor: pointer;
    margin: 5px;
}









.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    margin-left: -5px;
    margin-top: -5px;
    border-radius: 50%;
    border: 2px solid #094c7b;
    transition: 0.3s;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000;
}

.cursor2 {
    position: fixed;
    width: 5px;
    height: 5px;
    margin-left: -5px;
    margin-top: -5px;
    border-radius: 50%;
    background-color: #000;
    transform: translate(-50%, -50%);
    transition: 0.1s;
    pointer-events: none;
    z-index: 1000;
}

.grow,
.grow-small {
    transform: scale(3);
    background: white;
    mix-blend-mode: difference;
    border: none;
}

.grow-small {
    transform: scale(2);
}



.ab_text h2,
.ab_text h3 {
    font-size: 25px;
}


.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: var(--black);
    color: #fff;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.ab_item {
    width: 47%;
    float: left;
    margin-right: 40px;
}

.social-share button:hover {
    background-color: #000;
}

.share-btn-box {
    margin-top: 20px;
}

.share-btn {
    font-weight: bold;

}

.inner_header {
    position: relative;
}

.inner_header img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.inner_header::after {
    content: "";
    background: #000000d2;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 60%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 30px;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.brade_crom {
    display: flex;
}

.brade_crom a {
    color: #fff;
}

.brade_crom span {
    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;
}


.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) {
    .nab_bar li a {
        padding: 24px 18px;
    }

    .banner_head_1 {
        font-size: 43px;
        padding: 0 30px;
    }

    .process_line::after {
        display: none;
    }

    .ab_img {
        width: 55%;
    }

    .img-2 img {
        width: 160px;
    }

    .count-digit {
        font-size: 35px;
        font-weight: 600;
    }
}


@media only screen and (max-width: 800px) {
    .toggle {
        visibility: visible;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
        margin: 0 0 0 auto;
    }

    .toggle>* {
        width: 80%;
        height: 3px;
        background: var(--black);
        margin: 3px 0;
    }

    .toggle.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle.active .line2 {
        opacity: 0;
    }

    .toggle.active .line3 {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .nab_bar {
        position: absolute;
        flex-direction: column;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: var(--white);
        z-index: 9999;
        display: none;
    }


    .nab_bar li {
        border-bottom: 1px solid #e2e2e2;
    }

    .nab_bar li a {
        color: #000;
        padding: 10px 25px;
        display: block;
    }

    .droupdown {
        position: revert;
        width: 100%;
        background-color: var(--bg_color);
        height: 300px !important;
        overflow: auto;
    }

    .clk_btn {
        position: absolute;
        right: 0;
        top: 0;
        color: var(--white);
        cursor: pointer;
        width: 47px;
        height: 46px;
        line-height: 37px;
        background: #000;
        text-align: center;
    }

    .droupdown li {
        padding: 0 !important;
    }

    .droupdown li a {
        color: #fff;
    }



    .col-md-4.top_call.text-center {
        display: none;
    }

    .inner_hrad {
        font-size: 22px;
    }

    .inner_header img {
        height: 250px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 65%;
    }
}

@media only screen and (max-width: 767px) {
    .banner_text {
        padding: 22% 10% 8%;
    }

    .big_head {
        font-size: 24px;
    }

    .ab_img {
        width: 100%;
        margin-bottom: 10px;
    }

    .pro_item img {
        width: 100%;
    }

    .title-column {
        width: 100%;
        padding: 0 10px;
    }

    .testimonial-column {
        max-width: 100%;
    }

    .test_item {
        padding: 70px 50px;
    }

    .tab_item li a {
        font-size: 25px;
    }

    .tab_item {
        top: 12%;
    }

    .contact_details {
        margin-top: 25px;
    }

    .margin {
        margin: 35px 0;
    }

    .foot_nav ul li a {
        padding: 15px 20px;
    }
    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
    .product{
        padding: 30px 0;
    }
}

@media only screen and (max-width: 650px) {
    .banner_head_1 {
        font-size: 28px;
        padding: 0 0px;
    }

    .banner_text p {
        font-size: 15px;
        line-height: 29px;
    }

    .banner_text {
        padding: 37% 4% 12%;
    }
    .test_item {
        padding: 54px 15px;
    }
    .tab-pane img{
        height: 350px;
        object-fit: cover;
    }
    .navbar_nav {
        padding: 0 10px;
    }
    nav {
        top: 14px;
    }
}

@media only screen and (max-width: 500px) {
    .header-contact .all_btn{
        display: none;
    }
    footer{
        padding-top: 30px;
    }
    .img-2 img {
        width: 125px;
    }
    .process{
        padding: 40px 0;
    }
    .logo img {
        width: 140px;
    }
}