/* ===================================================================
 * # imports 
 *
 * ------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,400;1,700&display=swap');

/* =================================================================== 
 *
 *  TOC:
 *  # custom block grid STACK breakpoints
 *  # base style overrides
 *    ## links
 *  # typography & general theme styles
 *    ## Lists
 *    ## responsive video container
 *    ## floated image 
 *    ## tables
 *    ## Spacing
 *  # preloader
 *  # forms
 *    ## Style Placeholder Text
 *    ## Change Autocomplete styles in Chrome
 *  # buttons
 *  # additional components
 *    ## additional typo styles 
 *    ## skillbars
 *    ## alert box 
 *  # Common and Reusable Styles
 *  # site header
 *    ## header logo
 *    ## main navigation
 *    ## mobile menu toggle
 *    ## download resume button
 *  # hero
 *    ## hero social
 *    ## hero scroll
 *    ## animate intro content
 *    ## animations
 *  # about section
 *    ## career position
 *  # services section
 *    ## services list
 *  # portfolio
 *    ## portfolio list
 *  # testimonials
 *  # CTA
 *  # footer
 *    ## contact block
 *    ## copyright
 *    ## go top
 *
 * =================================================================== */


:root {
    --font-1: "Roboto", sans-serif;
    --font-2: "Onest", sans-serif;

  /* monospace
   */
    --font-mono: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

/* ------------------------------------------------------------------- 
 * ## colors
 * ------------------------------------------------------------------- */
:root {

  /* color-1(#d9083c)
   * color-2(#2F352B)
   * color-3(#1A1A1A)
   */
    --color-1: #007ced; /* blue */
    --color-2: #f10e3b; /* red */

  /* theme color variations
   */
    --color-1-light   : #379FFF;
    --color-1-dark    : #0B5CD6;

    --color-2-light   : #ff2853;
    --color-2-dark    : #0B5CD6;

  /* feedback colors
   * color-error(#ffd1d2), color-success(#c8e675), 
   * color-info(#d7ecfb), color-notice(#fff099)
   */
    --color-error          : hsla(359, 100%, 91%, 1);
    --color-success        : hsla(76, 69%, 68%, 1);
    --color-info           : hsla(205, 82%, 91%, 1);
    --color-notice         : hsla(51, 100%, 80%, 1);
    --color-error-content  : hsla(359, 50%, 50%, 1);
    --color-success-content: hsla(76, 29%, 28%, 1);
    --color-info-content   : hsla(205, 32%, 31%, 1);
    --color-notice-content : hsla(51, 30%, 30%, 1);

  /* neutrals
   * generated using 
   * Tint & Shade Generator 
   * (https://maketintsandshades.com/)
   */
    --color-black  : #000000;
    --color-gray-19: #181818;
    --color-gray-18: #2f302f;
    --color-gray-17: #474747;
    --color-gray-16: #5e5f5e;
    --color-gray-15: #767776;
    --color-gray-14: #8e8f8e;
    --color-gray-13: #a5a7a5;
    --color-gray-12: #bdbebd;
    --color-gray-11: #d4d6d4;
    --color-gray-10: #eceeec;
    --color-gray-9 : #eef0ee;
    --color-gray-8 : #f0f1f0;
    --color-gray-7 : #f2f3f2;
    --color-gray-6 : #f4f5f4;
    --color-gray-5 : #f6f7f6;
    --color-gray-4 : #f7f8f7;
    --color-gray-3 : #f9faf9;
    --color-gray-2 : #fbfcfb;
    --color-gray-1 : #fbfcfb;
    --color-white  : #ffffff;

  /* text
   */
    --color-text       : var(--color-gray-19);
    --color-text-dark  : var(--color-3-dark);
    --color-text-light : var(--color-gray-15);
    --color-placeholder: var(--color-gray-13);

  /* accents
   */
    --color-primary       : var(--color-1);
    --color-primary-dark  : var(--color-1-dark);
    --color-primary-light : var(--color-1-light);
    --color-secondary     : var(--color-2);
    --color-accent-teal   : #adcfd6;
    --color-accent-red    : #f10e3b;

  /* bg
   */
    --color-bg-light: #f3f5f7;
    --color-bg-dark : #0a0f15; /* 07133b */
    --color-bg-teal : #e2effb;

  /* link
   */
    --color-link       : var(--color-1);
    --color-link-hover : var(--color-1-light);

  /* buttons
   */
    --color-btn                   : var(--color-gray-10);
    --color-btn-text              : var(--color-text);
    --color-btn-hover             : var(--color-gray-11);
    --color-btn-hover-text        : var(--color-text);
    --color-btn-primary           : var(--color-1);
    --color-btn-primary-text      : var(--color-white);
    --color-btn-primary-hover     : var(--color-1-light);
    --color-btn-primary-hover-text: var(--color-white);
    --color-btn-stroke            : var(--color-text-dark);
    --color-btn-stroke-text       : var(--color-text-dark);
    --color-btn-stroke-hover      : var(--color-text-dark);
    --color-btn-stroke-hover-text : var(--color-white);

  /* preloader
   */
    --color-preloader-bg: var(--color-gray-10);
    --color-loader      : var(--color-3);
    --color-loader-light: var(--color-gray-14);

  /* others
   */
    --color-body-bg: var(--color-gray-1);
    --color-border : rgba(0, 0, 0, .1);
    --border-radius: 5px;
}

.text-white {
  color: #ffffff!important;
}

.text-black {
  color: #000000!important;
}

.text-muted {
  color: var(--color-gray-13)!important;
}

.text-primary {
  color: var(--color-primary)!important;
}

.text-secondary {
  color: var(--color-secondary)!important;
}

.text-red {
  color: var(--color-accent-red)!important;
}

.text-warning {
  color: #fdd835!important;
}

.text-nowrap {
  white-space: nowrap!important;
}

.bg-transparent {
  background-color: transparent!important;
}

.bg-white {
  background-color: var(--color-white)!important;
}

.bg-light {
  background-color: var(--color-bg-light)!important;
}

.bg-light-blue-x {
  background: linear-gradient(90deg, #f1f3f5, #e2effb);
}

.bg-light-blue-y {
  background: linear-gradient(180deg, #f1f3f5, #e2effb);
}

.bg-light-blue-xy {
  background: linear-gradient(150deg, #f1f3f5, #e2effb);
}

.bg-dark {
  background-color: #181e28!important;
}

.bg-primary {
  background-color: var(--color-primary)!important;
}

.mt-lg {
  margin-top: 6.4rem!important;
}

.mt-huge {
  margin-top: 9.6rem!important;
}

.mt-base {
  margin-top: 4.8rem!important;
}

.mt-sm {
  margin-top: 2.4rem!important;
}

.mt-0 {
  margin-top: 0!important;
}

.mt-1 {
  margin-top: 0.5rem!important;
}

.mt-2 {
  margin-top: 1.5rem!important;
}

.mt-3 {
  margin-top: 3rem!important;
}

.mt-4 {
  margin-top: 4.5rem!important;
}

.mt-5 {
  margin-top: 6rem!important;
}

.mt-auto {
  margin-top: auto!important;
}

.mb-huge {
  margin-bottom: 9.6rem!important;
}

.mb-lg {
  margin-bottom: 6.4rem!important;
}

.mb-base {
  margin-bottom: 4.8rem!important;
}

.mb-sm {
  margin-bottom: 2.4rem!important;
}

.mb-0 {
  margin-bottom: 0!important;
}

.mb-1 {
  margin-bottom: 0.5rem!important;
}

.mb-2 {
  margin-bottom: 1.5rem!important;
}

.mb-3 {
  margin-bottom: 3rem!important;
}

.mb-4 {
  margin-bottom: 4.5rem!important;
}

.mb-5 {
  margin-bottom: 6rem!important;
}

.mr-1 {
  margin-right: 0.5rem!important;
}

.mr-2 {
  margin-right: 1.5rem!important;
}

.mr-3 {
  margin-right: 3rem!important;
}

.mr-4 {
  margin-right: 4.5rem!important;
}

.mr-5 {
  margin-right: 6rem!important;
}

.ml-1 {
  margin-left: 0.5rem!important;
}

.ml-2 {
  margin-left: 1.5rem!important;
}

.ml-3 {
  margin-left: 3rem!important;
}

.ml-4 {
  margin-left: 4.5rem!important;
}

.ml-5 {
  margin-left: 6rem!important;
}

.ml-6 {
  margin-left: 7.5rem!important;
}

.ml-7 {
  margin-left: 9rem!important;
}

.py-3 {
  padding-top: 3rem!important;
  padding-bottom: 3rem!important;
}

.py-4 {
  padding-top: 4rem!important;
  padding-bottom: 4rem!important;
}

@media screen and (max-width:800px) {
  .py-0-tab {
    padding-top: 0;
    padding-bottom: 0;
  }
  .mr-0-tab {
    margin-right: 0!important;
  }
}

.h-auto {
  height: auto!important;
}

.fw-300 {
  font-weight: 300!important;
}

.fw-400 {
  font-weight: 400!important;
}

.fw-500 {
  font-weight: 500!important;
}

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

.fw-700 {
  font-weight: 700!important;
}

.lh-1 {
  line-height: 1!important;
}

.lh-sm {
  line-height: 1.2!important;
}

.lh-base {
  line-height: 1.4!important;
}

.border-top {
  border-top: 1px solid rgba(226, 239, 251, 0.2);
  padding-top: 2.4rem;
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1.5rem;
}

.border-bottom-decor {
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 1.5rem;
}

.border-transparent {
  border: 2px solid transparent;
}

.border-primary {
  border: 2px solid var(--color-primary);
}

.border-red {
  border: 2px solid var(--color-accent-red);
}

.bg-red .border-bottom-decor,
.border-red .border-bottom-decor {
  border-color: var(--color-accent-red);
}

.d-flex {
  display: flex;
}

@media screen and (min-width:800.02px) {
  .d-mob-only {
    display: none!important;
  }
}

@media screen and (max-width:800px) {
  .d-desk-only {
    display: none!important;
  }
}

/* ===================================================================
 * # custom block grid STACK breakpoints
 *
 * ------------------------------------------------------------------- */
@media screen and (max-width:1000px) {
  .block-1000-full > .column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

}

@media screen and (max-width:900px) {
  .block-900-full > .column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

}

/* ===================================================================
 * # base style overrides
 *
 * ------------------------------------------------------------------- */
html {
  font-size: 10px;
}

@media screen and (max-width:400px) {
  html {
    font-size: 9.444444444444444px;
  }

}

html,
body {
  height: 100%;
}

body {
  background: #0b0a15;
  font-family: "Roboto", serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
  padding: 0;
  position: relative;
}

/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
  color: var(--color-primary);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: var(--color-text);
}

a:hover,
a:active {
  outline: 0;
}



/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-2);
  font-weight: 700;
  font-style: normal;
  color: #000000;
  -webkit-font-variant-ligatures: common-ligatures;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
}

@media screen and (max-width:600px) {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    margin-top: 2.4rem;
  }

}

h5, .h5, h6, .h6 {
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
}

@media screen and (max-width:600px) {
  h5, .h5, h6, .h6 {
    margin-top: 2.4rem;
    margin-bottom: 0.8rem;
  }

}

h1, .h1 {
  font-size: 3.6rem;
  line-height: 1.222;
}

@media screen and (max-width:600px) {
  h1, .h1 {
    font-size: 3.3rem;
  }

}

h2, .h2 {
  font-size: 3.2rem;
  font-size: clamp(2.4rem, 2.2154rem + 0.8205vw, 3.2rem);
  line-height: 1.25;
}

h3, .h3 {
  font-size: 2.4rem;
  font-size: clamp(2rem, 1.9077rem + 0.4103vw, 2.4rem);
  line-height: 1.167;
}

h4, .h4 {
  font-size: 2.1rem;
  font-size: clamp(1.8rem, 1.7308rem + 0.3077vw, 2.1rem);
  line-height: 1.333;
}

h5, .h5 {
  font-size: 1.8rem;
  line-height: 1.333;
}

h6, .h6 {
  font-size: 1.6rem;
  line-height: 1.5;
}

p img {
  margin: 0;
}

.lead {
  font-weight: 300;
  font-size: 2.1rem;
  margin-bottom: 3.2rem;
}

.text-sm {
  font-size: 1.4rem!important;
}

.text-md {
  font-size: 1.6rem!important;
}

.text-base {
  font-size: 1.8rem!important;
}

.text-lg {
  font-size: 2rem!important;
}

@media screen and (max-width:1200px) {
  .lead {
    font-size: 2.1rem;
  }

}

@media screen and (max-width:600px) {
  .lead {
    font-size: 1.8rem!important;
  }
  .text-lg {
    font-size: 1.8rem!important;
  }
}

em,
i,
strong,
b {
  font-size: inherit;
  line-height: inherit;
}

em,
i {
  font-family: "Roboto", serif;
  font-style: italic;
}

strong,
b {
  font-family: "Roboto", serif;
  font-weight: 700;
}

small {
  font-size: 1.2rem;
  line-height: inherit;
}

blockquote {
  margin: 4rem 0;
  padding: 4rem 4rem;
  border-left: 4px solid black;
  position: relative;
}

@media screen and (max-width:600px) {
  blockquote {
    padding: 3.2rem 3.2rem;
  }

}

@media screen and (max-width:400px) {
  blockquote {
    padding: 2.8rem 2.8rem;
  }

}

blockquote p {
  font-family: "Roboto", serif;
  font-weight: 400;
  padding: 0;
  font-size: 2.8rem;
  line-height: 1.857;
  color: #000000;
}

@media screen and (max-width:1200px) {
  blockquote p {
    font-size: 2.6rem;
  }

}

@media screen and (max-width:600px) {
  blockquote p {
    font-size: 2.2rem;
  }

}

blockquote cite {
  display: block;
  font-family: var(--font-2);
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1.333;
}

blockquote cite:before {
  content: "\2014 \0020";
}

blockquote cite,
blockquote cite a,
blockquote cite a:visited {
  color: #7e7e7e;
  border: none;
}

abbr {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: .05rem;
  color: #7e7e7e;
}

var,
kbd,
samp,
code,
pre {
  font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
  padding: 2.4rem 3.2rem 3.2rem;
  background: #efefef;
  overflow-x: auto;
}

code {
  font-size: 1.4rem;
  margin: 0 .2rem;
  padding: .4rem .8rem;
  white-space: nowrap;
  background: #efefef;
  border: 1px solid #d3d3d3;
  color: #000000;
  border-radius: 3px;
}

pre > code {
  display: block;
  white-space: pre;
  line-height: 2;
  padding: 0;
  margin: 0;
}

pre.prettyprint > code {
  border: none;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
  text-decoration: none;
}

mark {
  background: #fff099;
  color: #000000;
}

hr {
  border: solid #e0e0e0;
  border-width: 1px 0 0;
  clear: both;
  margin: 8rem 0 9.6rem;
  height: 0;
}

/* ------------------------------------------------------------------- 
 * ## Lists
 * ------------------------------------------------------------------- */
ol {
  list-style: decimal;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

ol,
ul {
  margin: 0;
}

ul li {
  padding: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0;
}

ul.list-unstyled {
  margin: 0;
  padding: 1.25rem 0 0 0;
}

ul.list-unstyled li {
  display: list-item;
  list-style: none;
  padding: 0 0 1.25rem;
}

ul.list-disc {
  margin-bottom: 2.4rem;
}

ul.list-disc li {
  display: list-item;
  list-style: none;
  padding: 0 0 1rem 2.4rem;
  position: relative;
}

ul.list-disc li:last-child {
  padding-bottom: 0;
}

ul.list-disc li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 10px;
  vertical-align: middle;
}

ul.list-number {
  margin: 0;
  padding: 1.5rem 0 0 0;
}

ul.list-number li {
  list-style: none;
  display: flex;
  padding: 0 0 1.5rem;
}

ul.list-number li:last-child {
  padding: 0;
}

ul.list-danger {
  margin-bottom: 2.4rem;
}

ul.list-danger li {
  display: list-item;
  list-style: none;
  padding: 0 0 2rem 4.4rem;
  position: relative;
}

ul.list-danger li:last-child {
  padding-bottom: 0;
}

ul.list-danger li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(241, 14, 59, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-accent-red);
  font-size: 2.1rem;
  font-weight: 700;
}

dt {
  margin: 0;
  color: var(--color-primary);
}

dd {
  margin: 0 0 0 2rem;
}

/* ------------------------------------------------------------------- 
 * ## responsive video container
 * ------------------------------------------------------------------- */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------------- 
 * ## floated image 
 * ------------------------------------------------------------------- */
img.h-pull-right {
  margin: 1.2rem 0 1.2rem 2.8rem;
}

img.h-pull-left {
  margin: 1.2rem 2.8rem 1.2rem 0;
}

/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */
table {
  border-width: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-2);
  border-collapse: collapse;
}

th,
td {
  padding: 1.5rem 3.2rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  color: #000000;
  font-family: var(--font-2);
  font-weight: 700;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ------------------------------------------------------------------- 
 * ## Spacing
 * ------------------------------------------------------------------- */
.btn {
  margin-bottom: 1.6rem;
}

fieldset {
  margin-bottom: 1.6rem;
}

input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.video-container,
.ss-custom-select {
  margin-bottom: 2.4rem;
}

/* ===================================================================
 * # preloader
 *
 * ------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-dark);
  z-index: 500;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 4px;
  padding: 0;
  display: inline-block;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

#loader {
    background-color : rgba(255, 255, 255, 0.2);
}

@-webkit-keyframes line {
    from {
        background-position : -60px 0;
    }

    to {
        background-position : 60px 0;
    }
}

@keyframes line {
    from {
        background-position : -60px 0;
    }

    to {
        background-position : 60px 0;
    }
}

.line:before {
    -webkit-animation : line .75s infinite alternate ease-in-out;
    animation         : line .75s infinite alternate ease-in-out;
    background        : -webkit-gradient(linear, left top, right top, from(var(--color-primary-dark)), to(var(--color-primary-dark)));
    background        : linear-gradient(90deg, var(--color-primary-dark), var(--color-primary-dark));
    background-repeat : no-repeat;
    background-size   : 80px 4px;
    content           : '';
    display           : block;
    height            : 100%;
    width             : 100%;
    border-radius     : 4px;
}



/* ===================================================================
 * # forms
 *
 * ------------------------------------------------------------------- */
fieldset {
  border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  display: block;
  padding: 1.2rem 1rem;
  border: 0;
  border-radius: .6rem;
  outline: none;
  font-family: var(--font-2);
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 100%;
  background: transparent;
  border-bottom: 1px solid #d3d3d3;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.ss-custom-select {
  position: relative;
}

.ss-custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  margin: 0;
  line-height: 3rem;
  vertical-align: middle;
}

.ss-custom-select select option {
  padding-left: 2rem;
  padding-right: 2rem;
}

.ss-custom-select select::-ms-expand {
  display: none;
}

.ss-custom-select::after {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  content: '';
  display: block;
  height: 8px;
  width: 8px;
  margin-top: -7px;
  pointer-events: none;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

textarea {
  min-height: 8rem;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  color: #000000;
  border-bottom: 1px solid #000000;
}

label,
legend {
  font-family: var(--font-2);
  margin-bottom: .8rem;
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label > .label-text {
  display: inline-block;
  margin-left: 1rem;
  font-family: var(--font-2);
  line-height: inherit;
}

label > input[type="checkbox"],
label > input[type="radio"] {
  margin: 0;
  position: relative;
  top: .2rem;
}

/* ------------------------------------------------------------------- 
 * ## Style Placeholder Text
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {

  /* WebKit, Blink, Edge */
  color: #8c8c8c;
}

:-ms-input-placeholder {

  /* Internet Explorer 10-11 */
  color: #8c8c8c;
}

::-ms-input-placeholder {

  /* Microsoft Edge */
  color: #8c8c8c;
}

::placeholder {

  /* Most modern browsers support this now. */
  color: #8c8c8c;
}

.placeholder {
  color: #8c8c8c !important;
}

/* ------------------------------------------------------------------- 
 * ## Change Autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-primary);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}



/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  font-family: var(--font-2);
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .4rem;
  height: 6rem;
  line-height: 5.8rem;
  padding: 0 3.2rem;
  margin: 0 .4rem 1.6rem 0;
  color: #000000;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #d3d3d3;
  border: 0.1rem solid #d3d3d3;
  border-radius: 4rem;
}

.btn:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  outline: 0;
}

/* button primary
 * ------------------------------------------------- */
.btn.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.btn.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: #ffffff;
}

/* button red
 * ------------------------------------------------- */
.btn.btn--red {
  background: var(--color-accent-red);
  border-color: var(--color-accent-red);
  color: #ffffff;
}

.btn.btn--red:hover,
.btn.btn--red:focus {
  background: var(--color-2-light);
  border-color: var(--color-2-light);
  color: #ffffff;
}

/* button modifiers
 * ------------------------------------------------- */
.btn.h-full-width,
button.h-full-width {
  width: 100%;
  margin-right: 0;
}

.btn--small,
button.btn--small {
  height: 5.6rem !important;
  line-height: 5.4rem !important;
}

.btn--medium,
button.btn--medium {
  height: 6.4rem !important;
  line-height: 6rem !important;
}

.btn--large,
button.btn--large {
  height: 6.8rem !important;
  line-height: 6.4rem !important;
}

.btn--stroke,
button.btn--stroke {
  background: transparent !important;
  border: 0.1rem solid #000000;
  color: #000000;
}

.btn--stroke:hover,
button.btn--stroke:hover {
  background: #000000 !important;
  border: 1px solid #000000;
  color: #ffffff;
}

.btn--stroke-primary,
button.btn--stroke-primary {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--stroke-primary:hover,
button.btn--stroke-primary:hover {
  background: #000000 !important;
  border: 1px solid #000000;
  color: #ffffff;
}

.btn--stroke-secondary,
button.btn--stroke-secondary {
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn--stroke-secondary:hover,
button.btn--stroke-secondary:hover {
  background: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}

.btn--stroke-white,
button.btn--stroke-white {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn--stroke-white:hover,
button.btn--stroke-white:hover {
  background: #fff;
  border-color: #fff;
  color: var(--color-primary);
}

.btn--pill,
button.btn--pill {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
  border-radius: 1000px !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}



/* =================================================================== 
 * # additional components
 *
 * ------------------------------------------------------------------- */

/* ------------------------------------------------------------------- 
 * ## additional typo styles 
 * ------------------------------------------------------------------- */
.drop-cap:first-letter {
  float: left;
  font-family: var(--font-2);
  font-weight: 700;
  font-size: 5.334em;
  line-height: 1;
  padding: 0 0.125em 0 0;
  text-transform: uppercase;
  background: transparent;
  color: #000000;
}

/* line definition style 
 * ----------------------------------------------- */
.lining dt,
.lining dd {
  display: inline;
  margin: 0;
}

.lining dt + dt:before,
.lining dd + dt:before {
  content: "\A";
  white-space: pre;
}

.lining dd + dd:before {
  content: ", ";
}

.lining dd + dd:before {
  content: ", ";
}

.lining dd:before {
  content: ": ";
  margin-left: -0.2em;
}

/* dictionary definition style 
 * ----------------------------------------------- */
.dictionary-style dt {
  display: inline;
  counter-reset: definitions;
}

.dictionary-style dt + dt:before {
  content: ", ";
  margin-left: -0.2em;
}

.dictionary-style dd {
  display: block;
  counter-increment: definitions;
}

.dictionary-style dd:before {
  content: counter(definitions, decimal) ". ";
}

/** 
 * Pull Quotes
 * -----------
 * markup:
 *
 * <aside class="pull-quote">
 *    <blockquote>
 *      <p></p>
 *    </blockquote>
 *  </aside>
 *
 * --------------------------------------------------------------------- */
.pull-quote {
  position: relative;
  padding: 2.4rem 0;
}

.pull-quote blockquote {
  background-color: #efefef;
  border: none;
  margin: 0;
  padding-top: 9.6rem;
  position: relative;
}

.pull-quote blockquote:before {
  content: "";
  display: block;
  height: 3.2rem;
  width: 3.2rem;
  background-repeat: no-repeat;
  background: center center;
  background-size: contain;
  background-image: url(../images/icons/icon-quote.svg);
  position: absolute;
  top: 4rem;
  left: 4rem;
}

/** 
 * Stats Tab
 * ---------
 * markup:
 *
 * <ul class="stats-tabs">
 *    <li><a href="#">[value]<em>[name]</em></a></li>
 *  </ul>
 *
 * Extend this object into your markup.
 *
 * --------------------------------------------------------------------- */
.stats-tabs {
  padding: 0;
  margin: 3.2rem 0;
}

.stats-tabs li {
  display: inline-block;
  margin: 0 1.6rem 3.2rem 0;
  padding: 0 1.5rem 0 0;
  border-right: 1px solid #e0e0e0;
}

.stats-tabs li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.stats-tabs li a {
  display: inline-block;
  font-size: 2.5rem;
  font-family: var(--font-2);
  font-weight: 700;
  border: none;
  color: #000000;
}

.stats-tabs li a:hover {
  color: var(--color-primary);
}

.stats-tabs li a em {
  display: block;
  margin: .8rem 0 0 0;
  font-family: var(--font-2);
  font-size: 1.5rem;
  font-weight: normal;
  font-style: normal;
  color: #7e7e7e;
}

/* ------------------------------------------------------------------- 
 * ## skillbars
 * ------------------------------------------------------------------- */
.skill-bars {
  list-style: none;
  margin: 6.8rem 0 3.2rem;
}

.skill-bars li {
  height: .4rem;
  background: #c3c3c3;
  width: 100%;
  margin-bottom: 6.8rem;
  padding: 0;
  position: relative;
}

.skill-bars li strong {
  position: absolute;
  left: 0;
  top: -4rem;
  font-family: var(--font-2);
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: .2rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.skill-bars li .progress {
  background: #000000;
  position: relative;
  height: 100%;
}

.skill-bars li .progress span {
  position: absolute;
  right: 0;
  top: -3.6rem;
  display: block;
  font-family: var(--font-2);
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1;
  background: #000000;
  padding: .8rem .8rem;
  border-radius: 3px;
}

.skill-bars li .progress span::after {
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -5px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #000000;
  content: "";
}

.skill-bars li .percent5 {
  width: 5%;
}

.skill-bars li .percent10 {
  width: 10%;
}

.skill-bars li .percent15 {
  width: 15%;
}

.skill-bars li .percent20 {
  width: 20%;
}

.skill-bars li .percent25 {
  width: 25%;
}

.skill-bars li .percent30 {
  width: 30%;
}

.skill-bars li .percent35 {
  width: 35%;
}

.skill-bars li .percent40 {
  width: 40%;
}

.skill-bars li .percent45 {
  width: 45%;
}

.skill-bars li .percent50 {
  width: 50%;
}

.skill-bars li .percent55 {
  width: 55%;
}

.skill-bars li .percent60 {
  width: 60%;
}

.skill-bars li .percent65 {
  width: 65%;
}

.skill-bars li .percent70 {
  width: 70%;
}

.skill-bars li .percent75 {
  width: 75%;
}

.skill-bars li .percent80 {
  width: 80%;
}

.skill-bars li .percent85 {
  width: 85%;
}

.skill-bars li .percent90 {
  width: 90%;
}

.skill-bars li .percent95 {
  width: 95%;
}

.skill-bars li .percent100 {
  width: 100%;
}

/* ------------------------------------------------------------------- 
 * ## alert box 
 * ------------------------------------------------------------------- */
.alert-box {
  padding: 2.4rem 4rem 2.4rem 3.2rem;
  position: relative;
  margin-bottom: 3.2rem;
  border-radius: 3px;
  font-family: var(--font-2);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.6;
}

.alert-box__close {
  position: absolute;
  display: block;
  right: 1.6rem;
  top: 1.6rem;
  cursor: pointer;
  width: 12px;
  height: 12px;
}

.alert-box__close::before,
.alert-box__close::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 2px;
  height: 12px;
  top: 0;
  left: 5px;
}

.alert-box__close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-box__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.alert-box--error {
  background-color: #ffd1d2;
  color: #dd4043;
}

.alert-box--error .alert-box__close::before,
.alert-box--error .alert-box__close::after {
  background-color: #dd4043;
}

.alert-box--success {
  background-color: #c8e675;
  color: #637533;
}

.alert-box--success .alert-box__close::before,
.alert-box--success .alert-box__close::after {
  background-color: #637533;
}

.alert-box--info {
  background-color: #d5ebfb;
  color: #387fb2;
}

.alert-box--info .alert-box__close::before,
.alert-box--info .alert-box__close::after {
  background-color: #387fb2;
}

.alert-box--notice {
  background-color: #fff099;
  color: #827217;
}

.alert-box--notice .alert-box__close::before,
.alert-box--notice .alert-box__close::after {
  background-color: #827217;
}



/* ===================================================================
 * # Common and Reusable Styles
 *
 * ------------------------------------------------------------------- */
.wide {
  max-width: 1400px;
}

.wider {
  max-width: 1600px;
}

.narrow {
  max-width: 1000px;
}

.subhead {
  font-size: 1.4rem;
  line-height: 1.286;
  text-transform: uppercase;
  letter-spacing: .4em;
  margin-top: 0;
  margin-bottom: 4rem;
  color: var(--color-primary);
}

.display-1 {
  font-size: 6.4rem;
  line-height: 1.125;
}

.display-2 {
  font-size: clamp(3.2rem, 2.8308rem + 1.641vw, 4.8rem)!important;
  line-height: 1.25;
}

.section-intro {
  position: relative;
  margin-bottom: 4.8rem;
}

.section-intro .display-1 {
  margin-top: 0;
}

.section-intro .subhead,
.section-intro .display-1 {
  position: relative;
}

.section-intro::before,
.section-intro::after {
  opacity: .25;
}

.section-intro::before {
  content: '';
  position: absolute;
  top: -8rem;
  left: 5.7rem;
  width: 12.8rem;
  height: 12.8rem;
  border: 0.1rem solid var(--color-accent-teal);
  border-radius: 0;
}

.section-intro::after {
  content: '';
  position: absolute;
  top: -12rem;
  left: -4rem;
  width: 19.2rem;
  height: 19.2rem;
  border: 0.1rem solid var(--color-accent-teal);
  border-radius: 50%;
}

.section-text {
  margin-top: 4.8rem;
  max-width: 64rem;
}


.h-dark-bg {
  color: #ffffff;
}

.h-dark-bg .section-intro .display-1 {
  color: #ffffff;
}

.h-dark-bg .section-intro::before {
  color: rgba(255, 255, 255, 0.08);
}

.h-dark-bg .lead {
  color: #ffffff;
}

.right-vert-line {
  width: 2px;
  height: 20rem;
  background-color: #302c59;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  position: absolute;
  top: 0;
  right: 11.2rem;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * common and reusable styles
 * ------------------------------------------------------------------- */

@media screen and (max-width:1200px) {
  .right-vert-line {
    right: 9rem;
  }
}

@media screen and (max-width:800px) {
  .section-intro::before {
    font-size: 24rem;
  }

  .right-vert-line {
    height: 16rem;
    right: 6.2rem;
  }
}

@media screen and (max-width:600px) {
  .subhead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }

  .display-1 {
    font-size: 4.2rem;
  }

  .section-intro::before {
    font-size: 22rem;
  }

  .right-vert-line {
    height: 12rem;
    right: 5rem;
  }

}

/* ===================================================================
 * # site header
 *
 * ------------------------------------------------------------------- */
.s-header {
  z-index: 100;
  width: 100%;
  height: 8.8rem;
  position: absolute;
  top: 2rem;
  left: 0;
}

.s-header.offset {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.s-header.scrolling {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.s-header.sticky {
  background-color: #050505;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

.s-header.sticky .header-logo img {
  width: 100px;
}

.s-header.sticky .header-contact {
  height: 4.8rem !important;
  line-height: 4.4rem !important;
  bottom: 50%;
  transform: translateY(50%);
}

.s-header.sticky .header-nav {
  padding-top: 3.2rem;
}

.s-header.sticky .header-nav a {
  color: rgba(255, 255, 255, 0.7);
}

.s-header.sticky.scrolling {
  opacity: 1;
  visibility: visible;
}

.header-content {
  height: 8.8rem;
  position: relative;
}

/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
.header-logo {
  z-index: 101;
  display: inline-block;
  margin: 0;
  padding: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  left: 6rem;
  top: 50%;
}

.header-logo a {
  display: block;
  border: none;
  padding: 0;
  outline: 0;
}

.header-logo img {
  width: 150px;
  height: 70px;
  vertical-align: bottom;
}

/* -------------------------------------------------------------------
 * ## main navigation
 * ------------------------------------------------------------------- */
.header-nav-wrap {
  max-width: 1400px;
  padding-left: 10px;
}

.header-nav {
  list-style: none;
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: .075rem;
  padding-top: 4.8rem;
  padding-bottom: 1.4rem;
  margin: 0;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.7);
}

.header-nav a:hover,
.header-nav a:focus {
  color: #ffffff !important;
}

.header-nav li {
  display: inline-block;
  padding-left: 0;
  margin: 0 1.5rem;
}

.header-contact {
  position: absolute;
  bottom: 0;
  right: 6rem;
  display: flex;
  align-items: center;
}

.header-contact .phone {
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 1.5vw;
}

.header-contact .phone:hover {
  color: rgba(255, 255, 255, 1);
}

.header-content .btn {
  margin: 0;
  padding: 0 1.5vw;
  font-size: 1.1rem;
  letter-spacing: .3rem;
}

.header-content .btn > span:last-child {
  display: none;
}

.header-content .btn:hover,
.header-content .btn:focus {
  background-color: #fff !important;
  color: var(--color-primary) !important;
}

/* ------------------------------------------------------------------- 
 * ## mobile menu toggle
 * ------------------------------------------------------------------- */
.header-menu-toggle {
  z-index: 101;
  display: none;
  height: 4.2rem;
  width: 4.2rem;
  line-height: 4.2rem;
  font-family: var(--font-2);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .2rem;
  color: #ffffff;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  right: 5.2rem;
  top: 3rem;
}

.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #ffffff;
}

.header-menu-toggle span {
  display: block;
  width: 2.4rem;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: all .5s;
  transition: all .5s;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: .9rem;
  right: auto;
  bottom: auto;
}

.header-menu-toggle span::before,
.header-menu-toggle span::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transition: all .5s;
  transition: all .5s;
  position: absolute;
  left: 0;
}

.header-menu-toggle span::before {
  top: -.9rem;
}

.header-menu-toggle span::after {
  bottom: -.9rem;
}

.header-menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all .1s;
  transition: all .1s;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background-color: white;
}

.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media screen and (max-width:1700px) {
  .header-logo {
    left: 6rem;
  }
  .header-nav-wrap {
    max-width: none;
    width: 100%;
    padding-left: 30rem;
  }
  .s-header.sticky .header-nav-wrap {
    padding-left: 22rem;
  }
}

@media screen and (max-width:1400px) {
  .header-nav-wrap {
    max-width: none;
    width: 100%;
    padding-left: 28rem;
  }
  .header-contact .btn > span:first-child {
    display: none;
  }
  .header-contact .btn > span:last-child {
    display: block;
  }
}

@media screen and (max-width:1200px) {
  .header-contact .phone {
    display: none;
  }
}

@media screen and (max-width:1100px) {
  .header-contact {
    display: none;
  }
}

@media screen and (max-width:1000px) {
  .header-content .btn {
    height: 4.8rem !important;
    line-height: 4.4rem !important;
  }

}

@media screen and (max-width:900px) {
  .s-header {
    top: 1rem;
    height: 8rem;
  }

  .s-header.sticky .header-menu-toggle {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }

  .header-logo img {
    width: 100px;
  }

  .header-content {
    display: block;
    background-color: #181e28;
    height: auto;
    width: 100%;
    padding: 16rem 6rem 8rem;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    position: absolute;
    top: -2rem;
    left: 0;
  }

  .header-contact {
    display: flex;
    margin-top: 4.8rem;
    -webkit-transform: translate3d(0, -2rem, 0);
    transform: translate3d(0, -2rem, 0);
    opacity: 0;
    visibility: hidden;
    position: static;
  }
  
  .header-contact .phone {
    display: block;
  }

  .header-nav-wrap {
    padding: 0!important;
    -webkit-transform: translate3d(0, -2rem, 0);
    transform: translate3d(0, -2rem, 0);
    opacity: 0;
    visibility: hidden;
  }

  .header-nav {
    display: block;
    width: 100%;
    padding: 0;
  }

  .header-nav a {
    display: block;
    padding: 1.6rem 0;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .header-nav li {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
    margin: 0;
  }

  .header-nav li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-menu-toggle {
    display: block;
  }

  .menu-is-open .header-content {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .menu-is-open .s-header .header-contact {
    height: unset!important;
    line-height: unset;
    bottom: unset;
    transform: none;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
  }

  .menu-is-open .header-nav-wrap {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
  }

}

@media screen and (max-width:600px) {
  .header-logo {
    left: 3rem;
  }

  .header-menu-toggle {
    right: 2.4rem;
  }

  .header-content {
    padding: 16rem 4rem 8rem;
  }

  .header-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content .btn {
    margin-top: 2rem;
    padding: 0 2.4rem;
  }

  .header-contact .btn > span:first-child {
      display: block;
  }

  .header-contact .btn > span:last-child {
      display: none;
  }
}



/* ===================================================================
 * # hero
 *
 * ------------------------------------------------------------------- */
.s-hero {
  display: flex;
  width: 100%;
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  background-color: transparent;
  position: relative;
}

.s-hero::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 50%;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: #000;
  opacity: 0.2;
}

.s-hero::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(45deg, #181e28 10%, rgba(29, 27, 55, .25) 100%);
  opacity: 0.25;
}

.s-hero::before,
.s-hero::after {
  mix-blend-mode: multiply;
  pointer-events: none;
}

.no-js .s-hero {
  background: #ffffff;
}

.hero-content {
  max-width: 1400px;
  padding-top: 28vh;
  padding-bottom: 8vh;
  position: relative;
  z-index: 5;
}

.hero-content .hero-title {
  font-size: 5.6rem;
  font-size: clamp(3.2rem, 2.4615rem + 3.2821vw, 6.4rem);
  font-weight: 600;
  line-height: 1.257;
  padding-right: 3.2rem;
  margin: 0 0 3.2rem;
  color: #ffffff;
  position: relative;
  max-width: 600px;
}

.hero-content h1::before {
  content: "";
  display: block;
  height: 2px;
  width: 8rem;
  background-color: var(--color-primary);
  position: absolute;
  left: -10.8rem;
  top: .55em;
}

.hero-content .hero-text {
  max-width: 600px;
  font-weight: 300;
  font-size: 2.4rem;
  margin-bottom: 8rem;
}

/* -------------------------------------------------------------------
 * ## hero features
 * ------------------------------------------------------------------- */
.hero-feature {
  display: flex;
  flex-direction: column;
}

.hero-feature_icon {
  position: relative;
  width: 6.4rem;
  height: 6.4rem;
  /*border: 0.2rem solid var(--color-primary);
  border-radius: 50%;*/
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.4rem;
}

/*.hero-feature_icon:before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-color: #000;
  opacity: 0.3;
}*/

.hero-feature_icon img {
  width: 6.4rem;
}

.hero-feature_title {
  max-width: 300px;
  /*font-weight: 300;*/
  font-size: 1.8rem;
}

.icon-stroke-white {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}


/* -------------------------------------------------------------------
 * ## hero scroll
 * ------------------------------------------------------------------- */
.hero-scroll {
  position: absolute;
  z-index: 10;
  right: 8rem;
  bottom: 10rem;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 2px;
  height: 7rem;
  background-color: white;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  position: absolute;
  right: 50%;
  bottom: -10rem;
}

.hero-scroll .scroll-link,
.hero-scroll .scroll-link svg path {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.hero-scroll .scroll-link {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
  position: relative;
}

.hero-scroll .scroll-link svg {
  height: 2.4rem;
  width: 2.4rem;
  position: absolute;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  top: 50%;
}

.hero-scroll .scroll-link svg path {
  fill: #ffffff;
}

.hero-scroll .scroll-link:hover,
.hero-scroll .scroll-link:focus {
  background-color: var(--color-primary);
}


/* ------------------------------------------------------------------- 
 * ## animations
 * ------------------------------------------------------------------- */

/* fade in */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

/* fade in left */
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

/* fade out */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

}

@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

}

/* ------------------------------------------------------------------- 
 * responsive:
 * hero
 * ------------------------------------------------------------------- */
@media screen and (max-width:1800px) {
  .hero-content h1::before {
    width: 6rem;
    left: -8.8rem;
  }

}

@media screen and (max-width:1700px) {
  .hero-content {
    max-width: 1200px;
  }

}

@media screen and (max-width:1300px) {
  .hero-content {
    max-width: 1200px;
  }

  .hero-content h1 {
    padding-top: 3.2rem;
  }

  .hero-content h1::before {
    width: 6rem;
    top: 0;
    left: 0;
  }

}

@media screen and (max-width:1200px) {
  .hero-scroll {
    right: 6rem;
  }

  .hero-scroll::after {
    height: 8rem;
  }

  .hero-scroll .scroll-link {
    height: 6rem;
    width: 6rem;
  }

}

@media screen and (max-width:800px) {
  .hero-scroll {
    right: 3.6rem;
  }

  .hero-scroll .scroll-link {
    height: 5.2rem;
    width: 5.2rem;
  }

  .hero-feature {
    margin-bottom: 4.8rem;
  }

  .hero-feature_title {
    max-width: unset;
  }
}

@media screen and (max-width:600px) {

  .hero-scroll {
    right: 2.4rem;
  }

  .s-hero {
    padding-bottom: 40rem;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: 55% 100%!important;
    background-size: 80rem!important;
  }

  .s-hero::before {
    display: none;
  }

  .hero-content .hero-text {
    font-size: 1.8rem;
  }

}

@media screen and (max-width:500px) {
  .hero-content h1 {
    padding-right: 0;
  }

}

/* ------------------------------------------------------------------- 
 * ## grid overlay
 * ------------------------------------------------------------------- */
.grid-overlay {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  right: 0;
  max-width: 1360px;
  width: 89%;
  height: 100%;
  opacity: .5;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transform: translate3d(-50%, 0, 0);
  -ms-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  z-index: 3;
  pointer-events: none;
}

.grid-overlay > div,
.grid-overlay::before,
.grid-overlay::after {
  background-color: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 1px;
}

.grid-overlay::before {
  content: "";
  left: 25%;
}

.grid-overlay::after {
  content: "";
  right: 25%;
}

.grid-overlay > div {
  left: 50%;
  /*background-color: rgba(255, 255, 255, 0.2);*/
}

/*.s-hero .grid-overlay > div {
  display: none;
}*/

/* ------------------------------------------------------------------- 
 * responsive:
 * reusable and common theme styles
 * ------------------------------------------------------------------- */
@media only screen and (max-width:1440px) {
  .grid-overlay {
    border-right: none !important;
    border-left: none !important;
  }

  .grid-overlay::before {
    left: 22.5%;
  }

  .grid-overlay::after {
    right: 22.5%;
  }

}


/* ===================================================================
 * # about section
 *
 * ------------------------------------------------------------------- */
.s-about {
  background-color: #ffffff;
  position: relative;
}

.s-about .right-vert-line {
  background-color: #302c59;
}

.s-about__section--profile .section-content {
  margin-right: 4rem;
}

.s-about__section--profile {
  padding-top: 16rem;
  padding-bottom: 8rem;
  position: relative;
}

.s-about__section--profile::before {
  content: "";
  display: block;
  background-color: var(--color-bg-teal);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: calc(50% + 34rem);
}

@media screen and (max-width:1440px) {
  .s-about__section--profile::before {
    left: calc(50% + 31rem);
  }
  .s-about__section--profile .feature-block {
    margin-top: 4.8rem;
    margin-left: calc(50% - 2rem);
  }
}

.s-about__section--profile .row {
  position: relative;
}

.s-about__section--profile .profile-gallery {
  width: 100%;
  margin-top: 8rem;
}

.s-about__gallery {
  margin-top: 8rem;
}

.s-about__gallery .slick-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  padding-top: 2rem;
}

.s-about__gallery .gallery-item {
  float: none;
  display: inline-block;
  vertical-align: middle;
  height: auto;
  text-align: center;
  margin: 4rem 0 8.8rem;
  transform: scale(1);
  transition: all .3s;
}

.s-about__gallery .gallery-item a {
  display: block;
}

.s-about__gallery .gallery-item.slick-current,
.s-about__gallery .gallery-item.slick-center {
  z-index: 5;
  transform: scale(1.18);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .2);
}

@media screen and (max-width:600px) {
  .s-about__gallery {
    margin-top: 3.2rem;
  }
  .s-about__gallery .gallery-item.slick-current,
  .s-about__gallery .gallery-item.slick-center {
    transform: scale(1.5);
  }
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 4rem;
    height: 4rem;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{   
    content: ' ';
    width: 24px;
    height: 24px;
    opacity: .75;
}

.slick-prev
{
    left: -4rem;
}

.slick-prev:before
{
    background-image: url(../images/icons/icon-angle-left.svg);
}
.slick-next
{
    right: -4rem;
}

.slick-next:before
{
    background-image: url(../images/icons/icon-angle-right.svg);
}

@media screen and (max-width:600px) {
  .slick-prev,
  .slick-next
  {
    display: none;
  }
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 3.2rem;
}

.slick-dots
{
    position: absolute;
    bottom: 0;
    right: 6rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    margin: 0 2px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    position: relative;
    display: block;
    width: 4px;
    height: 4px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 0.75;
}
.slick-dots li button:before
{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    opacity: .25;
    border-radius: 50%;
    background-color: var(--color-gray-19);
    transition: all 0.3s;
}
.slick-dots li.slick-active button
{
    width: 8px;
    height: 8px;
}
.slick-dots li.slick-active button:before
{
    opacity: 1;
    background-color: var(--color-black);
}

.slick-lightbox {
    background: rgba(173, 207, 214, .9)!important;
}

.slick-lightbox-close {
  top: 2rem!important;
  right: 2rem!important;
  width: 4rem!important;
  height: 4rem!important;
}

.slick-lightbox-close:before {
    font-size: 40px!important;
    font-weight: 700!important;
    color: #000!important;
}


.s-about__section--place {
  padding-top: 8rem;
  padding-bottom: 8rem;
  min-height: 80rem;
  position: relative;
  background-color: #f1f3f5;
}

.s-about__section--place .section-content {
  position: relative;
  z-index: 10;
}

.s-about__map {
  width: 100%;
  height: 80rem;
  background-image: url(../images/map-01.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: cover;  
}

.s-about__map--bg {
  position: absolute;
  z-index: 0;
  top: 5%;
  left: 0;
  width: 100%;
  height: 800px;
  background-image: url(../images/map-02.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: contain;  
}

/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1600px) {
  .s-about__map--bg {    
    height: 720px;
  }
}

@media screen and (max-width: 1440px) {
  .s-about__map--bg {    
    height: 640px;
  }
}

@media screen and (max-width: 1200px) {
  .s-about__map--bg {    
    height: 480px;
  }
}

@media screen and (max-width: 900px) {
  .position {
    padding-right: 8rem;
  }

}

@media screen and (max-width: 800px) {
  .s-about__section--place {
    padding-top: 0rem;
    padding-bottom: 3.2rem;
  }

  .s-about__map--bg {
    position: relative;
    top: unset;
    left: unset;
    background-size: cover;
    margin-bottom: -6rem;
  }

  .s-about__section--profile {
    padding-top: 14rem;
    padding-bottom: 0;
    min-height: 0;
  }

  .s-about__section--profile::before,
  .s-about__section--profile .profile-pic {
    display: none;
  }

  .position {
    padding-right: 0;
  }

}

@media screen and (max-width:600px) {
  .work-positions .column:nth-child(n) {
    padding: 0 10px;
  }

}

@media screen and (max-width:400px) {
  .work-positions .column:nth-child(n) {
    padding: 0;
  }

}

.features-wrapper {
  margin-top: 6.4rem;
}

.features-wrapper .column .feature-text {
  margin-right: 2.4rem;
}

.feature-block {
  display: flex;
}

.feature-row {
  align-items: center;
  color: var(--color-text);
}

.feature-row-end {
  justify-content: flex-end;
  align-items: center;
  color: var(--color-text);
}

.feature-row-center {
  justify-content: center;
  align-items: center;
  color: var(--color-text);
}

.feature-col {
  flex-direction: column;
}

.feature-col-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-light {
  color: var(--color-gray-10);
}

.feature-light:hover {
  color: #ffffff;
}

.feature-text {
  position: relative;
}

.feature-icon-circle {
  position: relative;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.4rem;
  background-color: rgba(255, 255, 255, .2);
}

.feature-light .feature-icon-circle {
    background-color: #ffffff;
}

.feature-icon-circle:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--color-1);
  opacity: .5;
}

.feature-light .feature-icon-circle:after {
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    border: 1px solid #ffffff;
    transform: translate(-50%, -50%);
    opacity: .2;
}

.feature-red .feature-icon-circle:after {    
    border-color: var(--color-accent-red);
}

.feature-icon-circle img {
  width: 4.8rem;
  height: 4.8rem;
}

.feature-icon-circle-big {
  position: relative;
  width: 11.2rem;
  height: 11.2rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.4rem 4rem 2.4rem 0;
  background-color: var(--color-bg-dark);
  transition: transform 0.3s;
}

.feature-icon-circle-big:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15.2rem;
  height: 15.2rem;
  border-radius: 50%;
  border: 1px solid var(--color-bg-dark);
  transform: translate(-50%, -50%);
  opacity: .2;
}

.feature-icon-circle-big img {
  width: 8rem;
  height: auto;
}

.feature-col-center .feature-icon-circle-big {
  margin: 0 0 4rem;  
}

.feature-col-center .feature-text .text-uppercase {
  font-family: var(--font-2);
  font-weight: 600;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: .3rem;
}

.feature-icon-circle-big.aos-animate,
.feature-text.aos-animate {
  transition: transform 0.3s!important;
}

.feature-row:hover .feature-icon-circle-big.aos-animate {
  transform: translateY(-0.5rem);
}

.feature-row:hover .feature-text.aos-animate {
  transform: translateY(-0.5rem);
}

.feature-icon-circle-big .decor-circles {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  border: 1px solid var(--color-bg-dark);
  opacity: 0.1;
  pointer-events: none;
}

.feature-icon-circle-big .decor-circles:after,
.feature-icon-circle-big .decor-circles:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  border-radius: 50%;
  border: 1px solid var(--color-bg-dark);
  opacity: 0.5;
}

.feature-icon-circle-big .decor-circles:after {
  width: 225%;
  height: 225%;
  border: 1px solid var(--color-bg-dark);
  opacity: 0.25;
}

.feature-light .text-uppercase {
  font-weight: 500;
  letter-spacing: .3rem;
}

.feature-text h3,
.feature-text h4 {
  margin-top: 0;
}

.s-about__section--profile .feature-block {
  margin-top: 4.8rem;
  margin-left: calc(50% + 4.8rem);
}

@media screen and (max-width:800px) {
  .s-about__section--profile .feature-block {
    margin: 4rem 1rem;
  }
  .feature-block {
    margin-bottom: 4.8rem;
  }
}

/* ===================================================================
 * # services section
 *
 * ------------------------------------------------------------------- */
.s-capacity {
  padding-top: 12rem;
  padding-bottom: 14rem;
  position: relative;
  background: #181e28;
}

.s-circles-wrap.s-capacity .circles {
  bottom: unset;
  top: calc((var(--circle-width) / 4) * -1);
  right: calc(100% - var(--circle-width) / 2 + 2vw);
}

.s-circles-wrap.s-capacity .circles span {
  border-color: var(--color-accent-teal);
}

/*  stats  */
#stats {
  padding-top: 8rem;
  padding-bottom: 8rem;
  text-align: center;
}

#stats .stat {
  /*border-left: 1px solid rgba(0, 0, 0, 0.05);*/
  min-height: 17.4rem;
}

#stats .stat:first-child {
  border: none;
}

#stats .icon-part i {
  font-size: 4.8rem;
  color: #000000;
}

#stats .stat-count {
  font-size: 6.4rem;
  font-weight: 500;
  margin-bottom: 0;
}

#stats .subhead {
  color: var(--color-text);
  margin-bottom: 3.2rem;
}

#stats .stat-title {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.4;
}

@media screen and (max-width:800px) {
  #stats .stat-title {
    font-size: 2.1rem;
  }

  #stats .subhead {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width:600px) {
  #stats {
    padding-top: 2rem;
    text-align: left;
  }
}

/*  cards  */ 
.card {
  position: relative;
  background-color: var(--color-bg-light);
  /*border: 1px solid rgba(0, 0, 0, .05);*/
  padding: 3.2rem;
  border-radius: 1.6rem;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-0.8rem);
}

.card p:last-child {
  margin-bottom: 0;
}

.column .card {
  height: 100%;
}

.column .card .feature-block {
    margin-bottom: 0;
    height: 100%;
}

@media screen and (max-width:800px) {
  .column .card {
    height: auto;
    margin-bottom: 3.2rem;
  }
  .card.bg-transparent.h-auto {
    padding: 1rem;
  }
}

/* ===================================================================
 * # faq section
 *
 * ------------------------------------------------------------------- */
.s-faq {
  padding-top: 12rem;
  padding-bottom: 14rem;
  position: relative;
  background: #181e28;
}

.s-faq .grid-overlay {
  opacity: 0.2;
}

.s-faq__content {
  position: relative;
}

.s-faq__content .section-intro::before {
  top: -14rem;
  left: 8.4rem;
}

.s-faq__content .section-intro::after {
  top: -12rem;
  left: -4.2rem;
}

.s-faq__leftcol {
  padding-bottom: 4rem;
  padding-right: 5.6rem;
}

.s-faq__leftcol .lead {
  max-width: 90%;
}

.s-faq .vert-line {
  width: 2px;
  height: 14rem;
  background-color: var(--color-primary);
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  position: absolute;
  bottom: -14rem;
  left: 20px;
}

.s-faq .right-vert-line {
  height: 10rem;
  background-color: var(--color-primary);
  top: unset;
  bottom: 0;
}

/* ------------------------------------------------------------------- 
 * ## services list
 * ------------------------------------------------------------------- */
.services-list {
  list-style: none;
  padding-left: 20px;
  margin: 8rem 0 0 0;
  counter-reset: ctr;
}

.services-list__item {
  border-top: 1px solid rgba(0, 0, 0, .1);
  padding-left: 0;
}

.services-list__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.services-list__item-header {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  padding-right: 6rem;
  cursor: pointer;
  position: relative;
}

.services-list__item-header h5 {
  font-family: var(--font-2);
  font-weight: 500;
  font-size: 2.1rem;
  padding-left: 3rem;
  margin: 0;
  position: relative;
  transition: all .3s;
}

.services-list__item-header h5::before {
  content: counter(ctr, decimal-leading-zero) ".";
  counter-increment: ctr;
  font-family: var(--font-2);
  font-weight: 600;
  font-size: .6em;
  line-height: 1;
  color: var(--color-primary);
  position: absolute;
  top: .5em;
  left: 0;
}

.services-list__item-header::after {
  border-bottom: 2px solid var(--color-gray-16);
  border-right: 2px solid var(--color-gray-16);
  content: '';
  display: block;
  height: 14px;
  width: 14px;
  margin-top: -10px;
  pointer-events: none;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transition: all, .3s;
  transition: all, .3s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.services-list__item-body {
  padding: 0 3rem 2.4rem;
  font-size: 1.6rem;
  display: none;
}

.is-active .services-list__item-header h5 {
  color: var(--color-secondary);
}

.is-active .services-list__item-header::after {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.is-active .services-list__item-body {
  display: block;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * services
 * ------------------------------------------------------------------- */
@media screen and (max-width:1200px) {
  .services-list {
    padding-left: 10px;
  }

}

@media screen and (max-width:1040px) {
  .s-faq__content .column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .s-faq__content .s-faq__leftcol {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
    padding-bottom: 0;
  }

  .s-faq__content .s-faq__leftcol .lead {
    max-width: none;
  }

  .services-list {
    padding-left: 0;
    margin: 0;
  }

}

@media screen and (max-width:800px) {
  .s-faq {
    padding-top: 10rem;
  }

  .s-faq__content .s-faq__leftcol {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }

}

@media screen and (max-width:600px) {
  .s-faq__content .s-faq__leftcol {
    padding-right: 0;
  }
}


/* ===================================================================
 * # portfolio
 *
 * ------------------------------------------------------------------- */
.s-portfolio {
  background-color: #ffffff;
  position: relative;
}

/*.s-portfolio::before {
  content: "";
  display: block;
  background-color: #b3c2c1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
}*/

/* ------------------------------------------------------------------- 
 * ## portfolio list
 * ------------------------------------------------------------------- */
.s-portfolio__list {
  max-width: 1240px;
}

.folio-item {
  position: relative;
  overflow: hidden;
}

.folio-item__caption {
  display: none;
}

/* thumbnail
 *---------------------------------------------- */
.folio-item__thumb a {
  display: block;
}

.folio-item__thumb a::before {
  z-index: 1;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all, .5s;
  transition: all, .5s;
}

.folio-item__thumb a::after {
  z-index: 1;
  content: "+";
  font-family: var(--font-2);
  font-weight: 200;
  font-size: 4rem;
  color: #ffffff;
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  line-height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  left: 50%;
  top: 50%;
}

.folio-item__thumb img {
  vertical-align: bottom;
}

/* portfolio info
 *---------------------------------------------- */
.folio-item__info {
  z-index: 2;
  padding: 0 3rem;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  left: 0;
  top: 3.6rem;
}

.folio-item__title {
  color: #ffffff;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.333;
  margin: 0;
}

.folio-item__cat {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-2);
  font-size: 1.4rem;
  margin-bottom: 0;
}

.folio-item__project-link {
  z-index: 2;
  display: block;
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #000000;
  background-color: #ffffff;
  padding: .6rem 1.2rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all, 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  bottom: 3.9rem;
  left: 3rem;
}

.folio-item__project-link::before {
  display: block;
  content: "";
  height: 1px;
  width: 3rem;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  left: -3rem;
}

.folio-item__project-link:hover,
.folio-item__project-link:focus,
.folio-item__project-link:active {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* on hover
 *---------------------------------------------- */
.folio-item:hover .folio-item__thumb a::before {
  opacity: 1;
  visibility: visible;
}

.folio-item:hover .folio-item__thumb a::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.folio-item:hover .folio-item__project-link {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.folio-item:hover .folio-item__info {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * portfolio
 * ------------------------------------------------------------------- */
@media screen and (max-width:1200px) {
  .s-portfolio::before {
    display: none;
  }

  .folio-item__thumb a::after {
    font-size: 2rem;
  }

  .folio-item__title {
    font-size: 1.8rem;
  }

  .folio-item__cat {
    font-size: 1.2rem;
  }

}

@media screen and (max-width:800px) {
  .folio-item__thumb a::after {
    font-size: 3rem;
  }

  .folio-item__title {
    font-size: 2.1rem;
  }

  .folio-item__cat {
    font-size: 1.4rem;
  }

}

@media screen and (max-width:600px) {
  .folio-item__thumb a::after {
    font-size: 2rem;
  }

  .folio-item__title {
    font-size: 1.8rem;
  }

  .folio-item__cat {
    font-size: 1.2rem;
  }

}


/* ===================================================================
 * # clients
 *
 * ------------------------------------------------------------------- */

.s-clients {
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}

/* --------------------------------------------------------------------
 * ## clients-list
*/

.clients-list {
    position: relative;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.clients-list__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 0;
}

.clients-list__item a {
  display: block;
  padding: 4rem;
  transition: all 0.4s;
}

.clients-list__item a:focus,
.clients-list__item a:hover {
  background-color: #ffffff;
}

.clients-list__item a:focus img,
.clients-list__item a:hover img {
  opacity: 1;
}

.clients-list__item img {
  width: 200px;
  margin: 0;
  transition: all 0.4s;
  opacity: .6;
}

@media screen and (max-width:600px) {
  .clients-list__item a {
    padding: 1.6rem;
  }
}


/* ===================================================================
 * # testimonials
 *
 * ------------------------------------------------------------------- */
.s-testimonials {
  padding-top: 14.4rem;
  padding-bottom: 16rem;
  background-color: #ffffff;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slider p {
  font-family: var(--font-2);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.882;
  color: #000000;
}

.testimonial-slider .slick-slide {
  outline: none;
}

.testimonial-slider .slick-dots {
  display: block;
  list-style: none;
  padding: 0;
  margin: 5.6rem 0 0 0;
  text-align: center;
}

.testimonial-slider .slick-dots li {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin: 0;
  padding: 9px;
  cursor: pointer;
}

.testimonial-slider .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  line-height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}

.testimonial-slider .slick-dots li button:hover,
.testimonial-slider .slick-dots li button:focus {
  outline: none;
}

.testimonial-slider .slick-dots li.slick-active button,
.testimonial-slider .slick-dots li:hover button {
  background: #000000;
}

.testimonial-slider__slide {
  position: relative;
  padding: 0 20px;
}

.testimonial-slider__author {
  min-height: 7.2rem;
  margin-top: 4rem;
  padding-left: 8.8rem;
  position: relative;
}

.testimonial-slider__avatar {
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 100%;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-slider__cite {
  display: block;
}

.testimonial-slider__cite strong,
.testimonial-slider__cite span {
  font-family: var(--font-2);
  font-style: normal;
}

.testimonial-slider__cite strong {
  font-size: 1.6rem;
  line-height: 1.75;
}

.testimonial-slider__cite span {
  display: block;
  font-size: 1.5rem;
  line-height: 1.333;
  color: rgba(0, 0, 0, 0.7);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * testimonials
 * ------------------------------------------------------------------- */
@media screen and (max-width:800px) {
  .testimonial-slider__slide {
    text-align: center;
  }

  .testimonial-slider__author {
    display: inline-block;
  }

}

@media screen and (max-width:400px) {
  .testimonial-slider__author {
    margin: 0;
    padding: 0;
  }

  .testimonial-slider__avatar {
    position: static;
    margin-bottom: 2.4rem;
  }

}

/* ===================================================================
 * # contact
 *
 * ------------------------------------------------------------------- */
.s-contact {
  padding-top: 14rem;
  padding-bottom: 8rem;
  position: relative;
}

@media screen and (max-width:600px) {
  .s-contact {    
    padding-bottom: 5rem;
  }
}

.s-contact form {
  font-family: var(--font-2);
}

.s-contact form .form-field {
  margin-bottom: 3.2rem;
}

.s-contact form label {
  font-size: 1.6rem;
}

.s-contact input[type="text"],
.s-contact input[type="tel"],
.s-contact input[type="email"],
.s-contact select,
.s-contact textarea {
  font-size: 1.8rem;
  margin-bottom: 0;
  background-color: #fff;
  border: 1px solid transparent;
}
.s-contact input[type="text"]:focus,
.s-contact input[type="tel"]:focus,
.s-contact input[type="email"]:focus,
.s-contact select:focus,
.s-contact textarea:focus {
  border-color: var(--color-primary);
}

.s-contact select option {
  line-height: 2;
  background-color: var(--color-bg-light)!important;
}

.s-contact .ss-custom-select::after {
  border-color: var(--color-primary);
}

/* ===================================================================
 * # footer
 *
 * ------------------------------------------------------------------- */
.s-footer {
  padding-top: 10rem;
  padding-bottom: 5.6rem;
  background-color: #050505;
  color: var(--color-gray-14);
  position: relative;
}

.s-footer .right-vert-line {
  background-color: var(--color-bg-light);
  height: 6rem;
  top: -10rem;
  left: 20px;
}

.s-footer__main {
  position: relative;
  justify-content: space-between;
}

.s-footer a {
  color: white;
}

.s-footer a:focus,
.s-footer a:hover {
  color: var(--color-1-light);
}

.s-footer__main h4 {
  margin-top: 0;
  font-weight: 600;
}

.s-footer__site-links {
  font-family: var(--font-2);
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  margin-left: 0;
}

.s-footer__site-links li {
  padding-left: 0;
  margin-right: 3.2rem;
  margin-bottom: 1.6rem;
}

.s-footer .footer-contacts {
  margin-top: 7.2rem;
}

.footer-contact-block {
  font-weight: 400;
  line-height: 1.2;
}

.footer-contact-block a {
  color: #ffffff;
}

.footer-contact-block a:hover,
.footer-contact-block a:focus {
  color: var(--color-primary);
}

.footer-contact-block__content,
.footer-contact-block__list li {
  color: #fff;
  padding: .8rem 0;
  margin: 0 0 2.4rem;
  font-weight: 600;
}

.footer-contact-block__list {
  list-style: none;
  margin-top: .4rem;
  margin-left: 0;
}

.footer-contact-block__list li {
  padding-left: 0;
}

.footer-contact-block__header {
  color: var(--color-gray-14);
  margin: 0;
}

/* ------------------------------------------------------------------- 
 * ## copyright
 * ------------------------------------------------------------------- */
.ss-copyright {
  z-index: 2;
  position: relative;
}

.ss-copyright a {
  color: #ffffff;
}

.ss-copyright a:hover,
.ss-copyright a:focus {
  color: var(--color-primary);
}

.ss-copyright span {
  font-size: 1.5rem;
  display: inline-block;
}

.ss-copyright span::after {
  content: "|";
  display: inline-block;
  padding: 0 .8rem 0 1rem;
  color: rgba(255, 255, 255, 0.1);
}

.ss-copyright span:last-child::after {
  display: none;
}

/* ------------------------------------------------------------------- 
 * ## go top
 * ------------------------------------------------------------------- */
.ss-go-top {
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: fixed;
  bottom: 8.4rem;
  right: 8rem;
}

.ss-go-top a {
  text-decoration: none;
  border: 0 none;
  display: block;
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 50%;
  background-color: var(--color-bg-dark);
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

.ss-go-top a:hover,
.ss-go-top a:focus {
  background-color: var(--color-primary);
}

.ss-go-top svg {
  height: 2.4rem;
  width: 2.4rem;
  position: absolute;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  top: 50%;
}

.ss-go-top svg path {
  fill: #ffffff;
}

.ss-go-top.link-is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * footer
 * ------------------------------------------------------------------- */
@media screen and (max-width:1200px) {
  .ss-go-top {
    right: 6rem;
  }
  .ss-go-top a {
    height: 6rem;
    width: 6rem;
  }
}

@media screen and (max-width:900px) {
  .s-footer__main .column {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width:800px) {
  .s-footer {
    padding-bottom: 2.4rem;
  }
  .s-footer .footer-contacts {
    margin-top: 0;
  }
  .ss-copyright {
    padding-right: 10rem;
  }
  .ss-go-top {
    right: 3.6rem;
  }
  .ss-go-top a {
    height: 5.2rem;
    width: 5.2rem;
  }
}

@media screen and (max-width:600px) {
  .ss-copyright {
    padding-right: 0;
    padding-bottom: 0;
  }
  .ss-copyright span {
    display: block;
  }
  .ss-copyright span::after {
    display: none;
  }
  .ss-go-top {
    right: 2.4rem;
    bottom: 4rem;
  }
}


/* accordion */
.accordion {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.accordion > li {
  /*padding: 15px 0;
  border-bottom: 1px solid rgba(108, 117, 125, 0.1);*/
  margin: 2.4rem 0;
  padding: 1rem;
  border-radius: .6rem;
  background-color: #e9ecef;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 1.6rem 0.4rem;
  cursor: pointer;
}

.accordion-title h4 {
  font-size: clamp(1.6rem, 1.5077rem + 0.4103vw, 2rem);
  font-weight: 500;
  margin: 0 2rem 0 0;
}

.accordion-title > .accordion-title-text {
  width: calc(100% - 70px);
}

.accordion-body {
  box-sizing: border-box;
  padding: 1rem 2rem 0;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height .15s ease-in-out, opacity .15s;
}

.is-open .accordion-body {
  opacity: 1;
}

.accordion-body p:last-child {
  margin-bottom: 1.6rem;
}

.accordion-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.3s ease;
}

.accordion-icon:hover {
    background: #fff;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
}

.accordion-icon::before {
  top: 10px;
  left: 50%;
  width: 2px;
  bottom: 10px;
  margin-left: -1px;
}

.accordion-icon::after {
  top: 50%;
  left: 10px;
  right: 10px;
  height: 2px;
  margin-top: -1px;
}

.accordion li.is-open {
  background-color: #fff;
  border: 1px solid #e9ecef;
}

.accordion li.is-open .accordion-title h4 {
  color: var(--color-primary);
}

.accordion li.is-open .accordion-icon {
  cursor: pointer;
  background-color: var(--color-primary);
}

.accordion li.is-open .accordion-icon::before {
  transform: rotate(90deg);
  background-color: #fff;
}

.accordion li.is-open .accordion-icon::after {
  transform: rotate(180deg);
  background-color: #fff;
}

@media screen and (max-width:600px) {
  .accordion {
    margin-top: 4.8rem !important;
  }
  .accordion-title {
    padding: 1.2rem 1.2rem 0.4rem 1.2rem;
  }
  .accordion-title h4 {
    margin: 0;
  }
  .accordion-body {
    padding: 1rem 1rem 0;
  }
}

/* --------------------------------------------------------------------
 * ## circles
 * -------------------------------------------------------------------- */
.s-circles-wrap {
  position: relative;
  overflow: hidden;
}

.s-circles-wrap .circles,
.s-circles-wrap .circles span {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.s-circles-wrap > .row {
  position: relative;
  z-index: 1;
}

.s-circles-wrap .circles {
  --circle-width  : 70vw;
  width: var(--circle-width);
  height: var(--circle-width);
  bottom: calc(100vh - var(--circle-width));
  right: calc(100% - var(--circle-width) / 2);
}

.s-circles-wrap .circles span {
  display: block;
  border: 1px solid var(--color-1);
  border-radius: 50%;
  opacity: .1;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.s-circles-wrap .circles span:nth-child(1) {
  height: 100%;
  width: 100%;
}

.s-circles-wrap .circles span:nth-child(2) {
  height: 80%;
  width: 80%;
  opacity: .2;
}

.s-circles-wrap .circles span:nth-child(3) {
  height: 60%;
  width: 60%;
  opacity: .3;
}

.s-circles-wrap .circles span:nth-child(4) {
  height: 40%;
  width: 40%;
  opacity: .4;
}

.s-circles-wrap .circles span:nth-child(5) {
  height: 20%;
  width: 20%;
  opacity: .5;
}

.ss-preload .s-circles-wrap {
    visibility: hidden;
}

@media screen and (max-width: 800px) {
    .s-circles-wrap .circles {
      --circle-width: 160vw;
        bottom: calc(var(--header-height) + 5vh);
    }
}

/* ===================================================================
 * # services section
 *
 * ------------------------------------------------------------------- */
.s-services {
  padding-top: 14rem;
  padding-bottom: 6rem;
  position: relative;
}

.s-services .section-intro:before {
  left: -8rem;
}

.icon-equal,
.icon-plus {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.icon-equal {
  width: 80px;
}

.icon-equal::before,
.icon-equal::after,
.icon-plus::before,
.icon-plus::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
}

.icon-equal::before {
  margin-top: -5px;
}

.icon-equal::after {
  margin-top: 5px;
}

.icon-plus::before {
  transform: translateY(-50%);
}

.icon-plus::after {
  transform: translateY(-50%) rotate(90deg);
}

.image-bg-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.image-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.image-puzzle {
  min-width: 600px;
  min-height: 400px;
}

.puzzle-container {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  min-height: calc(320px + 6vw);
  flex-grow: 1;
}
.puzzle-item {
  height: 100%;
  padding: 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.logo-bitrix {
  max-width: 200px;
}

.logo-phg {
  max-width: 100px;
}

@media screen and (max-width: 1200px) {
  .puzzle-container {
    padding: 0;
  }
  .image-puzzle .image-bg {
    background-size: cover;
    border-radius: 1.6rem;
    background-position: 50% 50%;
  }
}

@media screen and (max-width: 768px) {
  .puzzle-container {
    min-height: 360px;
    padding: 2rem 0;
  }
}

@media screen and (max-width: 600px) {
  .image-puzzle {
    min-width: unset;
    min-height: 400px;
  }
  .image-puzzle .image-bg {
    background-image: url(../images/illustration-puzzle.svg)!important;
  }
  .puzzle-container {
    padding: 0;
  }
  .puzzle-container > .column:first-child {
    padding-bottom: 2rem;
  }
  .puzzle-container > .column:last-child .mt-4 {
    margin-top: 3rem!important;
  }
  .logo-phg {
    max-width: 88px;
  }
  .logo-phg {
    max-width: 88px;
  }
}

/* ===================================================================
 * # pricing section
 * # advantages section
 *
 * ------------------------------------------------------------------- */
.s-services,
.s-pricing,
.s-advantages {
  position: relative;
}

.s-services #services,
.s-limits #limits,
.s-pricing #pricing,
.s-faq #faq,
.s-contact #contact {
  position: absolute;
  top: -7.8rem;
  left: 0;
}

.s-pricing {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

@media screen and (max-width:900px) {
  .s-pricing {
    padding-top: 2rem;
    padding-bottom: 2rem;
    }
  .s-services #services,
  .s-limits #limits,
  .s-contact #contact {
    top: 0;
  }
  .s-faq #faq,
  .s-pricing #pricing {
    top: -4rem;
  }
}

.s-circles-wrap.s-pricing .circles {
  top: -4rem;
  right: calc(100% - var(--circle-width) / 2 + 2vw);
}

.s-circles-wrap.s-pricing .circles span {
  border-color: var(--color-accent-teal);
}

.s-advantages {
  background-color: var(--color-primary-dark);
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.s-advantages .right-vert-line {
  height: 12rem;
  background-color: var(--color-primary-light);
}

@media screen and (max-width:800px) {
  .s-advantages {
    padding-bottom: 0;
  }
}

.section-count-holder {
  position: relative;
}

.section-count {
  position: absolute;
  z-index: 1;
  top: 2.5rem;
  right: 3rem;
  font-family: var(--font-2);
  font-weight: 300;
  font-size: 9rem;
  line-height: 1;
  color: rgba(0, 35, 80, 0.05);
}

/* ===================================================================
 * # limits section
 *
 * ------------------------------------------------------------------- */
.s-limits {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 8rem;
}

@media screen and (max-width:800px) {
  .s-limits {
    background-image: none !important;
    background-color: #181e28;
    padding-bottom: 0;
  }
}

.img-fluid {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

