* {
  box-sizing: border-box;
}

body,
html {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  margin: 0%;
  padding: 0%;
}

.menu-btn {
  display: none;
  color: #ffffff;
 
}

.close-btn {
  color: black;
  /* old white */
  display: none;
  padding: 5px;
}

header {
  z-index: 999;
  position: relative;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  /* background: rgba(255, 255, 255, 0.5); */
  color: #fff;
  box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
  padding: 0 50px;
  padding-top: 10px;
  transition: 0.6s;
  transition-property: color;
  border-bottom: 1px solid #e1e1e1;
}

header .logo {
  height: 50px;
  cursor: pointer;
  z-index: 999;
}

header .logo:hover {
  color: #2874a6;
  z-index: 999;
}

header .navigation {
  position: relative;
  height: 50px;
  margin: 0px;
  transition: 0.6s;
  z-index: 999;
}

.bigBtn {
  text-decoration: none;
  color: black;
  background-color: #fff;
  padding: 5px 10px;
  z-index: 999;
}

header .navigation .menu {
  display: flex;
  justify-content: center;
  list-style: none;
  user-select: none;
  z-index: 1000;
  opacity: 1;
  z-index: 999;
}

.menu {
  margin: 0px;
}

.menu-item {
  margin: 10px;
}

.menu-item > a {
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  padding: 5px;
}

.menu-item > a:hover {
  color: #dddddd;
  transition: 0.3s;
}

/* sticky header */

header.sticky {
  padding: 0 50px;
  background-color: rgba(255, 255, 255, 0.95);
  color: black;
  position: fixed;
  top: 0px;
  transition: none;
  z-index: 999;
}

header.sticky .navigation ul li a {
  color: black;
  z-index: 999;
}
header.sticky .navigation ul li a:after {
  background-color: black;
  z-index: 999;
}

/* sticky header end */

/* stroke */
.navigation ul li a,
.navigation ul li a {
  position: relative;
}
.navigation ul li a:after,
.navigation ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0%;
  right: 0;
  margin: auto;
  width: 0px;
  content: "";
  color: transparent;
  background: #dddddd;
  height: 2px;
  transition: all 0.5s;
}
.navigation ul li a:hover:after {
  width: 100%;
}

.bckimghd {
  background-image: url(/uploads/bckgrnd.jpg);
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
  width: 100%;
  z-index: 1;
  position: relative;
}

.bckGradient {
  min-height: 100%;
  width: 100%;

  opacity: 0.7;
  position: absolute;
  background: rgb(237, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(237, 0, 0, 1) 0%,
    rgba(125, 62, 91, 1) 25%,
    rgba(85, 84, 124, 1) 35%,
    rgba(9, 126, 186, 1) 50%,
    rgba(7, 103, 152, 1) 75%,
    rgba(7, 102, 151, 1) 90%,
    rgba(6, 84, 124, 1) 100%
  );
}


.topContent {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.center {
  padding-top: 1%;
  color: #e1e1e1;
  z-index: 10;
  width: 60%;
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Poppins", sans-serif;
}

.center h1 {
  font-size: 64px;
  font-family: "Barlow Condensed", sans-serif;
  margin-top: 10px;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.headerBtn {
  padding: 10px 20px;
  text-decoration: none;
  background-color: #fff;
  color: #23252b;
  margin: 10px;
  width: 200px;
  text-align: center;
  border: 0px solid black;
  border-radius: 7px;
  font-size: 18px;
  transition: 0.5s;
  display: inline;
  font-family: "Poppins", sans-serif;
}
.arrow {
  opacity: 0;
  padding-left: 3px;
  transition: 0.5s;
  color: black;
}

.headerBtn:hover .arrow {
  opacity: 1;
}

.headerBtn.info {
  background: rgb(7, 65, 186);
  background: linear-gradient(
    90deg,
    rgba(7, 65, 186, 1) 0%,
    rgba(131, 33, 93, 1) 69%,
    rgba(255, 0, 0, 1) 100%
  );
  color: #fff;
  text-align: center;
}

.headerBtn.contactBtn {
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.titleHead h1 {
  text-align: center;
  margin: 0px;
  background: rgb(7, 65, 186);
  background: linear-gradient(
    90deg,
    rgba(7, 65, 186, 1) 0%,
    rgba(131, 33, 93, 1) 69%,
    rgba(255, 0, 0, 1) 100%
  );
  color: #fff;
  padding: 26px;
  display: block;
}

.headerBtn.info:hover {
  background: #fff;
  color: black;
}

.aboutUs {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 30px 20px;
  background-color: #f1f8fb;
  justify-content: space-evenly;
}

.midContent {
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.midContent img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.midContent h2 {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 24px;
}

.midContent p {
  color: #7a7a7a;
  padding-left: 10px;
  padding-right: 10px;
}

/* Our services */
.services {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 10px 0px;
  flex-wrap: wrap;
  
}

.midContainer {
  min-width: 350px;
  width: 20%;
  background-color: #e2e2e2;
  padding: 10px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 0;
  border-radius: 10px;
  cursor: pointer;
  z-index: 0;
  margin: 1%;


  
 
}

.midContainer::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  transition: transform 0.7s;
  transform-origin: left top;
  transform: scale(0, 1);
  background: rgba(131, 33, 93, 1);
  color: #fff;
}

.midContainer:hover {
  color: #fff;
}




.midContainIcons{
  padding: 5px;
  border-radius: 50%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
}

.midContainer:hover::before {
  width: 100%;
  transform-origin: left top;
  transform: scale(1, 1);
}

.midContainerText{
  transition: 0.5s;
}

.midContainerText h2 {
  text-align: center;
  margin: 0%;
}

.products {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  
  padding: 10px 0px;
  flex-wrap: wrap;
 
}




.moreProducts {
  width: 100%;
  display:flex;
  flex-wrap: wrap;
  transition: all 0.5s;
  flex-direction: row;
  justify-content: space-evenly;
  
  padding: 10px 0px;
 
  
}


.moreDiv{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 10px;

}

.moreBtn{
  /* background-color: #2874a6; */
  background-color: red;
  color: #ffffff;
  font-size: 20px;
  border: 0px solid black;
  padding: 20px 35px;
  transition: 0.5s;
  cursor: pointer;
  border-radius: 5px;

}

.moreBtn .moreBtnIcon{
  background-color: #ffffff;
  color: #2874a6;
  padding: 5px 7px;
  border-radius: 50%;
  margin-left: 5px;
  transition: 0.5s;
}
.moreBtn:hover{
  background-color: #009879;
  
 

}

.moreBtn:hover .moreBtnIcon{
 color: #009879;
  
 

}




.contact {
  display: flex;
  flex-direction: row;
  /* justify-content: space-evenly; */
  font-family: "Barlow Condensed", sans-serif;
}

.contactForm {
  display: flex;
  flex-direction: column;
  width: 60%;
  display: none;

  margin: 10px;
  padding: 20px;
  font-family: "Barlow Condensed", sans-serif;
  border-radius: 5px;
  box-shadow: 0px 10px 20px 0px rgb(0 69 255 / 12%);
}


.contactFormRight{
  display: flex;
  flex-direction: column;
  width: 40%;
  width: 100%;

}

.contactForm h1 {
  font-size: 32px;
  letter-spacing: 1px;
  margin: 0%;
  padding: 0%;
}

.contactForm p {
  font-size: 20px;
}

.contactBtnDiv {
  display: flex;
  justify-content: flex-start;
  padding: 10px;
}



.formArea {
  display: flex;
  flex-direction: row;
  margin-bottom: 5px;

  width: 100%;
}

input[type="text"] {
  padding: 8px 12px;
  margin: 5px 10px;
  border: 0px solid black;
  border-radius: 5px;
  outline: none;
  background-color: #f5f5f5;
  width: 50%;
  font-size: 18px;
}

textarea {
  padding: 8px 12px;
  margin: 5px 10px;
  border: 0px solid black;
  border-radius: 5px;
  outline: none;
  background-color: #f5f5f5;
  width: 100%;
  font-size: 18px;
  resize: none;
}

.submit {
  background: rgb(7, 65, 186);
  background: linear-gradient(
    130deg,
    rgba(7, 65, 186, 1) 0%,
    rgba(131, 33, 93, 1) 69%,
    rgba(255, 0, 0, 1) 100%
  );
  color: #fff;
  border: 0px solid black;
  border-radius: 5px;
  width: 200px;
  height: 55px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.5s;
}


.submit:hover{
  background: rgb(7, 65, 186);
  background: linear-gradient(
    240deg,
    rgba(7, 65, 186, 1) 0%,
    rgba(131, 33, 93, 1) 69%,
    rgba(255, 0, 0, 1) 100%
  );
  
}




.ContactInfo{
  box-shadow: 0px 10px 20px 0px rgb(0 69 255 / 12%);
  padding: 5px 10px;
  margin: 10px;
  display: flex;
  flex-direction: row;

}

.ContactInfoText{
  font-size: 19px;
}

.ContactInfoText h2{
 margin-bottom: 5px;
}

.ContactInfoIcon{
  width: 100px;
  padding: 10px;
  
}

.iconic{
  font-size: 72px;
  background: linear-gradient(240deg,rgba(7, 65, 186, 1) 0%,
  rgba(131, 33, 93, 1) 69%,
  rgba(255, 0, 0, 1) 100%);
  background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* color: #E1E1E1; */
/* #7A7A7A */



.footer{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  font-family: "Poppins", sans-serif;
  background-color: #009879;
  padding: 10px 20px;
}

.footContainer{
  width: 300px;
}



.footContainerText{
  display: flex;
  flex-direction: column;
}


.footLinks{
  text-decoration: none;
  color: black;
  transition: all 0.5s;

}

.footLinks:hover{
  text-decoration: none;
  color: black;
  padding-left: 13px;
  
}



/* top welcome content */

#toTop {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 999;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  font-size: 18px;
  opacity: 0.8;
}

#toTop:hover {
  background-color: #2874a6;
}

@media (max-width: 850px) {
  body,
  html {
    margin: 0px;
    padding: 0px;
    /* overflow-x: hidden; */
  }

  header {
    padding: 15px 20px;
    height: 60px;
    margin: 0px;
  }

  header.sticky {
    padding: 15px 20px;
    position: fixed;
    color: black;
  }
  header.sticky .navigation ul li a {
    color: #fff;
  }
  header.sticky .navigation ul li a:after {
    background-color: #fff;
  }

  header .navigation .menu {
    position: fixed;
    display: block;
    background: black;
    /* old black */
    min-width: 150px;
    height: 100vh;
    top: -30px;
    right: -100%;
    padding: 90px 50px;
    visibility: hidden;
    overflow-y: auto;
    transition: 0.5s;
    transition-property: right, visibility;
  }

  header .navigation .menu.active {
    right: 0;
    visibility: visible;
  }
  .menu-item {
    position: relative;
    padding-bottom: 15px;
    display: block;
  }

  .close-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background-size: 25px;
    background-position: center;
    top: 0;
    left: 0;
    margin: 25px;
    margin-top: 40px;
    cursor: pointer;
    color: #fff;
  }


  header.sticky .menu-btn {
    cursor: pointer;
    display: block;
    color: black;
    font-size: 24px;
  }
  .menu-btn {
    /* width: 40px;
    height: 40px;
    padding: 10px; */
    /* background-size: 30px;
    background-position: center; */
    cursor: pointer;
    display: block;
    color: #ffffff;
    font-size: 24px;
  }
  .gg-menu {
    background-color: #ffffff;
    /* old white */
  }
  .gg-menu::before {
    background-color: #ffffff;
    /* old white */
  }
  .gg-menu::after {
    background-color: #ffffff;
    /* old white */
  }
  .close-btn {
    /* old white */
    display: block;
  }


  .buttons{
    flex-wrap: wrap;
  }


  .aboutUs{
    flex-direction: column;
  }


  .midContent{
    width: 100%;
    
    
  }


  .services{
    /* flex-direction: column; */
    flex-wrap: wrap;
    padding: 0px 0px;
    
    
    

  }

  .products{
    /* flex-direction: column; */
    flex-wrap: wrap;
  }


  .contact{
    /* flex-direction: column; */
    flex-wrap: wrap;
  }


  .midContainer{
    width: 100%;
    margin: 1.5%;
  }

  .contactForm{
    width: 100%;
  }

  .contactFormRight{
    width: 100%;
  }



  .center {
    padding-top: 1%;
    color: #e1e1e1;
    z-index: 10;
    width: 80%;
 
    font-family: "Poppins", sans-serif;
  }


  .center h1 {
    font-size: 48px;
    font-family: "Barlow Condensed", sans-serif;
  }


  .center p{
    font-size: 14px;
  }



  .footer{
    flex-direction: column;
  }
}
