body {
  margin: 0;
  padding: 0;
  font-family: inter, sans-serif;
}
/* Global Elements */
::selection {
  color: white;
  background-color: #000;
}
.hidden {
  opacity: 0;
  /* visibility: hidden; */
}
.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}
.section {
  transition: transform 1s, opacity 1s;
}

/* Home page */
/* Navigation */
header {
  padding: 10px 25px 0px 25px;
  background-color: #eaeaea;
  font-family: inter;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  height: 80px;
  z-index: 2;
}
header main {
  margin: 0px 120px;
  padding: 0px 15px;
}
.fixedHeader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding-bottom: 80px;
  opacity: 1;
  z-index: 3;
}
/* Adding from here */
header main {
  margin: 0px 120px;
  padding: 0px 15px;
}
.nav__logo {
  cursor: pointer;
  border-radius: 50px;
  height: 70px;
  object-fit: fill;
  width: 70px;
  position: relative;
  bottom: 14px;
}
.nav__links {
  font-size: 22px;
}
.nav__link {
  text-decoration: none;
  margin: 0px 15px;
  padding: 5px 20px;
  color: black;
}
.nav__link::after {
  content: "";
  width: 0;
  display: block;
  transition: width 0.3s;
  background: black;
  height: 2px;
}
.nav__link:hover::after {
  width: 100%;
}
.onScreen_nav {
  position: absolute;
  top: 0;
}
.onScreen_nav img {
  cursor: pointer;
  border-radius: 50px;
  position: absolute;
  left: 160px;
  top: 10px;
}
.navbar-collapse {
  margin-bottom: 20px;
}
.navbar-toggler {
  margin-bottom: 15px;
  background-color: white;
}
/* Intro Video */
.homePgVideo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.homePgVideo video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}

/* Studio page */
/* Studio navigation */
.studioNav {
  background-color: black;
}
.studioNav .nav__link {
  color: white;
}
.studioNav .nav__link::after {
  background: white;
}
.studioCarouselSection {
  padding: 80px 0px;
  background-color: #eae1dd;
  margin-top: 60px;
}
.innerBanner {
  padding: 90px 0px;
  background-color: rgb(0, 0, 0);
  color: white;
}
.wrap {
  margin: 20px 150px 0px 150px;
  padding: 0px 10px;
}

/* Architect */
.innerBanner_p {
  margin-bottom: 20px;
  margin-top: 50px;
}
.innerBanner_h1 {
  padding: 10px 0px;
  font-size: 35px;
}
.innerBanner_h1 h1 {
  margin: 0px;
}
.architectImg {
  height: 100%;
  width: 100%;
}
.aboutArchitectContent {
  padding: 10px;
  font-size: 20px;
}

/* Services */

.services_section {
  padding: 40px 0px;
  text-align: center;
}
.services_section h1 {
  font-weight: 300;
  margin: 20px 0px;
}
.servicesBlock_container {
  display: flex;
}
.services_block {
  padding: 24px;
  background-color: #eae1dd;
  margin: 20px 0px;
  border-radius: 5px;
}
.services_block h1 {
  font-size: 24px;
  font-weight: 500;
}
.serviceBlockImg {
  height: 60px;
  width: 60px;
}

/* About */
.studio_vision {
  padding-bottom: 40px;
  display: flex;
  font-size: 17px;
}
.studio_vision h1 {
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background-color: #eae1dd;
}
.footerInfo {
  padding: 30px 0px;
}
.footerContent {
  display: flex;
}
.footerAbout img {
  border-radius: 50px;
  height: 80px;
  width: 80px;
  margin-bottom: 20px;
}
.footerAbout p {
  font-weight: 500;
  padding: 0px 10px;
}
.footerAddress {
  margin-left: auto;
}
.footerDescription {
  margin-bottom: 24px;
  color: #000;
  font-weight: 500;
}
.footerDescription h4 {
  margin-bottom: 24px;
}
.footerLink {
  color: black;
  text-decoration: none;
}
.footerLink:hover {
  border-bottom: 2px solid black;
}
.footerNavLink {
  text-decoration: none;
  color: black;
}
.footerNavLink::after {
  content: "";
  width: 0;
  display: block;
  transition: width 0.3s;
  background: black;
  height: 2px;
}
.footerNavLink:hover::after {
  width: 40%;
  margin-left: 0px;
  margin-top: 3px;
}
.footerNavLinkImg {
  margin: 0px 6px;
  font-size: 20px;
}
.footerEmailLink {
  text-decoration: none;
  color: black;
}
.footerEmailLink:hover {
  border-bottom: 1px solid black;
}

/* Carousel Image */
.owlCarouselImg {
  height: 250px;
  object-fit: cover;
}
/* Scroller */
.scroller {
  font-size: 45px;
  position: fixed;
  bottom: 2%;
  right: 2%;
  color: #7e7e7e;
  z-index: 2;
}
.scroller i:hover {
  color: #5e5e5e;
}

/* Connect page */
.contactSection_1 {
  padding: 80px 0px 0px 0px;
  background-color: black;
}
.contactDescription {
  padding: 50px 0px 80px 0px;
}
.contactDescription h1 {
  color: white;
  font-size: 50px;
  margin-bottom: 30px;
}
.contactDescription p {
  color: white;
  font-size: 18px;
  margin-bottom: 1rem;
}
.contactDescription p a {
  color: white;
}
.contactDescription p a:hover {
  border-bottom: 1px solid white;
}
.contactDescription .details{
  display: flex;
  justify-content: end;
  gap: 20px;
}

/* Map Container */
.mapContainer {
  display: flex;
  /* flex-direction: column; */
  gap: 20px;
  flex-wrap: wrap;
}
.mapItem{
  flex: 1;
}
.mapItem h1{
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
  text-decoration: underline;
}
.mapItem .address{
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}
.mapFrame{
  width: 100%;
  border-radius: 20px;
  border: 2px solid gray !important;

}

.contactSection_2 {
  margin: 20px 0px 20px 0px;
}
.contactSection_2 h1 {
  font-size: 2rem;
  margin: 20px 0px 15px 0px;
}
.contactForm {
  margin-top: 50px;
}
.contactForm h5 {
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 14px;
  margin: 10px 0px;
}
.contactForm .input {
  font-size: 18px;
  border: none;
  outline: none;
  border-bottom: 1px solid #e7e7e7;
  width: 100%;
}
.formBtn {
  padding: 6px 30px;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  border-radius: 2px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  display: inline-block;
  border: 1px solid #000;
  cursor: pointer;
  color: #fff;
  background-color: black;
  margin: 50px 0px;
}
.formBtn:hover {
  background-color: rgb(46, 46, 187);
  color: white;
}

/* Portfolio Part */
.portfolioDescription {
  padding: 90px 0px;
  background-color: black;
  color: white;
}
.portfolioContent {
  margin-top: 60px;
}
.portfolioLinksOuter {
  display: flex;
  align-items: center;
}
.portfolio_links {
  list-style: none;
  border-left: 3px solid white;
}

.portfolio_links a {
  text-decoration: none;
  font-size: 18px;
  color: white;
}
.portfolio_links li {
  margin-bottom: 5px;
  margin-left: -18px;
}
.portfolio_links a:hover {
  border-bottom: 1px solid white;
}
.portfolioContent p {
  color: #7d7d7d;
  margin: 10px 0px 10px 0px;
}

/* Mid content */
.project {
  padding-bottom: 30px;
}
.projectContainer {
  margin-top: 30px;
}
.projectContainer img {
  height: 400px;
  width: 600px;
  object-fit: contain;
  float: right;
  transition: opacity 1s ease;
}
.projectContainer img:hover {
  opacity: 0.7;
}
.floatLeft {
  float: left;
}
.projectMainContent {
  display: flex;
  padding: 30px 0px;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.projectMainContent p {
  margin: 20px 0px;
  text-align: justify;
}
.projectMainContent a {
  text-decoration: none;
  color: black;
  padding: 8px 24px;
  border: 1px solid black;
  margin-left: auto;
}
.projectMainContent h1 {
  font-weight: 700;
}
.projectMainContent a:hover {
  color: white;
  background-color: black;
  transition: all 0.3s ease;
}

/* Clients page */
/* Change this in media query */
.clients_section1 .item img {
  height: 100vh;
  display: block;
}
.clientsNav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: none;
}
.clientsNav a {
  color: white;
}
.clientsNav .nav__link::after {
  background: white;
}
.clientSection_2 {
  margin-top: 30px;
}
.clientSection_2 p {
  margin-top: 30px;
}
.clientSection_2 h1 {
  margin-top: 30px;
}
.clientSection_3 {
  padding: 60px 0px;
  background-color: #eae1dd;
  margin: 80px 0px;
}
.section__heading h1 {
  font-weight: 300;
}
.clientSection_4 {
  margin: 30px 0px 60px 0px;
}
.clientSection_4 .item h3 {
  padding-top: 30px;
}
.clientSection_4 .item p {
  padding-top: 5px;
}
.clientSection_4 .item img:hover {
  opacity: 0.8;
  transition: opacity 0.3s;
}
.clientSection_4Btn {
  color: black;
  padding: 8px 24px;
  border: 1px solid black;
  margin-left: auto;
  text-decoration: none;
}
.clientSection_4Btn:hover {
  color: white;
  background-color: black;
  transition: all 0.3s ease;
}
.siteVideo {
  background-color: #dbdedb;
  padding: 60px 50px;
  margin-top: 80px;
}

/* Our team page */
.peopleContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 30px 0px;
  background-color: #dbdedb;
}
.card-titleName {
  color: gray;
}
.peopleCard {
  margin: 20px 50px;
  padding: 10px;
}
.card-img-top {
  height: 274px;
  border-radius: 50%;
  border: 0px solid;
}
/* Media queries */
@media (min-width: 0px) and (max-width: 570px) {
  .homePgVideo video {
    height: 45%;
    top: 20%;
    z-index: 1;
  }
  .homePgVideo {
    background-color: black;
  }
  .copyrightLine p {
    margin-bottom: 0rem;
  }
  header main {
    margin: 0px;
  }
  .wrap {
    margin: 20px 10px 0px 10px;
    padding: 0px 10px;
  }
  .footerAbout img {
    margin-top: 30px;
  }
  .mapContainer{
    flex-direction: column;
  }
  .mapFrame{
    height: 200px;
  }
  .clients_section1 .item img {
    height: 40vh;
  }
  .siteVideo {
    padding: 25px 10px;
  }
  .nav__logo {
    height: 50px;
    width: 50px;
    bottom: 9px;
  }
  .fixedHeader {
    padding-bottom: 0px;
  }
  .owlCarouselImg {
    height: 200px;
  }
  .studioCarouselSection {
    padding: 40px 0px;
  }
  .clientSection_2 h1 {
    font-size: 19px;
  }
  .clientSection_3 {
    padding: 40px 0px;
  }
  .projectContainer img {
    width: 280px;
    height: 160px;
  }
  .projectContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .contactDescription .details{
    flex-direction: column;
    gap: 0px;
  }
}

@media (min-width: 570px) and (max-width: 760px) {
  .copyrightLine p {
    margin-bottom: 0rem;
  }
  .siteVideo {
    padding: 40px 25px;
  }
  header main {
    margin: 0px;
  }
  .wrap {
    margin: 20px 10px 0px 10px;
    padding: 0px 10px;
  }
  .footerAbout img {
    margin-top: 30px;
  }
  .mapContainer{
    flex-direction: column;
  }
  .mapFrame{
    height: 250px;
  }
  .clients_section1 .item img {
    height: 60vh;
  }
  .projectContainer img {
    display: block;
    margin: 0 auto;
    float: none;
    height: 300px;
    width: 500px;
  }
  .architectImg {
    height: 70%;
    display: block;
    margin: 0 auto;
  }
  .projectContainer a {
    float: none;
  }
  .projectMainContent {
    padding: 0px;
  }
  .contactDescription .details{
    justify-content: start;
  }
}

@media (min-width: 760px) and (max-width: 1270px) {
  .wrap {
    margin: 20px 100px 0px 100px;
    padding: 0px 10px;
  }
  .projectContainer a {
    float: none;
  }
  .projectMainContent {
    padding: 0px;
  }
  .architectImg {
    height: 70%;
    display: block;
    margin: 0 auto;
  }
  .projectContainer img {
    display: block;
    margin: 0 auto;
    float: none;
  }
  #map {
    height: 326px;
  }
  .copyrightLine p {
    margin-bottom: 0rem;
  }
  .footerContent {
    padding-top: 20px;
  }
  header main {
    margin: 0px 75px;
  }
  .contactDescription .details{
    justify-content: start;
  }
}
@media (max-width: 990px) {
  .nav__link {
    background: #dbdedb;
    color: black;
  }
  .studioNav .nav__link {
    color: black;
  }
  .studioNav .nav__link::after {
    background: black;
  }
  .instagramImg {
    display: block;
    margin: 0 auto;
  }
  .projectMainContent p {
    padding: 0px 20px;
    text-align: justify;
    margin: 20px 0px;
  }
}
