body {
  font-family: "Inter";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter";
  font-weight: normal;
}

.bg-black {
  background-color: #000 !important;
}

.rounded-pill {
  border-radius: 5rem;
}

.footer {
  background-color: #f9f9f9 !important;
}

.navbar-custom {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000;
}
.navbar-custom .navbar-brand {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
}
.navbar-custom .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.navbar-custom .client-logo {
  max-height: 37px;
}
.navbar-custom .postclick-logo {
  width: 85px;
  height: 17px;
  margin-bottom: 5px;
}
.navbar-custom .navbar-powerby {
  font-size: 0.6534rem;
  font-weight: 300;
}

header.masthead {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url("https://v.fastcdn.co/u/6025a85e/56190112-0-Studio-Grey.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  box-shadow: 0px 0px 0px 4000px rgba(5, 5, 5, 0.8) inset;
}
header.masthead .masthead-content {
  z-index: 1;
  position: relative;
}
header.masthead .masthead-content .masthead-heading {
  font-size: 2.5rem;
  font-family: Inter;
  font-weight: 600;
}
header.masthead .masthead-content .masthead-subheading {
  font-family: Inter;
  font-size: 1.15rem;
  margin-top: 10px;
  line-height: 1.8;
  padding-bottom: 50px;
}
header.masthead .masthead-content .masthead-secondary {
  margin: auto 0;
}
header.masthead .down-arrow {
  height: 27px;
  width: 27px;
}

@media (min-width: 768px) {
  .masthead-heading {
    font-size: 3rem;
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  header.masthead {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  header.masthead .masthead-content .masthead-heading {
    font-size: 3rem;
  }
  header.masthead .masthead-content .masthead-subheading {
    font-weight: normal;
  }
}
.bg-primary {
  background-color: #ee0979 !important;
}

.btn-primary {
  background-color: #ee0979;
  border-color: #ee0979;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  background-color: #bd0760 !important;
  border-color: #bd0760 !important;
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(238, 9, 121, 0.5);
}

.btn-secondary {
  background-color: #ff6a00;
  border-color: #ff6a00;
}
.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  background-color: #cc5500 !important;
  border-color: #cc5500 !important;
}
.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.5);
}

.fw-bold {
  font-weight: 600 !important;
}

.btn-xl {
  text-transform: uppercase;
  padding: 1.5rem 3rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.btn {
  display: block;
  font-size: 0.9907rem;
  font-family: Inter;
  font-weight: 600;
  border-radius: 0;
  outline: none;
  max-width: 24rem;
  padding: 1em;
  text-align: center;
  transition: all 0.15s ease-in;
  width: 100%;
  height: auto;
}
.btn.black {
  background-color: #000000;
  color: #fff;
}
.btn.black:hover {
  background-color: #161616;
}
.btn.white {
  background-color: #fff;
  color: #000;
}
.btn.white:hover {
  background-color: #f0f0f0;
}

.outline-btn.black {
  background-color: transparent;
  border: 2px solid #000000;
  color: #050505;
}
.outline-btn.black:hover {
  background-color: black;
  color: white;
}
.outline-btn.white {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.outline-btn.white:hover {
  background-color: #fff;
  color: #000;
}

.review-btn {
  border: 2px solid #000000;
  color: #050505;
  margin: 10px 0 0 0;
  padding: 1rem 3rem;
}

.link {
  color: #212529;
}
.link:hover {
  color: #ffd739;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.loading, .error-message {
  margin: auto;
  text-align: center;
  position: fixed;
  background-color: #050505;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.loading__content--text, .error-message__content--text {
  color: #fff;
  font-size: 1.5em;
}
.loading__content--bar, .error-message__content--bar {
  width: 100px;
  height: 100px;
  margin: 25px auto 25px;
  border: solid 10px #FFD738;
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  -webkit-transition: all 0.5s ease-in;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  transition: all 0.5s ease-in;
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.error-message__text {
  color: #fff;
  font-size: 1.5em;
  max-width: 600px;
  padding: 0 25px;
}

.profile-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.profile-card__image {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url("http://placehold.it/100");
  background-position: center;
  background-size: cover;
}
.profile-card__text {
  max-width: 24rem;
}
.profile-card__text h6 {
  font-size: 0.85em;
  margin-bottom: 0;
}
.profile-card__text p {
  font-weight: bold;
  margin-bottom: 0;
}
.profile-card__button {
  width: 100%;
}
.profile-card__button a, .profile-card__button button {
  font-size: 0.85em;
}

#experience-data .row {
  overflow: hidden;
}
#experience-data img {
  margin-bottom: 1rem;
  box-shadow: 0px 0px 40px 0px #eee;
}

.exp-card {
  min-height: 40rem;
}

.modal .btn-close {
  background-image: none;
  height: auto;
  opacity: 1;
  padding: 0;
  position: absolute;
  right: 0;
  top: -12px;
  width: auto;
}
.modal .modal-content {
  padding: 1rem;
}
.modal .modal-header {
  border-bottom: none;
}
