@font-face {
  font-family: 'CircularBold';
  src: url(./fonts/Circular-Std-Bold.ttf) format('truetype');
}

@font-face {
  font-family: 'CircularBook';
  src: url(./fonts/Circular-Std-Book.ttf) format('truetype');
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'CircularBook';
  color: #185abc;
}

body {
  overflow-y: auto;
  overflow-x: hidden;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding-top: 30px;
}

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

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

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

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

.f-height {
  height: 600px;
}

.f-left {
  flex: 0.35;
  position: relative;
  z-index: 2;
}

.f-right {
  flex: 0.65;
  position: relative;
  z-index: 2;
}

.feature-prod {
  width: 100%;
  align-items: center;
}

.t-right {
  text-align: right;
}

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

h1,
h2 {
  font-family: 'CircularBold';
  font-size: 2em;
}

.img-wrap {
  text-align: right;
  max-width: 80%;
  height: auto;
  display: inline-block;
}

.img-wrap img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.btn,
.btn-white-outline {
  font-size: 1.25em;
  border-radius: 40px;
  padding: 15px 25px;
  display: inline-block;
  cursor: pointer;
  transition: 300ms;
}

.btn {
  border: solid 3px transparent;
  background-color: #185abc;
  color: #fff;
}

.btn:hover {
  border: solid 3px #185abc;
  background-color: transparent;
  color: #185abc;
}

.btn-white-outline {
  background-color: transparent;
  border: solid 3px #185abc;
  color: #185abc;
  margin-left: 20px;
}

.btn-white-outline:hover {
  border: solid 3px transparent;
  background-color: #185abc;
  color: #fff;
}

.content-wrap {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

h1 {
  font-size: 3em;
  max-width: 600px;
}

.feature-prod .btn {
  margin-top: 20px;
}

.service-blocks {
  display: block;
  margin-left: -10px;
}

.service-blocks span {
  background-color: #185abc;
  border-radius: 5px;
  padding: 15px 20px;
  display: inline-block;
  margin: 10px;
  font-size: 1.25em;
  color: #fff;
}

.client-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
}

.client-list img {
  max-height: 40px;
  width: auto;
  height: auto;
}

.w-height {
  height: 100vh;
}

footer {
  justify-content: center;
  z-index: 2;
  position: relative;
}

footer h2 {
  border-bottom: solid 3px #185abc;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 50px;
  width: 300px;
}

footer .footer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card {
  margin: 20px 0;
}

.contact-card .sub-title {
  margin: 0;
}

.contact-card p {
  font-size: 2em;
  margin: 0;
  font-family: 'CircularBold';
}

.copy {
  font-size: 12px;
  margin: 30px 0;
}

.f-img-wrap {
  position: relative;
  z-index: 2;
}

.our-services {
  margin: 100px 0;
}

.vid-wrapper {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
}

.vid {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translate(0px, -50px);
    transform: translate(0px, -50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
}

.hide {
  opacity: 0;
}

.slide-in {
  animation: fadeIn 900ms;
  -webkit-animation: fadeIn 900ms;
  -moz-animation: fadeIn 900ms;
  -o-animation: fadeIn 900ms;
  -ms-animation: fadeIn 900ms;
}

.app {
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.clients-intro {
  color: #898787;
  margin: 20px 0 0 10px;
  cursor: pointer;
}

.clients-copy {
  font-size: 20px;
}
