* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #f85956;
    --bg_color-2: #13673d;
    --white: #fff;
    --black: #000;
}

body {
    font-family: "League Spartan", sans-serif;
    position: relative;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}


@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;
    font-family: "Work Sans", sans-serif;
}

li {
    list-style: none;
    font-family: "Work Sans", sans-serif;
}

ul {
    padding-left: 0;
}

.margin {
    margin: 70px 0;
}

.logo a img {
    width: 173px;
    position: relative;
    z-index: 9;
    margin-top: -34px;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 99;
}

.search i {
    margin-right: 5px;
}

.search a {
    color: var(--black);
}

.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;
}

#myHeader.sticky nav {
    background-color: var(--white);
}



@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 30%;
    color: var(--black);
    cursor: pointer;
}

.nab_bar li a {
    color: #000;
    padding: 28px 15px;
    display: inline-block;
}

.nab_bar li {
    position: relative;
}


nav {
    position: relative;
    padding-left: 11%;
    padding-right: 6%;
}



.droupdown {
    position: absolute;
    background-color: var(--white);
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 450px;
    overflow: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.droupdown li {
    padding: 0;
    font-size: 14px;
}

.droupdown li a {
    display: block;
    padding: 10px 15px;
    color: var(--black);
}

.droupdown li a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}



.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;
}

.banner_head {
    font-size: 2.074rem;
    display: block;
    color: var(--bg_color);
    font-weight: 700;
    margin-bottom: 8px;
}

.banner_contant {
    padding-top: 40px;
}

.all_head {
    background-color: var(--bg_color-2);
    display: inline-block;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    border-radius: 10px;
    padding: 1rem 2rem 1rem 2rem;
    box-shadow: 0px 0px 0px -7px rgba(0, 0, 0, 0);
    transition: ease-in-out .2s;

}

.all_head:hover {
    background-color: #92c74d;
    color: var(--black);
}

.banner_btn {
    margin-bottom: 25px;
    margin-top: 25px;
}

.banner_contant ul li {
    margin: 10px 0;
}

.banner_contant ul li i {
    margin-right: 8px;
    font-size: 14px;
}

.top_head {
    background-color: var(--black);
    color: var(--white);
    padding: 5px 0;
}

.top_details ul {
    margin-bottom: 0;
}

.top_details ul a {
    color: var(--white);
}

.top_head .socal_media {}

.socal_media {
    display: flex;
    justify-content: end;
    gap: 8px 20px;
}

.socal_media a {
    color: var(--white);
}

.top_details ul {
    display: flex;
    gap: 10px 20px;
}

.top_details ul li {
    font-size: 14px;
}

.all_btn {
    background-color: var(--bg_color);
    padding: 15px 25px;
    color: var(--white);
    position: relative;
    border-radius: 4px;
    border: none;
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--black);
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    width: 100%;
    height: 100%;
}

.logo_bg {
    position: absolute;
    left: 0;
    top: -34px;
    width: 398px;
}



/* 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;
}

/* Search Style */

.sound_gun {
    background-color: #212629;
    padding: 50px 0;
}

.sound_gun_text {
    color: var(--white);
}

.small_head {
    font-size: 22px;
    font-weight: 600;
    color: var(--bg_color);
}

.big_head {
    font-size: 35px;
    font-weight: 600;
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.big_head::after {
    content: "";
    width: 8px;
    height: 95%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--bg_color);
    background: linear-gradient(4deg, rgba(248, 89, 86, 1) 20%, rgba(248, 89, 86, 0) 100%);
}

.sound_gun_text p {
    color: #8f8f8f;
}

.sound_img_text {
    position: relative;
    text-align: right;
}

.sound_img_text {
    color: var(--white);
}

.sound_img_text ul {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    text-align: left;
}

.sound_img_text ul p {
    font-size: 13px;
    color: #8f8f8f;
}

.sound_img_text ul li span {
    font-size: 18px;
    font-weight: 700;
}

.sound_img_text ul li span i {
    margin-right: 5px;
    color: var(--bg_color);
    position: absolute;
    left: 0;
    top: 5px;
}

.sound_img_text ul li {
    margin: 15px 0;
    position: relative;
    padding-left: 30px;
}

.sound_img_text ul li:last-child {
    margin-left: 30px;
}

.ab_img {
    width: 53%;
    float: right;
    padding-left: 100px;
    position: relative;
    padding-bottom: 140px;
    margin-bottom: 10px;
    margin-right: 5px;
}

.ab_home {
    display: flex;
}

.ab_img .img_2 {
    position: absolute;
    bottom: 0px;
    left: 35px;
}

.pro_item {
    position: relative;
    padding-bottom: 15px;
    margin: 8px;
}

.pro_item a {
    color: #fff;
}

.pro_item span {
    font-size: 22px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 7px 20px;
    background-color: var(--bg_color);
}

.quest_test {
    background-color: #080c24;
    padding: 59px 40px;
    color: var(--white);
}


.single-cta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 41px;
    margin-left: 14px;
}

.single-cta-wrap .icon {
    width: 50px;
    height: 50px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    background: var(--bg_color);
    line-height: 52px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    position: relative;
    z-index: 0;
}

.single-cta-wrap .icon:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--bg_color);
    opacity: 0.3;
    height: 76px;
    width: 76px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.single-cta-wrap .details {
    margin-left: 33px;
}

.details span {
    display: block;
    font-weight: 600;
    font-size: 18px;
}

.details a {
    color: var(--bg_color);
    font-size: 25px;
    font-weight: 600;
}

.service-one-img {
    position: relative;
}

.why_icon {
    position: absolute;
    width: 60px;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why_item {
    text-align: center;
    padding: 20px;
    position: relative;
    height: 486px;
}

.why_item::after {
    content: "";
    width: 100%;
    height: 1%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: whitesmoke;
    z-index: -1;
    transition: ease-in-out .5s;
}

.why_item:hover::after {
    height: 100%;
}

.why_item:hover .why_bg {
    transform: rotate(90deg);
}

.why_item span {
    display: block;
    font-size: 25px;
    font-weight: 600;
    margin: 10px 0;
}



.contact form input,
select,
textarea {
    width: 100%;
    padding: 15px;
    margin: 7px 0;
    outline: none;
    background-color: #080c240f;
    border: none;
}

.contact form {
    padding: 30px;
}

.contact_bg {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact_bg .big_head {
    font-size: 30px;
    text-align: center;
    border-bottom: 2px solid var(--bg_color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.contact_bg .big_head::after {
    background: linear-gradient(4deg, rgb(255 255 255) 20%, rgba(248, 89, 86, 0) 100%);
}

.contact_details {
    background-color: var(--bg_color);
    padding: 25px 30px;
}

.contact_details .big_head {
    color: var(--white);
    border-color: var(--white);
}

.contact_details ul li {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact_details ul li .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: var(--bg_color);
    border-radius: 5px;
    text-align: center;
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
}

.contact_details ul li .media p {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 500;
    word-break: break-all;
}

.contact_details ul li .media a {
    color: var(--black);
}

.detail_head {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px;
}

.test_img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.test_img .name {
    display: block;
    font-size: 19px;
    font-weight: 600;
}

.test_item {
    padding: 30px;
    box-shadow: rgba(232, 232, 232, 0.739) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    margin: 5px;
    border-radius: 5px;
}

.testmoinal {
    background-color: #212629;
    color: var(--white);
    padding: 80px 0;
}

.testmoinal_img {
    padding-right: 50px;
}

footer {
    background-color: var(--black);
    color: var(--white);
    padding-top: 50px;
}

.foot_logo img {
    width: 150px;
    margin-bottom: 10px;
    background-color: var(--white);
    border-radius: 5px;
}

.foot_head {
    display: block;
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 15px;
}

.foot_nav ul li a {
    display: block;
    color: var(--white);
    margin: 15px 0;
}

.foot_nav ul li a:hover {
    color: var(--bg_color);
}

.foot_nav ul {
    height: 250px;
    overflow: auto;
}

.foot_contact ul li .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: var(--bg_color);
    border-radius: 5px;
    text-align: center;
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
}

.foot_contact ul li .media p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    word-break: break-all;
}

.foot_contact ul li .media p a {
    color: var(--white);
}

.foot_contact ul li {
    margin: 15px 0;
}

.foot_contact .socal_media {
    justify-content: left;
}

.foot_contact .socal_media a {
    color: var(--white);
    background: #f85956;
    padding: 6px 12px;
    border-radius: 1px;
}

.foot_contact .socal_media {
    gap: 8px 7px;
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #757575;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
}

.copy_right p a {
    color: var(--white);
}


.send_message a {
    position: fixed;
    right: 0;
    bottom: 108px;
    background: #ff0000;
    color: #fff;
    padding: 7px 13px;
}






button.back-to-top {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    height: 0px;
    width: 0px;
    overflow: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    color: transparent;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    font-size: 0px;
    outline: 0 !important;
    z-index: 99;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
    outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
    content: "";
    display: block;
    vertical-align: middle;
    border-bottom: solid 10px var(--bg_color);
    border-left: solid 10px transparent;
    line-height: 0;
    border-right: solid 10px transparent;
    height: 0;
    margin: 18px auto 0;
    width: 0;
    border-radius: 20px;
    visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
    visibility: visible;
}

button.back-to-top::after {
    border-bottom-color: #fff;
    position: relative;
    top: -24px;
}

button.back-to-top.show {
    display: block;
    background: #fff;
    color: var(--bg_color);
    font-size: 25px;
    left: 25px;
    bottom: 25px;
    height: 50px;
    width: 50px;
    visibility: visible;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}








.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-color: #0a194abd;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 35px;
    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;
    right: 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) {
    .logo_bg {
        display: none;
    }

    .head_btn {
        display: none;
    }

    .logo a img {
        width: 126px;
        margin-top: 0;
    }

    .sound_img_text ul {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        text-align: left;
    }

    .ab_img {
        width: 47%;
    }
}


@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(--bg_color);
        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(--black);
    }

    .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: 25px;
    }

    .inner_header img {
        height: 230px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 56%;
    }

}


@media only screen and (max-width: 767px) {
    .top_details ul {
        justify-content: center;
        margin-bottom: 8px;
    }

    .top_head .socal_media {
        justify-content: center;
    }

    .ab_img {
        width: 100%;
        margin-bottom: 15px;
    }

    .ab_img .img_2 img {
        width: 355px;
    }

    .big_head {
        font-size: 25px;
    }

    .small_head {
        font-size: 19px;
    }

    .test_box {
        margin-top: 20px;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
}


@media only screen and (max-width: 600px) {
    .margin {
        margin: 30px 0;
    }

    .testmoinal_img {
        padding-right: 0px;
    }

    .contact_bg .big_head {
        font-size: 24px;
    }

    .form_box {
        width: 90%;
        padding-top: 22%;
    }
}

@media only screen and (max-width: 550px) {
    .ab_img .img_2 img {
        width: 220px;
    }

    .logo a img {
        width: 108px;
    }

    .ab_img {
        padding-left: 35px;
    }

    nav {
        padding-left: 0%;
        padding-right: 0%;
    }

    .top_details ul a {
        font-size: 13px;
    }

    .quest_test {
        padding: 40px 24px;
    }

    .contact form {
        padding: 12px;
    }

    .contact_details {
        padding: 25px 10px;
    }

    .contact_details ul li {
        padding: 19px;
        border-radius: 8px;
        margin: 7px 0;
    }

    .testmoinal {
        padding: 34px 0;
    }
}