@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #3985c6;
  --secondary-color: #14132b;
  --template-font: "Roboto", sans-serif;
  --white-color: #ffffff;
  --black-color: #fff;
}

body {
  font-family: var(--template-font);
}


.h-menu {
  background-color: #ffffff60;
  border-radius: 2px;
}

.bgcolour {
  color: var(--black-color);
  transition: all 1s;
  background-color: #000000;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.logo {
  width: 140px;
}

.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fa-phone-volume {
  color: #fff;
}

.hotline {
  font-size: 12px;
  font-weight: 400;
  color: var(--black-color);
}
.phn-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
}

.nav-link {
  color: var(--black-color);
  transition: all 0.5s linear;
  font-size: 16px;
  font-weight: 600;
}
.nav-link:hover {
  color: var(--primary-color);
}

.title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}
.sub-title {
  font-size: 16px;
  font-weight: 600; 
}

/* Home Banner */
.home-banner {
  /* background-image: url(../images/banner.jpeg); */
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

.overlay {
  /* background: rgba(0, 16, 49, 0.5); */
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  padding-top: 17rem;
}

.home-banner h1 {
  font-size: 62px;
  font-weight: 900;
  color: var(--white-color);
}
.home-banner h6 {
  width: 40%;
  margin: 0 auto;
  color: var(--white-color);
}

.pd-btn{
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
}


/* About page */
.ab-logo {
  width: 120px;
  margin-left: 25rem;
  position: absolute;
}
.ab-img {
  position: relative;
  width: 100%;
}

/* service-card */
#service {
  padding: 5rem 0 3rem 0;
}
.service-wrap {
  background-color: #fff;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 4rem;
}

.service-card {
  padding: 2.5rem 3rem 2rem 3rem;
  transition: all 0.5s linear;
  border-left: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
.service-card:first-child {
  border-left: none;
}
.service-card:nth-child(4) {
  border-left: none;
  border-bottom: none;
}
.service-card:nth-child(5) {
  border-bottom: none;
}
.service-card:nth-child(6) {
  border-bottom: none;
}
.service-card img {
  width: 80px;
  margin-bottom: 1rem;
}
.service-card:hover {
  cursor: pointer;
  background-color: #f8f9fa;
}

/* work process  */
.process-wrap {
  padding: 5rem 0 5rem 0;
}

.wp-img {
  margin-top: 2.6rem;
  width: 80%;
  filter: grayscale(95%);
}

/* .products */

.pd-wrap {
  background-image: url(../images/abbg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4rem 0 4rem 0;
  background-color: #fcfbfb;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 3rem;
}

.pd-card {
  padding: 2rem 2.5rem;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.pd-card img {
  width: 100px;
}
.pd-card h3 {
  font-size: 32px;
  font-weight: 700;
  padding-top: 1.2rem;
}
.pd-card p {
  font-size: 14px;
  font-weight: 400;
}

/* contact section */
.contact-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #1f3867;
  margin-top: 5rem;
}

.ct-card {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  background-color: #fff;
  padding: 2rem;
  text-align: center;
  margin: 1rem 0;
}
.ct-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: #1f3867;
}
.ct-card p {
  font-size: 16px;
  font-weight: 500;
}

/* Footer  */
.footer-section{
  padding-top: 75px;
  padding-bottom: 16px;
  margin-bottom: 0 !important;
  position: relative;
  background-color: #0d0d1c;
  color: #ffffff;
}
.footer-link{
  padding: 0;
}
.footer-link li{
  list-style: none;
  margin: 10px 0;
}
.footer-link li a{
  color: var(--white-color);
  transition: all 0.5s ease;
}
.footer-link li a:hover{
  color: var(--primary-color);
}
.footer-icon svg {
  fill: #fff;
  transition: all 0.5s ease;
}

.footer-icon svg:hover{
  fill: #418fd4;
}
.social-icon i{
  font-size: 24px;
  cursor: pointer;
}


.footer-bottom{
  margin-top: 80px;
}


.social a {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.social a:hover{
  color: var(--primary-color);
}


/* Pages
==================  */

.page-container-wrap{
  width: 960px;
  border: 1px solid #f0f0f0;
  padding: 3rem;
  margin: 0 auto;
}

.p-logo{
  width: 140px;
  margin-bottom: 1.6rem;
}