* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  line-height: 1.688rem;
  font-weight: 500;
}

h1 {
  font-size: 10rem;
  line-height: 11rem;
  font-weight: 700;
  letter-spacing: -0.65rem;
}

h2 {
  font-size: 5.625rem;
  line-height: 5.688rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
h2:last-child {
  margin-bottom: 0;
}

h3 {
  font-size: 4.25rem;
  line-height: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.75rem;
  line-height: 2.625rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

ul li {
  list-style: none;
}

/* Utility Classes */
.p-10 {
  padding: 10px 0;
}

.p-20 {
  padding: 20px 0;
}

.p-30 {
  padding: 30px 0;
}

.p-40 {
  padding: 40px 0;
}

.p-50 {
  padding: 50px 0;
}

.p-60 {
  padding: 60px 0;
}

.p-70 {
  padding: 70px 0;
}

.p-80 {
  padding: 80px 0;
}

.p-90 {
  padding: 90px 0;
}

.p-100 {
  padding: 100px 0;
}

.m-10 {
  margin: 10px 0;
}

.m-20 {
  margin: 20px 0;
}

.m-30 {
  margin: 30px 0;
}

.m-40 {
  margin: 40px 0;
}

.m-50 {
  margin: 50px 0;
}

.m-60 {
  margin: 60px 0;
}

.m-70 {
  margin: 70px 0;
}

.m-80 {
  margin: 80px 0;
}

.m-90 {
  margin: 90px 0;
}

.m-100 {
  margin: 100px 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* Flexbox Classes */
.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-baseline {
  align-items: baseline;
}

.align-stretch {
  align-items: stretch;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

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

.arrow-btn {
  font-weight: 700;
  display: inline-block;
  transition: 0.3s all ease;
}
.arrow-btn svg {
  transition: 0.3s all ease;
  margin-left: 5px;
}
.arrow-btn:hover svg {
  fill: #015b7e;
  margin-left: 10px;
}

@media screen and (max-width: 500px) {
  h1 {
    font-size: 5rem;
    line-height: 6rem;
    letter-spacing: 0;
  }
  h2 {
    font-size: 4.625rem;
    line-height: 4.688rem;
  }
  h3 {
    font-size: 3.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
}
body {
  font-family: "Poppins", serif;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.5s all ease;
}
a:hover {
  color: #015b7e;
}

.container {
  max-width: 100%;
  width: 1350px;
  margin: 0 auto;
}
.container.sm {
  width: 1120px;
}

.header {
  padding: 10px 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}
.header__logo {
  background: #efefef;
}
.header__logo img {
  width: 142px;
  mix-blend-mode: darken;
}
.header__nav li {
  margin-left: 40px;
}
.header__nav li a {
  font-weight: 400;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100vh;
  background: #efefef;
}
.hero__background {
  background: #efefef;
}
.hero__spotlight {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #015b7e;
  clip-path: circle(35vh at 50% 50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__spotlight h1 {
  color: #fff;
}

.about {
  background: #defaff;
  position: relative;
  height: calc(100vh - 110px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about__svg {
  position: absolute;
  z-index: 1;
  left: 190px;
  top: 0;
  width: 100%;
  height: 100%;
}
.about__svg svg {
  fill: #015b7e;
  width: calc(80% - 35px);
  height: auto;
  position: absolute;
  right: 10;
  top: 50%;
  transform: translateY(-50%);
}
.about__heading {
  width: 459px;
  position: relative;
}
.about__heading h2 {
  color: #fff;
}
.about__text {
  width: calc(100% - 459px);
  padding-left: 150px;
}

.projects__box .image {
  width: 100%;
  aspect-ratio: 1/1.15;
  margin-bottom: 10px;
}
.projects__box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects__box .content h4 {
  margin-bottom: 5px;
}
.projects__box .content p {
  font-size: 16px;
}
.projects .swiper-wrapper {
  transition-timing-function: linear !important;
}

.footer {
  background: #015b7e;
  color: #fff;
  padding-bottom: 20px;
}
.footer__content {
  border-bottom: 1px solid #f6f6f6;
  padding-bottom: 80px;
}
.footer__bottom {
  padding-top: 50px;
}
.footer__bottom .logo img {
  height: 100px;
}
.footer__bottom .contact p {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 15px;
}
.footer__bottom .contact span {
  font-size: 12px;
  display: inline-block;
  margin: 0 6px;
  font-weight: 300;
  color: #c2c2c2;
}
.footer__bottom a,
.footer__bottom p {
  color: #e7e7e7;
  font-size: 16px;
}

@media screen and (max-width: 1700px) {
  .container.sm {
    width: 1036px;
  }
}
@media screen and (max-width: 500px) {
  .header {
    position: relative;
    background: #efefef;
  }
  .header__flex {
    flex-wrap: wrap;
  }
  .header__logo {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .header__nav {
    margin-top: 50px;
    width: 100%;
  }
  .header__nav ul {
    padding-left: 0;
    justify-content: space-between;
  }
  .header__nav ul li {
    margin-left: 0;
  }
  .about__heading {
    width: 100%;
  }
  .about__heading h2 {
    color: #015b7e;
    margin-bottom: 20px;
  }
  .about__text {
    width: 100%;
    padding-left: 0;
  }
  .about__svg {
    display: none;
  }
  .projects__box .image {
    aspect-ratio: 1/1;
  }
  .contact {
    text-align: center;
  }
  .contact p,
  .contact a {
    text-align: center !important;
  }
}/*# sourceMappingURL=style.css.map */