/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;900&display=swap");
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

img {
  width: 100%;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 17px;
  font-family: "Lato", sans-serif;
  line-height: 1.5em;
  font-weight: 200;
  color: #444;
  background-color: #333;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #7f8c8d;
  font-weight: 201;
}
a:hover {
  color: #d35400;
}

.afix {
  opacity: 1;
  position: fixed;
  min-width: 100%;
  z-index: 2;
  top: 0;
}

.img-circle {
  border-radius: 50%;
}

.button-inline {
  display: inline-block;
  margin-left: 0.7em;
  padding: 0em 0.8em;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.button-inline:hover {
  border: 1px solid #d35400;
}

hr {
  border: none;
  margin-top: -1px;
  height: 1px;
  background-color: #025244;
  background-image: -webkit-linear-gradient(0deg, #282b2d, #ffffff, #282b2d);
  width: 70%;
  text-align: center;
  margin: 2em auto;
}

strong {
  font-weight: 400;
}

.page {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .page {
    width: 75%;
  }
}

h1 {
  text-transform: uppercase;
  font-weight: black;
}

header {
  background-color: #000;
}
header .top__navigation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  margin: 0;
  margin-top: 2rem;
  padding: 0;
}
header .logo img {
  max-width: 200px;
}
header ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
}
header li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
header li a {
  font-family: "Lato", sans-serif;
  display: inline-block;
  padding: 2em 1.2em;
  text-transform: uppercase;
  font-weight: 100;
  font-size: 15px;
  border-top: 3px solid transparent;
}
header li a:hover {
  transition: 0.3s ease-in-out;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  header .top__navigation {
    align-items: center;
    justify-content: space-between;
  }
  header .top__navigation li a {
    font-family: "Lato", sans-serif;
    display: inline-block;
    padding: 0.5em 0.63em;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 10px;
    border-top: 3px solid transparent;
  }
  header .top__navigation li a:hover {
    transition: 0.3s ease-in-out;
  }
  header .logo {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  header .logo img {
    max-width: 50%;
  }
  header ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  header li {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  header li a {
    display: inline-block;
    padding: 1em 0.8em;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 15px;
    border-top: 3px solid transparent;
  }
  header li a:hover {
    transition: 0.3s ease-in-out;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  header .afix {
    min-width: auto;
  }
}

.slider {
  margin-top: 77px;
  max-height: 390px;
  overflow: hidden;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .slider {
    margin-top: 108px;
  }
}

.arrows {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: -222px;
  position: absolute;
}
.arrows li {
  color: #333;
}
.arrows li .fa {
  font-size: 22px;
  font-weight: 100;
}
.arrows li.prev {
  display: block;
  cursor: pointer;
  padding: 1em 1.2em;
  margin-left: 3%;
  border-radius: 50% 0 0 50%;
}
.arrows li.next {
  margin-right: 3%;
  display: block;
  cursor: pointer;
  padding: 1em 1.2em;
  border-radius: 0 50% 50% 0;
}
.arrows li:hover {
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .arrows {
    margin-top: -158px;
    position: absolute;
  }
  .arrows li .fa {
    font-size: 17px;
  }
}

.carouselContainer {
  overflow: hidden;
}

section {
  padding: 18% 0;
}
section h1 {
  margin-top: 1.4em;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  section {
    padding: 8% 0;
  }
  section h1 {
    margin-top: 0em;
  }
}

.anchor {
  display: block;
}

.invisible {
  visibility: hidden;
  opacity: 0;
  display: none;
}

.page__home {
  background-color: #000;
  padding: 13%;
  padding-top: 5%;
}
.page__home .img-circle {
  width: 150px;
}
.page__home p {
  width: 100%;
  margin: 1em auto;
  color: #7f8c8d;
  font-size: 15px;
}
.page__home .author {
  float: left;
  margin-right: 3em;
  margin-top: -1em;
}
.page__home .boxed {
  position: fixed;
  width: 100%;
  height: 80%;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 4;
  text-align: right;
}
.page__home .boxed .close {
  position: relative;
  text-align: right;
  top: 6.5em;
  left: -16em;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.page__home .content {
  overflow: auto;
  width: 50%;
  max-height: 90%;
  margin: 4% auto;
  background-color: white;
  padding: 2em;
  text-align: left;
  font-size: 15px !important;
  color: #000;
}
.page__home .content h3 {
  font-weight: bold;
  text-transform: uppercase;
  color: black;
  margin: 2em;
}
.page__home .content ul,
.page__home .content ol {
  width: 70%;
  margin: 1em auto;
}
.page__home .content ul li,
.page__home .content ol li {
  margin-bottom: 1.2em;
  color: #7f8c8d;
}
.page__home .content ul a,
.page__home .content ol a {
  font-weight: 800;
  color: #667273;
}
.page__home .content ul a:hover,
.page__home .content ol a:hover {
  color: #d35400;
}
.page__home .content i {
  display: inline-block;
  margin-right: 0.5em;
  color: #d35400;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .page__home {
    padding: 0;
    margin-top: 0;
    padding-bottom: 15%;
  }
  .page__home .content {
    width: 100%;
    max-height: 95%;
    padding: 1em;
  }
  .page__home .boxed .close {
    top: 0.5em;
    left: -8em;
  }
  .page__home .img-circle {
    width: 100%;
    border-radius: 0;
    margin-bottom: 1em;
  }
  .page__home .author {
    float: none;
    margin-right: 0em;
    margin-top: 0em;
  }
  .page__home .dashed {
    display: block;
    margin-bottom: 1em;
  }
  .page__home p {
    max-width: 88%;
    font-size: 12px;
    line-height: 1.35em;
    padding: 0 2%;
  }
  .page__home .button-inline {
    margin-top: 1em;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .page__home .afix {
    min-width: auto;
  }
}

.dashed {
  text-transform: uppercase;
  font-size: 14px;
}

.active {
  border-bottom: 1px solid transparent;
  border-top: 3px solid transparent;
}
.active a {
  color: #ffffff;
}
.active:hover {
  color: #d35400;
}

.page__team {
  background-color: #1a1a1a;
  text-align: center;
}
.page__team .page {
  width: 90%;
}
.page__team .img-circle {
  margin-bottom: 1em;
}
.page__team h1 {
  font-size: 32px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: white;
}
.page__team span {
  display: block;
  margin-top: 2em;
  color: #333;
}
.page__team .img-circle {
  width: 177px;
}
.page__team ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  text-align: center;
}
.page__team ul li {
  margin: 0;
  padding: 0;
}
.page__team .member {
  text-align: center;
  padding: 0.5em 1em;
  min-height: 300px;
}
.page__team .member a {
  display: inline-block;
  padding: 0.5em 1em;
}
.page__team .member p {
  font-size: 0.8em;
  min-height: 20px;
  color: #7f8c8d;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .page__team {
    padding: 0;
    margin-top: 0px !important;
    padding-top: -2%;
  }
  .page__team p {
    width: 100%;
    padding: 0 2em;
  }
  .page__team ul {
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: center;
  }
  .page__team ul li {
    margin-bottom: 1em;
  }
  .page__team .member {
    width: 100%;
    padding: 0;
  }
  .page__team .member .img-circle {
    width: 100%;
    border-radius: 0;
  }
}
.page__services {
  background-color: #282c2d;
  text-align: center;
}
.page__services h1 {
  font-size: 32px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: white;
}
.page__services span {
  display: block;
  margin-top: 2em;
  color: #d35400;
  width: 70%;
}
.page__services .services {
  margin-top: 8em;
}
.page__services .featured {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
  align-content: space-between;
  text-align: left;
}
.page__services .featured .fa {
  font-size: 77px;
  margin-bottom: 0.3em;
  display: block;
}
.page__services .featured li {
  padding: 0.8em;
  text-align: center;
  color: white;
  margin-bottom: 2em;
}
.page__services .featured p {
  text-transform: uppercase;
  font-size: 14px;
  min-height: 50px;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .page__services {
    padding: 0;
    margin-top: 0px !important;
  }
  .page__services .services {
    margin-top: 0;
  }
  .page__services .featured {
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
    text-align: center;
  }
  .page__services .featured li {
    margin-bottom: 1em;
  }
}
.page__clients {
  background-color: white;
  text-align: center;
}
.page__clients .clients {
  margin-top: 2em;
}
.page__clients img {
  max-width: 170px;
  display: inline-block;
  margin: 0em;
}
.page__clients h1 {
  font-size: 32px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: black;
}
.page__clients span {
  display: block;
  margin-top: 2em;
  color: #000;
  text-align: center;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .page__clients {
    padding: 0;
    margin-top: 0px !important;
  }
}
.page__gallery {
  background-color: #1a1a1a;
}
.page__gallery h1 {
  font-size: 32px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: white;
  text-align: center;
}
.page__gallery .grid {
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  overflow: hidden;
}
.page__gallery .grid .grid__item {
  max-height: 200px !important;
  overflow: hidden;
}
.page__gallery .grid .grid__item img {
  opacity: 0.8;
  width: 100%;
  max-height: auto !important;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.3s;
}
.page__gallery .grid .grid__item img:hover {
  transform: scale(1.1);
  opacity: 1;
}
.page__gallery .grid .grid-sizer,
.page__gallery .grid .grid__item {
  width: 25%;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .page__gallery {
    padding: 0;
    margin-top: 0px !important;
  }
  .page__gallery .grid .grid-sizer,
.page__gallery .grid .grid__item {
    width: 100%;
  }
}
.page__contact {
  background-color: white;
  padding-bottom: 3%;
}
.page__contact h1 {
  font-size: 15px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  color: black;
  margin-bottom: 1em;
  margin-top: 0;
  text-align: left;
}
.page__contact p {
  text-align: left;
}
.page__contact address {
  margin-top: 1em;
}
.page__contact .social {
  margin-top: 1em;
}
.page__contact .social a {
  display: inline-block;
  padding: 0.5em 1em;
  border: 1px solid #efefef;
}
.page__contact .social a:hover {
  transition: ease-in-out 0.3s;
  border: 1px solid #333;
}
.page__contact label {
  display: block;
}
.page__contact input,
.page__contact textarea {
  padding: 0.5em;
  width: 100%;
  margin-bottom: 10px;
  text-transform: uppercase;
  border: 2px solid #bbb;
  max-width: 100%;
  padding: 7.5px 10px 8.5px;
  border-radius: 0;
  line-height: 1.42;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.85714em;
  font-weight: 700;
  letter-spacing: 1px;
  text-indent: 0.5px;
  color: #000;
  background-color: transparent;
  user-select: text;
}
.page__contact button {
  border: 2px solid #bbb;
  padding: 0.3em;
  background-color: #fff;
  cursor: pointer;
  padding: 0.5em 1em;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 600;
  color: #bbb;
}
.page__contact button:hover {
  color: #d35400;
  border: 2px solid #d35400;
}
.page__contact .contact {
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
}
.page__contact .contact .address,
.page__contact .contact .form {
  width: 45%;
  text-align: right;
}
.page__contact .contact .address p,
.page__contact .contact .form p {
  font-size: 15px;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .page__contact {
    padding: 0;
    margin-top: 0px !important;
  }
  .page__contact input,
.page__contact textarea {
    width: 100%;
    padding-right: 0;
  }
  .page__contact .contact {
    flex-flow: column wrap;
  }
  .page__contact .contact aside {
    width: 100%;
  }
  .page__contact .contact .address,
.page__contact .contact .form {
    width: 100%;
    padding: 1em;
  }
  .page__contact .contact .form {
    text-align: right;
    padding-right: 1em;
  }
  .page__contact .page,
.page__contact aside {
    width: 100%;
  }
}
.page__footer {
  background-color: #eee;
  padding: 4% 0;
}
.page__footer .foot {
  display: flex;
  justify-content: space-between;
}
.page__footer .page__footer--navigation ul {
  display: flex;
  justify-content: center;
  flex-flow: raw wrap;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .page__footer .page__footer--navigation ul {
    justify-content: space-between;
  }
}
.page__footer .page__footer--navigation ul li {
  list-style-type: none;
}
.page__footer .page__footer--navigation a {
  display: inline-block;
  padding: 0.5em 1.3em;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Lato", sans-serif;
}
@media screen and (min-width: 1024px) {
  .page__footer .page__footer--navigation a:first-child {
    padding-left: 0;
  }
}
.page__footer .social a {
  padding: 0.5em 0.5em;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 900;
  color: #333;
  font-family: "Lato", sans-serif;
}
.page__footer .social a:hover {
  transition: ease-in-out 0.3s;
  color: #d35400;
}
.page__footer .page__footer--copyright {
  text-align: left;
  margin-top: 0em;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  color: #7f8c8d;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .page__footer .foot {
    flex-flow: column wrap;
  }
  .page__footer .page__footer--mkit,
.page__footer .social,
.page__footer .page__footer--copyright {
    text-align: center;
  }
  .page__footer .page__footer--mkit .far,
.page__footer .social .far,
.page__footer .page__footer--copyright .far {
    font-size: 19px;
  }
  .page__footer .social {
    margin-top: 1em;
  }
  .page__footer .social a {
    padding: 0.6em 0.8em;
  }
  .page__footer .page__footer--copyright {
    font-size: 10px;
  }
}
.top {
  display: inline-block;
  padding: 0.3em 0.6em;
  background-color: rgba(211, 84, 0, 0.5);
  color: #fff;
  position: fixed;
  bottom: 2em;
  right: 2em;
}
.top:hover {
  background-color: #d35400;
  color: #fff;
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .top {
    bottom: 5.8em;
    right: 0em;
  }
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.page__footer--mkit .button-inline {
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 900;
  border: 2px solid #bbb;
  font-family: "Lato", sans-serif;
}
.page__footer--mkit .button-inline:hover {
  transition: ease-in-out 0.3s;
  color: #d35400;
  border: 2px solid #d35400;
}

.slick-dots {
  display: none !important;
}

.lbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 4;
  text-align: right;
}
.lbox .content {
  width: 40%;
  padding: 4em;
}
.lbox p {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.35em;
  padding: 0;
  margin: 0;
  margin-bottom: 1em;
}
.lbox .close {
  position: relative;
  text-align: right;
  top: 6.5em;
  left: -21em;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.lbox label {
  display: block;
}
.lbox input,
.lbox textarea {
  padding: 0.5em;
  width: 100%;
  margin-bottom: 10px;
  text-transform: uppercase;
  border: 2px solid #bbb;
  max-width: 100%;
  padding: 7.5px 10px 8.5px;
  border-radius: 0;
  line-height: 1.42;
  font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.85714em;
  font-weight: 700;
  letter-spacing: 1px;
  text-indent: 0.5px;
  color: #000;
  background-color: transparent;
  user-select: text;
}
.lbox button {
  border: 2px solid #bbb;
  padding: 0.3em;
  background-color: #fff;
  cursor: pointer;
  padding: 0.5em 1em;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 600;
  color: #757575;
}
.lbox button:hover {
  color: #d35400;
  border: 2px solid #d35400;
}
@media only screen and (max-device-width: 480px) and (min-device-width: 320px) {
  .lbox .content {
    width: 100%;
  }
  .lbox .close {
    left: -4.8em;
    top: 56px;
  }
}

.portrait {
  background-color: #0c0c0c;
}
@media screen and (min-width: 1024px) {
  .portrait {
    padding: 5rem 0;
    padding-bottom: 10rem !important;
    margin-top: 3rem;
  }
}
.portrait .about-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .portrait .about-wrapper {
    flex-wrap: nowrap;
  }
}
.portrait .biography-two {
  font-size: 16px;
  color: #d6d6d2;
}
.portrait .biography-two .title {
  padding: 0;
  margin: 0;
  font-size: 11px;
  color: #9a9437;
  border-top: 0px;
}
.portrait .biography-two h2 {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .portrait .biography-two {
    padding-left: 2rem;
  }
}
.portrait picture {
  width:100%;
  margin-bottom:2rem;
  @media only screen and (max-device-width: 768px) {
    margin-top:3rem;
  }
  @media only screen and (min-device-width: 768px) {
    min-width:44%;
    max-width: 40%;
}
.theelite {
  margin-top: 2rem;
  font-weight: bold;
  text-align: left;
  position: relative;
}
.theelite a {
  display: block;
  margin-top: 1rem;
  transition: all 0.5s ease-out;
}
.theelite a img {
  transition: all 0.5s ease-out;
}
.theelite a:hover {
  transition: all 0.5s ease-out;
}
.theelite a:hover::after {
  content: "Connect with Elite PR";
  position: absolute;
  right: 0;
  color: #d35400;
  top: 5rem;
  left: 66%;
  transition: all 0.2s ease-out;
  font-weight: bold;
  font-style: italic;
}
@media only screen and (min-device-width: 768px) {
  .theelite a:hover::after {
    left: 50%;
  }
}
.theelite a:hover img {
  box-shadow: 0 0 5px #667273;
  padding: 0.5rem;
  border-radius: 17px;
}

.elite_sign {
  text-align: right;
}
.elite_sign img {
  width: 150px;
}

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