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

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.7;
  background-color: #e8ecf2;
  font-size: 1rem;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

ul {
  text-decoration: none;
}

li {
  list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  -webkit-transition: all 1.4s ease;
  transition: all 1.4s ease;
  text-decoration: none;
}

a:hover {
  color: #252ef3;
}

.navbar {
  -webkit-box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.8), 5px 5px 10px rgba(0, 0, 0, 0.25);
          box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.8), 5px 5px 10px rgba(0, 0, 0, 0.25);
}

section {
  padding: 80px 0;
}

.btn {
  color: #73787d;
  background: #e8ecf2;
  border-radius: 9999px;
  -webkit-box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.8), 5px 5px 10px rgba(0, 0, 0, 0.25);
          box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.8), 5px 5px 10px rgba(0, 0, 0, 0.25);
  border: 4px solid #e8ecf2;
  padding: 6px 17px;
  -webkit-transition: all 1.4s ease;
  transition: all 1.4s ease;
}

.btn:hover {
  -webkit-box-shadow: -1px -1px 5px rgba(255, 255, 255, 0.6), 1px 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: -1px -1px 5px rgba(255, 255, 255, 0.6), 1px 1px 5px rgba(0, 0, 0, 0.3);
}

#hero {
  z-index: 2;
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
  /* Will not allow the video to overflow the 
    container */
  overflow: hidden;
}

.overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 46, 46, 0.7)), to(rgba(46, 45, 46, 0.7)));
  background: linear-gradient(to right, rgba(43, 46, 46, 0.7), rgba(46, 45, 46, 0.7));
  z-index: -1;
}

#backgroundVideo {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.person-img img {
  border-radius: 1000px;
  border-radius: 50%;
  border: 3px solid #252ef3;
}

#about .intro-h6 {
  color: #252ef3;
}

.section-title {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 40px auto;
}

.section-title h6 {
  color: #252ef3;
}

.gallery-img {
  position: relative;
  overflow: hidden;
  padding: 20px;
  -webkit-transition: all 1.4s ease;
  transition: all 1.4s ease;
  border-radius: 30px;
}

.gallery-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 1.4s ease;
  transition: all 1.4s ease;
  border-radius: 10px;
}

.gallery-img:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.work {
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding: 44px 16px 44px 18px;
  -webkit-transition: all 1.4s ease;
  transition: all 1.4s ease;
}

.work::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(38, 41, 53, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.work:hover .icon-huge {
  right: 0;
  bottom: 0;
}

.icon-huge {
  -webkit-transition: all 1.4s ease;
  transition: all 1.4s ease;
  font-size: 130px;
  position: absolute;
  opacity: 0.06;
  line-height: 1;
  right: -50px;
  bottom: -50px;
}

footer {
  background-color: #252ef3;
  color: #ffffff;
}

.footer-bottom {
  padding: 30px 0;
}

.social-links a {
  width: 2.25rem;
  height: 2.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.125rem;
  border-radius: 100px;
  background-color: #ffffff;
  margin-left: 5px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  margin-top: 4px;
  margin-bottom: 4px;
}

.social-links a i {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.social-links a i:hover {
  -webkit-transform: scale(1.8);
          transform: scale(1.8);
}
/*# sourceMappingURL=style.css.map */