/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important; }

*,
*:before,
*:after {
  box-sizing: border-box; }

body,
html {
  font-family: 'montserrat', sans-serif;
  overflow-x: hidden; }

a {
  color: black;
  text-decoration: none; }

.content {
  max-width: 1200px;
  margin: 0 auto;
  width: 96%; }

.content-small {
  max-width: 900px;
  margin: 0 auto;
  width: 96%; }

.main {
  position: relative; }

.vertical-align {
  display: flex;
  align-items: center;
  justify-content: center; }

.full-width {
  width: 100%; }

.disabled {
  pointer-events: none;
  opacity: .4; }

@media only screen and (min-width: 500px) {
  .only-mob {
    display: none; } }

@media only screen and (max-width: 500px) {
  .hide-mob {
    display: none; }
  .only-mob {
    display: block; } }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 46px 0; }

.menu-icon {
  display: none;
  font-size: 0;
  width: 20px;
  height: 3px;
  border-radius: 17px;
  background: #333;
  position: relative;
  transition: all 0.3s; }
  .menu-icon:before, .menu-icon:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 3px;
    right: 0;
    border-radius: 18px;
    background: #333; }
  .menu-icon:before {
    top: -6px; }
  .menu-icon:after {
    bottom: -6px; }

.sidebar {
  display: block;
  background: #212121;
  width: 100%;
  bottom: 0;
  position: fixed;
  left: -100vw;
  top: 0;
  z-index: 10;
  transition: all .3s;
  color: #fff; }
  .sidebar ul {
    margin-left: 50px;
    margin-top: 100px; }
    .sidebar ul li {
      margin-bottom: 20px; }
  .sidebar .active {
    color: #35D7B0; }
  .sidebar .logo,
  .sidebar .logo-white {
    margin-top: 15px; }

.menu {
  font-size: 11px;
  display: flex;
  margin-left: auto;
  margin-right: 30px; }
  .menu > li:not(:last-child) {
    margin-right: 30px; }
  .menu .menu-tag {
    transition: color .3s;
    font-weight: bold; }
    .menu .menu-tag:hover, .menu .menu-tag.active {
      color: #35D7B0; }

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 110px 0;
  margin-top: 210px;
  font-size: 12px;
  font-weight: normal; }
  .footer .content {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .footer .site-policy li,
  .footer .social-media li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    position: relative;
    font-size: 12px; }
  .footer .social-media li {
    font-size: 0; }
    .footer .social-media li a {
      display: inline-block; }
  .footer .social-media,
  .footer .site-policy {
    font-size: 0; }

.btn {
  font-size: 13px;
  font-weight: bold;
  display: inline-block; }
  .btn svg {
    transition: transform .2s linear; }
  .btn:hover svg {
    transform: translateX(10px); }

.btn-hire {
  color: #fff;
  background: #76D9C1;
  padding: 17px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  overflow: hidden; }
  .btn-hire:after {
    content: "";
    background: #0CB58C;
    color: #0CB58C;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    left: -65px;
    z-index: -1;
    box-shadow: 130px -90px 0 -5px #04A27B, 160px -40px;
    transition: box-shadow .3s; }
  .btn-hire svg {
    transition: transform .2s linear; }
  .btn-hire:hover:after {
    box-shadow: 110px -80px 0 -20px #04A27B, 180px -30px; }
  .btn-hire:hover svg {
    transform: translateX(5px); }

.btn-simple {
  color: #000;
  background: #35D7B0;
  padding: 17px;
  border-radius: 14px;
  transition: background .2s; }
  .btn-simple:hover {
    background: #24b592; }
    .btn-simple:hover svg {
      transform: translateX(5px); }

.btn-grey {
  background: #F2F2F2;
  border-radius: 14px;
  padding: 17px 40px;
  min-height: 50px;
  transition: background .2s; }
  .btn-grey:hover {
    background: #d9d9d9; }
    .btn-grey:hover svg {
      transform: translateX(5px); }

.btn-footer {
  background: #76D9C1;
  border-radius: 14px;
  padding: 17px 40px;
  min-height: 50px; }
  .btn-footer:hover svg {
    transform: translateX(5px); }

.icon-arrow {
  margin-left: 15px;
  flex-shrink: 0; }

.v-margin-t-sm {
  margin-top: 10px; }

.v-margin-t-md {
  margin-top: 30px; }

.v-margin-t-lg {
  margin-top: 50px; }

.v-margin-t-xl {
  margin-top: 80px; }

.v-margin-t-xxl {
  margin-top: 120px; }

.v-margin-t-xxxl {
  margin-top: 200px; }

.v-margin-b-sm {
  margin-bottom: 10px; }

.v-margin-b-md {
  margin-bottom: 30px; }

.v-margin-b-lg {
  margin-bottom: 50px; }

.v-margin-b-xl {
  margin-bottom: 80px; }

.v-margin-b-xxl {
  margin-bottom: 120px; }

.v-margin-b-xxxl {
  margin-bottom: 200px; }

.v-margin-r-xs {
  margin-right: 5px; }

.v-margin-r-sm {
  margin-right: 10px; }

.v-margin-r-md {
  margin-right: 20px; }

.v-margin-r-lg {
  margin-right: 30px; }

.v-margin-r-xl {
  margin-right: 40px; }

.v-margin-r-xxl {
  margin-right: 50px; }

.v-margin-l-xs {
  margin-left: 5px; }

.v-margin-l-sm {
  margin-left: 10px; }

.v-margin-l-md {
  margin-left: 20px; }

.v-margin-l-lg {
  margin-left: 30px; }

.v-margin-l-xl {
  margin-left: 40px; }

.v-margin-l-xxl {
  margin-left: 50px; }

.v-margin-l-xxxl {
  margin-left: 100px; }

.v-title-sm {
  font-size: 20px;
  line-height: 27px; }

.v-title-md {
  font-size: 24px;
  line-height: 31px;
  color: #191919; }

.v-title-lg {
  font-size: 40px;
  line-height: 47px; }

.v-title-xl {
  font-size: 60px;
  line-height: 67px; }

.v-with-subtitle {
  margin-top: 23px; }

.v-subtitle {
  font-size: 12px;
  line-height: 19px;
  font-weight: bold;
  color: #b3b3b3; }

.v-text {
  font-size: 16px;
  line-height: 23px;
  color: #000; }

.animated-link svg {
  transition: transform .2s linear; }

.animated-link:hover svg {
  transform: translateX(5px); }

.v-text-bold {
  font-weight: bold; }

.v-text-normal {
  font-weight: normal; }

.v-text-promo {
  font-size: 15px;
  line-height: 18px;
  color: #35D7B0; }

.v-text-brake {
  display: block; }

.v-text-black {
  color: #000; }

.v-text-white {
  color: #fff; }

.v-text-blue {
  color: #3628EF; }

.v-text-green {
  color: #35D7B0; }

.v-text-grey {
  color: rgba(0, 0, 0, 0.3); }

.v-text-beige {
  color: rgba(237, 235, 226, 0.9); }

.v-text-pink {
  color: rgba(230, 204, 192, 0.9); }

.text-align-left {
  text-align: left; }

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

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

.v-layout-1-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); }

.v-layout-1-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); }

.v-layout-2-3 {
  display: grid;
  grid-template-columns: 1fr 2fr; }

.v-layout-2-3-b {
  display: grid;
  grid-template-columns: 2fr 1fr; }

.v-layout-1-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr); }

.v-layout-1-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr); }

.v-inl-block {
  display: inline-block;
  margin-left: 40px; }

.get-started {
  text-align: center; }

.clip-navigation {
  grid-gap: 100px; }
  .clip-navigation a {
    font-size: 32px;
    font-weight: bold;
    margin-left: 20px; }
    .clip-navigation a svg {
      margin-right: 20px; }
    .clip-navigation a:last-child svg {
      transform: scale(-1);
      margin-left: 20px; }
    .clip-navigation a:first-child {
      justify-self: flex-end; }
  .profit-able-page .clip-navigation a {
    color: #fff; }

.schedule-modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  z-index: 9999; }
  .schedule-modal.active {
    display: block; }
  .schedule-modal .inner-modal {
    background: #fff;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 100%; }
  .schedule-modal .inner-modal-close {
    position: absolute;
    top: -30px;
    right: -50px;
    cursor: pointer; }

.no-scroll {
  overflow: hidden; }

.trigger-modal {
  cursor: pointer; }

.index-creative-writer.active:before,
.our-works.active:before,
.objectives.active:before {
  width: 100vw; }

.index-creative-writer.active .reveal-img:after, .index-creative-writer.active .reveal-img:before,
.our-works.active .reveal-img:after,
.our-works.active .reveal-img:before,
.objectives.active .reveal-img:after,
.objectives.active .reveal-img:before {
  height: 0; }

.reveal-img {
  position: relative; }
  .reveal-img:after {
    position: absolute;
    background: #000;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    transition: all .6s .5s ease-out; }
  .reveal-img:before {
    position: absolute;
    background: #35D7B0;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    transition: all 1.2s .5s ease-out; }

@keyframes scale-out {
  to {
    border-width: 0; } }

@keyframes swipe-out {
  to {
    width: 0; } }

.video-wrapper {
  position: relative; }
  .video-wrapper iframe {
    width: 720px;
    height: 480px; }
    @media screen and (max-width: 500px) {
      .video-wrapper iframe {
        width: 300px;
        height: 200px; } }
