* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #0c143c;
    --bg_color_2: #177aba;
    --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;
    font-family: "Work Sans", sans-serif;
}

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: relative;
    top: 0;
    width: 100%;
    z-index: 99;
    background-color: var(--bg_color);
}

.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: var(--bg_color);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.logo img {
    width: 250px;
}

.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);
    transition: ease-in-out .5s;
    display: none;
}


.navbar_nav ul .dropdown li {
    padding: 0;
}

.navbar_nav ul .dropdown li a {
    padding: 10px 15px;
    display: block;
}

.navbar_nav ul .dropdown li:hover {
    background-color: var(--white);
}

.navbar_nav ul .dropdown li:hover>a {
    color: var(--black);
}



.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 {
    border-radius: 50%;
    padding: 7px 12px;
    cursor: pointer;
    color: var(--white);
    border: 1px solid #fff;
}

.magnifying {
    background: #c9c9c9;
    padding: 11px;
}

.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;
}

.cancal {
    color: var(--white);
    position: absolute;
    right: 3%;
    top: 5%;
    font-size: 30px;
    cursor: pointer;
}

.banner_img {
    position: relative;
    background-attachment: fixed;
    z-index: 9;
    padding: 10% 4%;
    color: var(--white);
    background-position: center center;
}

.banner_name_tittle span {
    color: var(--bg_color_2);
}

.banner_img::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #00000096;
    background: linear-gradient(270deg, #00000000 0%, #000000b0 70.86%);
    z-index: -1;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.nextarrow {
    position: absolute;
    right: 2%;
    top: 50%;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    border: 1.5px solid #fff;
    border-radius: 50%;
    padding: 7px 11px;
}

.prevarrow {
    position: absolute;
    left: 2%;
    top: 50%;
    color: var(--white);
    font-size: 16px;
    z-index: 9;
    cursor: pointer;
    border: 1.5px solid #fff;
    border-radius: 50%;
    padding: 7px 11px;
}

.slick-vertical .slick-slide {
    border: none
}

.banner_contant {
    max-width: 60%;
}

.banner_contant p {
    font-size: 18px;
}

.banner_tittle {
    font-size: 20px;
    display: block;
    letter-spacing: 2px;
}

.banner_name_tittle {
    font-size: 75px;
    font-weight: bold;
    display: block;
    margin-bottom: 12px;
}

.banner_item.slick-slide.slick-current.slick-active .banner_name_tittle {
    animation: stickySlideDown 1.5s ease-in-out;
    transform: translateY(0px);
    transition: ease-in-out .9s;
}

.banner_item.slick-slide.slick-current.slick-active .banner_tittle {
    animation: stickySlideDown 1.8s ease-in-out;
    transform: translateY(0px);
    transition: ease-in-out .10s;
}

@keyframes stickySlideDown {
    0% {

        transform: translateY(200px);

        opacity: 0;
    }

    100% {

        transform: translateY(0);

        position: 1;
    }
}

.top_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.all_btn {
    background-color: var(--bg_color_2);
    color: var(--white);
    padding: 13px 25px;
    border-radius: 3px;
    border: none;
    position: relative;
    z-index: 9;
    font-family: Rubik, sans-serif;
}

.all_btn::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--bg_color);
    z-index: -1;
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    width: 100%;
}

.all_btn:hover {
    color: var(--white)
}

.top_num ul {
    display: flex;
    margin-bottom: 0;
    gap: 5px 20px;
}


.top_num a,
.top_num i {
    color: var(--black);
}

.t_details span {
    display: block;
    font-size: 12px;
    color: var(--black);
}

.top_icon {
    border: 1.5px solid #000;
    padding: 6px 10px;
    border-radius: 50%;
}

.socal_media {

    display: flex;
    align-items: center;
    gap: 0 8px;

}

.top_head .socal_media {
    padding: 12px 4px;
}

.socal_media a {
    color: var(--black);
    border: 1.5px solid #000;
    padding: 6px 10px;
    border-radius: 50%;
}

.socal_media a:hover {
    color: var(--color);
}

.small_head {
    display: block;
    font-size: 20px;
    color: var(--bg_color_2);
    font-weight: 600;
    font-family: "Bricolage Grotesque", sans-serif;
    letter-spacing: 2px;
}

.big_head {
    font-size: 45px;
    font-weight: 600;
    display: block;
    font-family: "Bricolage Grotesque", sans-serif;
}

.big_head span {
    color: var(--bg_color_2);
}

.ab_img {
    width: 50%;
    float: left;
    position: relative;
    padding: 35px;
    z-index: 9;
    margin-right: 30px;
}

.ab_img img {
    width: 100%;
    border-radius: 5px;
}

.ab_img::after {
    content: "";
    width: 45%;
    height: 54%;
    position: absolute;
    right: 0;
    top: 0;
    border: 5px solid var(--bg_color);
    z-index: -1;
}

.ab_img::before {
    content: "";
    width: 45%;
    height: 54%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    background-color: var(--bg_color);
}

.about-experience {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    top: 70px;
    left: 0px;
    background: var(--bg_color);
    padding: 10px 20px 10px 10px;
    color: var(--white);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
    border-radius: 5px;
}

.about-experience-icon {
    color: var(--white);
    font-size: 45px;
    width: 70px;
    height: 70px;
    line-height: 56px;
    text-align: center;
    background: var(--bg_color_2);
    border-radius: 50px;
}

.about-experience-icon img {
    width: 42px;
    filter: brightness(0) invert(1);
}

.products {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.products .line {
    border-bottom: 1px solid #949494;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.pro_item a {
    color: #000;
}

.pro_item .img {
    margin-bottom: 20px;
    border-radius: 10px;
}

.pro_title {
    display: block;
    font-size: 21px;
    font-weight: 600;
    margin: 10px 0;
    font-family: "Bricolage Grotesque", sans-serif;
}

.pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.pro_btn {
    display: block;
    font-size: 17px;
    margin-top: 8px;
    font-weight: 600;
}

.pro_item {
    border-bottom: 1px solid #949494;
    padding-bottom: 20px;
    margin: 20px;
    min-height: 555px;
}

.pro_button {
    text-align: right;
}

.customization {
    background-color: var(--bg_color);
    padding: 100px 0;
}

.customization_box {
    position: relative;
    padding-bottom: 150px;
    margin: 0px auto;
    text-align: center;
}

.img-responsive {
    max-height: 340px;
    margin: 0px auto;
}

.block_item {
    position: absolute;
    width: 130px;
}

.class1 {
    left: 15%;
    top: 40%;
}

.class2 {
    left: 24%;
    top: 70%;
}

.class3 {
    left: 43%;
    top: 80%;
}

.class4 {
    right: 15%;
    top: 40%;
}

.class5 {
    right: 24%;
    top: 70%;
}

.block_item .icon img {
    max-height: 100px;
    margin: 0px auto;
    transition: 0.6s;
}

.block_item span {
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-align: center;
    padding: 12px 0px;
    margin: 0px;
}

.lamination {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.lamination img {
    border-radius: 10px;
}

.mirrors_img {
    padding-right: 70px;
}

.mirrors_img img {
    margin-bottom: 40px;
}

.lamination_text img {
    margin-top: 40px;
}

.you_item {
    margin: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.counter-2 {
    background-attachment: fixed;
    background-size: cover;
}

.count-bg {
    background-color: #00000097;
    color: var(--white);
    text-align: center;
    padding: 150px 20%;
}

.count-bg .big_head {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
}

.count-bg p {
    font-size: 20px;
    line-height: normal;
}


.line_animation {
    background-color: var(--bg_color);
    color: #a6a6a6;
    padding: 20px 0;
    overflow: hidden;
}

.line_animation .title {
    margin: 0 20px;
    font-size: 80px;
    font-weight: bold;
    font-family: "Bricolage Grotesque", sans-serif;
}

.list-links-scroll {
    display: flex;
    flex-wrap: nowrap;
    display: flex;
    flex-wrap: nowrap;
    animation-name: bzo-scroll;
    animation-duration: 45s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    white-space: nowrap;
    flex-shrink: 0;

}

.list-links-scroll i {
    color: var(--white);
}

@keyframes bzo-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100%));
    }
}

.testimonial {
    padding: 80px 0;
    position: relative;
    z-index: 9;
}

.testimonial::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--white);
    opacity: .8;
    z-index: -1;
}

.test_item .star {
    width: 100px;
    margin: 10px 0;
}

.test_item i {
    font-size: 40px;
    opacity: .5;
}

.test_name {
    border-top: 1px solid #767676;
    padding-top: 15px;
}

.test_name img {
    border-radius: 50%;
}

.test_name span {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.test_item {
    position: relative;
    padding: 30px;
    margin: 10px;
}

.test_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--white);
    opacity: .8;
    z-index: -1;
}


.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;
}

.contact {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.contact form {
    padding: 40px;
    background-color: var(--white);
    border-radius: 5px;
}

.contact input,
textarea,
select {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border: none;
    background-color: #f5f5f5;
    border-radius: 5px;
    outline: none;
    border: 1px solid #b1abbf67;
}

.contact_details ul li {
    margin: 20px 0;
    border-bottom: 1px solid #b6b6b6;
    padding-bottom: 20px;
}



.contact_details li .icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 12px;
    display: inline-grid;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
    margin-right: 5px;
    background-color: var(--bg_color_2);
    color: var(--white);
}

.contact_details a,
.contact_details p {
    color: var(--bg_color);
    font-weight: 600;
    font-size: 18px;
    display: initial;
    font-family: "Bricolage Grotesque", sans-serif;
}

.client_item img {
    height: 100px;
    object-fit: contain;
}

.client_item {
    padding: 10px;
}

footer {
    background-color: #0b1128;
    padding: 60px 0 0;
    color: var(--white);
}

.footer_logo img {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    width: 230px;
}

.add_cls {
    background-color: var(--bg_color);
    padding: 30px;
}

.footer_title {
    font-size: 25px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-family: "Bricolage Grotesque", sans-serif;
}

.footer_nav a {
    display: block;
    color: var(--white);
    padding: 8px 0;
}

.footer_nav ul {
    height: 250px;
    overflow: auto;
}

.footer_details a {
    padding: 15px 0;
    display: block;
    color: var(--white);
}

.footer_details li i {
    margin-right: 10px;
}

.copy_right {
    background-color: var(--bg_color);
    padding: 20px 0;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
}

.copy_right a {
    color: var(--white);
    text-decoration: underline;
}




.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: 300px;
    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) {
    .nab_btn {
        display: none;
    }

    .top_num ul li:first-child {
        display: none !important;
    }

    .banner_name_tittle {
        font-size: 55px;
    }

    .big_head {
        font-size: 30px;
    }

    .ab_img {
        width: 60%;
    }

    .customization {
        display: none;
    }
}

@media only screen and (max-width: 780px) {
    nav {
        position: revert;
    }

    .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;
        z-index: 999;
    }

    .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;
        margin-bottom: 15px;
    }
}



@media only screen and (max-width: 767px) {
    .top_num ul li:nth-child(2) {
        display: none !important;
    }

    .ab_img {
        width: 100%;
        margin-bottom: 15px;
    }

    .count-bg {
        padding: 57px 5%;
    }
}



@media only screen and (max-width: 600px) {
    .my {
        margin: 40px 0;
    }

    .big_head {
        font-size: 25px;
    }

    .small_head {
        font-size: 17px;
    }

    .contact {
        padding: 29px 0;
    }

    .our_skils {
        padding: 21px 0%;
    }

    .testimonial {
        padding: 40px 0;
    }

    .count-bg .big_head {
        font-size: 26px;
    }

    .count-bg p {
        font-size: 16px;
    }

    .line_animation .title {
        font-size: 29px;
    }

    .mirrors_img {
        padding-right: 0px;
    }

    .lamination {
        padding: 30px 0;
    }

    .products {
        padding: 35px 0;
    }

    .banner_contant {
        max-width: 100%;
    }

    .banner_name_tittle {
        font-size: 26px;
    }

    .banner_contant p {
        font-size: 15px;
    }

    .banner_tittle {
        font-size: 18px;
    }
}


@media only screen and (max-width: 500px) {
    .socal_media a {
        padding: 3px 7px;
    }

    .logo img {
        width: 200px;
    }

    nav {
        padding: 5px 0;
    }

    .prevarrow,
    .nextarrow {
        font-size: 11px;
        padding: 6px 9px;
        top: 59%;
    }

    .count-bg {
        padding: 57px 0%;
    }

    .about-experience {
        top: -20px;
    }

    .ab_img {
        padding: 17px;
    }

    .contact form {
        padding: 22px;
    }
}