/*
	Author: Filip Todorov - www.filiptodorov.com
	Project: MediaRite
	All rights reserved
*/
@import "bootstrap.min.css";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");
.animated-effect, .form-control, .btn, header.page-header .navbar .navbar-nav .nav-item .nav-link {
  transition: 0.1s ease all;
}

.animated-long-effect {
  transition: 0.25s ease all;
}

.active-effect, .btn.btn-link:active, .btn.btn-outline-light:active, .btn.btn-outline-primary:active, .btn.btn-primary:active {
  transform-origin: center;
  transform: scale(0.975);
}

.disable-selection {
  user-select: none;
}

.disable-clicks {
  pointer-events: none;
}

.text-ellipsis {
  width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

html, body {
  font-family: "Roboto", sans-serif;
  position: relative;
}
@media (max-width: 767.9px) {
  html, body {
    font-size: 14px;
  }
}

header.page-header {
  padding: 1rem 0;
  box-shadow: rgba(31, 31, 31, 0.075) 0 0.15rem 0.15rem;
  position: relative;
  z-index: 99;
}
header.page-header .navbar-brand img {
  height: 40px;
}
header.page-header .navbar .navbar-nav .nav-item .nav-link {
  font-weight: 600;
  color: #1f1f1f;
  font-size: 1rem;
  margin-left: 1rem;
}
header.page-header .navbar .navbar-nav .nav-item .nav-link:hover, header.page-header .navbar .navbar-nav .nav-item .nav-link:focus {
  color: #be1e2d;
}
header.page-header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #be1e2d;
}
header.page-header .navbar .navbar-nav .nav-item .nav-link:active {
  color: #de3141;
}
@media (max-width: 767.9px) {
  header.page-header .navbar-toggler {
    border-color: transparent;
    box-shadow: none;
  }
}

footer.page-footer {
  background: #1f1f1f;
  padding: 1.5rem 0;
}
footer.page-footer .navbar-brand img {
  filter: brightness(0) invert(1);
  height: 35px;
}
footer.page-footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0 1rem;
}

.btn {
  font-weight: 600;
  border-radius: 0.25rem;
  padding: 0.75rem 1.5rem;
}
.btn:hover, .btn:focus, .btn:not(:disabled):not(.disabled):active {
  box-shadow: rgba(31, 31, 31, 0.25) 0 0.1rem 0.3rem;
}
.btn.btn-primary {
  background: #be1e2d;
  border-color: #be1e2d;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #d42132;
  border-color: #d42132;
}
.btn.btn-primary:active {
  background: #de3141;
  border-color: #de3141;
}
.btn.btn-outline-primary {
  border-color: #be1e2d;
  color: #be1e2d;
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus {
  background: #be1e2d;
  border-color: #be1e2d;
  color: #fff;
}
.btn.btn-outline-primary:active {
  background: #de3141;
  border-color: #de3141;
}
.btn.btn-outline-light {
  border-color: #fff;
  color: #fff;
}
.btn.btn-outline-light:hover, .btn.btn-outline-light:focus {
  background: #fff;
  border-color: #fff;
  color: #be1e2d;
}
.btn.btn-outline-light:active {
  background: #fff;
  border-color: #fff;
  color: #be1e2d;
}
.btn.btn-link:hover, .btn.btn-link:focus, .btn.btn-link:not(:disabled):not(.disabled):active {
  background: transparent;
  border: transparent;
  box-shadow: none;
  color: #e24755;
}
.form-label {
  color: #1f1f1f;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-control {
  height: auto;
  background: #f2f3f4;
  color: #1f1f1f;
  border-color: transparent;
  padding: 0.5rem 1rem;
}
.form-control:focus {
  background: #ddd;
  border-color: transparent;
  box-shadow: none;
  color: #1f1f1f;
}

textarea.form-control {
  min-height: 140px;
}

.main {
  padding: 12.5rem 0;
  position: relative;
  background: url("../img/main-bg.jpg") center no-repeat;
  background-size: cover;
}
.main:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f1f1f;
  content: " ";
  z-index: 1;
  opacity: 0.45;
}
.main .container {
  position: relative;
  z-index: 2;
}
.main h1 {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1;
}
.main p {
  color: #fff;
}

.our-mission {
  padding: 4rem 0;
}
.our-mission h2 {
  max-width: 75%;
  font-weight: bold;
  color: #1f1f1f;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199.9px) {
  .our-mission h2 {
    max-width: 100%;
  }
}
@media (max-width: 767.9px) {
  .our-mission h2 {
    margin-bottom: 1rem;
  }
}
.our-mission p {
  margin: 0;
}

.company-features {
  padding: 0 0 4rem 0;
}
.company-features .feature-item {
  display: block;
  background: #f2f3f4;
  padding: 2rem;
  border-radius: 0.25rem;
}
.company-features .feature-item img {
  display: block;
  width: 4rem;
  height: 4rem;
}
.company-features .feature-item h4 {
  margin: 1rem 0 0.5rem 0;
  font-weight: bold;
  color: #be1e2d;
}
.company-features .feature-item p {
  margin: 0;
}

.company-concept {
  position: relative;
}
.company-concept .box {
  background: #fff;
  box-shadow: rgba(31, 31, 31, 0.15) 0 0.075rem 0.3rem;
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.company-concept .box h2 {
  font-weight: bold;
  color: #1f1f1f;
  max-width: 60%;
}
@media (max-width: 767.9px) {
  .company-concept .box h2 {
    max-width: 100%;
  }
}

.industry-leader {
  padding: 8rem 0 4rem 0;
  background: #fef7f7;
  margin-top: -4rem;
}
.industry-leader h2 {
  font-weight: bold;
  color: #1f1f1f;
}
.industry-leader ul {
  display: block;
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}
@media (max-width: 767.9px) {
  .industry-leader ul {
    margin: 0;
  }
}
.industry-leader ul li {
  display: block;
  font-weight: 600;
  color: #be1e2d;
  font-size: 1.25rem;
  padding-left: 1.25rem;
  position: relative;
}
.industry-leader ul li:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.9rem;
  height: 0.45rem;
  border-bottom: 3px solid #be1e2d;
  border-left: 3px solid #be1e2d;
  content: " ";
  margin: auto;
  transform-origin: center;
  transform: rotate(-45deg);
}
@media (max-width: 767.9px) {
  .industry-leader .btn {
    margin-top: 1rem;
  }
}

.work-with-us {
  padding: 4rem 0;
}
@media (max-width: 767.9px) {
  .work-with-us {
    padding: 2rem 0 4rem 0;
  }
  .work-with-us .btn {
    display: block;
    width: 100%;
  }
}
.work-with-us h2 {
  font-weight: bold;
  color: #1f1f1f;
}
@media (max-width: 767.9px) {
  .work-with-us h2 {
    margin-top: 2rem;
  }
}
.work-with-us p {
  color: #1f1f1f;
}
.work-with-us hr {
  background: #1f1f1f;
  max-width: 35%;
  margin: 1.5rem 0;
}
.work-with-us .contact-item {
  margin-top: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
}
.work-with-us .contact-item img {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  margin-right: 1rem;
}
.work-with-us .contact-item span {
  font-weight: bold;
  color: #1f1f1f;
}

.about {
  padding: 8rem 0;
  position: relative;
  background: url("../img/about-bg.jpg") center no-repeat;
  background-size: cover;
}
.about.v2 {
  background: url("../img/leads-bg.jpg") center no-repeat;
  background-size: cover;
}
.about.v3 {
  background: url("../img/verticals-bg.jpg") center no-repeat;
  background-size: cover;
}
.about:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1f1f1f;
  content: " ";
  z-index: 1;
  opacity: 0.45;
}
.about .container {
  position: relative;
  z-index: 2;
}
.about h1 {
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1;
}
.about p {
  color: #fff;
}

.our-services {
  padding: 4rem 0;
}
.our-services h2 {
  max-width: 75%;
  font-weight: bold;
  color: #1f1f1f;
  margin-bottom: 0;
}
.our-services p {
  margin: 0;
}
.our-services .service-item {
  display: block;
}
.our-services .service-item img {
  display: block;
  width: 4rem;
  height: 4rem;
}
.our-services .service-item h4 {
  color: #be1e2d;
  font-weight: bold;
  margin: 1.5rem 0 0.5rem 0;
}

.our-values {
  padding: 4rem 0;
  background: #f2f3f4;
}
.our-values h2 {
  font-weight: bold;
}
.our-values .value-item span {
  font-weight: bold;
  font-size: 6rem;
  color: rgba(31, 31, 31, 0.25);
  line-height: 1;
  display: block;
}
.our-values .value-item h4 {
  font-weight: bold;
}

.our-team {
  padding: 4rem 0;
  background: #fef7f7;
}
.our-team h2 {
  font-weight: bold;
  color: #1f1f1f;
  margin-bottom: 0;
}
.our-team p {
  margin: 0;
}
.our-team .team-member {
  display: block;
  text-align: center;
}
.our-team .team-member img {
  display: block;
  width: 8rem;
  height: 8rem;
  margin: auto;
  object-fit: cover;
  border-radius: 2rem;
}
.our-team .team-member h3 {
  color: #be1e2d;
  font-weight: bold;
  margin: 1rem 0 0.25rem 0;
  font-size: 1.25rem;
}
.our-team .team-member p {
  margin-bottom: 0;
  color: rgba(31, 31, 31, 0.5);
}

.leads-cta {
  padding: 6rem 0;
}
.leads-cta h3 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.leads-cta .btn {
  margin: 0 0.5rem;
}

.leads-info .box {
  background: #fff;
  box-shadow: rgba(31, 31, 31, 0.15) 0 0.075rem 0.3rem;
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 4rem;
}
@media (max-width: 767.9px) {
  .leads-info .box {
    padding: 3rem;
  }
}
.leads-info .box img {
  width: 4rem;
  height: 4rem;
  display: block;
}
.leads-info .box h3 {
  font-weight: bold;
  color: #1f1f1f;
  margin: 1.5rem 0 0.5rem 0;
}
.leads-info .box p {
  margin-bottom: 0;
}

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