@font-face {
    src: url("../fonts/Montserrat-Medium.ttf");
    font-family: "montserat-thin";
  }
  
  @font-face {
    src: url("../fonts/Montserrat-Bold.ttf");
    font-family: "montserat-regular";
  }

  @font-face {
    src: url("../fonts/Montserrat-ExtraBoldItalic.ttf");
    font-family: "montserat-ExtraBoldItalic";
  }

  @font-face {
    src: url("../fonts/Montserrat-Black.ttf");
    font-family: "montserat-extrabold";
  }
  :root {
  
    --helper: #8490ff;
   
    --gradientSupport: -webkit-linear-gradient(
      0deg,
      rgb(132 144 255) 0%,
      rgb(98 189 252) 100%
    );
  
  }



*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body
{
    background-color: azure;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
    margin-bottom: 0;
}
p{
    margin-bottom: 0;
}
a{
    text-decoration: none;
    margin-bottom: 0;
}
.headmain{
    height: auto;
    overflow-y: hidden;
}
.headone{
    background-color: black;
    color: #fff;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    text-align: center;
    -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;

}
.logo img{
    max-width: 30%;
}
header{
    position: relative;
    height: auto;
     left: 0;right: 0;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 0px 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
header .logo{
    font-weight: bolder;
    font-size: 25px;
    color: #333;
}

header .navbar ul{
list-style: none;
z-index: 1000;
}

header .navbar ul li{
    position: relative;
    float: left;
    z-index: 1000;
}
header .navbar ul li a{
font-size: 20px;
padding: 7px 15px;
color: #333;
display: block;
text-transform: uppercase;
}
header .navbar ul li a:hover{
background-color: #333;
color: white;
z-index: 1000;
}
header .navbar ul li ul{
position: absolute;
left: 0;
width: 250px;
background: #fff;
display: none;
z-index: 1000;
}
header .navbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgba (0,0,0,0.1);
}
header .navbar ul li ul li ul{
    /* left: 200px; */
    top: 0;
    z-index: 1000;
}
header .navbar ul li:focus-within>ul,
header .navbar ul li:hover>ul{
    display: initial;
    z-index: 1000;
}

#menu-bar{
    display: none;
}
header label{
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
}


@media(max-width:991px)
{
    header{
        padding: 20px;
    }
    header label{
        display: initial;
    }
    header .navbar{
        position: absolute;
        top:100%;left: 0%;right: 0%;
        background: #fff;
        border-top: 1px solid rgba(0,0,0,0.1);
        display: none;
    }
    header .navbar ul li{
        width: 100%;
        z-index: 1000;
    }
    header .navbar ul li ul{
    position: relative;
    width: 100%;

    }
    header .navbar ul li ul li{
        background: #eee;
        z-index: 1000;

    }
    header .navbar ul li ul li ul{
        width:100%;
        left: 0;
        z-index: 1000;
    }
    #menu-bar:checked~.navbar{
         display: initial;
    }
}

.sticky header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding-top: 0%;
    padding-bottom: 0%;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    z-index: 99;
    -webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
  }

/* header ended */

.icon-bar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 999;
  }
  .facebook {
    background: #1877f2 !important;
  }
  .Whatsapp {
    background: #25d366 !important;
  }
  .instagram {
    background: #e4405f !important;
  }
  .twitter {
    background: #1da1f2 !important;
  }
  
  .icon-bar a {
    text-decoration: none;
    /* width: 200px; */
    background: #1877f2;
    color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px;
    font-size: 18px;
    transform: translateX(-160px);
    -webkit-transform: translateX(-160px);
    -ms-transform: translateX(-160px);
  
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
  }
  .icon-bar a:hover {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
  }
  
  .icon-bar a i {
    padding-left: 20px;
    font-size: 30px !important;
    animation: letszoom 3s linear alternate-reverse infinite;
  }
  
  @keyframes letszoom {
    from {
      transform: scale(0.8);
    }
    to {
      transform: scale(1);
    }
  }
 


  .fixed-btn{
    position: fixed;
    bottom: 20%;
    right: -5%;
    background: #0FACF3;
    width: 180px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 3px;
    /* box-shadow: 4px 4px 4px #0a78aa; */
    cursor: pointer;
    transform: rotate(-90deg);
  }
  
  .fixed-btn p{
    text-transform: uppercase;
    font-family: arial;
    font-weight: 900;
    color: #fff;
  }
  


/* main block starts */
.mainblock{
    height: auto;
  text-align: center;
  color: #fff;

}
.block{
background-color: #62c4d9;
color: #383085;
padding: 25px;
-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.block:hover
{
	color:#000000;
	background:#fef200;
	/* z-index: 100; */

	-webkit-transform: scale(1.1);
	moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);

	-webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}


.secblk{
    background-color: #383085;
    color: #62c4d9;
    padding: 25px;
}
.block h4{
    font-size: 50px;
    font-weight: 900;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 4px dotted #FFFFFF;
}


.mainintro{
    height: auto;
    padding: 30px 20px;
    background-color: #c9e9f0;
    font-family: "montserat-thin";
}
.introimg img{
    max-width: 100%;
    box-shadow: -1rem -1rem 0 0 var(--helper);
}
.introtext h2{
    font-family: "montserat-ExtraBoldItalic";
  color:  #383085;
}
.btnn{
    padding: 8px 10px;
    border-radius:  5px;
    background-color: #383085;
    color: white;
    text-decoration: none;
}
.btnn:hover{
   
    background-color: #272160;
    color: white;
    text-decoration: none;
}


.slideee{
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/surgeon.jpg) repeat fixed 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: white;
  text-align: center;
  align-items: center;
  color: white;
  
}
.slideee h2{
    font-family: "montserat-regular";
}
.slideee img{
    max-width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.plant{
    height: auto;
    padding: 0px 30px;
}
.plant h2{
    text-align: center;
    font-weight: 700;
    margin: 25px;
    color: #383085;
    font-family: "montserat-regular";
    text-transform: uppercase;
}
.plant h3{
    color: #383085;
    
}
.plantimg img{
    max-width: 90%;
    text-align: center;
    box-shadow: -1rem -1rem 0 0 var(--helper);
}
.certificates{
background-color: #f2f2f2;
height: auto;
padding: 10px 20px;
display: flex;
justify-content: center;
}
.certificates h2{
    text-align: center;
    font-weight: 700;
    margin: 15px; 
    color: #383085;
 text-transform: uppercase;
 font-family: "montserat-regular";
}
.address{
    background-color: rgb(255, 255, 255);
height: auto;
padding: 20px 20px;
display: flex;
justify-content: center;
}
.address h2{
    text-align: center;
    font-weight: 700;
    margin: 15px; 
    color: #383085;
 text-transform: uppercase;
 font-family: "montserat-regular";
}

.addremap{
    text-align: center;
}
.addretext{
    text-align: center;
}
.addretext h3{
    font-weight: 600;
    color: #383085;
}
.addretext img{
    max-width: 30%;
    text-align: center;
}
footer{
    background-color: #383085;
    padding: 20px;
    height: auto;
}
.foterdata{
padding: 15px;
color: white;
text-transform: capitalize;
}
.teamtable{
margin-left: auto;
margin-right: auto;
text-align: center;
padding: 20px;
}
.teamtable h2{
    padding: 10px;
    font-weight: 700;
    color: #383085;
    text-transform: uppercase;
}

.foterdata ul{
    list-style: none;
}
.foterdata ul li a{
text-decoration: none;
color: white;
text-transform:capitalize;
}
.foterdata h3{
    padding-bottom: 2px;
    border-bottom: 3px dotted white;
    text-transform: uppercase;
    font-family: "montserat-regular";
}
.foterdata img{
    max-width: 40%;

}
.credites{
    /* padding: 15px 0px; */
    padding: 10px 0px 10px 0px;
    background-color: #130d43;
    color: white;
    margin-bottom: 0;
}
.credites p{
margin-left: 10%;
}
.credites a{
    text-transform: none;
    color: white;
    font-weight: 700;
    
}

/* abous us started */


/* products section started */
.tabletstable{
    padding: 45px 55px;
    height: auto;
    background-color: beige;
}
.headtables{
    text-align: center;
    margin-bottom: 20px;
}
.headtables h2{
    margin-bottom: 0;
}
.headtables p{
    margin-bottom: 0;
}
/* products section started */

.headpage{
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/surgeon.jpg) repeat fixed 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: white;
  text-align: center;
  align-items: center;
  color: white;
}

.headpage h3{
    color: white;
    font-family: "montserat-ExtraBoldItalic";
border: 5px solid #FFFF00;
padding: 10px;
position: absolute;
left: 50%;
top: 30%;
transform: translate(-50%, -50%);
}
.vision{
    height: auto;
    padding: 20px 15px;
    background-color: #cde3ff;
}

.vision img{
max-width: 100%;
}

.vitext{
    border-left: 3px solid #130d43;
}
.vitext h3{
    font-family: "montserat-ExtraBoldItalic";
    color: #130d43;
}

.counterpart
{
    height: auto;
    padding: 20px 20px;
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/a.jpg) repeat fixed 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: white;
  text-align: center;
  align-items: center;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
}

.box{
    border: 1px dashed rgba(255,255,255,0.6);
    width: calc(25% - 30px);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 20px;
    text-align: center;
}
.box .icon{
    font-size: 48px;
    color: #e6e6e6;
  }
  .box .counter{
    font-size: 50px;
    font-weight: 500;
    color: #f2f2f2;
    font-family: sans-serif;
  }

  /* products started */

  .productsdiv{
      height: auto;
      padding: 25px 25px;
  }
  .productsdiv input{
    display: none;
}
.productsdiv .container{
    width: 100%;
    text-align: center;
}
.productsdiv h1{
    font-weight: normal;
    font-size: 35px;
    position: relative;
    margin: 40px 0;
}
.productsdiv h1::before{
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: crimson;
    bottom: -10px;
    left: 50%;
    transform: translatex(-50%);
    animation: animate 4s linear infinite;
}

@keyframes animate {
    0%{
        width: 100px;
    }
    50%{
        width: 200px;
    }
    100%{
        width: 100px;
    }
}

.productsdiv .top-content{
    background-color: lightgray;
    width: 90%;
    margin: 0 auto 20px auto;
    height: 60px;
    display: flex;
    align-items: center;
}
.productsdiv h3{
    height: 100%;
    background-color: lightgrey;
    line-height: 60px;
    padding: 0 50px;
    color: white;
    border-radius: 5px;
    box-shadow: 3px 3px 5px lightgray;
}

.productsdiv label{
    display: inline-block;
    height: 100%;
    padding: 0 5px;
    margin: 0 20px;
    line-height: 60px;
    font-size: 18px;
    color: gray;
    cursor: pointer;
    transition: color 0.5s;
}
.productsdiv label:hover{
    color: black;
}
.productsdiv .photo-gallery{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
}

.pic{
    position: relative;
    height: 230px;
    border-radius: 10px;
    box-shadow: 3px 3px 5px lightgray;
    cursor: pointer;
    transition: .5s;
}
.pic img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: .5s;
}
/* .pic::before{
    content: 'photo gallery';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 22px;
    font-weight: bold;
    width: 100%;
    margin-top: -100px;
    opacity: 0;
    transition: .3s;
    transition-delay: .2s;
    z-index: 1;
} */

.pic::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: .3s;
    width: 100%;
    height: 0;
    background-color: rgba(0,0,0,0.4);

}

.pic:hover::after{
height: 100%;
}
.pic::before{
margin-top: 0;
opacity: 1;

}
#check1:checked ~ .container .photo-gallery .pic{
    opacity:1;
    transform: scale(1);
    position: relative;
    transition: .5s;
    }
    
    #check2:checked ~ .container .photo-gallery .family

    {
        transform: scale(1);
        opacity: 1;
        position: relative;
        
    }

    #check2:checked ~ .container .photo-gallery .child,
    #check2:checked ~ .container .photo-gallery .place{
        transform: scale(0);
        opacity: 0;
        position: absolute;
        transition: .0s;
    }



    #check3:checked ~ .container .photo-gallery .child

    {
        transform: scale(1);
        opacity: 1;
        position: relative;
        
    }

    #check3:checked ~ .container .photo-gallery .family,
    #check3:checked ~ .container .photo-gallery .place{
        transform: scale(0);
        opacity: 0;
        position: absolute;
        transition: .0s;
    }


    #check4:checked ~ .container .photo-gallery .place

    {
        transform: scale(1);
        opacity: 1;
        position: relative;
        
    }

    #check4:checked ~ .container .photo-gallery .family,
    #check4:checked ~ .container .photo-gallery .child{
        transform: scale(0);
        opacity: 0;
        position: absolute;
        transition: .0s;
    }



    .packaging{
        padding: 30px;
        text-align: center;
       
    }
    .packaging h2{
        font-weight: 700;
        color: #130d43;
    }
    .packrow div{
        margin-left: auto;
        margin-right: auto;
        padding: 15px;
    }

    .packrow div h4{
        font-size: 20px;
        font-weight: 700;
        color: #130d43;
    }

    .intclient{
        margin-left: auto;
        margin-right: auto;
        text-align: center;
       margin-bottom: 25px;
    }
    .headclie {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
}
.headclie h2{
    font-size: 40px;
    font-weight: 700;
    color: #383085;
    font-family: "montserat-regular";
}
.intclient img{
max-width: 80%;
}
.Keyapprovals{
    padding: 30px;
    background-color: rgb(252, 244, 244);
}

.contpage{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/contacthead.jpg);
}
.prodethead{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/prodet.jpg)repeat fixed 100%;
}
.quamang{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/promang.jpg)repeat fixed 100%;
}
.Quacon{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/quaconhead.jpg)repeat fixed 100%;
}
.cliedethead{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/clihead.jpg)repeat fixed 100%;
}
.Perdethead{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/asianplant.jpg)repeat fixed 100%;
}
.contpage,.prodethead,.quamang,.Quacon,.cliedethead,.Perdethead{
    height: 40vh;
   background-repeat: no-repeat;
  background-size: cover;
  background-color: white;
  text-align: center;
  align-items: center;
  color: white;
  background-position: 0%;
}

.Perdethead h3,.prodethead h3,.contpage h3,.quamang h3,.Quacon h3,.cliedethead h3,.Perdethead h3{
    color: white;
    font-family: "montserat-ExtraBoldItalic";
border: 5px solid #FFFF00;
padding: 10px;
position: absolute;
left: 50%;
top: 30%;
transform: translate(-50%, -50%);
}
    /* contact started */
    .leftside{
        height: auto;
        padding: 20px 25px;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .leftside img{
        max-width: 80%;
        border-radius: 10px;
    }
    .addresscontact{
        max-width: 80%;
        background-color: #130d43;
        padding: 20px 25px;
        color: white;
        border-radius: 10px;
        margin-top: 8px;
        /* display: flex;
        text-align: center;
        align-items: center; */
    }

    .rightside{
        padding: 15px;
        border: 2px dashed #130d43;
    }
    @media (max-width: 950px){

        .top-content{
            
            display: flex;
            flex-direction: column;
            align-items: center;
            /* margin-bottom: 15px; */
        }
        label{
            height: 100%;
           width: 100%;
            background-color: black;
            color: rgb(255, 255, 255);
        }
        label:hover{
            color: rgb(182, 155, 4);
        }
        .photo-gallery{
            width: 90%;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(3,1fr);
            grid-gap: 15px;
        }

        .pic{
            position: relative;
            /* width: 130px; */
            height: 130px;

            border-radius: 10px;
            box-shadow: 3px 3px 5px lightgray;
            cursor: pointer;
            transition: .5s;
        }
        .pic img{
            width: 100%;
            height: 100%;
            border-radius: 10px;
            transition: .5s;
        }
        .abcd{
            margin-top: 245px;
        }
    }
    @media (max-width: 650px){
        .photo-gallery{
            width: 90%;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(2,1fr);
            grid-gap: 15px;
        }
    }

    /* contact section started */
    .contact{
        height: auto;
        padding: 25px;
    }

@media(max-width:991px){
    .headone{
        display: none;
    }
    .fixed-btn{
        position: fixed;
        bottom: 20%;
        right: 10%;
        background: #0FACF3;
        width: 150px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        align-items: center;
        border-radius: 3px;
        /* box-shadow: 4px 4px 4px #0a78aa; */
        cursor: pointer;
        transform: rotate(-90deg);
      }
      
      .fixed-btn p{
        text-transform: uppercase;
        font-family: arial;
        font-weight: 900;
        color: #fff;
      }
      .slideee{
        height: 20vh;
       
      
    }
}