/* Navbar styles and hover styles starts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* ==========default css========*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: inline-block;
    width: 100%;
    margin: 0px !important;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

*,
::after,
::before {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

:hover {
    transition: all 0.5s ease-in-out;
}

*:focus {
    outline: none;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    background-color: #F4F4F4 !important;
}


/* .container {
    max-width: 1330px;
    padding: 0 15px;
    margin: 0 auto;
    display: block; */
/* } */

p{
    font-size: 14px;
}
.slick-track img{
  width: 90%;
}
/******************************Hader*************************/
.accordaian {
    background-color: #009BC4;
    color: #fff;
}

.accordaian_menu li {
    gap: 10px;
    padding: 15px;
}

.navbar-brand {
    height: 107px;
    width: 355px;
}


/*--------- top bae end--------- */
.navbar{
    background-color: white;
    font-family: 'Arbutus Slab';
    font-size: 14px;
  }

  .navbar {
    position: relative;
    transition: border-bottom-color 0.3s ease-in-out;
  }

  .navbar:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #009EC5;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
  }

  .navbar:hover {
    border-bottom-color: #009EC5;
  }

  .navbar:hover:before {
    transform: scaleX(1);
  }
/* Navbar styles and hover styles start*/



/* Brand or logo (image) styles and hover styles start*/
  .logo-img {
      transition: transform 0.3s ease-in-out;
    }
  
  .logo-img:hover {
  transform: scale(1.1);
  border: 2px solid #009EC5;
  animation: border-animation 2s infinite;
  }

  @keyframes border-animation {
  0% {
      border-color: #b3ffb3;
  }
  25% {
      border-color: #66ff66;
  }
  50% {
      border-color:#00cc00 ;
  }
  75% {
      border-color:#006600 ;
  }
  100% {
      border-color:#001a00 ;
  }
  }
/* Brand or logo (image) styles and hover styles end*/



/* Navbar list (Home, About, Vision, Contact) styles and hover starts*/
  .navbar-nav {
    list-style: none;
    padding: 0;
  }
  
  .nav-item {
    display: inline-block;
    margin-right: 15px;
    position: relative;
    padding-top: 12px;
  }
  
  .nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    transition: transform 0.3s ease-in-out;
  }
  
  .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #009EC5;
    transition: width 0.5s ease-in-out;
  }
  
  .nav-link:hover {
    transform: scale(1.1);
    font-weight: bold;
    color: #009EC5;
  }
  
  .nav-link:hover:before {
    width: 100%;
    animation: underline 0.6s linear;
  }
  
  @keyframes underline {
    0% {
      left: 0;
      width: 0;
    }
    25% {
      left: 0;
      width: 100%;
    }
    50% {
      left: 100%;
      width: 0;
    }
    75% {
      left: 0;
      width: 100%;
    }
    100% {
      left: 0;
      width: 100%;
    }
  }
/* Navbar list (Home, About, Vision, Contact) styles and hover starts*/


    
/* search box styles and hover styles starts */  
  .search-form input[type="text"]:hover,
  .search-form input[type="text"]:focus {
    animation: border-animation 2s infinite;
  }
  
  @keyframes border-animation {
    0% {
      border-color: #004d00;
      box-shadow: 0 0 5px #004d00;
    }
    50% {
      border-color: #00cc00;
      box-shadow: 0 0 5px #00cc00;
    }
    100% {
      border-color: #004d00;
      box-shadow: 0 0 5px #004d00;
    }
  }
  
  .search-form input[type="text"]:hover::placeholder {
    font-size: 14px;
    transition: font-size 0.3s ease-in-out;
  }

  .search-wrapper {
    position: relative;
  }
  
  .search-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  
  .search-button i {
    color: #000;
  }
  
  .search-form input[type="text"] {
    padding-right: 30px;
  }

  .search-button i:hover {
    transform: scale(1.2);
  }
  .dropdown-menu[data-bs-popper]{
    left: -19px;
    width: auto !important;

  }
/* search box styles and hover styles ends */ 



/* User profile or dropdown styles and hover styles starts */
  .fa-regular{
    color: white;
    font-size: 20px;
    padding: 5px;
    background-color: black;
  }

  .dropdown-menu.dropdown-menu-center {
    left: 40% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }

  .dropdown .btn:hover {
    transform: scale(1.1);
    }

  .dropdown-item{
    font-family: 'Arbutus Slab';
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .dropdown-item:hover {
    transform: scale(1.1);
  }

  .dropdown-divider {
    border: none;
    height: 2px;
    background-color: #000;
    margin: 0.5rem 0;
    opacity: 0.5;
  }
/* User profile or dropdown styles and hover styles starts */  



/* Media query styles for 576 px size user window starts */  
  @media (max-width: 576px) {
    .nav-item{
        padding-left: 10%;
    }

    .dropdown{
        padding-left: 8%;
    }
    
    .dropdown-menu.dropdown-menu-center {
      left: 30% !important;
      right: 0 !important;
      transform: translateX(0) !important;
    }
  }
/* Media query styles for 576 px size user window ends */


/* ------slider-------- */
.slick-slide{
    height: auto !important;
}
.slider-img img{
    margin: 0px auto;
}
.slick-next:before ,.slick-prev::before{
    /* color: #0000ff !important;
    font-size: 26px !important; */
    display: flex;
    align-items: center;
}
/* .slick-next::before{
    padding: 5px 10px;
    border: none;
    width: 20px;
    background-color:#0000ff !important;
    color: white !important;
} */
.slick-next:hover{
    /* color: #fff;
    padding: 5px 10px;
    border: none; */
    /* background-color:#0000ff; */
}
.slick-next:before {
    content: url('../img/Layer3.png') !important;
    position: absolute;
    left: -17px;
}
.slick-prev::before {
  content: url('../img/Layer\ 1.png') !important;
  position: absolute;
  right: -17px;
}
/*-------------------aimg-hover---------------- */

p strong{
  font-family: Lato;
  font-size: 40px;
}

.item{
  max-width: 400px;
  background-color: white;
  position: relative;
  display: inline-block;
  margin: 30px 10px;
  overflow: hidden;
  box-shadow: 2px 3px 10px #d8d8d8;
}

.item .overlay{
  color: #000;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.767);
  opacity: 0;
  transition: all 0.5s ease;
  position: absolute;
  top: 0; 
  bottom: 0;
}

/* effect-clean*/
.clean .overlay span:nth-child(1){
  position: absolute;
  left: 30%;
  top: 35%;
  font-size: 80px;
  font-weight: bold;
  font-family: coustard;
  transform: translateX(-50%);
}

.clean .overlay span:nth-child(2){
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 17px;
  transform: translateX(-50%);
}

.clean .overlay span:nth-child(3){
  height: 3px;
  background-color: #000;
  position: absolute;
  top: 60%;
  left: 0;
}

.clean .overlay:hover{
  opacity: 0.93;
}

.clean .overlay:hover span:nth-child(1){
  animation: slide 0.4s;
}

.clean .overlay:hover span:nth-child(2){
  animation: slide 0.7s;
}

.clean .overlay:hover span:nth-child(3){
  animation: line 0.5s forwards;
}

@keyframes slide{
  0%   {transform:translateX(-10%);}
  100% {transform:translateX(-50%);}
}

@keyframes line{
  0%   {width: 0;}
  100% {width: 50%}
}

/* effect-uncover*/

.uncover .overlay span:nth-child(1){
  position: absolute;
  left: 50%;
  top: 35%;
  font-size: 80px;
  font-weight: bold;
  font-family: coustard;
  transform: translateX(-50%);
  opacity: 0;
}

.uncover .overlay span:nth-child(2){
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 17px;
  transform: translateY(-50%);
  transform: translateX(-50%);
  opacity: 0;
}

.uncover .overlay span:nth-child(3){
  height: 30px;
  background-color: #000;
  position: absolute;
  top: 38%;
  opacity: 0;
}

.uncover .overlay span:nth-child(4){
  height: 30px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 25%;
  opacity: 0;
}

.uncover .overlay:hover{
  opacity: 0.9;
}

.uncover .overlay:hover span:nth-child(1){
  animation: fadein 0.6s forwards;
    animation-delay: 0.5s;
}

.uncover .overlay:hover span:nth-child(2){
  animation: fadein 0.6s forwards;
  animation-delay: 0.75s;
}

.uncover .overlay:hover span:nth-child(3){
  animation: draw-left 0.7s;
}

.uncover .overlay:hover span:nth-child(4){
  animation: draw-right 0.7s;
  animation-delay: 0.6s;
}

@keyframes draw-left{
  0%   {
    opacity: 0; 
    width: 0px;
    left: 75%}
  50% {
    opacity: 1;
    left: 25%;
    width: 200px;}
  
  100% {
    opacity: 0;
    width: 0px;
    left: 25%;}
}

@keyframes draw-right{
  0%   {
    opacity: 0; 
    width: 0px;
}
  50% {
    opacity: 1;
    width: 200px;
   }
  
  100% {
    opacity: 0;
    width: 0px;
    }
}

@keyframes fadein{
  0%   {
    opacity: 0;} 
  100%   {
    opacity: 1; }
}

/* effect-explode */
.explode .overlay span:nth-child(1){
  position: absolute;
  left: 10%;
  top: 45%;
  font-size: 200px;
  font-weight: bold;
  font-family: coustard;
  transform: translateX(-50%);
  opacity: 0;
}

.explode .overlay span:nth-child(2){
  position: absolute;
  top: 80%;
  left: 10%;
  font-size: 17px;
  opacity: 0;
}

.explode .overlay span:nth-child(3){
  position: absolute;
  top: 90%;
  left: 0;
  height: 60px;
  background-color: #000;
}

.explode .overlay:hover{
  opacity: 0.9;
}

.explode .overlay:hover span:nth-child(1){
  animation: focus 0.4s forwards;
  animation-delay: 0.2s;
}

.explode .overlay:hover span:nth-child(2){
  animation: focus 0.4s forwards;
  animation-delay: 0.4s;
}

.explode .overlay:hover span:nth-child(3){
  animation: block 0.3s forwards;
  animation-delay: 0.15s;
}

@keyframes focus{
  0%   {
    transform:scale(1.4) translateX(-30%);
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    transform:scale(1) translateX(0%);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes block{
  0%   {
    width:0;
    filter: blur(5px);
    opacity: 0;
  }
  100% {
    width: 100%;
    filter: blur(0px);
    opacity: 1;
  }
}

@media only screen and (max-width: 1020px) and (min-width:550px){
    .clean .overlay span:nth-child(1) {
        position: absolute;
        left: 30%;
        top: 35%;
        font-size: 40px;
        font-weight: bold;
        font-family: coustard;
        transform: translateX(-50%);
    }
    .clean .overlay span:nth-child(2) {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 60%;
        font-size: 13px;
        transform: translateX(-50%);
    }
    .clean .overlay span:nth-child(3) {
        height: 3px;
        background-color: #000;
        position: absolute;
        top: 65%;
        left: 0;
    }
}
/*************************Facility_page**********************/

.facilities-img{
  border-radius: 25px;
}

.who-we-are-img img{
  height: 60vh;
  width: 100vh;
}

.table{
  overflow-x: auto;
}
@media only screen and (max-width: 550px) {
  .product-img{
    flex-direction: column;
    display:flex;
    align-items: center;
  }
  }
/****************************Contact Detalis******************/
.contact-requirements{
  width: 86%;
}
input{
  border: 1px solid #777777;
}