@charset "utf-8";

/* CSS Document */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}
.top-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 40px;
    width: 40px;
    bottom: 20px;
    right: 10px;
    border-radius: 50%;
    padding: 10px;
    background-color: #0085b5;
    z-index: 999999999999999999999999999999 !important;
}
.top-nav a{
    color: #fff;
}


a {
    text-decoration: none;
}

.body-class {
    background: linear-gradient(rgb(0, 0, 0, 0.4), rgb(0, 0, 0, 0.4)), url(../img/a1.jpg);
    background-size: cover;
    height: 100%;
    background-repeat: no-repeat;
}

.contact h3 {
    font-size: 22px;
    text-align: center;
}

.carouselRow {
    margin: 0 auto;
    background-color: #fff;
}

.item {
    padding: 20px;
}


.banr {
    float: left;
    margin-top: 200px;
    width: 100%;
}


.banr img {
    float: left;
    width: 100%;
}

.item h2 {
    font-size: 20px;
    text-align: center;
}

.item p {
    font-size: 14px;
    text-align: justify;
}

.item ul li {
    text-align: justify;
    font-size: 13px;
    list-style-type: none;
    display: inline-block;
}

.redd {
    font-size: 25px;
}


.in-ban h4 {
    text-align: center;
    font-size: 30px;
    color: #2e2e2e;
    text-transform: uppercase;
}

#dd p {
    text-align: center;
    font-size: 23px;
    line-height: 35px;
}

#dd p+p {
    margin-top: 18px;
}

.item ul li a {
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    width: 130px;
    background-color: #58595b;
    color: #fff;
    border-radius: 5px;
    text-align: center;
}

.item ul li a:hover {
    background-color: #3C5B87;
}

.wrap-logo {
    max-width: 300px;
    margin: 0 auto;
}

.wrap-logo img {
    width: 100%;
}

.career-img img {
    width: 100%;
    border-radius: 5px;
}

.containerw p {
    color: #d2d2d2;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.red {
    padding: 50px;
    text-align: center;
    float: left;
    width: 100%;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

.red p {
    line-height: 46px;
    font-size: 25px;
}

.row-career {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}

.col-career {
    flex-basis: 48%;
}

.col-career h4 {
    font-size: 22px;
}

.careerh3 {
    font-size: 22px !important;
    font-weight: 500 !important;
    text-align: center !important;
    margin-top: 20px;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.career-form {
    margin-top: 10px;
}

.input-box {
    margin-top: 16px;
    /*margin-left: 20px;*/
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 0;
    resize: vertical;
    font-family: open sans;
    color: #fff;
    float: left;
    background: #373737;
    border: none;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

header {
    position: fixed;
    background: white;
    z-index: 999999;
    left: 0;
    top: 0;
    right: 0;
}

header.fixed .head-t {
    display: none;
}

header.fixed .head-b .logo {
    width: 15%;
    animation: fadeIn ease;
    transition: 1s;
}

header.fixed .head-b .nav ul {
    margin-top: 15px;
}

header.fixed .head-b .nav ul li a {
    font-size: 17px;
}

.head-t {
    float: left;
    width: 100%;
    background: #365f91;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
}

.head-t ul li {
    float: left;
    margin-right: 18px;
    list-style: none;
}

.head-t ul li i {
    font-size: 20px;
}

.serv {
    float: left;
    width: 100%;
    text-align: center;
}

.serv h2 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
}

.serv p {
    float: left;
    width: 100%;
    text-align: center;
    line-height: 30px;
}

.serv img {
    float: left;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin-left: 10%;
}

.far1 {
    float: left;
    width: 50%;
    padding: 50px;
}

.far1 p {
    line-height: 33px;
    text-align: justify;
}

.f2 img {
    float: left;
    width: 100%;
    padding: 50px;
}

.head-t ul {
    width: 50%;
}

.head-t ul li a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

.head-t ul li a:hover {
    color: black;
}

/* Flash class and keyframe animation */

.flashit {
    color: red;
    -webkit-animation: flash linear 2s infinite;
    animation: flash linear 2s infinite;
    background: white;
    padding: 10px;
}

@-webkit-keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }
}

.fas.fa-phone {
    transform: rotate(90deg);
}

.nav ul li:hover .drop {
    /*! display: block; */
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) !important;
}

#so {
    margin-top: 100px;
}

.box2 a {
    color: black;
    text-decoration: none;
}

.head-b {
    float: left;
    width: 100%;
    animation: fadeIn ease-in;
    transition: 1s;
}

.active {
    background: #fdb812;
    color: #fff !important;
    border-radius: 5px;
}

.logo {
    float: left;
    width: 18%;
}

.logo img {
    float: left;
    width: 100%;
    padding: 10px;
}

.nav {
    float: left;
    width: 100%;
}

.nav ul li {
    float: left;
    list-style: none;
    margin-left: 4%;
    position: relative;
}

.nav ul li a {
    float: left;
    padding: 10px;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
}

.nav ul {
    float: left;
    width: 100%;
    /*! display: flex; */
    justify-content: space-evenly;
}

.nav ul li a:hover {
    background: #58595b;
    color: #fff;
    border-radius: 5px;
}

.nav ul li ul {
    /*! display: none; */
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0;
    background: #003a78;
    width: 200px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(50px) !important;
    transition: .3s ease-in;
}

.nav ul li ul li {
    width: 100%;
    margin-left: 0;
}

.nav ul li ul li a:hover {
    background: white;
    color: #003a78;
    border-radius: 0;
}

.nav ul li ul li a {
    width: 100%;
    color: white;
    font-size: 16px;
}

.nav ul li:hover ul {
    /*! display: block; */
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) !important;
}

header.fixed .head-b .nav ul li ul {
    margin-top: 0px;
}

.carousel1 {
    width: 100%;
    height: 70vh;
    background: url('../img/carousel1.jpg') center no-repeat;
    background-size: cover;
}

.carousel2 {
    width: 100%;
    height: 70vh;
    background: url('../img/carousel2.jpg') center no-repeat;
    background-size: cover;
}

.carousel3 {
    width: 100%;
    height: 70vh;
    background: url('../img/carousel3.png') center no-repeat;
    background-size: cover;
}

.banner-content1 {
    width: 80%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    color: #fff;
    gap: 30px;
    text-align: center;
}

.banner-content2 {
    width: 80%;
    height: 70vh;
    display: flex;
    align-items: center;
    margin: auto;
    text-align: center;
}

.banner-content2 h2 {
    font-size: 40px;
    color: #3c3b3c;

}

.banner-content3 {
    width: 50%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.banner-content3 img {
    width: auto !important;
    height: 340px !important;
}

.banner-content1 h1 {
    font-weight: 600;
    letter-spacing: 1px;
}

.banner-content1 h4 {
    font-weight: 600;
    letter-spacing: 1px;
}

.banner-bordered-text {
    border: 1px solid #fff;
    padding: 5px 10px;
    text-transform: uppercase;
}

.banner {
    float: left;
    width: 100%;
    margin-top: 180px;
    height: 70vh;
    position: relative;
}

.banner img {
    float: left;
    width: 100%;
    height: 70vh;
    position: relative;
    object-fit: cover;
}

.aboutus-banner {
    width: 100%;
    height: 70vh;
    background: url('../img/aboutus-banner.jpg') center no-repeat;
    background-size: cover;
}

.aboutus-banner-content {
    width: 50%;
    height: 70vh;
    display: flex;
    align-items: center;
    color: #3a618e;
    margin-left: 10%;
}

.aboutus-banner-content h1 {
    color: #3a618e;
    font-size: 80px;
    margin-bottom: 0;
    line-height: 60px;
}

.aboutus-banner-content h3 {
    font-size: 30px;
}

.aboutus-banner-content h5 {
    font-size: 25px;
    margin-left: 15%;
    letter-spacing: .1px;
}

.home-appliance-bg {
    width: 100%;
    height: 70vh;
    background: url('../img/home-appliance-banner.png') center no-repeat;
    background-size: cover;
}

.ha-banner-content,
.kitchen-banner-content {
    margin: 0 0 0 auto;
    width: 50%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ha-banner-content img,
.kitchen-banner-content img {
    width: auto !important;
    height: 140px !important;
}

.kitchen-banner {
    width: 100%;
    height: 70vh;
    background: url('../img/kitchen-banner.png') center no-repeat;
    background-size: cover;
}

.perfume-bg {
    width: 100%;
    height: 70vh;
    background: url('../img/perfume-bg.png') center no-repeat;
    background-size: cover;
}

.perfume-bg-content img {
    width: auto !important;
    height: 220px !important;
}

.perfume-bg-content {
    margin: 0 auto 0 0;
    width: 50%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bollona-banner {
    width: 100%;
    height: 70vh;
    background: url('../img/d5.jpeg') center no-repeat;
    background-size: cover;
}

.venice-banner {
    width: 100%;
    height: 70vh;
    background: url('../img/D1.png') center no-repeat;
    background-size: cover;
}

.association-banner {
    width: 100%;
    height: 70vh;
    background: url('../img/s6.jpeg') center no-repeat;
    background-size: cover;
}

.association-banner-content {
    width: 100%;
    height: 70vh;
    background-color: #2e2e2e53;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 25px !important;
}

.contact-banner {
    width: 100%;
    height: 70vh;
    background: url('../img/Contact-Banner.jpg') center no-repeat;
    background-size: cover;
}

.contact-banner-content {
    background-color: #2e2e2e53;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-banner-content h1 {
    color: #fff;
    font-size: 45px;
    text-transform: uppercase;
}
.contact-banner-content h5{
    font-weight: 400;
    color: #fff;
    font-size: 18px ;
}
.service-banner{
    width: 100%;
    height: 70vh;
    background: url('../img/c1-786.jpg') center no-repeat;
    background-size: cover;
}
.pannel {
    float: left;
    width: 100%;
    /*! background-image: 
    url(../img/back.jpg); */
    padding: 50px 0 210px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background: #0085b5;
}

.miss {
    float: left;
    width: 50%;
    background: #365f91;
    padding: 100px;
    color: white;
}

.miss2 {
    float: left;
    width: 50%;
    background: #365f91;
    padding: 100px;
    color: white;
    border-left: 1px solid white;
}

.pannels {
    /*! margin-top: -10%; */
    background: #0085b5;
    float: left;
    width: 100%;
    margin-left: 0;
    /*! transform: skew(20deg); */
    /*! padding: 50px; */
}

.pannel h2 {
    text-align: center;
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
    width: 100%;
    margin-top: 20px;
    float: left;
    /*! transform: skew(-20deg) !important; */
    font-family: 'Yellowtail', cursive;
    letter-spacing: 2px;
}

.pan {
    float: left;
    width: 45%;
}

.pan img {
    float: left;
    width: 100%;
    border-radius: 20px;
}

.pan2 {
    float: left;
    width: 100%;
    /*! margin-right: 5%; */
    padding: 30px;
}

.pan2 p {
    font-size: 18px;
    line-height: 33px;
    text-align: justify;
    color: white;
    /*! transform: skew(-20deg); */
}

.pan2 a {
    margin-top: 30px;
    padding: 10px;
    background: #fff;
    color: #737373;
    text-decoration: none;
    margin-right: 10%;
    border-radius: 5px;
    text-align: center;
    float: left;
    /*! transform: skew(-20deg); */
}

.ban {
    position: relative;
    float: left;
    width: 100%;
}

.pan2 a:hover {
    background: #58595b;
    color: white;
}

.pannel2 {
    float: left;
    width: 100%;
    padding: 70px 0;
    display: flex;
}

.Vision {
    float: left;
    width: 46%;
    background: #003a78;
    padding: 50px;
    text-align: center;
    color: white;
    margin: 2%;
    height: 200px;
}

.Mission {
    float: left;
    width: 46%;
    background: #003a78;
    padding: 50px;
    text-align: center;
    color: white;
    margin: 2%;
    height: 200px;
}

.Vision h2 {
    margin-bottom: 20px;
}

.Mission h2 {
    margin-bottom: 20px;
}

.logos {
    float: right;
    width: 40%;
    display: flex;
}

.logos img {
    width: 120px;
    margin-right: 30px;
    object-fit: contain;
}

.head-2 {
    background: #1f3653;
    float: left;
    width: 100%;
}

.doen {
    float: left;
    width: 100%;
}

.doen img {
    float: left;
    width: 100%;
}

header.fixed .head-b .logos img {
    width: 120px;
    animation: fadeIn ease;
    transition: 1s;
}

.Mission p {
    line-height: 27px;
    color: #e1e1e1;
}

.ban-in {
    position: absolute;
    left: 0;
    right: 0;
    top: 25%;
    /*! bottom: 0; */
}

.ban-in h2 {
    color: white;
    font-size: 50px;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    /*! text-shadow: 0 0 10px #1c1c1c; */
    /*! width: 80%; */
    /*! margin-left: 10%; */
    /*! background: #0000007d; */
    padding: 20px;
    /*! box-shadow: 0 0 10px #fff; */
}

.ban-in a {
    display: inline-block;
    padding: 10px;
    background: #003a78;
    text-decoration: none;
    color: #fff;
    margin-right: 25px;
    margin-left: 25px;
    font-size: 18px;
}

.ban-in a:hover {
    background: #fdb812;
    color: #fff;
}

.Vision p {
    color: #e1e1e1;
}

.pannel3 {
    float: left;
    width: 100%;
    background: #f2f2f2;
    padding: 50px 0;
}

.pannel3 h2 {
    text-align: center;
    font-size: 35px;
    color: #003a78;
}

.ser {
    float: left;
    width: 60%;
    padding: 50px;
    background: #003a78;
    color: white;
    height: 400px;
}

.ser2 {
    float: left;
    width: 40%;
    height: 400px;
}

.ser h3 {
    margin-bottom: 20px;
}

.ser p {
    line-height: 30px;
    color: #e6e6e6;
}

.ser2 img {
    float: left;
    width: 100%;
    height: 100%;
}

.band {
    float: left;
    width: 100%;
    margin-top: 50px;
}

.ser a {
    float: right;
    margin-top: 4%;
    padding: 10px;
    background: #fdb812;
    color: white;
    text-decoration: none;
    margin-right: 5%;
    border-radius: 5px;
}

.ser a:hover {
    background: #fff;
    color: #003a78;
}

.pannel4 {
    float: left;
    width: 100%;
    padding: 50px 0;
    text-align: center;
    background-image: url(../img/back.png);
    color: white;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

#grays {
    padding-top: 15%;
}

#gray\ new {
    padding-bottom: 150px;
    position: relative;
    z-index: -1;
}

.pannel4 h2 {
    text-align: center;
    font-size: 38px;
    color: #fff;
    margin-bottom: 25px;
}

.new img {
    padding: 30px;
    width: 1000px;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}


.tbl {
    margin-top: 50px;
    float: left;
    width: 100%;
    margin-bottom: 50px;
}

.venice-tbl,
.bellona {
    margin: 0 0 !important;
}

.venice-tbl tr:nth-child(even) {
    background-color: #0085b5 !important;
}

.bellona tr:nth-child(even) {
    background-color: #0085b5 !important;
}

.p4 h4 {
    margin-top: 10px;
    float: left;
    width: 100%;
    font-size: 25px;
    color: white;
}

.p4 h5 {
    margin-top: 39px;
    float: left;
    width: 100%;
    font-size: 16px;
    color: wheat;
}

.tbl h2 {
    text-align: center;
    font-size: 35px;
}

.p3 h4 {
    margin-top: 10px;
    float: left;
    width: 100%;
    font-size: 25px;
    color: white;
}

.p3 h5 {
    margin-top: 39px;
    float: left;
    width: 100%;
    font-size: 16px;
    color: wheat;
}

.pannel4 p {
    margin-bottom: 30px;
    color: #bfbfbf;
    text-align: justify;
}

.box4 h3 {
    font-size: 30px;
    text-align: left;
}

.box4 h5 {
    font-size: 18px;
    color: #c8c8c8;
    margin-bottom: 10px;
    text-align: left;
}

.ban1 {
    float: left;
    width: 70%;
    margin-left: 15%;
    color: black;
    text-align: center;
    padding: 30px;
}

.ban2 {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 35px;
}

.box {
    float: left;
    width: 30%;
    text-align: center;
    background: #fff;
    /*! height: 300px; */
    margin: 1%;
    /*! border: 1px solid #e1e1e1; */
    border-radius: 15px;
}

.box img {
    float: left;
    width: 100%;
    border-radius: 15px;
}

.box3 img {
    float: left;
    width: 360px;
    border-radius: 15px;
}

.box33 img {
    width: 160px;
    margin-top: 50px;
}

.box h3 {
    font-size: 20px;
    margin-top: 15px;
    display: inline-block;
    color: #000;
    margin-bottom: 0;
    margin-bottom: 20px;
}

.box h5 {
    color: #404040;
    margin-bottom: 10px;
}

.box3 {
    float: left;
    width: 30%;
    text-align: center;
    /* background: #fff;*/
    /*! height: 300px; */
    margin: 1%;
    /*! border: 1px solid #e1e1e1; */
    border-radius: 15px;
}

.boxes3 {
    float: left;
    width: 100%;
    display: flex;
    padding-top: 0px;
}

.box4 {
    padding: 50px;
}

.pannel5 {
    float: left;
    width: 100%;
    background: #f2f2f2;
    padding: 50px 0;
}

.con-logo {
    font-family: 'Yellowtail', cursive;
    font-size: 30px !important;
}

span {
    font-family: 'Yellowtail', cursive;
    font-size: 120px !important;
    text-transform: capitalize;
    margin-right: 10px;
    font-weight: normal;
    color: black;
}

.neww {
    font-size: 22px !important;
}

.box-in {
    float: left;
    width: 100%;
    padding: 10px;
}

.wraprs {
    float: left;
    width: 100%;
    margin-top: 100px;
}

.wraprs img {
    border-radius: 50px;
    width: 60%;
}

.box-in p {
    color: gray;
    line-height: 20px;
    font-size: 13px;
    margin-top: 7px;
    padding: 5px 10px;
}

.pannel5 h2 {
    text-align: center;
    font-size: 35px;
    color: #003a78;
    margin-bottom: 30px;
}

.foot {
    float: left;
    width: 100%;
    background-image: url(../img/foot.png);
    padding: 50px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.f1 {
    float: left;
    width: 25%;
    padding: 0 20px;
}

.f1 p {
    color: white;
    margin-top: 20px;
}

.f1 h3 {
    color: #fff;
    font-size: 25px;
}

.f1 ul {
    margin-top: 15px;
}

.f1 ul li {
    color: white;
    list-style: none;
    line-height: 27px;
    margin-top: 10px;
    margin-bottom: 5px;
    float: left;
    width: 100%;
}

.f1 ul li a {
    color: white;
    text-decoration: none;
}

.f1 ul li a:hover {
    color: #e8e8e8;
    text-decoration: underline;
}

.foot-b p {
    float: left;
}

.foot-b a {
    float: right;
    color: white;
}

.foot-b {
    float: left;
    width: 100%;
    background: #243049;
    color: white;
    padding: 10px 0;
}

.f1 ul li i {
    position: absolute;
    margin-left: -24px;
    font-size: 18px;
}

#camera_wrap_4 {
    margin-bottom: 0 !important;
}

.drop {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 300px;
    height: 150px;
    background: #003a78;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in;
    transform: translateY(50px) !important;
}

.drop ul {
    float: left;
    position: unset !important;
    display: unset !important;
    width: 100% !important;
}

.drop ul li {
    width: 300px !important;
    /*! border-right: 1px solid white; */
}

.drop ul li ul li {
    border: none;
    padding-left: 15px;
}

.sml {
    width: 30% !important;
    float: right;
    position: relative !important;
}

.login-btn {
    position: absolute !important;
    top: 0 !important;
    right: -50px !important;
    color: #fff;
}

.inside {
    margin-top: 13%;
    float: left;
    width: 100%;
}

.inside h2 {
    text-align: center;
    font-size: 35px;
    color: #003a78;
    margin-bottom: 30px;
}

.found {
    float: left;
    width: 100%;
}

.found h3 {
    font-size: 25px;
    color: #fdb812;
}

.found h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #606060;
    font-size: 20px;
}

.h1 h3 {
    font-size: 18px;
    padding: 10px;
    float: left;
    width: 100%;
    background: #003a79;
}

.h2 {
    float: left;
    width: 70%;
    margin-right: 5%;
}

.h1 {
    float: left;
    width: 25%;
    text-align: center;
    background: gray;
    border: 1px solid #dfdfdf;
}

.fo-in ul li {
    line-height: 26px;
    margin-top: 10px;
    list-style: none;
    color: #5e5e5e;
}

.fo-in p {
    margin-top: 15px;
    color: #5e5e5e;
}

.fo-in {
    float: left;
    width: 100%;
    margin-top: 30px;
    border: 1px solid #b5b5b5;
    padding: 30px;
    margin-bottom: 30px;
}

.fo-in h4 {
    font-size: 19px;
    color: #003a78;
    margin-top: 15px;
    display: inline-block;
}

.h1 img {
    float: left;
    width: 100%;
}

#mon {
    margin-right: 5%;
}

#mik {
    margin-right: 0;
}

.coack {
    float: left;
    width: 40%;
}

.coac {
    float: left;
    width: 60%;
    padding: 30px;
    text-align: justify;
}

.coac h3 {
    font-size: 18px;
    margin-top: 14px;
    font-weight: normal;
    margin-bottom: 10px;
}

.coac ul {
    margin-top: 15px;
}

.coac ul li {
    list-style: none;
    margin-top: 15px;
}

.coack img {
    float: left;
    width: 100%;
    margin-top: 40px;
    padding: 10px;
}

.ish {
    border: 1px solid #cecece;
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.clients {
    margin-top: 13%;
}

.clients h2 {
    text-align: center;
    font-size: 35px;
    color: #003a78;
    margin-bottom: 30px;
}

.clie {
    float: left;
    width: 23%;
    border: 1px solid #d2d2d2;
    margin: 1%;
}

.clie img {
    float: left;
    width: 100%;
    padding: 10px;
}

.clie img:hover {
    transform: scale(1.1);
    transition: 1s;
}

.usd {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#form .wrap {
    margin-bottom: 10px;
}

#msform select:before {
    content: '\f107';
    position: absolute;
    right: 0;
    z-index: 9999999;
    top: 0;
}

#msform input[type=text],
input[type=tel],
select,
option,
textarea {
    border: 1px solid #c1c1c1 !important;
}

input[type=text],
input[type=tel],
input[type=number],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #919191 !important;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 0;
    resize: vertical;
    font-family: open sans;
    color: #fff;
    background: none;
    border: none;
    font-size: 14px;
}

em.error {
    font-size: 14px;
    color: red;
    font-style: normal;
    width: 100%;
    float: left;
    margin-top: 7px;
    margin-bottom: 2px;
    text-align: left;
}

input[type=submit] {
    background-color: #fdb812;
    color: #fff;
    padding: 12px 30px;
    border: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 25px;
    font-size: 15px;
    float: left;
}

input[type=submit]:hover {
    background-color: white;
    color: #003a78;
}

::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #1c1c1c;
    opacity: 1;
    /* Firefox */
}

::-moz-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #1c1c1c;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #1c1c1c;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #1c1c1c;
    opacity: 1;
    /* Firefox */
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1;
    /* Firefox */
}

label {
    color: #000;
    margin-top: 15px;
    float: left;
}

#resume-btn {
    margin-top: 15px;
    float: left;
    width: 100%;
}

.ca {
    width: 250px;
    height: 50px;
    margin-top: 20px;
    margin-bottom: 4px;
    float: left;
}

.result {
    color: #00ac00;
    font-size: 22px;
    margin-top: 15px;
    float: left;
    width: 100%;
}

.container2 {
    -webkit-border-radius: 5px;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
    float: left;
    background: #fff;
    box-shadow: 0 0 10px gray;
}

.contact {
    float: left;
    width: 100%;
    margin-top: 5%;
}

.contact h2 {
    text-align: center;
    font-size: 35px;
    color: #000;
    margin-bottom: 30px;
}

.con1 {
    float: left;
    width: 100%;
}

.con2 {
    float: left;
    width: 50%;
    /* margin-right: 3%; */
    padding: 40px;
    background: #375b91;
    border-radius: 15px;
    color: white;
}

.con2 h3 {
    margin-bottom: 15px;
    font-size: 22px;
    float: left;
    width: 100%;
}

.map {
    float: left;
    width: 50%;
    /*! margin-top: 30px; */
    padding: 0 30px;
}

iframe {
    float: left;
    height: 360px;
    width: 100%;
    border-radius: 25px;
}

.con2 h4 {
    margin-bottom: 5px;
    font-size: 20px;
}

.con2 ul {
    margin-top: 10px;
    display: inline-block;
    float: left;
    width: 100%;
}

.con2 ul li {
    line-height: 23px;
    list-style: none;
    margin-left: 30px;
    margin-top: 15px;
}

.con2 ul li a {
    color: white;
}

.con2 ul li i {
    position: absolute;
    margin-left: -30px;
    font-size: 20px;
    margin-top: 4px;
}

.pannel9 {
    float: left;
    width: 100%;
    padding: 50px 0;
    display: flex;
}

.video {
    float: left;
    width: 50%;
}

.v1 {
    float: left;
    width: 100%;
    height: 400px;
}

.v1 iframe {
    float: left;
    height: 100%;
    width: 100%;
}

.testimonials {
    float: left;
    width: 100%;
    padding: 50px;
    text-align: center;
}

.testi {
    float: left;
    width: 100%;
}

.t1 p {
    margin-top: 30px;
    color: #2f2f2f;
}

.t1 img {
    border-radius: 50%;
    width: 10%;
    height: 110px;
    object-fit: cover;
    margin-left: 45%;
}

.t1 {
    background: #e1e1e1;
    padding: 50px;
}

.t1 h3 {
    margin-top: 20px;
    color: black;
}

.pannell {
    float: left;
    width: 100%;
}

.p3 {
    float: left;
    width: 100%;
    /*! background-image: url(../img/b1.jpg); */
    padding: 100px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    background: #1f3653;
}



.p3 ul {
    float: left;
    width: 100%;
}


.con2 span {
    font-size: 16px !important;
    font-family: inherit;
    color: wheat;
    float: left;
    width: 100%;
    margin-top: 10px;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 76%;
    margin-left: 12%;
    margin-top: 5%;
    margin-bottom: 5%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    line-height: 33px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}


.containerw {
    border: 2px solid #ccc;
    background-color: #1f3653;
    border-radius: 5px;
    padding: 30px;
    margin: 16px 0;
    float: left;
    width: 100%;
}

.containerw::after {
    content: "";
    clear: both;
    display: table;
}

.containerw img {
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}

.containerw span {
    font-size: 35px !important;
    margin-right: 15px;
    color: white;
}

/*@media (max-width: 500px) {
  .container {
      text-align: center;
  }
  .container img {
      margin: auto;
      float: none;
      display: block;
  }
}*/


.p3 ul li {
    margin-top: 10px;
    margin-bottom: 10px;
}

.p3 p {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 30px;
}

.miss h2 {
    margin-bottom: 10px;

}

.miss2 h2 {
    margin-bottom: 10px;

}


.p4 {
    float: left;
    width: 100%;
    /*! background-image: url(../img/b2.jpg); */
    padding: 100px;
    /*! background-attachment: fixed; */
    background-repeat: no-repeat;
    background-size: cover;
    background: #365f91;
}

.p4 p {
    color: white;
    margin-top: 26px;
    line-height: 30px;
}

.p4 h2 {
    color: white;
}























.testimonials h2 {



    font-size: 35px;

    color: black;

    margin-bottom: 30px;

}


.wrap {
    float: left;
    width: 100%;
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
}
.service-page-wrap{
    margin-top: 0px !important;
}
.testimonials h3 {



    font-size: 18px;

    color: #575757;

    /*! margin-bottom: 30px; */

}

.head {

    display: block;

}

.lines {

    display: none;

}



.error {



    color:



        red;

    margin-top: 5px;

    float: left;

    width: 100%;



    font-size: 10px;

    text-align: left;

}



.result {

    float: left;

    width: 100%;

    font-size: 18px;

    color: #ff4343;

    margin-top: 15px;

}



.forms input[type=text],
input[type=tel],
select,
textarea,
input#fname,

input#lname,
input#cname,
input#pname {

    background: #373737 !important;

    border: 1px solid #fff !important;

    border-radius: 0 !important;

}



input[type=text],
input[type=tel],
select,
textarea,
input#fname,

input#lname,
input#cname,
input#pname {

    width: 100%;

    padding: 12px;

    border-radius: 4px;

    box-sizing: border-box;

    margin-bottom: 0;

    resize: vertical;

    font-family: open sans;

    color: #fff;

    float: left;

    background: #373737;

    border: none;

    font-family: 'Ubuntu', sans-serif;

    font-size: 15px;

}

input[type="submit"] {

    text-transform: uppercase;

    font: 600 15px/36px "Open Sans", sans-serif;

    color: #fff;

    padding: 2px 29px 0;

    text-shadow: none;

    letter-spacing: 1px;

    border: 1px solid #cdcdcd;

    background: #32cd33;

    border-radius: 0;

    margin-top: 30px;

    cursor: pointer;

}

input[type="submit"]:hover {

    background: #8a8a8a;

    color: #fff;

}

.wrap2bt {

    float: left;

    width: 46%;

    margin: 10px;

}

.wrap2btt {

    margin: 10px;

    width: 94%;

}

.wrap2bts {

    text-align: center;

    display: inline-block;

}



input[type=submit] {

    background-color: #db002f;

    color: white;

    padding: 12px 20px;

    border: none;

    border-radius: 4px;

    cursor: pointer;

    margin-top: 15px;

    font-size: 15px;

    letter-spacing: 2px;

    width: 100%;

}



input#submit-btn:hover {

    background: #93571b;

}

input[type=submit] {

    color: #fff;

    padding: 2px;

    border: none;

    border-radius: 10px;

    cursor: pointer;

    margin-top: 25px;

    font-size: 14px;

    letter-spacing: 1px;

    width: 100px;

    /*! margin: 0 auto; */

    /*! clear: both; */

    /*! display: block; */

    float: left;

    background: rgb(55, 55, 55);

}

textarea#subject {

    height: 160px;

}



.pannel-7 {

    float: left;

    width: 60%;

    padding: 50px 0;

    text-align: center;

    background: #fff;

    margin-left: 20%;

    box-shadow: 0 0 10px gray;

    margin-top: 5%;

    margin-bottom: 50px;

}

#up {

    background: #fcebec;

}

.pannel-7 h2 {

    font-size: 35px;

    color: #000;

    margin-bottom: 10px;

}

.in-ban {

    float: left;

    width: 100%;

    height: 65vh;

    position: relative;

    margin-top: 180px;
}

.in-ban img {

    float: left;

    width: 100%;

    position: relative;

    height: 65vh;
    object-fit: cover;
}

.in-ban h2 {
    display: flex;
    float: left;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 50px;
    color: white;
    margin-top: 0;
    background: #00000054;
    text-transform: uppercase;
}

.in-ban p {
    display: flex;
    float: left;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 18px;
    color: white;
    margin-top: 0;
    text-transform: capitalize;
}


.pan2 ul li i {
    font-size: 22px;
    position: absolute;
    margin-left: -20px;
    color: #282828;
}

.pan2 ul li {
    list-style: none;
    margin-top: 10px;
    margin-left: 20px;
    float: left;
    width: 100%;
}

.abts ul li i {
    font-size: 22px;
    position: absolute;
    margin-left: -20px;
    color: #282828;
}

.abts ul li {
    list-style: none;
    margin-top: 10px;
    margin-left: 20px;
    float: left;
    width: 100%;
}

.serv1 {
    float: left;
    width: 100%;
    background: #f1f2f2;
    text-align: center;
    padding: 100px 0;
}

.nn {
    display: block !important;
}

.boxes2 {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.box2 {
    background: white;
    margin: 1%;
    padding: 30px;
    width: 16.66%;
}

.serv1 h2 {
    font-size: 35px;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.serv1 h4 {
    color: #5b5b5b;
    font-size: 18px;
    margin-bottom: 5px;
}

.box2:hover {
    transform: scale(1.06);
    transition: 1s;
    cursor: pointer;
}

.box2 p {
    font-size: 14px;
    margin-top: 8px;
}

.head {
    display: block;
}

.lines {
    display: none;
}

.home-items-set,
.kitchen-set {
    display: none;
}


@media (max-width: 1100px) {

    .home-items-set,
    .kitchen-set {
        display: block;
    }

    .home-items-set img,
    .kitchen-set img {
        width: 100% !important;
    }

    .home-items,
    .kitchen-items {
        display: none;
    }

    .nav ul li {
        margin-left: 2%;

    }

    .nav ul li a {
        float: left;
        padding: 10px 5px;
        text-decoration: none;
        font-size: 16px;
        letter-spacing: 1px;
        color: #fff;
    }

    .banner-content3 img {
        width: auto !important;
        height: 200px !important;
    }

    .banner {
        height: 65vh;
        /* margin-top: 0px; */
    }

    .carousel1 {
        height: 65vh;
    }

    .carousel2 {
        height: 65vh;
    }

    .carousel3 {
        height: 65vh;
        background: url('../img/carousel3-768.jpg') center no-repeat;
        background-size: cover;
    }

    .banner-content1 {
        gap: 20px;
    }

    .banner-content2 h2 {
        font-size: 30px !important;
        color: #3c3b3c;

    }
}

@media (min-width: 320px) and (max-width: 790px) {

    .row-career {
        flex-direction: column;
    }

    .col-career {
        flex-basis: 100%;
    }
}

@media (max-width: 767px) {


    .banner {
        height: 50vh;
        margin-top: 70px;
    }

    .carousel1 {
        height: 50vh;
    }

    .carousel2 {
        height: 50vh;
    }

    .carousel3 {
        height: 50vh;
        background: url('../img/carousel3-768.jpg') center no-repeat;
        background-size: cover;
    }

    .banner-content1 {
        width: 90%;
        height: 50vh;
        gap: 5px;
    }

    .banner-content2 {
        width: 80%;
        display: grid;
        text-align: left;
        margin-top: -40px;
    }

    .banner-content2 h2 {
        font-size: 25px !important;
        color: #3c3b3c;

    }

    .banner-content3 {
        width: 50%;
        height: 50vh;
        color: #fff;
        margin: auto 0;
    }

    .banner-content3 img {
        width: auto !important;
        height: 200px !important;
    }

    .banner-content1 h1 {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .banner-content1 h4 {
        font-weight: 600;
        letter-spacing: 1px;
    }

    .banner-bordered-text {
        border: 1px solid #fff;
        padding: 5px 10px;
        text-transform: uppercase;
    }

    .aboutus-banner {
        height: 50vh;
        background: url('../img/aboutus-banner-786.jpg') center no-repeat;
        background-size: cover;
    }

    .aboutus-banner-content {
        width: 100%;
        height: 50vh;
        display: flex;
        align-items: center;
        color: #3a618e;
        margin-left: 0%;
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.6)
    }

    .aboutus-banner-content h1 {
        color: #3a618e;
        font-size: 60px;
        margin-bottom: 0;
        line-height: 50px;
    }

    .aboutus-banner-content h3 {
        font-size: 23px !important;
    }

    .aboutus-banner-content h5 {
        font-size: 20px !important;
        margin-left: 0%;
        letter-spacing: .1px;
    }

    .home-appliance-bg {
        width: 100%;
        height: 50vh;
        background: url('../img/home-appliance-banner-768.png') center no-repeat;
        background-size: cover;
    }

    .kitchen-banner {
        width: 100%;
        height: 50vh;
        background: url('../img/kitchen-banner-768.png') center no-repeat;
        background-size: cover;
    }

    .ha-banner-content,
    .kitchen-banner-content {
        margin: 0 0 0 auto;
        width: 100%;
        align-items: flex-start;
    }

    .ha-banner-content img,
    .kitchen-banner-content img {
        margin-top: 30px;
        width: auto !important;
        height: 80px !important;
    }

    .perfume-bg {
        width: 100%;
        height: 50vh;
        background: url('../img/perfume-bg-768.png') center no-repeat;
        background-size: cover;
    }

    .perfume-bg-content img {
        width: auto !important;
        height: 150px !important;
    }

    .perfume-bg-content {
        margin: 0 auto 0 0;
        width: 100%;
        height: 50vh;
        align-items: flex-start;
    }

    .bollona-banner {
        margin: 10% 0 0 0 !important;
        height: 40vh;

    }

    .venice-banner {
        margin: 10% 0 0 0 !important;
        height: 40vh;
    }

    

    .association-banner {
        height: 50vh;
    }

    .association-banner-content {
        height: 50vh;
        width: 90%;
        margin: auto;
        text-align: center;
        font-size: 14px !important;
    }
    .contact-banner {
        height: 50vh;

    }
    .contact-banner-content {
        background-color: #2e2e2e53;
        width: 100%;
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .contact-banner-content h1 {
        margin: 0 10px;
        color: #fff;
        font-size: 25px;
        text-transform: uppercase;
    }
    .contact-banner-content h5{
        margin: 0 10px;
        font-weight: 400;
        color: #fff;
        font-size: 15px ;
    }
    .service-banner{
        width: 100%;
        height: 50vh;
        background: url('../img/c1-550.jpg') center no-repeat;
        background-size: cover;
    }
    .desktop-img {
        display: none !important;
    }
    .mobile-img {
        display: block !important;
    }

    header span {
        font-family: 'Times New Roman';
    }

    .container {
        width: 90%;
    }

    h2 {
        font-size: 16px !important;
    }

    h3 {
        font-size: 15px !important;
    }

    h4 {
        font-size: 14px !important;
    }

    h5 {
        font-size: 13px !important;
    }

    h6 {
        font-size: 13px !important;
    }

    p {
        font-size: 14px !important;
    }

    header.fixed .logo {
        width: 30%;
        float: left;
    }

    header.fixed .back {
        padding: 4px;
        margin-top: 0px;
    }

    .logo {
        width: 30%;
        float: left;
        margin-left: 0;
        padding: 0;
        margin-top: 0;
    }

    .logo img {
        width: auto !important;
        height: 50px;
        float: left;
        padding: 0;
    }

    .lines {
        display: block;
        position: fixed;
        z-index: 99999999;
        width: 100%;
        background: #fff;
        padding: 10px;
        border-bottom: 1px solid #c8c8c8;
    }

    .nav1 {
        float: left;
        width: 60%;
        background: none;
        -webkit-transform: none;
        transform: none;
    }

    .nav1::before {
        display: none;
    }

    .up {
        -webkit-transform: none;
        transform: none;
    }

    .social ul {
        display: none;
    }

    .nav1 ul li {
        list-style: none;
        float: left;
        margin-left: 0;
    }

    .social ul li a {
        float: left;
        margin-left: 0;
        padding: 10px;
    }

    #nav-icon1 {
        width: 40px;
        height: 28px;
        position: relative;
        /*! margin: 50px auto; */
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        transition: .5s ease-in-out;
        cursor: pointer;
        top: 7px;
        right: 5%;
        float: right;
        z-index: 99999999999 !important;
        /* background-color: #fff;
        border-radius: 2px; */
    }

    .nav ul li {
        width: 100%;
        list-style: none;
        margin-left: 0;
        float: left;
    }

    #nav-icon1 span {
        display: block;
        position: absolute;
        height: 4px;
        width: 30px;
        background: #000;
        border-radius: 5px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        transition: .25s ease-in-out;
        margin: 3.5px 5px !important;
    }

    .nav ul li a {
        text-decoration: none;
        color: #fff;
        letter-spacing: 1px;
        font-size: 15px;
        justify-content: right;
        display: inline-block;
        padding: 10px;
        position: relative;
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }

    .nav ul li ul li a {
        color: #fff;
        font-size: 13px;
        padding: 0;
        padding: 10px;
        margin-top: 0;
        text-align: left;
        font-size: 13px !important;
    }

    .nav .sub.opened ul {
        display: block;
        width: 100%;
        position: unset;
        background: #3e72b2;
        margin-top: 0;
        padding: 5px;
        animation: fadeInDown 0.5s;
        transition: 1s;
        visibility: visible;
        opacity: 1;
        transform: translateY(0px) !important;
    }

    .nav ul li a i {
        position: absolute;
        margin-left: 15px;
        margin-top: 3px;
    }

    #nav-icon1 span:nth-child(1) {
        top: 0px;
    }

    #nav-icon1 span:nth-child(2) {
        top: 8px;
    }

    #nav-icon1 span:nth-child(3) {
        top: 16px;
    }

    #nav-icon1.open span:nth-child(1) {
        top: 8px;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        z-index: 9999999;
        opacity: 1;
        background: #fff;
    }

    #nav-icon1.open span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    #nav-icon1.open span:nth-child(3) {
        top: 8px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        opacity: 1;
        background: #fff;
    }

    .nav ul li a:hover {
        color: #fff;
        text-align: center;
        background: #03bfcb;
    }

    body.nav-show header {
        right: 200px;
        left: -100px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;
        padding: 15px;
        list-style: none;
        overflow: auto;
        z-index: 9999;
        height: 100%;
        background: rgb(0, 0, 0);
        transition: 1s;
    }

    .nav ul {
        padding: 10px;
        float: left;
        margin-top: 20px;
        display: inline-block;
    }

    .nav.nav-show {
        right: 0;
        padding-top: 10%;
        width: 100%;
        background: #1f3653;
        transition: 1s;
        border: 1px solid white;
    }

    .nav span {
        position: absolute;
        right: 0;
        right: -173px;
        top: 19px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .ground {
        width: 100%
    }

    header.fixed .nav {
        width: 100%;
    }

    .mail p {
        max-width: 100%
    }

    .nav1 {
        float: left;
        margin-top: 0;
        padding-left: 20px;
        width: 60%;
    }

    .nav1 ul li {
        float: left;
        list-style: none;
        margin-left: 0;
        width: 100%;
    }

    .nav1 ul li a {
        float: left;
        text-decoration: none;
        color: black;
        font-size: 12px;
        margin-top: 3px;
        padding: 3px;
    }

    header.fixed .nav1 ul li a {
        font-size: 12px;
    }

    .head {
        padding: 10px;
        width: 100%;
        float: left;
    }

    header.fixed .head {
        padding: 6px;
    }

    .miss {
        width: 100%;
        padding: 40px;
    }

    .miss2 {
        width: 100%;
        padding: 40px;
        border-left: 0px solid white;
        border-top: 1px solid white;
    }

    .p3,
    .p4 {
        padding: 20px;
    }


    .pannel h2 {
        margin-left: 25px;
    }

    .red {
        padding: 20px;
    }

    .red p {
        line-height: 25px;
    }

    table {
        border-collapse: collapse;
        width: 100%;
        margin-left: 0;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    td,
    th {
        font-size: 13px;
    }


    .wrap {
        flex-direction: column;
    }

    .nn {
        display: none !important;
    }

    .map {
        float: left;
        width: 100%;
        margin-top: 20px;
        padding: 10px;
    }

    .box2 {
        width: 100%;
    }

    .new img {
        padding: 5px;
        width: 100%;
    }

    .far1 {
        width: 100%;
        padding: 20px;
    }

    .f2 img {
        padding: 20px;
    }

    .summ {
        float: left;
        width: 100%;
        overflow: scroll;
    }

    .redd {
        font-size: 18px;
    }

    .nav ul li ul li:hover ul.sub-menu {
        display: none;
    }

    .nav ul li:hover ul {
        display: none;
    }

    .nav ul li ul.show {
        display: block;
        -webkit-transform: scale(1);
        transform: scale(1);
        background: white;
        width: 100%;
        float: left;
        margin-top: 0;
    }

    .nav ul li ul li ul.sub-menu.show {
        display: block;
        -webkit-transform: scale(1);
        transform: scale(1);
        background: #e6e6e6;
        width: 100%;
    }

    .nav ul li .hun {
        width: 100%;
        margin-left: 0px;
        z-index: 9999;
    }

    .nav ul li ul li ul.sub-menu {
        left: 0;
        top: 100%;
    }

    .nav ul li ul li {
        margin: 0;
        text-align: left;
        display: block;
        padding: 0;
        margin-top: 0;
    }

    .nav ul li ul li ul.sub-menu a {
        font-size: 12px;
        text-align: right;
        background: #e6e6e6;
    }

    .nav ul li:hover ul li {

        display: inline-block;

    }

    .nav ul li ul {
        display: none;
    }

    .nav .sub.opened {
        position: relative;
        top: 0;
        width: 100%;
        /*! background: orange; */
        margin-top: 0;
        overflow: hidden;
    }

    .nav ul li:hover ul li {
        float: none;
    }

    body.nav-show header {
        right: 200px;
        left: -100px;
    }

    #nav-icon1.open {
        z-index: 99999999;
    }

    .head {
        display: none;
    }

    .lines {
        display: block;
    }



    .banner img {
        height: 30vh;
    }

    .ban1 {
        width: 90%;
        margin-left: 5%;
    }

    .ban-in {
        top: 15%;
    }

    .slick-dots {
        bottom: 6px !important;
    }

    span {
        font-size: 25px !important;
    }

    .pan2 {
        width: 100%;
        padding: 15px;
    }

    .pan {
        width: 100%;
    }

    .box {
        width: 100%;
    }

    .pannel9 {
        padding: 20px 0;
    }

    .testimonials {
        padding: 0px;
    }


    .t1 img {
        width: 100px;
        height: 100px;
        margin-left: 30%;
    }

    .t1 {
        padding: 20px;
    }

    .testimonials h3 {
        margin-bottom: 30px;
    }

    .box-in p {
        margin-bottom: 10px;
    }

    .pannel-7 {
        width: 90%;
        margin-left: 5%;
    }

    .foot {
        padding: 30px 0;
    }

    .f1 {
        width: 100%;
        padding: 20px 0;
    }

    #ek {
        padding-left: 25px;
    }

    .foot-b {
        text-align: center;
    }

    .foot-b p {
        float: unset;
        margin-bottom: 10px;
    }

    .foot-b a {
        float: unset;
        font-size: 14px;
        text-decoration: none;
    }

    .in-ban {
        height: 50vh;
        margin-top: 70px;
    }
    .service-in-ban{
        height: auto !important;
    }
    .in-ban img {
        height: 20vh;
    }
    .in-ban .mobile-img{
        height: 14vh !important;
    }
    .pannel {
        padding: 25px 0;
    }

    .abts ul li {
        font-size: 14px;
    }

    .pan2 ul li {
        font-size: 14px;
    }

    .boxes2 {
        flex-direction: column;
        margin-bottom: 30px;
    }

    #grays {
        padding-top: 40%;
    }

    .boxes3 {
        padding-top: 20px;
        flex-direction: column;
    }

    .box3 {
        width: 100%;
    }

    .box3 img {
        width: 100%;
    }

    .box4 {
        padding: 20px 10px;
    }

    #q2 {
        flex-direction: column-reverse;
    }

    .wraprs {
        margin-top: 25px;
    }

    .wraprs img {
        border-radius: 15px;
        width: 100%;
    }

    .con1 {
        width: 100%;
    }

    .con2 {
        width: 100%;
        padding: 20px;
        margin-left: 0;
    }

    .serv1 {
        margin-top: 0;
        padding: 20px 5px;
    }

    .miss br {
        display: none;
    }

    .order1 {
        order: calc(2) !important;
    }

    .order2 {
        order: calc(1) !important;
    }
}

@media (max-width: 430px) {
    .banner {
        height: 40vh !important;
    }

    .carousel1 {
        height: 40vh;
    }

    .banner-content1 {
        height: 40vh;
    }

    .banner-content1 p {
        font-size: 10px !important;
    }

    .carousel2 {
        height: 40vh;
    }

    .banner-content2 {
        width: 100% !important;
        height: 40vh;
        margin: 0;
        display: flex;
        justify-content: start;
    }

    .banner-content3 {
        height: 40vh;
    }

    .banner-content2 h2 {
        width: 100% !important;
        text-align: center;
        margin: -90px auto 0 auto !important;
        font-size: 20px !important;
        color: #3c3b3c;
    }

    .banner-content2 h2 br {
        display: none;
    }

    .carousel2 {
        height: 40vh;
        background: url('../img/carousel2-550.jpg') center no-repeat;
        background-size: cover;
    }

    .carousel3 {
        height: 40vh;
        background: url('../img/carousel3-550.jpg') center no-repeat;
        background-size: cover;
    }

    .banner-content3 img {
        width: auto !important;
        height: 120px !important;
        margin-left: -30px;
        margin-top: 40px;
    }

    .bollona-banner {
        margin: 15% 0 0 0 !important;
        height: 35vh;

    }

    .venice-banner {
        margin: 15% 0 0 0 !important;
        height: 35vh;
    }
    .home-appliance-bg {
        width: 100%;
        height: 50vh;
        background: url('../img/home-appliance-banner-500.png') center no-repeat;
        background-size: cover;
    }

    .ha-banner-content img {
        margin-top: 80px;
        width: auto !important;
        height: 100px !important;
    }

}

@media (max-width: 376px) {

    .miss br {
        display: none !important;

    }

    .miss2 br {
        display: none !important;

    }

    .carousel3 {
        height: 40vh;
        background: url('../img/carousel3-425.jpg') center no-repeat;
        background-size: cover;
    }

    .banner-content2 h2 {
        text-align: center;
        margin: -110px auto 0 auto !important;
        font-size: 20px !important;
        color: #3c3b3c;
    }

    .banner-content3 {
        width: 100%;
    }

    .banner-content3 img {
        width: auto !important;
        height: 100px !important;
        margin: -90px auto 0 auto;
    }
    
    .ha-banner-content img {
        margin-top: 40px;
        width: auto !important;
        height: 80px !important;
    }
    .in-ban .mobile-img{
        height: 20vh !important;
    }
}