/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}

::selection {
  background-color: #044788;
  color: #fff;
}

/* Regular Weight */
@font-face {
  font-family: "Nohemi";
  src: url("../fonts/Nohemi/Nohemi-Regular-BF6438cc4d0e493.ttf") format("truetype"), url("../fonts/Nohemi/Nohemi-Regular-BF6438cc58b98fc.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #000;
}

.Subheadingmain {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  line-height: 4rem;
  font-size: 4rem;
  color: #044788;
}

.Subheadingsecondary {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 3rem;
  font-size: 2rem;
  color: #044788;
}

.u-center-text {
  text-align: center !important;
}

.u-remove_link_deco {
  text-decoration: none;
  color: inherit;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem !important;
  }
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem !important;
  }
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-small {
  margin-top: 3rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.u-margin-bottom-mediumalter {
  margin-bottom: 1.5rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-mediumalter {
    margin-bottom: 4.5rem !important;
  }
}

.u-margin-top-three {
  margin-top: 3rem !important;
}

.curved_cards {
  border-radius: 15px;
}

.contact_cards {
  border: #044788 1px solid;
  line-height: 2rem;
  min-height: 23rem !important;
}

.contact_cardswb {
  border: #044788 1px solid;
  border-radius: 5px;
  padding: 1rem;
  min-width: 33rem;
}

.blog_container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}
.blog_card {
  width: calc(50% - 7rem);
}
@media only screen and (max-width: 56.25em) {
  .blog_card {
    width: 100%;
  }
}
.blog_img {
  height: 20rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgb(229, 236, 243);
}

.blogdetailheight {
  height: 35rem;
}

.blogdetailwidth {
  width: 100%;
}

.blog-date {
  text-align: right;
}

.infinite-scroll-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 1em;
}

.scroll-row {
  display: flex;
  gap: 1em;
  white-space: nowrap;
}

.scroll-row img {
  width: auto;
  height: 10rem;
  border-radius: 10px;
  object-fit: cover;
}

footer {
  background-color: rgb(229, 236, 243);
  padding: 5rem 0rem;
  font-weight: 200;
}

.footer-menu {
  height: 20rem;
}
.footer-list {
  display: flex;
  justify-content: end;
  list-style: none;
  gap: 2em;
  width: 100%;
  height: 100%;
}
.footer-list li {
  align-self: end;
}
.footer-list a {
  color: #000;
  text-decoration: none;
}
.footer-list a:hover {
  color: #6d6d6d;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
}

.hero {
  height: 90vh;
  font-size: 1.8rem;
}
.hero_textbox {
  width: 90vw;
  text-align: center;
  margin: auto;
}
.hero_maintext {
  font-family: "Nohemi" !important;
  font-size: 4.2rem !important;
  color: #044788 !important;
  font-weight: 500 !important;
}
@media only screen and (max-width: 56.25em) {
  .hero_maintext {
    font-size: 3.2rem !important;
  }
}
.hero_secorandry {
  font-family: "Nohemi" !important;
  font-size: 3rem !important;
  color: #000 !important;
  font-weight: 400 !important;
}
@media only screen and (max-width: 56.25em) {
  .hero_secorandry {
    font-size: 2rem !important;
  }
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0rem;
}
.hero_img {
  text-align: center;
  width: 98vw;
  margin: auto;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .hero_img img {
    transform: translateX(-50rem);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 10rem;
  position: relative;
  font-family: "Nohemi";
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.6rem;
}
@media only screen and (max-width: 56.25em) {
  .nav {
    padding: 3rem 2rem;
  }
}
.nav-logo img {
  height: 10rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  width: 94rem;
  justify-content: space-between;
}
@media only screen and (max-width: 56.25em) {
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgb(229, 236, 243);
    transition: background-color 0.3s ease;
    position: fixed;
    top: 14rem;
    left: 0;
    z-index: 10;
    padding: 16rem 0rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .nav-menu.active {
    display: flex;
    gap: 8rem;
  }
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 2em;
}
@media only screen and (max-width: 56.25em) {
  .nav-list {
    flex-direction: column;
    gap: 8rem;
    font-size: 4rem;
  }
}
.nav-list a {
  color: #000;
  text-decoration: none;
}
.nav-list a:hover {
  color: #6d6d6d;
}
.nav-active-bg {
  background-color: rgb(229, 236, 243);
  transition: background-color 0.3s ease;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 0.3em;
}
@media only screen and (max-width: 56.25em) {
  .burger {
    display: flex;
  }
}
.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000000;
  transition: 0.3s;
}

.ourservices {
  background-color: rgb(229, 236, 243);
  margin: 5rem 0rems;
  padding: 5rem 0rem;
}
.ourservices_cards {
  min-height: 14rem;
  background-color: #fff;
  padding: 2rem;
  font-size: small;
}

.ourservices_cards_img {
  width: 100%;
}

.ourteam_cards {
  text-align: center;
  border: 1px solid;
  border-color: rgb(229, 236, 243);
  min-height: 48rem;
  padding: 3rem;
}
.ourteam_cards p {
  font-weight: 300;
}

@media only screen and (max-width: 56.25em) {
  .aboutus_companybuilding {
    width: inherit;
  }
}

.gallery_container {
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 3px;
  flex-wrap: wrap;
}
.gallery_container img {
  flex-grow: 2;
}

.contact-form {
  text-align: center;
}

.form_flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.form_flex label {
  display: none;
}

.contact_button {
  width: 20rem;
  padding: 1rem;
  background-color: #044788;
  color: #fff;
  border-radius: 2px;
  border: none;
}

.textarea {
  font-family: inherit;
  width: 20rem;
}

/*# sourceMappingURL=style.css.map */
