* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

:root {
    --bg_color: #00004d;
    --bg_color-2: #7b99aa;
    --white: #fff;
    --black: #000;
}

body {
    font-family: "Noto Sans", sans-serif;
    position: relative;
    overflow-x: hidden;
}

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;

}

.img:hover::after {
    animation: mymove 1s;
    left: 0;
}

@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.margin {
    margin: 70px 0;
}

.logo img {
    width: 180px;
    position: relative;
    z-index: 9;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 99;
}

.search i {
    margin-right: 5px;
}

.search a {
    color: var(--black);
}

.nab_bar {
    display: flex;
    justify-content: center;
}

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}


#myHeader.sticky .top_head {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 30%;
    color: var(--black);
    cursor: pointer;
}

.nab_bar li a {
    color: var(--black);
    padding: 28px 20px;
    display: inline-block;
}

.nab_bar li {
    position: relative;
}


nav {
    position: relative;
    background-color: var(--white);
}

nav::after {
    content: "";
    width: 24%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #191919;
    clip-path: polygon(9% 0%, 100% 0%, 100% 100%, 0% 100%);
}

nav::before {
    content: "";
    width: 24.9%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000;
    clip-path: polygon(9% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.droupdown {
    position: absolute;
    background-color: var(--white);
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 450px;
    overflow: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.droupdown li {
    padding: 0;
}

.droupdown li a {
    display: block;
    padding: 10px 15px;
    color: var(--black);
}

.droupdown li a:hover {
    background-color: var(--bg_color);
    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 */

.top_head {
    background-color: var(--black);
    padding: 12px 0;
    position: relative;
}

.ab_text li {
    list-style: disc;
}
.ab_text  ul {
    padding-left:18px;
}

.socal_media {
    display: flex;
    gap: 10px;
    color: var(--black);
    align-items: center;
    position: relative;
    z-index: 99;
}

.socal_media a {
    border-radius: 50%;
    color: var(--white);
    padding: 5px 10px;
}

.socal_media span {
    font-weight: 600;
    color: #888888;
    font-size: 16px;
}

.socal_media span i {
    margin-right: 5px;
}

.top_details ul {
    display: flex;
    justify-content: end;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 20px;
}

.top_details ul li a {
    color: #888888;
    font-weight: 600;
    font-size: 15px;
}

.top_details ul li a i {
    margin-right: 5px;
}

header {
    position: relative;
    padding-right: 5%;
    background-color: var(--black);
}

.top_search {
    position: relative;
    z-index: 9;
}

.header-contact {
    position: relative;
    z-index: 9;
}

.header-contact a {
    color: var(--white);
}

.header-contact i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    font-size: 15px;
    text-align: center;
    color: var(--bg_color);
    background-color: var(--white);
    margin-right: 5px;
}

.hero-social {
    position: absolute;
    right: -30px;
    top: 50%;
    z-index: 9;
    display: flex;
    align-items: center;
    transform: rotate(-90deg);
    margin-bottom: 0;
}

.hero-social li {
    transform: rotate(90deg);
    margin-inline-start: 20px;
}

.hero-social li a {
    color: #888888;
}

.hero-social:before {
    position: absolute;
    top: 13px;
    left: -100px;
    width: 85px;
    height: 1px;
    background-color: #888888;
    content: "";
}

.hero-social:after {
    position: absolute;
    bottom: 13px;
    right: -115px;
    width: 85px;
    height: 1px;
    background-color: #888888;
    content: "";
}


.ab_img {
    float: left;
    width: 48%;
    margin-right: 50px;
    position: relative;
    padding-right: 9%;
}

.img_1 img {
    width: 100%;
}

.img_2 img {
    border: 6px solid var(--white);
}

.ab_img::after {
    content: "";
    width: 40%;
    height: 70%;
    position: absolute;
    right: 10%;
    top: 5%;
    border: 9px solid var(--bg_color);
    z-index: -1;
}

.ab_img .img_2 {
    position: absolute;
    right: 0;
    top: 39%;
}

.small_head {
    font-size: 20px;
    display: block;
    font-weight: 700;
    color: var(--bg_color);
}

.big_head {
    font-size: 40px;
    font-weight: 700;
    display: block;
}

.working-area {
    background-color: var(--bg_color);
    display: inline-block;
    padding: 25px 16px;
    text-align: center;
    position: absolute;
    top: 86px;
    left: -50px;
    color: var(--white);
}

.working-area .inner {
    position: relative;
}

.working-area .inner .icon-box i {
    font-size: 45px;
    margin-bottom: 10px;
}

.working-area .inner p {
    margin-bottom: 0;
}

.working-area .inner .icon-box .count {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 600;
}

.working-area:before {
    content: "";
    position: absolute;
    top: 99.1%;
    left: 0px;
    width: 50px;
    height: 30px;
    background: var(--bg_color);
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 48% 47%, 0 0);
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}



@keyframes float-bob-y {
    0% {
        transform: translateY(-30px)
    }

    50% {
        transform: translateY(-10px)
    }

    to {
        transform: translateY(-30px)
    }
}


.product {
    padding-top: 100px;
    padding-left: 7%;
    position: relative;
    color: var(--white);
}

.product::after {
    content: "";
    width: 100%;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--black);
    z-index: -1;
}


.pro_item {
    position: relative;
    margin: 10px;
    padding-bottom:20px;
}


.pro_head {
      position: absolute;
    bottom: 0;
    padding: 12px;
    color: var(--white);
    font-size: 18px;
    background: #00004d;
}

.line-area span {
    position: absolute;
    content: "";
    width: 1px;
    height: 75%;
    top: 0;
    left: 26%;
    background-color: #3c3c3c;
    z-index: 1;
}

.line-area span:nth-child(2) {
    left: 53%;
}

.line-area span:nth-child(3) {
    left: 78%;
}

.product_slider {
    z-index: 9;
}

.product .small_head {
    color: var(--white);
}

.product p {
    position: relative;
    z-index: 9;
}

.production_item {
    position: relative;
    padding: 20px;
    min-height: 323px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.production_item img {
    width: 80px;
}

.production_head {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.production_item::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--bg_color);
    transition: ease-in-out .5s;
    z-index: -1;
}

.production_item:hover::after {
    width: 100%;
}

.production_item:hover {
    color: var(--white);
}

.production .col-lg-3:first-child .production_item {
    background-color: var(--bg_color);
    color: var(--white);
}

.count_bg {
    background-color: #0000006f;
    padding: 100px 0;
    color: var(--white);
}

.counter {
    background-position: center;
}

.count-area-content {
    color: var(--white);
}

.num_item {
    font-size: 35px;
    font-weight: 700;
    margin: 15px 0;
}



.video__play-btn {
    padding-bottom: 70px;
}

.video__play-btn a {
    border-radius: 50%;
    display: inline-block;
    line-height: 86px;
    text-align: center;
    height: 75px;
    width: 75px;
    background-color: var(--white);
    position: relative;
}

.video__play-btn a i {
    margin-left: 5px;
    font-size: 30px;
    color: var(--bg_color);
    position: relative;
    z-index: 1;
}

.video__play-btn a::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: scale(1.3);
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.408);
    animation: borderanimate2 2s linear infinite;
}

.video__play-btn a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: scale(1.3);
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.408);
    animation: borderanimate2 2.5s linear infinite;
}

@keyframes borderanimate2 {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
    }

    60% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.you_bg {
    background-color: #081e41b3;
    padding: 100px 10px;
    color: var(--white);
}

.you_tube .row {
    border-radius: 15px;
    overflow: hidden;
}

.you_bg .big_head {
    margin-bottom: 15px;
}






.percentage {
    padding: 20px 0;
    opacity: 0;
}

.animation {
    height: 6px;
    background: #eeeeee;
    border-radius: 8px;
    overflow: hidden;
}

.animation-bar {
    height: 6px;
    width: 0;
    background: var(--bg_color);
    position: relative;
    -webkit-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}

.show {
    opacity: 1;
    animation: come-in 0.8s ease forwards;
}


@keyframes come-in {
    to {
        transform: translateY(0px);
    }
}

.p98 {
    width: 98%;
}

.p80 {
    width: 80%;
}

.p90 {
    width: 90%;
}

.p95 {
    width: 95%;
}

.p70 {
    width: 70%;
}

.p68 {
    width: 68%;
}

.p73 {
    width: 73%;
}

.p62 {
    width: 62%;
}

.percentage .label {
    text-align: right;
    color: var(--black);
    float: inline-end;
}

.expert {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.work_img {
    display: flex;
    gap: 20px;
}


.work_img img {
    height: 350px;
    border: 1px solid #000;
    padding: 5px;
}

.w_img_2 {
    margin-top: 120px;
}

.test_item {
    text-align: left;
    position: relative;
    margin: 10px;
}

.test_text i {
    font-size: 50px;
    color: var(--bg_color);
    margin-bottom: 10px;
}

.test_slider {
    padding: 0 4%;
}

.test_img {
    padding-right: 30px;
    position: relative;
}

.name {
    display: block;
    font-size: 19px;
    font-weight: 700;
}

.degination {
    display: block;
}

.test_img:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #8888884d;
}

.test_img:after {
    position: absolute;
    content: "";
    top: 43%;
    right: 0px;
    width: 22px;
    height: 55px;
    background-color: #fff;
    border-bottom: 1px solid #8888884d;
    border-left: 1px solid #8888884d;
    border-top: 1px solid #8888884d;
}

.test_text {
    padding-left: 15px;
}

.contact form input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #e9e9e9;
    outline: none;
    border-radius: 3px;
}

.contact form {
    border: 1px solid #e9e9e9;
    padding: 40px;
}

.contact_detail ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.contact_detail ul {
    margin-top: 30px;
}

.contact_detail li .icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    font-size: 18px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-color: var(--bg_color-2);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-right: 26px;
    margin-left: 8px;
    color: var(--white);
}

.contact_detail li .icon:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    content: "";
    opacity: .2;
    -webkit-transform: scale(1.36);
    -ms-transform: scale(1.36);
    transform: scale(1.36);
    background-color: #7474cf;
}

.contact_detail li:not(:last-child) {
    margin-bottom: 40px;
}

.contact_detail li:not(:last-child):after {
    position: absolute;
    content: "";
    width: 2px;
    height: 57%;
    left: 29px;
    top: 74px;
    background-color: var(--bg_color-2);
}

.content_num a {
    color: var(--white);
}

.content_num span {
    font-size: 22px;
    font-weight: 700;
    display: block;
}

.contact_detail {
    background-color: var(--bg_color);
    padding: 40px;
    color: var(--white);
}

.contact_detail .big_head {
    font-size: 30px;
}

.contact_detail .small_head {
    color: var(--white);
}

.all_btn {
    background-color: var(--bg_color);
    border: 0;
    color: var(--white);
    padding: 10px 25px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.all_btn span {
    position: relative;
    z-index: 9;
}

.all_btn::after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--black);
    transition: ease-in-out .5s;
}

.all_btn:hover::after {
    width: 100%;
}

.client {
    background-color: var(--bg_color);
    padding: 30px 0;
}

.client_item {
    margin: 8px;
}

footer {
    background-color: var(--bg_color);
    color: var(--white);
    padding-top: 50px;
}

.foot_logo img {
    margin-bottom: 10px;
    width: 200px;
}

.foot_logo p {
    font-size: 14px;
}

.foot_head {
    display: block;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 20px;
}

.foot_nav ul li a {
    color: var(--white);
    display: block;
    margin: 10px 0;
}

.foot_nav ul {
    max-height: 230px;
    overflow: auto;
}

.foot_contact ul li a {
    color: var(--white);
    display: block;
}

.foot_contact ul li i {
    margin-right: 8px;
}

.foot_contact ul li {
    display: flex;
    margin: 20px 0;
    font-size: 16px;
}

.copy_right {
    text-align: center;
    margin-top: 40px;
    padding: 15px 0;
    border-top: 1px solid #464646;
}

.copy_right p {
    margin-bottom: 0;
}

.copy_right p a {
    color: var(--white);
    text-decoration: underline;
}


















.ab_text h2,
.ab_text h3 {
    font-size: 25px;
}


.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: var(--black);
    color: #fff;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.ab_item {
    width: 47%;
    float: left;
    margin-right: 40px;
}

.social-share button:hover {
    background-color: #000;
}

.share-btn-box {
    margin-top: 20px;
}

.share-btn {
    font-weight: bold;

}

.inner_header {
    position: relative;
}

.inner_header img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.inner_header::after {
    content: "";
    background-color: #0a194abd;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 35px;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.brade_crom {
    display: flex;
}

.brade_crom a {
    color: #fff;
}

.brade_crom span {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    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) {
    .header-contact {
        display: none;
    }

    nav::after {
        display: none;
    }

    nav::before {
        display: none;
    }

    .nab_bar li a {
        padding: 28px 13px;
    }

    .ab_img {
        width: 55%;
    }
}


@media only screen and (max-width: 800px) {
    .toggle {
        visibility: visible;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
        margin: 0 0 0 auto;
    }

    .toggle>* {
        width: 80%;
        height: 3px;
        background: var(--bg_color);
        margin: 3px 0;
    }

    .toggle.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle.active .line2 {
        opacity: 0;
    }

    .toggle.active .line3 {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .nab_bar {
        position: absolute;
        flex-direction: column;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: var(--white);
        z-index: 9999;
        display: none;
    }


    .nab_bar li {
        border-bottom: 1px solid #e2e2e2;
    }

    .nab_bar li a {
        color: #000;
        padding: 10px 25px;
        display: block;
    }

    .droupdown {
        position: revert;
        width: 100%;
        background-color: #0a194a;
    }

    .clk_btn {
        position: absolute;
        right: 0;
        top: 0;
        color: var(--white);
        cursor: pointer;
        width: 47px;
        height: 46px;
        line-height: 37px;
        background: #000;
        text-align: center;
    }

    .droupdown li {
        padding: 0 !important;
    }

    .droupdown li a {
        color: #fff;
    }



    .col-md-4.top_call.text-center {
        display: none;
    }



    .inner_hrad {
        font-size: 25px;
    }

    .inner_header img {
        height: 230px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 56%;
    }

}



@media only screen and (max-width: 767px) {
    .socal_media {
        justify-content: center;
    }

    .top_details ul {
        justify-content: center;
    }

    header {
        padding-right: 0;
    }

    .ab_img {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .big_head {
        font-size: 25px;
    }

    .small_head {
        font-size: 18px;
    }

    .count-area-content {
        margin-bottom: 30px;
    }

    .work_img {
        margin-bottom: 15px;
    }

    .test_text {
        padding-left: 0px;
        margin-top: 15px;
    }

    .contact_detail {
        margin-top: 15px;
    }

    .contact_detail .big_head {
        font-size: 24px;
    }

    .ab_item {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
    }
}


@media only screen and (max-width: 600px) {
    .hero-social:before {
        display: none;
    }

    .product {
        padding-top: 50px;
        padding-left: 0%;
    }

    .margin {
        margin: 40px 0;
    }

    .count_bg {
        padding: 50px 0;
    }

    .num_item {
        font-size: 30px;
        margin: 6px 0;
    }

    .work_img img {
        height: auto;
    }

    .w_img_2 {
        margin-top: 70px;
    }

    .you_bg {
        padding: 60px 10px;
    }
}


@media only screen and (max-width: 500px) {
    .img_2 img {
        width: 160px;
    }

    .working-area {
        display: none;
    }

    .socal_media span {
        display: none;
    }

    .logo img {
        width: 152px;
    }

    .contact form {
        padding: 10px;
    }

    .contact_detail {
        padding: 20px;
    }
}