@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
body {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #2F3045;
  line-height: 28px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  font-family: "Jost", sans-serif;
}

h1 {
  font-size: 5rem;
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 3.3rem;
  }
}

h2 {
  font-size: 2.625rem;
}

@media (max-width: 575.98px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 5rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.25rem;
}

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.section {
  padding: 100px 0;
}

.bg-color {
  background-color: #F9FAFB;
}

.main-tag {
  font-size: 18px;
  color: #FC3B50;
  text-transform: uppercase;
}

.box {
  background-color: #F9FAFB;
  padding: 50px 25px;
  position: relative;
}

.box p {
  margin-bottom: 0;
}

.box .icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.box .icon img {
  width: 100%;
}

header {
  position: absolute;
  width: 100%;
  z-index: 99;
  top: 0;
}

header .navbar.bg-light {
  background-color: transparent !important;
}

header .navbar-light .navbar-nav .nav-link {
  color: black;
  font-size: 14px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
}

header .navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.hero-section {
  background-image: url(../images/banner-bg.jpeg);
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 760px;
}

.hero-section p {
  color: #707070;
  font-size: 18px;
  font-weight: 300;
}

.hero-section:before {
  position: absolute;
  width: 160px;
  height: 90px;
  content: url(../images/shape-1.png);
  left: 0;
  bottom: 40px;
}

@media (max-width: 575.98px) {
  .hero-section {
    text-align: center;
    padding: 100px 0;
  }
  .hero-section:before {
    display: none;
  }
}

.home-about-section {
  position: relative;
}

.home-about-section .figure-bg {
  background-color: aquamarine;
  width: 41%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.home-about-section .figure-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

footer {
  background-image: url(../images/contact.jpg);
  padding: 50px 0;
  position: relative;
  color: #fff;
}

footer::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  left: 0;
  top: 0;
}

footer .container {
  position: relative;
  z-index: 3;
}

footer .container .nav-link {
  padding: .5rem 0;
  color: #ccc;
}

.inner-hero-section {
  background-color: #f9fafc;
  height: 400px;
  padding-top: 150px;
  position: relative;
}

.inner-hero-section figure {
  position: absolute;
  right: 0;
  height: calc(100% - 100px);
  background-color: azure;
  top: 100px;
  width: 45%;
}

.inner-hero-section figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.p-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}

.home-service-section .box {
  outline: 2px solid transparent;
  -webkit-transition: all ease-in .22s;
  transition: all ease-in .22s;
}

.home-service-section .box a {
  text-decoration: none;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 500;
  color: #FC3B50;
  visibility: hidden;
}

.home-service-section .box:hover {
  outline: 2px solid #FC3B50;
}

.home-service-section .box:hover a {
  text-decoration: overline;
  visibility: visible;
}

.list-b {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.list-b svg {
  fill: #FC3B50;
  margin-right: 15px;
}

.btn {
  padding: 12px 26px;
  font-weight: 500;
  border-radius: 6px;
}

.btn.btn-primary {
  background-color: #fc3b50;
  border-color: #fc3b50;
}

.btn.btn-secondary {
  background-color: #2da771;
  border-color: #2da771;
  color: #fff;
}

.btn.btn-secondary:hover {
  background-color: #fc3b50;
  border-color: #fc3b50;
}

.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
/*# sourceMappingURL=styles.css.map */