*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    font-family: 'Poppins',sans-serif;
}
.header
{
        background:radial-gradient(#fff,#e1d6ff);
        height: auto;
}

.navbar
{
    display: flex;
    align-items: center;
    padding: 20px;
}
nav
{
    flex: 1;
    text-align: right;
}
nav ul
{
    display: inline-block;
    list-style-type: none;
}
nav ul li
{
    display: inline-block;
    position: relative;
}
nav ul li a
{
    text-decoration: none;
    /* color: #ffffff; */
    color: black;
    margin-right: 20px;
}

nav ul li a:hover
{
    color: #ff523b;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }  
  .dropdown-content a {
    min-width: 160px;
    color: black;
    padding: 12px 0px;
    margin: 0;
    text-align: center;
    text-decoration: none;
    display: block;
  }  
  .dropdown-content a:hover {background-color: #ddd;}
  .dropbtn:hover .dropdown-content {display: block;}
p
{
    /* color: #ffffff; */
    font-size: 14px;
}
span
{
    color: #ff523b;
}
.container
{
    max-width: 1300px;
    margin: auto;
    padding: 0px 25px;
}
.header .row
{
    margin-top:40px;
}
.row
{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.col-2
{
    flex-basis: 50%;
    min-width: 300px;
}
.row .col-2 h1
{
    font-size: 35px;
    /* color: #ff523b; */
    line-height: 50px;
    margin: 25px 0px;
}
.btn
{
    display: inline-block;
    background-color: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.5s;
}
.btn:hover
{
    background-color: #564343;
}
.col-2 img
{
    max-width: 100%;
    padding: 50px 0px;
}

/* -------------------------------------products  Start----------------------- */
.products
{
    margin: 70px 0px;
}
.small-container
{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.small-container  h1
{
    text-align: center;
    margin-bottom: 20px;
    color: #ff523b;
    position: relative;
}
.small-container  h1::after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 48%;
    width: 5%;
    height: 2px;
    background-color: black;
}
.col-3
{
    flex-basis: 30%;
    max-width: 300px;
    margin-bottom: 30px;
}

.col-3 img
{
    width: 100%;
    height: 300px;
}
.col-3 h2
{
    text-align: center;
    font-size: 20px;
    color: #564343;
}
.col-3 h2:hover
{
    color: #ff523b;
}

/* -------------------------------------------About Start----------------------------------- */
.about
{
    background:radial-gradient(#fff,#e1d6ff);
}
.abt-container
{
    max-width: 1180px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.abt-container  h1
{
    text-align: center;
    margin-bottom: 20px;
    color: #ff523b;
    padding: 20px 0;
    position: relative;
}
.abt-container h1::before
{
    content: "";
    position: absolute;
    bottom: 0;
    top: 50px;
    left: 48%;
    width: 4%;
    height: 2px;
    background-color: black;
}
.abt-container .col-3
{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 1080px;
}
.abt-1
{
    flex-basis: 50%;
    max-width: 300px;
    margin-bottom: 30px;
}
.abt-1a
{
    flex-basis: 50%;
    margin-bottom: 30px;
    padding: 25px 0px;
}
.abt-1a h3
{
    font-size: 40px;
    margin: 10px;
}
.abt-1a b
{
    font-size: 18px;
    margin-bottom: 10px;
    color: #ff523b;
}

/* ------------------------------------Contact Start---------------------------------------------- */
.contact
{
    background-color: lightgray;
}
.contact  h1
{
    text-align: center;
    margin-bottom: 20px;
    color: #ff523b;
    padding: 20px 0;
    position: relative;
}
.contact h1::before
{
    content: "";
    position: absolute;
    bottom: 0;
    top: 50px;
    left: 48%;
    width: 5%;
    height: 2px;
    background-color: black;
}
.contact .row .col-3
{
    flex-basis: 30%;
    max-width: 300px;
}
.contact .row .col-3 img
{
    height: 150px;
    margin-bottom: 10px;
}
.contact .row .col-3 h3, p a
{
    line-height: 55px;
    text-decoration: none;
    color: black;
    text-align: center;
}
.contact .row .col-3 p 
{
    text-align: center;
}
.contact .row .col-3 p a
{
    color: darkgray;
}
.contact .row .col-3 p a:hover
{
    color: black;
}
.contact .row .col-3 form input
{
    margin-top: 20px;
    padding: 8px 22px;
    border: none;
    outline: none;
    width: 300px;
    border-radius: 20px;
}
.contact .row .col-3 form a
{
    margin-left: 60px;
}



/* -----------------------------------------Media Query Start-------------------------------------- */
.menu-icon
{
    width: 50px;
    margin-left: 20px;
    display: none;
}

@media only screen and (max-width:800px)
{
    .header
{
        background:radial-gradient(#fff,#e1d6ff);
        height: 100%;
}
    nav ul
    {
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #333;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    nav ul li
    {
        display: block;
        text-align: center;
        /* margin: 10px 50px 10px 0px; */
        margin-top: 30px;
        line-height: 40px;
    }
    nav ul li a
    {
        color: #fff;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 100%;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
      }  
      .dropdown-content a {
        min-width: 160px;   
        color: black;
        padding: 12px 0px;
        margin: 0;
        text-align: center;
        text-decoration: none;
        display: block;
      }  
      .dropdown-content a:hover {background-color: #ddd;}
      .dropbtn:hover .dropdown-content {display: block;}
    .menu-icon
    {
        display: block;
        cursor: pointer;
    }
}

@media only screen and (max-width:600px)
{
    nav ul li
    {
        margin-top:20px;
        line-height: 30px;
    }
    .dropbtn .dropdown-content a {
        line-height:30px;
      }  
    
    .row
{
    text-align: center;
}
    .col-2, .col-3
    {
        width: 100%;
        flex-basis: 100%;
        text-align: center;
        /* display: block; */
    }
    .abt-1
{
    width: 100%;
    flex-basis: 100%;
    text-align: center;    
}
.abt-1 img
{
    margin-left: 0px;
}
.abt-1a
{
    width: 100%;
    text-align: center;
    flex-basis: 100%;
    margin: 0 auto;
}
.abt-2
{
    width: 100%;
    text-align: center;
    flex-basis: 100%;
}
.abt-2a
{
    width: 100%;
    text-align: center;
    flex-basis: 100%;
}
.abt-container .col-3
{
    display: block;
}
.contact .row .col-3
{
    flex-basis: 100%;
}
.contact .row .col-3 form a
{
    margin-left: 0px;
}

}
@media only screen and (max-width:450px)
{
    .products .small-container .row .col-3 h2{margin: 0rem;}
}

/* ----------------------------------------MELSEC-IQ-R-Products Start------------------------------------ */
.melsec-IQ-R-info{
    max-width: 1080px;
    margin: 40px 0px;
}    
.melsec-IQ-R-info h1, h2{margin: 0 0 1.3rem 5.59rem;padding: 0px 20px;width: 100%;}
.melsec-IQ-R-info h1{background-color: #ff523b;color: white;font-size: 1.5rem;}
.melsec-IQ-R-info h2{background-color: lightgray;color: #ff523b;font-size: 1rem;}
.container .melsec-IQ-R-info img{width: 100%; height: 500px; margin: 0 0 0 90px;}
.melsec-IQ-R-info .row{width: 100%;margin: 0 0 1.3rem 5.59rem;align-items:center;}
.melsec-IQ-R-info .row .col-2 img{width: 330px;height: 350px;}
.table table{margin: 0 0 1.3rem 5.59rem;border-collapse: collapse; text-align: center;font-size:0.8rem;}
.table table tr th,td{padding: 5px;font-weight: normal;}

/* ----------------------------------------MELSEC-IQ-F-Products Start------------------------------------ */

