* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #ea1b29;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Rubik", sans-serif;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

.img::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #fff;
    transition: 1s;

}


@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 {
    margin: 70px 0;
}


.logo img {
    width: 100px;
    position: relative;
    z-index: 9;
    background: #ffffff;
    border-radius: 5px;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 999;
    background-color: #fff;
}

.search i {
    margin-right: 5px;
}

.search a {
    color: var(--black);
    background: var(--white);
    padding: 10px;
    border-radius: 50%;
}

.search a i {
    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;
    background-color: #fff;
}

#myHeader.sticky nav {
    top: 0px;
    background-color: var(--white);
    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;
}



@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 2%;
    top: 32%;
    color: var(--black);
    cursor: pointer;
    font-size: 14px;
}

.nab_bar li a {
    color: var(--black);
    padding: 24px 30px;
    display: inline-block;
    font-size: 16px;
    border-right: 1px solid #e1e1e192;
}

.nab_bar li a:first-child {
    border-left: 1px solid #e1e1e192;
}

.nab_bar li {
    position: relative;
    z-index: 9;
}


nav {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 10;
}

.navbar_nav {
    padding: 0 10px;
}

nav::after {
    content: "";
    width: 25%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--bg_color);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 18% 100%);
}


nav .container {
    max-width: 1250px;
}

.main_banner {
    position: relative;
}


.droupdown {
    position: absolute;
    background-color: #000;
    border-top: 2px solid var(--bg_color);
    padding: 10px 0;
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 490px;
    overflow: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.droupdown li {
    padding: 0;
}

.droupdown li a {
    display: block;
    padding: 8px 15px;
    color: var(--white);
    font-size: 15px;
}

.droupdown li a:hover {
    background-color: var(--bg_color);
    color: var(--white);
}

.banner_text {
    color: var(--white);
    z-index: 99;
    position: relative;
    padding-left: 5%;
}

.head_item {
    padding-top: 5%;
    position: 9;
}

.head_item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000000c3;
    z-index: -1;
}

.head_item {
    background-size: cover;
    background-position: center center;
}

.nav_contact i {
    background-color: var(--bg_color);
    padding: 12px;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 5px;
    color: var(--white);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 9;
}

.header-contact a {
    color: var(--white);
}

.banner_pera {
    margin: 15px 0;
}

.ab_text ul li {
    list-style: unset !important;
}

.ab_text ul {
    padding-left: 14px;
}

/* 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;
}

.head_banner {
    background-size: cover;
    background-position: center center;
}

/* Search Style */

.top_head {
    background-color: var(--black);
    position: relative;
    position: relative;
    z-index: 9;
    border-bottom: 4px solid var(--bg_color);
}

.top_head::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 55%;
    height: 100%;
    z-index: -1;
    background-color: var(--bg_color);
    clip-path: polygon(0 0, 100% 0%, 94% 100%, 0% 100%);
}

.top_details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top_details ul {
    display: flex;
    margin-bottom: 0;
    gap: 5px 20px;
}

.socal_media {
    display: flex;
}

.top_details a,
.top_details i {
    color: var(--white);
    font-size: 14px;
}

.top_details li i {
    background-color: var(--bg_color);
    padding: 15px 8px;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 0% 100%);
}

.socal_media a {
    padding: 18px 20px;
    border-right: 1px solid #ffffff3a;
}

.socal_media a:first-child {
    border-left: 1px solid #ffffff3a;
}

.banner_head_1 {
    font-size: 60px;
    font-weight: 600;
}

.head_item .banner_img {
    margin-left: -50px;
    position: relative;
    z-index: 9;
}

.banner_line {
    height: 100px;
    background-color: var(--bg_color);
    clip-path: polygon(100% 0%, 100% 100%, 50% 100%, 0 100%, 0 0, 50% 90%);
}

.line_img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.all_btn {
    background-color: var(--bg_color);
    padding: 15px 25px;
    color: var(--white);
    display: inline-block;
    border-radius: 3px;
    position: relative;
    z-index: 9;
    border: none;
}

.all_btn i {
    margin-left: 10px;
}

.all_btn::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--black);
    z-index: -1;
    transition: ease-in-out .3s;
}

.all_btn:hover::after {
    height: 100%;
}

.ab_img {
    float: left;
    width: 50%;
    padding: 0 40px;
    position: relative;
    text-align: center;
}

.ab_img::after {
    content: "";
    width: 15px;
    height: 60%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--bg_color);
    border-radius: 10px;
}

.ab_img .img_2 {
    position: absolute;
    right: 10px;
    bottom: 10%;
    border: 6px solid var(--white);
    border-radius: 5px;
}

.small_head {
    display: block;
    color: var(--bg_color);
    font-size: 20px;
    text-transform: uppercase;
}

.big_head {
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pro_head {
    position: relative;
    padding-left: 100px;
    padding-top: 10px;
}

.pro_item {
    border: 1px solid #E5E5E5;
    padding: 10px;
    margin: 8px;
    height: 407px;
}

.pro_head .icon {
    background-color: var(--bg_color);
    position: absolute;
    padding: 15px 20px;
    color: var(--white);
    font-size: 30px;
    left: 15px;
    top: 0;
}

.pro_head a {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    display: block;
}

.pro_btn {
    background-color: #f3f4f7;
    margin-top: 30px;
    padding: 12px 15px;
    position: relative;
}

.pro_btn a {
    display: block;
    color: #00194c89;
}

.pro_btn span {
    position: absolute;
    right: 10px;
    top: 2px;
    font-size: 30px;
    font-weight: 600;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #00194c69;
    color: transparent;
}

.available {
    position: relative;
    color: var(--white);
    z-index: 99;
}

.available .main_head {
    padding: 50px 0 20px;
}

.available .small_head {
    color: var(--white);
}

.available::after {
    content: "";
    width: 90%;
    height: 95%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--bg_color);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

.available_img {
    position: relative;
    z-index: 9;
}

.available_img::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--black);
    z-index: -1;
    clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
}

.top_bar::after {
    content: "";
    width: 49px;
    height: 13px;
    position: absolute;
    left: 99%;
    top: 0;
    background-color: var(--black);
    z-index: -1;
    clip-path: polygon(0 0, 0 99%, 100% 100%);
}

.top_bar::before {
    content: "";
    width: 49px;
    height: 13px;
    position: absolute;
    right: 85%;
    top: 0;
    background-color: var(--black);
    z-index: -1;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

.video video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 800px;
}



.contact input,
select,
textarea {
    width: 100%;
    padding: 12px 20px;
    background-color: #f1f1f1;
    border: none;
    font-size: 15px;
    margin: 9px 0;
    border-radius: 5px;
}

.contact_detail li {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 18px;
}

.contact_detail li p {
    margin-bottom: 0;
}

.contact_detail li i {
    margin-right: 10px;
    background-color: var(--bg_color);
    color: var(--white);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50px;
}

.contact_detail li a {
    color: var(--black);
}

.contact_detail img {
    width: 80%;
}

.contact_detail {
    padding-left: 30px;
}

.count-area-content .img {
    position: relative;
}

.count-area-content .img::after {
    width: 65px;
    height: 65px;
    position: absolute;
    left: 17%;
    top: 0;
    background-color: transparent;
    border: 1px solid var(--bg_color);
    border-radius: 50%;
    z-index: -1;
}

.count-area-content .img img {
    width: 70px;
}

.coount_num {
    font-size: 50px;
    font-weight: 600;
}

.contact form {
    background-color: #6f070e;
    padding: 40px 40px;
    border-radius: 8px;
    color: var(--white);
}



.testimoinal {
    position: relative;
    color: var(--white);
}

.cs_testimonial_1_thumb {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 44%;
    background-size: cover;
    background-position: left center;
}

.test_box {
    padding: 100px 0;
}

.stars {
    width: 100px;
    margin-bottom: 10px;
}

.test_item p {
    font-style: italic;
}

.name_box .name {
    display: block;
    font-size: 23px;
    font-weight: 600;
    color: var(--bg_color);
}

.name_box img {
    border-radius: 50%;
    border: 2px solid var(--bg_color);
    width: 70px;
}

.test_box li button {
    background-color: var(--white);
}

.cs_testimonial_1_quote_wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    width: 120px;
    left: -40px;
    border: 3px solid var(--bg_color);
    border-radius: 50%;
    padding: 7px;
}

.cs_testimonial_1_quot {
    background-color: var(--bg_color);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cs_testimonial_1_quot i {
    font-size: 50px;
}








.field {
    display: flex;
    gap: 0 20px;
}

.sns-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: none;
    transition-duration: 0.5s;
    transform: rotateX(45deg);
    box-shadow: 0px 10px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.sns-btn--twitter {
    background-color: #1da1f2;
}

.sns-btn--facebook {
    background-color: #3b5998;
}

.sns-btn--instagram {
    background-color: #dd2b75;
}

.sns-btn--whatsapp {
    background-color: #25d366;
}

.sns-btn:hover {
    transform: scale(1.2);
    box-shadow: none;
}

.sns-btn__icon {
    font-size: 33px;
    letter-spacing: 0.1em;
    color: #fff;
}


.what_item {
    background-color: #f5f7f9;
    padding: 20px;
    border-radius: 5px;
}

.what_item img {
    width: 70px;
}

.what_item span {
    display: block;
    font-size: 19px;
    margin: 10px 0;
    font-weight: 600;
}

.what_we .main_head {
    padding-right: 100px;
}

.offer-thumb {
    margin-left: -100px;
    position: relative;
    z-index: -1;
}

.offer-thumb img {
    width: 100%;
}

.offer-thumb img {
    height: 100%;
    object-fit: cover;
}

.offer-thumb {
    height: 100%;
}

.what_item:hover {
    background-color: var(--bg_color);
    color: var(--white);
    transition: ease-in-out .5s;
}

.what_we p {
    font-size: 14px;
}





footer {
    background-color: #090d25;
    padding-top: 60px;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
}

footer .row {
    align-items: center;
}

.foot_logo img {
    width: 120px;
    border-radius: 5px;
    padding: 5px;
    background-color: var(--white);
}

.foot_logo {
    border-right: 1px solid #494949;
}

.foot_nav ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

.foot_nav ul li a {
    color: var(--white);
    padding: 10px 12px;
    font-size: 14px;
    display: block;
}

.foot_nav ul li a:hover {
    color: var(--bg_color);
}

.foot_cont ul li a {
    color: var(--white);
}

.foot_cont ul li a:hover {
    color: var(--bg_color);
}

.foot_cont ul li {
    margin: 15px 0;
    font-size: 14px;
}

.foot_cont ul li i {
    margin-right: 8px;
    color: var(--bg_color);
}

footer .socal_media {
    width: 100%;
}

.foot_pro {
    padding: 40px 0 30px;
    border-top: 1px solid #494949;
}

.foot_pro ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.foot_pro ul li a {
    color: var(--white);
    font-size: 14px;
}

.foot_pro ul li a:hover {
    color: var(--bg_color);
}

.foot_bg {
    position: absolute;
    bottom: 0;
    opacity: .7;
}

.copyright_area {
    margin-top: 30px;
    background-color: var(--bg_color);
    position: relative;
    z-index: 9;
}

.copyright_area p {
    margin-bottom: 0;
    color: var(--white);
    padding: 10px;
    font-size: 15px;
}

.copyright_area p a {
    color: var(--white);
    text-decoration: underline !important;
}

.foot_text {
    padding: 30px 0;
    border-top: 1px solid #494949;
    position: relative;
    z-index: 9;
}

.foot_text p {
    color: var(--white);
    font-size: 14px;
}













.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    margin-left: -5px;
    margin-top: -5px;
    border-radius: 50%;
    border: 2px solid var(--bg_color);
    transition: 0.3s;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000;
}

.cursor2 {
    position: fixed;
    width: 5px;
    height: 5px;
    margin-left: -5px;
    margin-top: -5px;
    border-radius: 50%;
    background-color: var(--bg_color);
    transform: translate(-50%, -50%);
    transition: 0.1s;
    pointer-events: none;
    z-index: 1000;
}

.grow,
.grow-small {
    transform: scale(3);
    background: white;
    mix-blend-mode: difference;
    border: none;
}

.grow-small {
    transform: scale(2);
}



.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: #000000d2;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 60%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 30px;
    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;
    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) {
    .banner_head_1 {
        font-size: 50px;
    }
}


@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;
        position: relative;
        z-index: 9;

    }

    .toggle>* {
        width: 80%;
        height: 3px;
        background: var(--white);
        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(--bg_color);
        height: 300px !important;
        overflow: auto;
    }

    .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: 22px;
    }

    .inner_header img {
        height: 250px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 65%;
    }
}

@media only screen and (max-width: 767px) {
    .banner_head_1 {
        font-size: 40px;
    }

    .head_item {
        padding-top: 19%;
        position: 9;
    }

    .banner_text {
        padding-left: 5%;
    }

    .ab_img {
        width: 100%;
        margin-bottom: 20px;
    }

    .video video {
        height: auto;
    }

    .available::after {
        width: 100%;
    }

    .count-area-content {
        margin-bottom: 20px;
    }

    .cs_testimonial_1_thumb {
        display: none;
    }

    .what_we .main_head {
        padding-right: 0px;
    }

    .offer-thumb {
        margin-left: 0;
    }

    .top_details ul {
        display: none;
    }

    .socal_media a {
        padding: 8px 16px;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
    }
}

@media only screen and (max-width: 600px) {
    .big_head {
        font-size: 25px;
    }

    .small_head {
        font-size: 16px;
    }

    .margin {
        margin: 30px 0;
    }

    .coount_num {
        font-size: 30px;
    }

    .count-area-content .img img {
        width: 50px;
    }

    .test_box {
        padding: 50px 0;
    }

    .top_bar::after {
        display: none;
    }

    .head_item {
        padding-top: 26%;
    }

    .banner_head_1 {
        font-size: 30px;
    }

    .head_item .banner_img {
        margin-left: 0;
    }

    .line_img {
        width: 50%;
    }

    .ab_img .img_2 {
        width: 38%;
    }

    .contact_detail {
        padding-left: 0px;
    }
}

@media only screen and (max-width: 500px) {
    .head_item {
        padding-top: 28%;
    }

    .header-contact {
        display: none;
    }

    .logo img {
        width: 75px;
    }

    .top_head::after {
        width: 65%;
    }

    .banner_line {
        height: 30px;
    }
}