* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color_2: #e31e24;
    --bg_color: #273755;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Roboto", sans-serif;

}

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: relative;
    top: 0;
    width: 100%;
    z-index: 99;
}

.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: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.logo img {
    width: 140px;
}

.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(--black);
}

.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(--white);
    transition: ease-in-out .5s;
    display: none;
}


.navbar_nav ul .dropdown li {
    padding: 8px 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 {
    border-radius: 50%;
    padding: 7px 12px;
    cursor: pointer;
    color: #000000;
    border: 2px solid #273755;
}

.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_item img {
    width: 100%;
    height: 100%;
}

.banner_item {
    position: relative;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.nextarrow {
    position: absolute;
    right: 2%;
    top: 50%;
    color: var(--white);
    font-size: 25px;
    cursor: pointer;
}

.prevarrow {
    position: absolute;
    left: 2%;
    top: 50%;
    color: var(--white);
    font-size: 25px;
    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;
    }
}

.top_head {
    background-color: var(--bg_color);
}

.top_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.all_btn {
    background: linear-gradient(0deg, #e31e24 -28.51%, rgb(39 55 85) 142.24%);
    color: var(--white);
    padding: 13px 25px;
    border-radius: 3px;
    border: none;
    position: relative;
    z-index: 9;
}

.all_btn::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, #273755 -28.51%, rgb(227 30 36) 142.24%);
    z-index: -1;
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    width: 100%;
}

.top_num ul {
    display: flex;
    margin-bottom: 0;
    gap: 5px 20px;
}


.top_num a,
.top_num i {
    color: var(--white);
}

.t_details span {
    display: block;
    font-size: 12px;
    color: #d7d7d7;
}

.top_icon {
    border: 1.5px solid #fff;
    padding: 6px 10px;
    border-radius: 50%;
}

.socal_media {

    display: flex;
    align-items: center;
    gap: 0 27px;

}

.top_head .socal_media {
    background-color: var(--bg_color_2);
    padding: 10px 42px;
    clip-path: polygon(12% 0, 88% 0, 100% 100%, 0% 100%);
}

.socal_media a {
    color: var(--white);
}

.socal_media a:hover {
    color: var(--bg_color);
}

.ab_img img {
    border-radius: 15px;
}

.px {
    padding: 0 2%;
}

.small_head {
    display: block;
    font-size: 20px;
    color: var(--bg_color_2);
}

.ab_img {
    float: right;
    width: 60%;
    margin-left: 20px;
    margin-bottom: 20px;
}

.big_head {
    font-size: 45px;
    font-weight: 600;
}

.big_head span {
    color: var(--bg_color_2);
}

.products {
    padding: 50px 0;
    background-color: #fbfbfb;
}

.pro_item {
    margin: 15px;
    /* background-color: var(--white); */
}

.pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro_tittle {
    display: block;
    font-size: 20px;
    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%;
}

.whyUs {
    padding: 60px 0;
    background-position: left;
}

.whyUs .img_2 {
    text-align: right;
    margin-top: -100px;
    position: relative;
}

.experience {
    position: absolute;
    top: -3px;
    left: 30%;
    background-color: var(--bg_color);
    color: var(--white);
    text-align: center;
    border-radius: 50%;
    font-size: 40px;
    border: 4px solid #fff;
    padding: 10px;
    width: 140px;
    line-height: 56px;
    height: 140px;
}

.experience p {
    line-height: normal;
}

.about-us-images {
    position: relative;
    background-repeat: no-repeat;
    background-position: left 60px bottom 40px;
    background-size: auto;
    margin-right: 30px;
}

.why-choose-item {
    display: flex;
    border-bottom: 1px solid #c9c9c9;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.why-choose-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #eaf0ec;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: all 0.4s ease-in-out;
}

.why-choose-item .icon-box img {
    max-width: 30px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}

.why-choose-item-content {
    width: calc(100% - 80px);
}

.why-choose-item-content span {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 600;
    display: block;
}



.cta-one {
    position: relative;
    overflow: hidden;
    background-size: cover;
    padding: 100px 0px 100px;
    background-attachment: fixed;
}

.cta-one:after {
    position: absolute;
    content: '';
    right: -90px;
    bottom: 0px;
    width: 150px;
    height: 250px;
    opacity: 0.50;
    z-index: 1;
    transform: skewX(-25deg);
    background-color: var(--bg_color_2);
}

.cta-one .color-one {
    position: absolute;
    left: 100px;
    top: 0px;
    bottom: 0px;
    width: 200px;
    transform: skewX(25deg);
    background-color: var(--bg_color_2);
}

.cta-one .color-one:before {
    position: absolute;
    content: '';
    right: -70px;
    top: 0px;
    width: 180px;
    height: 120px;
    opacity: 0.50;
    transform: skewX(-50deg);
    background-color: var(--bg_color_2);
}

.cta-one .color-one:after {
    position: absolute;
    content: '';
    left: -60px;
    bottom: 0px;
    width: 160px;
    height: 150px;
    opacity: 0.50;
    transform: skewX(-50deg);
    background-color: var(--bg_color_2);
}

.cta-one:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0.50;
    background-color: var(--black);
}

.cta-one_content {
    position: relative;
    margin-left: 450px;
}

.cta-one_title {
    position: relative;
    color: var(--white);
}

.cta-one_text {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    max-width: 600px;
    margin-top: 30px;
    text-transform: capitalize;
    color: var(--white);
}

.cta-one_buttons {
    position: relative;
    gap: 30px;
    margin-top: 30px;
}

.cta-one_title {
    position: relative;
    color: var(--white);
    font-size: 55px;
    font-weight: 600;
}

.cta-one_text a {
    color: var(--white);
    font-size: 25px;
    color: var(--white);
    font-weight: 600;
}


.testmoinal {
    padding: 80px 0;
}

.test_star {
    width: 100px;
    margin: 20px auto;
}

.name_box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 10px auto;
}

.test_item {
    padding: 0 3.5%;
}

.name_box .name {
    font-size: 18px;
    margin-top: 10px;
    display: block;
}


.contact form {
    background-color: var(--white);
    padding: 40px;
}

.contact input,
select,
textarea {
    width: 100%;
    border: 1px solid #bf222d;
    background: rgba(245, 91, 31, 0.1);
    color: #000;
    padding: 16px 20px;
    line-height: 1;
    text-transform: capitalize;
    outline: none;
    margin: 10px 0;
}

.contact-bg {
    background-color: #000000c4;
    padding: 90px 0;
}

.contact {
    background-size: cover;
}

.get_touch {
    font-size: 25px;
    display: block;
    margin-bottom: 10px;
}

.contact button {
    border: none;
}

.contact_details {
    color: var(--white);
    padding-left: 30px;
}

.contact_details ul {
    margin-top: 25px;
}

.contact_details ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.contact_details li:not(:last-child):after {
    position: absolute;
    content: "";
    width: 2px;
    height: 57%;
    left: 29px;
    top: 74px;
    background-color: var(--bg_color);
}

.contact_details li .icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    font-size: 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: var(--bg_color_2);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-right: 26px;
    margin-left: 8px;
    color: #fff;
}

.contact_details li .icon:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    content: "";
    opacity: .2;
    -webkit-transform: scale(1.36);
    -ms-transform: scale(1.36);
    transform: scale(1.36);
    background-color: var(--bg_color_2);
}

.content_num span {
    font-size: 22px;
    font-weight: 700;
    display: block;
}

.content_num a {
    color: var(--white);
}

.content_num a:hover {
    color: var(--bg_color_2);
}

.content_num p {
    font-size: 18px;
}

.contact_detail li:not(:last-child) {
    margin-bottom: 50px;
}



.line_animation {
    background-color: var(--bg_color_2);
    color: var(--white);
    padding: 20px 0;
    overflow: hidden;
}

.line_animation .title {
    margin: 0 20px;
    font-size: 17px;
}

.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;

}

@keyframes bzo-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100%));
    }
}

.you-tub-video {
    padding: 50px 0;
    background-color: rgb(241, 241, 241);
}

.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_item {
    padding: 10px;
}


.footer_bg {
    background-color: #272625f2;
    color: var(--white);
    padding-top: 90px;
}

.foot_logo img {
    width: 180px;
    background-color: var(--white);
    margin-bottom: 10px;
    padding: 4px;
    border-radius: 2px;
}

.foot_logo p {
    font-size: 14px;
}

.foot_nav ul li a {
    color: var(--white);
    display: block;
    margin: 15px 0;
}

.foot_nav ul {
    max-height: 250px;
    overflow: auto;
}

.foot_nav ul li a:hover {
    color: var(--bg_color_2);
}

.foot_contact a,
.foot_contact p {
    color: var(--white);
    display: block;
    margin: 15px 0;
}

.foot_contact li i {
    margin-right: 6px;
}

.footer_title {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    border-top: 1px solid #6a6a6a;
    padding: 15px 0;
    margin-top: 50px;
}

.copyright p {
    margin-bottom: 0;
}

.copyright p a {
    color: var(--bg_color_2);
}











.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: 1024px) {
    .nab_btn {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .navbar_nav ul li {
        padding: 20px 13px;
    }

    .cta-one_title {
        font-size: 34px;
    }

    .cta-one_content {
        margin: 0 10px;
    }

    .cta-one .color-one {
        opacity: 0.50;
    }

    .test_item {
        padding: 0 0;
    }

    .big_head {
        font-size: 32px;
    }
}


@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;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .top_num {
        display: none;
    }

    .top_main {
        justify-content: center;
    }

    .contact_details {
        padding-left: 0px;
        margin-top: 20px;
    }

    .ab_img {
        width: 100%;
        margin-left: 0;
    }

    .px {
        padding: 0 0%;
    }

    .my {
        margin: 40px 0;
    }

    #myHeader.sticky {
        padding: 10px 0;
    }
}

@media only screen and (max-width: 550px) {
    .my {
        margin: 30px 0;
    }

    .big_head {
        font-size: 25px;
    }

    .about-us-images {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .whyUs .img_2 img {
        width: 300px;
    }

    .experience {
        top: 38px;
        left: 6%;
    }

    .cta-one_title {
        font-size: 26px;
    }

    .cta-one {
        padding: 50px 0;
    }

    .contact-bg {
        padding: 45px 0;
    }

    .footer_title {
        font-size: 24px;
    }

    .footer_bg {
        padding-top: 50px;
    }
}