* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #1b7c35;
    --bg_color_2: #15386d;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Outfit", 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;
    font-family: "Poppins", 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;
}

.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);
    }
}

#myHeader.sticky .logo {
    margin-top: 0px;
}

#myHeader.sticky .logo img {
    width: 110px;
    margin-top: 0px;
}

.logo img {
    width: 150px;
    margin-top: -35px;
}

.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 {
    background-color: var(--bg_color);
    border-radius: 50%;
    padding: 0px 10px;
    cursor: pointer;
    color: var(--white);
}


.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;
}

/* .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;
}


.banner_contant {
    position: absolute;
    top: 30%;
    width: 100%;
    z-index: 9;
    width: 50%;
    left: 7%;
    color: var(--white);
}

.banner_item img {
    width: 100%;
}

.banner_tittle {
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
    display: block;
    transition: ease-in-out .9s;
    margin-bottom: 15px;
}

.banner_contant p {
    font-size: 16px;
}

.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_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 {
    padding: 8px 0;
    position: relative;
}

.top_head::after {
    content: "";
    width: 75%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--bg_color);
    z-index: -1;
    border-radius: 0 0 0 80px;
}

.top_main {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 5px 40px;
}

.top_tittle p {
    margin-bottom: 0;
    color: var(--white);
}

.top_num {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.top_num a {
    color: var(--white);
}

.top_num i {
    margin-right: 8px;
}

.socal_media a {
    background-color: var(--white);
    padding: 3px 9px 5px;
    border-radius: 50%;
    color: var(--bg_color);
}

.all_btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-size: 18px;
    padding: 11px 30px;
    border-radius: 15px;
    color: #fff;
    background-color: var(--bg_color);
    position: relative;
    overflow: hidden;
    border: none;
}

.all_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -95%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(30deg);
    transition: left 0.5s ease-in-out;
}

.all_btn:hover::before {
    left: 95%;
}

.small_head {
    font-family: "Cal Sans";
    font-size: 18px;
    font-weight: 600;
    color: var(--bg_color_2);
    position: relative;
    font-family: "Outfit", sans-serif;
}

.small_head img {
    width: 25px;
    margin-top: -35px;
    margin-left: 5px;
}

/* 
.small_head::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    left: 10px;
    top: 40%;
    background-color: var(--bg_color_2);
} */

.big_head {
    font-size: 46px;
    line-height: 68px;
    display: block;
    color: #1c1c1d;
    margin: 15px 0;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}

.big_head span {
    color: var(--bg_color_2);
}

.ab_home {
    padding: 50px 4%;
    background-repeat: no-repeat;
    background-position: bottom;
    display: flex;
    overflow: hidden;
}

.ab_home .img {
    border-radius: 15px;
}

.ab_home .img img {
    border-radius: 15px;
}

.ab_left {
    padding-right: 90px;
}

.right_img .img {
    margin-bottom: 40px;
}

.left_img .img {
    margin-top: 100px;
    animation: small-animation 5s infinite linear;
}

@keyframes small-animation {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.pro_item {
    border: 1px solid #1b7c35;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
}

.pro_item img {
    border-radius: 10px 10px 0 0;
}

.pro_item a {
    color: var(--black);
}

.pro_title {
    font-size: 25px;
    font-family: "Outfit", sans-serif;
    display: block;
    margin: 10px 0;
    color: var(--bg_color);
    font-weight: 500;
}

.Pro_btn {
    display: block;
    color: var(--bg_color);
    font-size: 18px;
    font-family: "Outfit", sans-serif;
    margin-top: 10px;
}

.pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.bg_shadow {
    background-color: #0a3276cc;
    padding: 50px 0 140px;
    color: var(--white);
}

.malti_box {
    background-size: cover;
    background-repeat: no-repeat;
}

.malti_box .bg_shadow .small_head {
    color: var(--white);
    font-weight: 400;
}

.malti_box .bg_shadow .big_head {
    color: var(--white);
}

.contant_box {
    margin-top: -100px;
}

.box {
    text-align: center;
    background-color: var(--white);
    margin: 8px 0;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: 1px solid #c2c2c2;
    transition: ease-in-out .5s;
}

.box_tittle {
    display: block;
    color: var(--bg_color);
    font-size: 23px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
}

.box img {
    width: 80px;
    margin-bottom: 10px;
}

.box:hover {
    box-shadow: rgba(1, 1, 1, 0.18) 8px 8px 15px 0px;
    transform: translateY(-20px);
}

.ab_img {
    float: right;
    width: 50%;
    margin-left: 40px;
}

.ab_img img {
    border-radius: 10px;
    margin: 10px 0;
}

.test_item {
    margin: 10px;
}

.name_box img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.name_box .name {
    display: block;
    font-size: 18px;
    display: block;
    color: var(--bg_color);
}

.test_pera {
    background-color: var(--bg_color_2);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    position: relative;
}

.test_pera::after {
    content: "";
    width: 40%;
    height: 20%;
    position: absolute;
    top: 5%;
    left: 5%;
    border-top: 1px solid #1b7c35;
    border-left: 1px solid #1b7c35;
    border-radius: 15px 0 0 0;
}

.test_pera::before {
    content: "";
    width: 90px;
    height: 20%;
    position: absolute;
    top: 99%;
    left: 3%;
    bottom: 0;
    background-color: var(--bg_color_2);
    clip-path: polygon(43% 0, 100% 0%, 40% 100%);

}

.test_pera p {
    font-size: 14px;
}

.quote-right {
    text-align: end;
    display: block;
}

.name_box {
    padding-left: 27%;
    margin-top: 10px;
}

.why_choose {
    background-color: #f0f2f1;
    padding: 70px 0;
}


.wrapper {
    margin: 0 0 5rem;
    height: 600px;
}

.wrapper .center-image {
    width: 480px;
    height: 480px;
    align-items: center;
}

.wrapper .center-image,
.wrapper .logo-wrapper {
    transform: translate(-50%, -50%);
    background-color: #fff;
    justify-content: center;
    box-shadow: 0 24px 90px 0 #00000014;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    z-index: 0;
    position: absolute;
    display: flex;
    text-align: center;
}

.wrapper .logo-wrapper-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    text-align: center;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0 24px 90px 0 #00000014;
}

.wrapper .logo-wrapper {
    width: 280px;
    height: 280px;
    align-items: center;
}

.wrapper .center-image img {
    width: 200px;
}

.wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    z-index: 0;
    border: 3px dotted #000;
    transform: translate(-50%, -50%) rotate(0);
    animation: 60s linear infinite rotateInfinite;
}

@keyframes rotateInfinite {
    from {
        transform: translate(-50%, -50%) rotate(0)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.tax-retrun-policy .inner .item {
    width: 41%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 60px;
    position: absolute;
    z-index: 1;
}

.tax-retrun-policy .inner .item {
    width: 40%;
    padding: 20px 0 0 40px;
}

.tax-retrun-policy .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.tax-retrun-policy .inner .item .image-area {
    background-color: var(--bg_color_2);
    padding: 16px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.tax-retrun-policy .inner .item .image-area img {
    width: 50px;
    max-width: unset;
}

.tax-retrun-policy .inner .item .image-area img {
    width: 50px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    padding: 5px;
}

.tax-retrun-policy .inner .item:first-child {
    right: 30px;
    top: 80px;
}

.tax-retrun-policy .inner .item:first-child {
    right: 15px;
}

.tax-retrun-policy .inner .item:nth-child(2) {
    right: -15px;
    top: 310px;
}

.tax-retrun-policy .inner .item:nth-child(3) {
    padding: 20px 0 0;
}

.tax-retrun-policy .inner .item:nth-child(3) {
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    justify-content: center;
    text-align: center;
    top: 460px;
}

.tax-retrun-policy .inner .item:nth-child(4) {
    flex-direction: row-reverse;
    left: -65px;
    top: 310px;
}

.tax-retrun-policy .inner .item:nth-child(5) {
    /* flex-direction: row-reverse; */
    left: -25px;
    top: 80px;
    padding: 20px 0 0;
}

.tax-retrun-policy .inner .item:nth-child(5) {
    flex-direction: row-reverse;
    left: 0px;
    top: 80px;
}

.content-area span {
    font-size: 22px;
    display: block;
}


.contact {
    background-color: #f7f7f7;
    padding: 60px 0;
}

.contact form {
    background-color: #cecece2a;
    padding: 40px;
    border: 1px solid #1b7c354f;
}

.contact input,
.contact select,
.contact textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 10px;
    background-color: #1b7c353d;
    border: 1px solid #1b7c354f;
    outline: none;
}

.contact-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
    background-color: #fbfbfb;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #1b7c354f;
}

.contact-info_icon {
    display: inline-block;
    width: 70px;
    min-width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: var(--bg_color);
    color: var(--white);
    text-align: center;
    font-size: 35px;
    position: relative;
}

.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.box-title {
    font-size: 20px;
    line-height: 30px;
    display: block;
}

.contact-info_text a {
    color: #6e6e6e;
}

.contact_details .big_head {
    font-size: 30px;
    line-height: normal;
}

.contact form .big_head {
    font-size: 35px;
    line-height: normal;
}


footer {
    padding-top: 4rem;
    position: relative;
    background-color: #000f24;
    border-radius: 0 50px 0 0;
}

.foot_head {
    display: block;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.foot_logo img {
    width: 150px;
    margin-bottom: 10px;
}

.foot_nav ul li a {
    color: #fff;
    display: block;
    padding: 6px 0;
}

.foot_contact li a {
    color: #fff;
}

.foot_nav ul li a:hover {
    color: var(--bg_color);
}

footer::before {
    position: absolute;
    left: 0;
    top: 50px;
    content: "";
    width: 30%;
    height: 100%;
    transform: translateY(-50px);
    z-index: 0;
    background-color: var(--white);
    border-radius: 0 50px 0 0;
}

.foot_nav_1 {
    padding-left: 20%;
}

.foot_contact li {
    margin: 20px 0;
}

.foot_contact li i {
    margin-right: 8px;
}

.foot_contact li {
    color: #fff;
}

.foot_nav ul {
    max-height: 230px;
    overflow: auto;
}

.copy_right {
    padding: 18px 0;
    border-top: 1px solid #343434;
    margin-top: 50px;
}

.copy_right p {
    margin-bottom: 0;
    color: var(--white);
}

.copy_right p a {
    color: var(--white);
}

.pro_item {
    margin: 10px;
}


.accordion-item {
    margin: 6px 0;
    background-color: transparent;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    padding-right: 25px;
    border: none;
    outline: none;
    text-align: left;
    color: var(--black);
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
    position: relative;
}

.accordion-header::after {
    content: "";
    width: 10px;
    height: 1.5px;
    position: absolute;
    right: 2%;
    top: 50%;
    background-color: #000;
}

.accordion-header::before {
    content: "";
    width: 1.8px;
    height: 10px;
    position: absolute;
    right: 2.5%;
    top: 24.5px;
    background-color: #000;
}

.accordion-header.active::before {
    content: "";
    width: 1.5px;
    height: 10px;
    position: absolute;
    right: 3.6%;
    top: 44%;
    background-color: #000;
    display: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #f1f1f1;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.accordion-content p {
    margin: 10px 0;
}










.ab_img_2{
    float: left;
    padding-right: 50px;
}
.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_text {
    position: absolute;
    bottom: 20%;
    width: 100%;
    z-index: 9;
    color: var(--white);
    text-align: center;
    padding: 0 10px;
}

.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) {
    .tax-retrun-policy .inner .item {
        position: static;
        padding: 20px !important;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        width: 47%;
        margin: 30px 0 0;
        background: #e5e5e5;
        transform: none;

    }

    .wrapper {
        margin: 0 0 0rem;
        height: auto;
    }

    .tax-retrun-policy .inner .item:nth-child(3) {
        transform: none;
    }

    .navbar_nav ul li {
        padding: 20px 11px;
    }

    .top_num {
        display: none;
    }
}

@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;
    }
    .ab_img_2{
        margin-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .tax-retrun-policy .inner .item {
        width: 100%;
    }

    .wrapper .logo-wrapper-outere {
        display: none !important;
    }

    .tax-retrun-policy .inner .item:nth-child(4),
    .tax-retrun-policy .inner .item:nth-child(5) {
        flex-direction: row;
    }

    .wrapper .center-image {
        display: none !important;
    }

    .wrapper::after {
        display: none;
    }

    .ab_img {
        float: right;
        width: 100%;
        margin-left: 0px;
    }

    .big_head {
        font-size: 40px;
        line-height: normal;
    }

    footer::before {
        display: none;
    }

    .foot_logo {
        color: #fff;
    }

    .foot_nav_1 {
        padding-left: 0%;
    }
}

@media only screen and (max-width: 600px) {
    .left_img .img {
        margin-top: 7px;
        display: none;
    }

    .left_img {
        margin: 10px 0;
    }

    .my {
        margin: 29px 0;
    }

    .ab_home {
        padding: 35px 0%;
    }
    .foot_contact{
        margin-top: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .big_head {
        font-size: 22px;
        line-height: normal;
        margin: 5px 0;
    }

    .small_head {
        font-size: 16px;
    }

    .ab_left {
        padding-right: 0px;
    }

    .right_img .img {
        margin-bottom: 15px;
    }

    .pro_title {
        font-size: 18px;
    }

    .pro_item {
        margin: 5px;
    }

    p {
        font-size: 14px;
    }

    .tax-retrun-policy .inner .item:nth-child(4),
    .tax-retrun-policy .inner .item:nth-child(5),
    .tax-retrun-policy .inner .item:nth-child(2),
    .tax-retrun-policy .inner .item:first-child {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        width: 119px;
        margin-top: 0;
    }

    .nab_btn {
        display: none;
    }
    .accrodion img{
        display: none;
    }
}