@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
  text-align: center;
}

.container-fluid {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

h1,
h4,
.description,
.par1,
.main-p {
  text-transform: uppercase;
}

h6 {
  font-weight: bold;
}

/*Hero section styles*/

.hero {
  color: white;
  height: 100vh;
  min-width: 100%;
  background: url("../assets/backgrounds/h_img.jpg") no-repeat;
  background-size: cover;
  background-position: left;
}

.logo {
  margin-top: 12rem;
}

.hero .main {
  padding-bottom: 5rem;
}

.hero h1 {
  line-height: 4rem;
}

.mouseclick-icon {
  cursor: pointer;
}

/*About Us Styles*/
.about-us {
  padding: 4rem 9%;
}

/*Services styles*/
.services {
  height: auto;
  min-width: 100%;
  background: url("../assets/backgrounds/s_image.jpg") no-repeat;
  background-size: cover;
  background-position: right;
  padding: 9% 10%;
  color: white;
}

/*What we do section*/
.imgs1,
.imgs2,
.imgs3 {
  cursor: pointer;
}

.hidden {
  display: none;
  padding: 0 2rem;
  cursor: pointer;
}

/*Portfolio section*/
.portfolio {
  margin: 1% 12%;
}

.card {
  position: relative;
  align-items: center;
  border: none;
}

.portfolio img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  cursor: pointer;
}

.overlay {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 87%;
  background-color: rgba(0, 0, 0, .7);
}

.overlay-p {
  display: none;
  color: white;
  font-size: 1.4rem;
  border: 3px solid white;
  margin: 1.5rem;
  padding: 0 0 30% .5rem;
  text-align: left;
  text-transform: uppercase;
  font-weight: bolder;
}


/*Contact Section*/
.contact {
  min-width: 100%;
  height: auto;
  background: url("../assets/backgrounds/c_image.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.form {
  align-items: center;
  padding: 0 18%;
}

.form-control,
.textarea {
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0);
  color: white;
}

.btn {
  padding: .5rem 2rem;
  border: 2px solid white;
}

/*Social Icons section*/
ul {
  display: flex;
  list-style-type: none;
  justify-content: center;
  margin: 1rem;
}

li {
  margin: .5rem;
  width: 5%;
  cursor: pointer;
}

li:hover {
  transform: rotate(270deg);
}

/*Footer Section*/
.footer {
  font-size: 13px;
  line-height: .3rem;
}