@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");

body {
  margin: 0;
  padding: 0;
}

.navAll {
  width: 100%;
  height: 100px;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 100;
}

.logos {
  width: 200px;
  height: auto;
  margin-left: 50px;
  z-index: 100;
}

.naviLinks {
  width: auto;
  height: auto;
  /* background-color: rgb(233, 194, 143); */

  margin-right: 0;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 100;
}

.naviLinks a {
  text-decoration: none;
  color: rgb(97, 97, 97);
  margin: 0 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.naviLinks a:hover {
  color: #fc0102 !important;
  font-weight: 700 !important;
}

.active {
  color: #fc0102 !important;
  font-weight: 700 !important;
}

.naviLinks i {
  margin-left: 3px;
}

/* Nav Drop down On Hover */

.prd-drop-dwn {
  list-style: none;
  background-color: rgb(106, 96, 116);
  padding-left: 0;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: absolute;
  top: 62px;
  right: 380px;
  height: auto;
  width: 150px;
  display: none;
}

.prd-drop-dwn li {
  margin-bottom: 10px;
}

.naviLinks .products:hover + .prd-drop-dwn {
  display: block;
}

.prd-drop-dwn:hover {
  display: block;
}

.prd-drop-dwn a {
  color: #ffffff !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  cursor: pointer;
}

.prd-drop-dwn a:hover {
  color: rgb(255, 255, 255) !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  cursor: pointer;
}

/* */

.socialIcons {
  width: auto;
  height: auto;
  /* background-color: blue; */
  display: flex;
  flex-direction: row;
  margin-left: 30px;
  margin-right: 50px;
}

.socialIcons i {
  font-size: 24px;
  margin: 0 10px;
  color: #7b7b7b;
  cursor: pointer;
  z-index: 100;
}

.hambrugerIcon {
  color: #817f7f;
  font-size: 24px;
  display: none;
}

/* Navigation Responsive */

@media (max-width: 991.98px) {
  .naviLinks {
    display: none;
  }

  .active {
    color: #ffffff !important;
    font-weight: 700 !important;
  }

  .socialIcons {
    margin-left: auto;
    margin-right: 20px;
  }

  .hambrugerIcon {
    color: #757575;
    font-size: 28px;
    display: block;
    z-index: 100;
    margin-right: 30px;
  }

  .logos {
    width: 160px;
    height: auto;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(106, 96, 116);
    padding-top: 100px;
    padding-bottom: 10px;
    width: 100vw;
    height: auto;
    overflow: hidden;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: 0.5s ease-in-out;
  }

  .dropdown-content a {
    color: rgb(207, 192, 222);
    padding: 10px 16px 5px 16px;
    text-decoration: none;
    display: block;
    text-align: end;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
  }

  .dropdown-content a:hover {
    color: #ffffff !important;
  }

  .show {
    display: block;
  }

  /* Nav Drop down On Hover Responsive */

  .prd-drop-dwn {
    background-color: rgba(106, 96, 116);
    position: relative;
    right: -80%;
    top: 0;
    height: auto;
    display: none;
  }

  .prd-drop-dwn a {
    color: rgb(196, 196, 196) !important;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    cursor: pointer;
  }

  .prd-drop-dwn a:hover {
    color: rgb(255, 255, 255) !important;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    cursor: pointer;
  }

  .prd-drop-dwn li {
    margin-bottom: 5px;
  }
}

@media (max-width: 500px) {
  .navAll {
    height: 80px;
  }

  .logos {
    width: 150px;
  }

  .socialIcons i {
    font-size: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 3px #504e4e;
  }

  .hambrugerIcon {
    text-shadow: 1px 1px 3px #ffffff;
  }

  .prd-drop-dwn {
    background-color: transparent;
    position: relative;
    right: -230px;
    top: -2px;
    height: auto;
    /* display: none; */
  }
}
/* About Banner */

.abtBanner {
  width: 100%;
  height: auto;
  position: relative;
}

.abtBanner h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #6f6f6f;
  transition: 0.5s ease-in-out;
}

.abtBanner h2:hover {
  transform: scale(1.1);
  color: #504e4e;
}

/* About Contents */

.abt-contents {
  width: 100%;
  height: auto;
  /* background-color: #706f6f; */
  padding-top: 10vw;
  padding-bottom: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-txt-img {
  width: 90%;
  height: auto;
  padding: 10px;
  /* background-color: #a09a9a; */
  display: flex;
  flex-direction: row;
}

.abt-txt {
  width: 60%;
  height: auto;
  pad: 15px;
}

.abt-txt h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 36px;
}

.abt-txt p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.3vw;
  text-align: justify;
  line-height: 1.7;
  margin-top: 20px;
  color: #6f6f6f;
}

.abt-img {
  width: auto;
  height: 100%;
  /* background-color: #fc0102; */
  margin-left: 3vw;
}
.abt-img img {
  max-height: 100%;
  width: auto;
}

@media (max-width: 500px) {
  .abtBanner h2 {
    font-size: 7vw;
  }
  .abt-txt-img {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .abt-txt {
    width: 90%;
    height: auto;
    pad: 15px;
  }

  .abt-txt h2 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 36px;
    text-align: center;
  }

  .abt-txt p {
    text-align: center;
    font-size: 3vw;
  }

  .abt-img {
    width: 100% !important;
    height: auto;
    /* background-color: #fc0102; */
    margin-left: 3vw;
  }

  .abt-img img {
    height: auto !important;
    width: 100% !important;
  }
}

/* About Services */

.abt-services {
  width: 100%;
  height: 400px;
  background-color: #f2f0f075;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 50px;
}

.abt-services h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 3vw;
  margin-bottom: 20px;
}
.abtServices {
  width: auto;
  height: auto;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.serviceIndi {
  width: auto;
  height: auto;
  margin: 20px;
  background-color: #ffffff;
  padding: 10px 30px;
  border: none;
  border-radius: 20px;
  box-shadow: 2px 2px 5px rgba(80, 78, 78, 0.433);
}

.serviceIndi h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 2vw;
  text-align: center;
}

.serviceIndi p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.3vw;
  text-align: center;
}

@media (max-width: 500px) {
  .abt-services {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .abt-services h2 {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 6vw;
    margin-bottom: 20px;
  }

  .abtServices {
    width: auto;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .serviceIndi h3 {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 5vw;
    text-align: center;
  }

  .serviceIndi p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 3.5vw;
    text-align: center;
  }
}

/* Footer */

.footerr {
  width: 100%;
  height: auto;
  background-color: rgb(244, 248, 250);
  padding-top: 50px;
  /* padding-bottom: 50px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footerRow {
  width: 90%;
  height: auto;
  margin-bottom: 30px;
}

.logoCol {
  padding: 10px;
  /* background-color: #603c3c; */
  padding-left: 30px;
  padding-right: 20px;
}

.footerCol {
  padding-left: 20px;
}

.logoCol img {
  width: 80%;
  height: auto;
}

.quickLinksCol {
  display: flex;
  flex-direction: column;
}

.quickLinksCol h3 {
  color: #6f6f6f;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.quickLinksCol a {
  text-decoration: none;
  color: #797878;
  margin: 5px 5px;
}

.socialLinksCol h3 {
  color: #6f6f6f;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.socialLinksCol i {
  color: #797878;

  font-size: 24px;
  margin-right: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.footerLine {
  width: 95%;
  height: 1px;
  background-color: rgba(252, 1, 1, 0.3);
}

.footerTags {
  width: 100%;
  height: auto;
  padding: 0 40px;
  /* background-color: #ffffff; */
  display: flex;
  flex-direction: column;

  margin-top: 10px;
}

.footerTags h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6f6f6f;
}

.footerTags a {
  text-decoration: none;
  color: #878787;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.bottomFootr {
  width: 100%;
  height: auto;
  text-align: center;
  padding-top: 20px;
  color: #706f6f;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
