* {

    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Merienda';
    src: url('../fonts/Merienda-Regular.woff2') format('woff2'),
        url('../fonts/Merienda-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body {
    overflow-x: hidden;
    background: var(--white);
    color: var(--black);
}

:root {
    --white: #fdfdfa;
    --black: #000;
    --primary: #c2093e;
    --blue: #205676;
    --font: "Merienda", serif;
}

.img {
    position: relative;
}

.img:hover img {
    /* transform: scale(1.1); */
    animation-name: elementor-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

@keyframes elementor-animation-wobble-horizontal {
    16.65% {
        transform: translateX(8px)
    }

    33.3% {
        transform: translateX(-6px)
    }

    49.95% {
        transform: translateX(4px)
    }

    66.6% {
        transform: translateX(-2px)
    }

    83.25% {
        transform: translateX(1px)
    }

    100% {
        transform: translateX(0)
    }
}

.dark-mode-toggle {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    display: inline-block;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    overflow: hidden;
    border-radius: 50%;
    /* border: .2rem solid var(--grey--dark); */
    position: fixed;
    right: 10px;
    top: 45%;
    background-color: #000;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 999;
}

.dark-mode-toggle:focus {
    outline: none;
    border-color: var(--primary);
}

:root[data-theme="dark"] .dark-mode-toggle__text:before {
    content: "deactivate ";
}

:root[data-theme="light"] .dark-mode-toggle__text:before {
    content: "activate ";
}

.dark-mode-toggle__icon {
    display: block;
    background: #fff;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    position: relative;
    transition: width 0.3s, height 0.3s;
    z-index: 1;
    transform: rotate(-20deg);
}

.dark-mode-toggle__icon:before {
    z-index: 0;
    content: "";
    position: absolute;
    display: block;
    border-right: none;
    border-radius: 50%;
    width: 2.4rem;
    height: 2.4rem;
    top: 50%;
    left: 50%;
    transition: opacity 0.3s, background-image 03s;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: spin__rays 4s linear infinite;
    background-image: linear-gradient(0deg,
            transparent 46%,
            #fff 46%,
            #fff 54%,
            transparent 54%),
        linear-gradient(90deg,
            transparent 46%,
            #fff 46%,
            #fff 54%,
            transparent 54%),
        linear-gradient(45deg,
            transparent 47%,
            #fff 47%,
            #fff 53%,
            transparent 53%),
        linear-gradient(135deg,
            transparent 47%,
            #fff 47%,
            #fff 53%,
            transparent 53%);
}

.dark-mode-toggle__icon:after {
    content: "";
    position: absolute;
    display: block;
    background: #000;
    border-radius: 0.7rem;
    width: 1.4rem;
    height: 1.4rem;
    top: 50%;
    left: 200%;
    transform: translateY(-50%);
    transition: left 0.3s;
}

/* .dark-mode-toggle:hover .dark-mode-toggle__icon {
    background: var(--primary);
} */


:root[data-theme="light"] .dark-mode-toggle__icon:after {
    left: 40%;
}

:root[data-theme="dark"] .dark-mode-toggle__icon {
    width: 1.3rem;
    height: 1.3rem;
}

:root[data-theme="dark"] .dark-mode-toggle__icon:before {
    opacity: 1;
}

@keyframes spin__rays {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

/* Hide only visually, but have it available for screenreaders */
.hidden--visually {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}





img {
    width: 100%;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
    font-family: var(--font);
}

ul {
    padding-left: 0;
}

a {
    text-decoration: none;
    transition: ease-in-out .5s;
    font-family: var(--font);
}

span {
    font-family: var(--font) !important;
}

p {
    font-size: 16px;
    line-height: 30px;
}


.img:hover img {
    /* transform: scale(1.1); */
    animation-name: elementor-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}




.top_contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
}

.contact-list-one {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    gap: 10px;
}

.contact-list-one li {
    position: relative;
    font-size: 14px;
    line-height: 25px;
    color: var(--white);
    font-weight: 400;
    padding-left: 30px;
    padding-right: 18px;
    border-right: 1px solid #6f6f6f
}

.contact-list-one li i {
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 20px;
    line-height: 30px;
    color: var(--white);
}

.contact-list-one li:last-child {
    border: none;
}

.contact-list-one li a {
    color: var(--white);
}

.contact-list-one li a:hover {
    color: var(--black);
}


.socal_media {
    display: flex;
    gap: 20px;
    justify-content: right;
}

.socal_media a {
    color: var(--white);
    font-size: 18px;
}

.nav_bar .nav_bar_nav {
    display: flex;
}


#myHeader.sticky {
    position: fixed;
    background-color: #000;
    width: 100%;
    top: 0;
    z-index: 9999;
    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_bar_n {
    border-radius: 0;
    box-shadow: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .top_1 {
    display: none;
}

#myHeader.sticky .logo {
    margin-top: 0;
}


.togal {
    background: #ffffff;
    width: 37px;
    height: 33px;
    cursor: pointer;
    display: none;
    order: 3;
}

.btn-icon {
    width: 100%;
    height: 31px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #ffffff;
}

.btn-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000000;
    transition: .35s ease-in-out;
}

.open .btn-icon span:nth-of-type(1) {
    transform: translateY(10px) rotate(315deg);
}

.open .btn-icon span:nth-of-type(2) {
    width: 0;
    left: 50%;
}

.open .btn-icon span:nth-of-type(3) {
    transform: translateY(-11px) rotate(-315deg);
    ;

}




.nav_bar_n {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 99;
    padding-left: 30px;
}

nav {
    background-color: #fff;
    position: relative;
}

nav::after {
    content: "";
    width: 12%;
    height: 101%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary);
    clip-path: polygon(0 0, 100% 0%, 50% 100%, 0% 100%);
    z-index: 9;

}

.nav_bar .nav_bar_nav li a {
    color: #000;
    padding: 15px 6px;
    transition: ease-in-out .3s;
}

.nav_bar .nav_bar_nav li {
    padding: 25px 15px;
}

.nav_bar_nav li {
    position: relative;
}

.nav_bar_nav li a:hover {
    color: var(--primary);
}

.nav_bar_nav .droupdown {
    position: absolute;
    background-color: #fff;
    width: 250px;
    top: 110%;
    visibility: hidden;
    opacity: 0;
    transition: ease-in-out .5s;
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 30%;
    color: #000;
    cursor: pointer;
}

.nav_bar_nav .droupdown li {
    padding: 0;
}

.nav_bar_nav li:hover .droupdown {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.nav_bar_nav .droupdown li a {
    display: block;
    padding: 10px 15px;
    transition: ease-in-out .5s;
    color: #000;
}

.nav_bar_nav .droupdown li a:hover {
    background-color: var(--primary);
    color: #fff;
}

.nav_bar_nav {
    margin-bottom: 0;
}

.logo img {
    padding: 2px 0px;
    width: 175px;
}


.slick-nav.next-arrow.slick-arrow {
    position: absolute;
    left: 1%;
    top: 45%;
    color: #fff;
    z-index: 9;
    border: 1px solid #fff;
    padding: 2px 8px;
    transform: rotate(45deg);
    cursor: pointer;
    transition: ease-in-out .5s;
}

.slick-nav.prev-arrow.slick-arrow i,
.slick-nav.next-arrow.slick-arrow i {
    transform: rotate(-45deg);
}

.slick-nav.prev-arrow.slick-arrow {
    position: absolute;
    right: 1%;
    top: 45%;
    color: #fff;
    z-index: 9;
    border: 1px solid #fff;
    padding: 2px 8px;
    transform: rotate(45deg);
    cursor: pointer;
    transition: ease-in-out .5s;
}

.slick-nav.prev-arrow.slick-arrow:hover,
.slick-nav.next-arrow.slick-arrow:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
}


.head_banner .slick-slide.slick-current.slick-active .small_line {
    animation: 1.5s linear 0s alternate headerline;
}

.head_banner .slick-slide.slick-current.slick-active .big_line {
    animation: 2s linear 0s alternate headerline;
}

.head_banner .slick-slide.slick-current.slick-active p {
    animation: 3s linear 0s alternate headerline;
    transition-delay: .2s;
}

.head_banner .slick-slide.slick-current.slick-active .all_btn {
    animation: 4s linear 0s alternate headerline;
    transition-delay: .2s;
}

.head_banner .slick-slide.slick-current.slick-active .img {
    animation: 4s linear 0s alternate headerimg;
    transition-delay: .2s;
}

@keyframes headerline {

    0%,
    25% {
        transform: translateY(-20%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes headerimg {

    0%,
    25% {
        transform: translateY(-20%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.head_btn img {
    width: 35px;
    border-radius: 50%;
}

.head_btn {
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}
.head_btn span{
   display: block; 
}

.head_btn a {
    color: #000;
}


.banner_item img {
    object-fit: cover;
}

.top_1 {
    background-color: var(--primary);
}

.main_banner {
    padding-left: 60px;
    position: relative;
    padding-bottom: 30px;
    padding-top: 10px;
}

.main_banner::after {
    content: "";
    width: 6%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary);
    z-index: -1;
}

ul.slick-dots {
    position: absolute;
    top: 45%;
    left: -30px;
}

.slick-dots li button {
    font-size: 0;
    padding: 5px;
    border: none;
    border-radius: 50%;
}

.slick-active button {
    background-color: var(--blue);
}

.hot_box {
    position: absolute;
    right: 5%;
    top: 35%;
    text-align: right;
    width: 50%;
}

.hot_box2 {
    position: absolute;
    top: 10%;
    text-align: center;
    width: 100%;
}

.hot_head {
    font-size: 30px;
    font-weight: 600;
    font-family: var(--font);
}

.margin {
    margin: 70px 0;
}

.ab_img {
    width: 45%;
    position: relative;
    float: left;
    padding-right: 30px;
}

.ab_home {
    display: flex;
}

.small_head {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font);
        display: block;
}

.big_head {
    font-size: 40px;
    font-family: var(--font);
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 15px;
        display: block;
}

.ab_text ul li {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 600;
    font-family: var(--font);
}

.pro_head {
    font-size: 20px;
    margin: 10px 0;
    font-weight: 600;
    display: block;
}

.pro_item {
    margin: 8px;
    text-align: left;
}

.pera {
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.pro_item a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.pro_item a i {
    margin-left: 5px;
}

.pro_item img {
    height: 350px;
    object-fit: cover;
}

.acc_box .big_head {
    font-size: 50px;
    margin-top: 20px;
}

.acc_box {
    padding-top: 140px;
    padding-left: 30px;
}

.all_btn {
    border: 1px solid var(--black);
    color: var(--black);
    padding: 12px 25px;
    font-size: 15px;
    position: relative;
    display: inline-block;
}

.all_btn i {
    margin-left: 5px;
}

.all_btn::after {
    content: "";
    width: 50%;
    height: 96%;
    position: absolute;
    right: -15px;
    top: 2.5%;
    background-color: #c2093e66;
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    width: 98%;
    right: 1%;
}

.all_btn span {
    position: relative;
    z-index: 2;
}

.accessories .img {
    padding: 20px 30px;
}

.accessories {
    position: relative;
}

.accessories::after {
    content: "";
    width: 100%;
    height: 55%;
    position: absolute;
    left: 0;
    top: 100px;
    background-color: #f2e9ee;
    z-index: -1;

}

.down_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);


}

.down_img {
    position: relative;
    text-align: center;
}

.down_banner {
    margin-bottom: 30px;
}

.season {
    font-size: 25px;
    color: var(--white);
}

.down_text p {
    color: var(--white);
    font-size: 17px;
}

.down_text .big_head {
    color: var(--white);
}

.client_item img {
    width: auto;
}



.contact {
    background-color: #222222;
    padding: 80px 0;
    position: relative;
}

.contact::after {
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #f2e9ee;
}

.contact::before {
    content: "";
    width: 30%;
    height: 80px;
    position: absolute;
    right: 0;
    top: -1px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 19% 100%);
}

.contact .big_head {
    color: #fff;
}



.form_btn .all_btn {
    border: none;
}

.contact input,
textarea,
select {
    width: 100%;
    padding: 13px 10px;
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
}

.contact form {
    padding-right: 13%;
}

.contact .input {
    border-radius: 1px 1px 1px 1px;
    background-color: #333333;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 10px;
    margin: 5px 0;
}

.contact .input select option {
    color: #000;
}

.contact .input i {
    color: var(--primary);
}

.form_img {
    position: absolute;
    z-index: 9;
    left: -10%;
}


.test_item {
    background-color: #191919;
    padding: 30px 50px;
    color: #fff;
    border-radius: 5px;
    margin: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.test_img {
    position: relative;
}

.test_img img {
    border-radius: 50%;
    width: 160px;
    height: 160px;
    border: 10px solid #6f6f6f;
}

.test_con {
    padding-left: 40px;
}

.name {
    font-size: 20px;
    color: var(--primary);
}

.test_con .star {
    width: 190px;
    margin-bottom: 8px;
}

.test_img i {
    color: var(--primary);
    font-size: 70px;
    position: absolute;
    top: 80%;
    left: 38%;
}


#counter {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#counter li {
    flex: 1;
    text-align: center;
    font-size: 50px;
}

.count_box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    gap: 10px;
    color: var(--primary);
}

.count_box span {
    font-weight: 900;
}

.counter {
    border-top: 1px solid #e5e5e5;
    padding-top: 60px;
}

.vs-icon {
    background-color: #9a563a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 95px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    transition: all ease 0.4s;
}








.choosing__information {
    background: var(--blue);
    padding: 38px 34px;
    margin-left: -115px;
    position: relative;
    z-index: 5;
  }
  
  .choosing__information ul li {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
  }
  
  .choosing__number {
    margin-right: 28px;
  }
  
  .choosing__number span {
    border: 1px solid #8f98a8;
    color: #ffffff;
    height: 60px;
    width: 60px;
    display: inline-block;
    text-align: center;
    line-height: 58px;
    border-radius: 50%;
    position: relative;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
  }
  
  .choosing__number span:before {
    position: absolute;
    content: "";
    width: 76px;
    height: 76px;
    border: 1px solid #8f98a8;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .choosing__text span {
    color: #fff;
    font-size: 20px;
    display:block;
  }
  
  .choosing__text p {
    color: #fff;
  }
  
  .subscribe {
    padding: 19px 29px;
    background: #ffffff;
    border-radius: 5px;
    position: absolute;
    bottom: 45px;
    left: -30px;
    box-shadow: 0px 10px 20px rgba(16, 0, 71, 0.1);
    width: 260px;
  }
  
  .subscribe>a {
    font-size: 22px;
    margin-right: 15px;
    color: #dc0f0f;
    display: inline-block;
    float: left;
    line-height: 1;
  }
  
  .subscribe__text {
    overflow: hidden;
  }
  
  .subscribe__text a {
    color: #000;
  }
  
  .subscribe__text p {
    font-size: 13px;
    color: #040021;
    line-height: 20px;
  }
  
  .choosing__img {
    position: relative;
  }





footer {
    background-color: #1f232f;
    padding-top: 60px;
}


.foot_logo img {
    width: 180px;
    margin-bottom: 15px;
}

.foot_logo {
    padding-bottom: 40px;
}

.foot_location ul li {
    color: #fff;
    display: flex;
    font-size: 16px;
    margin-bottom: 15px;
}

.foot_location ul li i {
    margin-right: 10px;
    font-size: 20px;
}

.foot_location ul li a {
    color: #fff;
}

.foot_line {
    border-right: 1px solid #555555;
    padding-right: 30px;
}

.foot_right {
    padding-left: 30px;
}

.foot_line .socal_media {
    display: flex;
    border-top: 1px solid #555555;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: left;
}

.foot_line .socal_media a {
    font-size: 25px;
}

.foor_locs {
    border-bottom: 1px solid #555555;
    padding-bottom: 15px;
}

.link_foot {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.foot_logo p {
    color: var(--white);
}

.foot_nav {
    display: flex;
    padding-top: 20px;
    flex-wrap: wrap;
}

.foot_nav li a {
    padding: 15px 10px;
}

.copy_right {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #555555;
}

.copy_right p {
    margin-bottom: 0;
    font-size: 14px;
}

.copy_right p a {
    color: #fff;
    text-decoration: underline !important;
}

.copyright-area {
  text-align: center;
  margin-top: 30px;
}

.copyright-area p {
  margin-bottom: 0;
  background-color: #c2093e;
  color: #fff;
  padding: 10px;
}

.copyright-area a {
  color: #fff;
  text-decoration: underline !important;
}




















.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.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: 45px;
    color: #fff;
}



@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.inner_header::after {
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.719) 32%, rgb(0 0 0 / 4%) 59%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header {
    position: relative;
}

.inner_header .inner_text {
    position: absolute;
    top: 45%;
    z-index: 99;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 40px;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.brade_crom {
    display: flex;
}

.brade_crom a {
    color: #fff;
}

.brade_crom span {
    color: #fff;
}

.inner_header img {
    height: 350px;
    object-fit: cover;
}

.main_img {
    width: 50%;
    padding-right: 40px;
    float: left;
}

.share-btn-box {
    margin-top: 10px;
}

.social-share ul {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.social-share ul li button {
    border: none;
    background-color: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
}

.experience {
    padding: 80px 0;
    position: relative;
}

.experience::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #0000009c;
}

.exp_box {
    background-color: #fff;
    width: 60%;
    margin: auto;
    text-align: center;
    padding: 40px 35px;
    position: relative;
    z-index: 9;
}

.exp_box p {
    color: #000;
}

.exp_box::after {
    content: "";
    width: 94%;
    height: 86%;
    position: absolute;
    left: 3%;
    top: 7%;
    border: 1px solid #e33b12;
}

button.slick-prev.slick-arrow {
    display: none !important;
}

button.slick-next.slick-arrow {
    display: none !important;
}

.marcket-plase {
    background-color: #f2e9ee;
    padding: 40px 0;
}


@media only screen and (max-width: 1200px) {
    nav::after {
        display: none;
    }

    .main_banner {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .nav_bar .nav_bar_nav li a {
        font-size: 15px;
    }

    .nav_bar .nav_bar_nav li {
        padding: 25px 10px;
    }

    .head_btn {
        display: none;
    }

    .main_banner {
        padding: 0;
    }

    .logo img {
        padding: 2px 0px;
        width: 150px;
    }

    .nav_bar_n {
        padding-left: 0;
    }

    .form_img {
        display: none;
    }

    .contact form {
        padding-right: 0%;
    }
}


@media only screen and (max-width: 991px) {
    .nav_bar .nav_bar_nav li a {
        font-size: 14px;
    }

    .nav_bar .nav_bar_nav li {
        padding: 25px 4px;
    }

    .manin_box {
        width: 60%;
        overflow: hidden;
    }

    .img_nav img {
        width: 159px;
    }

    .contact-list-one li:last-child {
        display: none;
    }

    .hot_head {
        font-size: 20px;
    }
}

@media only screen and (max-width: 950px) {
    .head_btn {
        display: none;
    }

    .big_head {
        font-size: 30px;
    }

    .acc_box .big_head {
        font-size: 30px;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 900px) {
    .togal {
        display: block;
    }

    nav {
        padding-right: 8px;
    }

    .nav_bar {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        width: 100%;
        display: none;
    }

    .nav_bar .nav_bar_nav {
        flex-direction: column;
    }

    .nav_bar .nav_bar_nav li {
        padding: 11px 5px;
        border-bottom: 1px solid #b1b1b1;
    }

    .clk_btn {
        top: 10px;
        width: 45px;
        text-align: center;
    }

    .nav_bar_nav .droupdown {
        position: revert;
        width: 100%;
        display: none;

    }

    .nav_bar_nav .droupdown li {
        padding: 3px 5px;
    }

    .nav_bar_n {
        padding: 8px 0px;
    }
}


@media only screen and (max-width: 767px) {
    .ab_img {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .acc_box {
        padding-top: 20px;
    }

    .contact::after {
        display: none;
    }

    .test_con {
        padding-left: 0;
        margin-top: 50px;
    }

    .hot_pro .img {
        margin: 10px 0;
    }

    .margin {
        margin: 40px 0;
    }

    .inner_hrad {
        font-size: 25px;
    }

    .inner_header img {
        height: 200px;
    }

    .main_img {
        width: 100%;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 600px) {
    .big_head {
        font-size: 25px;
    }

    .small_head {
        font-size: 16px;
    }

    .pro_item img {
        height: 100%;
    }

    .down_img img {
        height: 230px;
        object-fit: cover;
    }

    .foot_right {
        padding-left: 0;
    }

    .foot_right {
        padding: 0 10px;
    }

    .test_item {
        padding: 30px 20px;
    }

    .test_img img {
        width: 140px;
        height: 140px;
    }

    .test_img i {
        font-size: 50px;
    }

    #counter li {
        width: 50%;
        flex: none;
        font-size: 30px;
    }
    .choosing__img {
        margin-bottom: 20px;
    }
    .choosing__information{
        margin-left: 0;
        padding: 25px 14px;
    }
    .choosing__number span{
        height: 50px;
    width: 50px;
    line-height: 46px;
    }
    .choosing__number span:before{
        width: 65px;
        height: 65px;
    }

}

@media only screen and (max-width: 500px) {
    .hot_box {
        top: 10%;
        width: 60%;
    }

    .season {
        font-size: 20px;
    }

    .foot_logo {
        padding-bottom: 20px;
    }

    .foot_nav li a {
        padding: 6px 8px;
    }

    .foot_location ul li {
        font-size: 15px;
    }

    .down_text .big_head {
        font-size: 20px;
    }

    .down_text {
        left: 35%;
        top: 50%;
        transform: translate(-25%, -50%);
    }

    .margin {
        margin: 25px 0;
    }

    .big_head {
        font-size: 20px;
    }
}