* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #f9ca10;
    --white: #fff;
    --black: #000;
}

body {
    overflow-x: hidden;
    font-family: "Outfit", sans-serif;
    position: relative;
    overflow-x: hidden;
 
}
.main_body_home{
      background-color: var(--black);
    color: #fff;
}
img {
    width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.discount {
    background-color: var(--bg_color);
    color: var(--white);
    font-size: 15px;
}

.margin {
    margin: 60px 0;
}

.top_call a {
    color: var(--white);
    font-weight: bold;
}

.head_text {
    top: 15%;
    left: 5%;
}



.main_banner {
    width: 65%;
}

.logo img {
    width: 100px;
    position: relative;
    z-index: 9;
}


.search i {
    margin-right: 5px;
}

.search a {
    color: var(--white);
}

.nab_bar {
    display: flex;
    justify-content: center;
}

.navbar_n {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    z-index: 5;
    padding: 7px 10px;
    border-radius: 8px;
    justify-content: space-between;
    z-index: 999;
}

#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: var(--black);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#myHeader.sticky .head_bg {
    display: none;
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 19px;
    color: var(--white);
    cursor: pointer;
    font-size: 13px;
}

.nab_bar li a {
    color: var(--white);
    padding: 15px 15px;
    display: inline-block;
}

.nab_bar li {
    position: relative;
}

.droupdown {
    position: absolute;
    background-color: var(--black);
    left: 0;
    top: 60px;
    width: 290px;
    display: none;
    max-height: 300px;
    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;
}

.droupdown li a:hover {
    background-color: var(--white);
    color: var(--black);
}

.head_item {
    position: relative;
}

header img {
    border-radius: 8px;
}

.head_text {
    position: absolute;
}

.banner_bid_head {
    font-size: 45px;
    color: var(--white);
    font-weight: 900;
    margin-bottom: 10px;
}

.banner_small_head {
    color: var(--white);
    font-size: 20px;
}

.split_slideshow .slick-slide.slick-current.slick-active .main_small_head {
    animation: 1.5s linear 0s alternate headerline;
}

.split_slideshow .slick-slide.slick-current.slick-active .main_head {
    animation: 2s linear 0s alternate headerline;
}

.split_slideshow .slick-slide.slick-current.slick-active p {
    animation: 3s linear 0s alternate headerline;
    transition-delay: .2s;
}

.split_slideshow .slick-slide.slick-current.slick-active .banner_btn {
    animation: 4s linear 0s alternate headerline;
    transition-delay: .2s;
}

.split_slideshow .banner-slider .slick-slide.slick-current.slick-active img {
    animation: 2s linear 0s alternate headerline;
}

@keyframes headerlineimg {

    0%,
    25% {
        transform: translateX(50%);
        opacity: 0;
    }

    75%,
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes headerline {

    0%,
    25% {
        transform: scale(50%);
    }

    75%,
    100% {
        transform: scale(100%);
    }
}

.head_text {
    width: 55%;
}


.nab_bar_nab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 1px solid var(--white);
}

.nab_bar_nab::after {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    right: 100%;
    bottom: -3px;
    border-radius: 50%;
    background-color: var(--white);
}

.nab_bar_nab::before {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    left: 100%;
    bottom: -3px;
    border-radius: 50%;
    background-color: var(--white);
}

/* 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 */
.logo_head {
    position: absolute;
    z-index: 99;
    width: 100%;
}


.socal_media a {
    padding: 0px 9px;
    color: var(--white);
    border-radius: 5px;
    font-size: 13px;
}


.slideshow .slick-nav.next-arrow.slick-arrow {
    left: 0;
    right: auto;
}

.slideshow .slick-nav.prev-arrow.slick-arrow {
    right: 0;
    left: auto;
}


.head_num {
    text-align: right;
}


.main_head {
    font-size: 50px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 5px;
    display: block;
    margin: 15px 0;
}


.banner_img {
    position: relative;
    z-index: 9;
}

.banner_text {
    position: relative;
    z-index: 9;
}

.banner_text p {
    font-size: 18px;
    color: var(--bg_color);
}

.split_slideshow {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    position: relative;
    padding: 10% 0 2%;
    background-size: cover;
}

.banner-slider .banner_img img {
    width: auto;
    margin: auto;
}

.slider-nav img {
    width: 70px;
    border: 1px solid #3c3c3c;
    cursor: pointer;
}

.slider-nav {
    position: absolute;
    left: 2%;
    top: 40%;
    z-index: 99;
}

.slider-nav .slick-list {
    overflow: visible;
}

.slider-nav .slick-slide {
    float: none;
    margin: 8px 0;
}

.bg_ight {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
}

.banner_form {
    text-align: left;
    position: relative;
    z-index: 9;
    margin-top: 70px;
}

.banner_form input {
    width: 100%;
    padding: 7px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.banner_form label {
    margin-bottom: 5px;
}

.b_form_bg {
    background-color: #00000052;
    padding: 30px;
    border: 1px solid #8d8d8d;
    border-radius: 5px;
}

.banner_btn {
    text-align: center;
}

.banner_btn .all_btn {
    border: 1px solid #9a9a9a;
    color: var(--white);
    position: relative;
    padding: 15px 70px 15px 25px;
    font-size: 15px;
}

.all_btn {
    border: 1px solid #9a9a9a;
    color: var(--white);
    position: relative;
    padding: 15px 70px 15px 25px;
    font-size: 15px;
}

.all_btn span {
    width: 50%;
    height: 1px;
    position: absolute;
    left: 70%;
    top: 50%;
    background-color: #9a9a9a;
    transition: ease-in-out .5s;
}

.all_btn span::before {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    border-radius: 50%;
    left: 100%;
    top: -2px;
    background-color: #9a9a9a;
}

.all_btn:hover span {
    left: 100%;
    width: 25%;
}

.all_btn:hover {
    padding: 15px 25px 15px 25px;
}

.card_box {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.card_line {
    width: 80px;
    margin: 10px 0;
}

.card_item {
    background-color: #1818187f;
    padding: 30px;
    border: 1px solid #515151;
    border-radius: 5px;
    color: var(--white);
    box-shadow: rgba(123, 123, 123, 0.516) 0px 3px 8px;
    text-align: left;
}

.card_item span {
    display: block;
    font-size: 20px;
    color: var(--bg_color);
    margin: 8px 0
}

.ab_img {
    width: 45%;
    float: left;
    padding-right: 30px;
}

.padding {
    padding: 70px 0;
}

.ab_home {
    display: flex;
    background: #fff;
}

.ab_text {
    color: #000;
}
.ab_text .big_head{
    color:#000;
}

.small_head {
    display: block;
    font-size: 20px;
    color: var(--bg_color);
}

.big_head {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: var(--white);
}


.products {
    border: 1px solid #515151;
    margin: 50px 0;
    background-size: cover;
    background: #000;
}

.pro_left_bg {
    position: relative;
    text-align: center;
}

.pro_left_img {
    padding: 15% 6%;
    position: absolute;
    top: 0;
}

.pro_left_img img {
    width: 200px;
    margin: auto;
}

.pro_left_head {
    display: block;
    text-align: left;
    font-size: 35px;
    font-weight: 900;
    margin: 10px 0;
    color: var(--black);
}

.pro_left_img p {
    text-align: left;
    color: var(--black);
}

.pro_left_bg::after {
    content: "";
    position: absolute;
    left: 83%;
    bottom: 100%;
    width: 26px;
    height: 29px;
    background-color: var(--bg_color);
    clip-path: polygon(0 0, 12% 0, 100% 100%, 0% 100%);
}

.pro_left_bg::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 85%;
    height: 29px;
    background-color: var(--bg_color);
    clip-path: polygon(0 0, 98% 0, 100% 100%, 0% 100%);
}

.pro_box {
    padding: 40px 0;
}

.pro_item {
    background-color: #1818187f;
    padding: 30px;
    border: 1px solid #515151;
    color: var(--white);
    text-align: center;
    box-shadow: rgba(123, 123, 123, 0.516) 0px 3px 8px;
    min-height: 330px;
}
.why_pera{
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.pro_item img {
    width: 180px;
    height: 200px;
    object-fit: contain;
    margin: auto;
    margin-bottom: 10px;
}
.why_pera span{
    color:#fff !important;
}

.pro_item {
    margin: 8px;
}

.pro_head {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 30px;
}



.why_we {
    background-position: center;
}

.swiper-slide img {
    height: 300px;
    max-width: 100%;
    object-fit: cover;
}

.why_we {
    color: var(--white);
}

.why_item {
    background-color: #1818187f;
    color: var(--white);
    box-shadow: rgba(123, 123, 123, 0.516) 0px 3px 8px;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0006);
}


.swiper-slide {
    background-position: center;
    background-size: cover;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0006);
}

.details {
    text-align: right;
    display: block;
    font-size: 14px;
}

.why_item hr {
    margin: 8px 0;
}

.details_head {
    font-size: 23px;
    margin: 10px 0 20px;
    display: block;
}

.num_why {
    font-size: 25px;
}

.why_item .why_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.item_text {
    position: relative;
    z-index: 9;
    padding: 30px;
    background-color: #000000b6;
    border: 1px solid #515151;
}

.swiper-slide img {
    display: none;
}

.swiper-slide:nth-child(4) img {
    display: block;
}

.swiper-slide:nth-child(4) .item_text {
    background-color: #00000080;
}

.swiper-slide {
    margin-bottom: 5px;
}

.why_pera p {
    font-size: 14px;
}

.client_item {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.client_item .img {
    padding: 50px 30px;
    border: .5px solid #7c7c7cd0;
    width: 24%;
}

.client {
    color: var(--black);
    background-color: #fff;
    background-size: cover;
}
.client .big_head{
    color:#000;
}
.european {
    color: var(--white);
}

.eur_banner {
    padding: 30px 30px;
    border-radius: 10px;
    border: .5px solid #7c7c7cd0;
    background-size: cover;
    background-position: center;
}

.european .container-fluid {
    padding: 0 3%;
}

.eur_text {
    width: 60%;
}

.european {
    margin: 50px 0;
}

.testmonial {
    margin: 60px 0;
}

.test_itam {
    background-size: cover;
    padding: 0 30px 30px;
    background-position: center center;
    background-color: #f9cc06;
    border-radius: 10px;
    margin: 8px;
    margin-top: 60px;
    margin-bottom: 50px;
    position: relative;
    border: 1px solid #7c7c7cd0;
    color:#000;
}

.test_itam::after {
    content: "";
    width: 30px;
    height: 40px;
    position: absolute;
    right: 10%;
    top: 100%;
    background-color: #f9cc06;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
    border: 1px solid #f9cc06;

}

.test_itam i {
    font-size: 20px;
}

.name {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.dagination {
    display: block;
    font-size: 15px;
}

.testmonial {
    color: var(--white);
}

.test_box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: auto;
    margin-top: -60px;
    margin-bottom: 20px;
    border: 2px solid #7c7c7cd0;
}

.test_box {
    text-align: center;
    /* background-color: var(--bg_color); */
    border-radius: 20px;
    position: relative;
}

.testmonial {
    background-repeat: no-repeat;
    background-size: cover;
}

.test_bg {
    background-color: #181818ce;
    padding: 30px;
    border: 1px solid #515151;
    box-shadow: rgba(123, 123, 123, 0.516) 0px 3px 8px;
}

.test_bg {
    background-size: cover;
    background-repeat: no-repeat;
}



.contact {
    padding: 50px 0;
    background-size: cover;
    background-color: #fff;
}
.contact .big_head{
    color:#000;
}

.contact input,
textarea,
select {
    width: 100%;
    color: var(--black);
    line-height: 26px;
    padding: 10px 20px;
    font-size: 14px;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.20);
    margin: 10px 0;
    outline: none;
    border-radius: 5px;
}

.con_line {
    border: 1px solid rgba(255, 255, 255, 0.20);
    padding: 40px 30px;
    background-color: #000;
}

.column-inner {
    position: relative;
    padding: 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-align: left;
}

.fc-list-style-three li {
    position: relative;
    color: #fff;
    font-size: 14px;
    padding-left: 55px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.6em;
    transition: all 0.3sease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3sease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.fc-list-style-three li strong {
    display: block;
}

.fc-list-style-three li .icon {
    position: absolute;
    left: 0px;
    top: 6px;
    font-size: 20px;
    color: var(--bg-orange);
    line-height: 1em;
}

.fc-list-style-three li a {
    position: relative;
    color: #fff;
    transition: all 0.3s ease;
    word-break: break-all;
}

.head_icon a {
    color: #fff;
    padding: 0px 5px;
    border-radius: 50%;
}

button {
    background-color: transparent;
    transition: ease-in-out .5s;
}


footer {
    background-position: bottom;
    padding-top: 50px;
    background-size: cover;
        background: #000;
}

.foot_head {
    font-size: 25px;
    color: var(--bg_color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.foot_nav ul li a {
    color: #fff;
    display: block;
    margin: 12px 0;
    font-size: 15px;
}

.foot_nav ul {
    max-height: 250px;
    overflow: auto;
}

.foot_nav ul li a:hover {
    color: var(--bg_color);
}

.foot_logo img {
    width: 120px;
}

footer p {
    color: #fff;
    font-size: 14px;
}



/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--bg_color);
    border-radius: 10px;
}


.copyright {
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid #383838;
}

.copyright p {
    margin-bottom: 0;
    padding: 10px;
    color: #fff;
}

.copyright p a {
    color: #fff;
    text-decoration: underline !important;
}

footer .column-inner {
    padding-top: 0;
}













.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: var(--bg_color);
    color: #00;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.social-share button:hover {
    background-color: #000;
}

.share-btn-box {
    margin-top: 20px;
}

.share-btn {
    font-weight: bold;
    color: #fff;
}

.inner_header {
    position: relative;
}

.inner_header img {
    height: 450px;
    object-fit: cover;
}

.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 .inner_text {
    position: absolute;
    top: 60%;
    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;
}

.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;
}
.marcket-plase .all_btn{
    color:#000;
    border: 1px solid #000000;
}
.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) {
    .ab_img {
        width: 58%;
        padding-right: 30px;
    }
}



@media only screen and (max-width: 991px) {
    .toggle {
        visibility: visible;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
    }

    .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 #818181;
    }

    .nab_bar li a {
        color: #000;
    }

    .droupdown {
        position: revert;
        width: 100%;
    }

    .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;
    }

    .navbar_n {
        order: 3;
    }
}


@media only screen and (max-width: 767px) {
    .main_head {
        font-size: 33px;
    }

    .split_slideshow {
        padding: 17% 0 2%;
    }

    .b_form_bg {
        margin-bottom: 10px;
    }

    .banner_form input {
        margin: 8px 0;
    }

    .ab_img {
        width: 100%;
        padding-right: 0px;
    }

    .client_item {
        margin-bottom: 15px;
    }

    .inner_header img {
        height: 350px;
    }

    .inner_hrad {
        font-size: 24px;
    }

}

@media only screen and (max-width: 650px) {
    .big_head {
        font-size: 27px;
    }

    .small_head {
        font-size: 18px;
    }

    .pro_left_head {
        font-size: 27px;
    }
}

@media only screen and (max-width: 600px) {
    .slider-nav {
        position: revert;
    }

    .slider-nav .slick-slide {
        float: left;
        margin: 8px 0;
    }

    .slider-nav img {
        margin: auto;
    }

    .split_slideshow {
        padding: 26% 0 2%;
    }

    .client_item .img {
        width: 49%;
    }

    .eur_text {
        width: 90%;
    }

    .banner_text p {
        font-size: 15px;
    }

    .padding {
        padding: 25px 0;
    }
}


@media only screen and (max-width: 500px) {
    .con_line {
        padding: 0px;
    }

    .contact form {
        margin-bottom: 10px;
    }

    .banner-slider .banner_img img {
        width: 100%;
    }

    .main_head {
        font-size: 25px;
    }
}