/* =================================================================== 
 *
 *  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
 *
 * =================================================================== */

/* ===================================================================
 * # imports 
 *
 * ------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gothic+A1:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* ===================================================================
 * # 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%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ===================================================================
 * # 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: "Martel", serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1.778;
  color: #000000;
  margin: 0;
  padding: 0;
  position: relative;
}

/* ------------------------------------------------------------------- 
 * ## webkit-scrollbar
 * ------------------------------------------------------------------- */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.12);
}

::-webkit-scrollbar {
  width: 12px;
  background-color: rgba(0, 0, 0, 0.12);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
  cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #777;
}

/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
a {
  color: #f9861a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: #544d9d;
}

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

/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Gothic A1", sans-serif;
  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: 6rem;
  margin-bottom: 1.6rem;
}

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

  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4 {
    margin-top: 5.6rem;
  }
}

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

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

  h5,
  .h5,
  h6,
  .h6 {
    margin-top: 4.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;
  line-height: 1.25;
}

h3,
.h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  line-height: 1.167;
}

h4,
.h4 {
  font-size: 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;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

p img {
  margin: 0;
}

p.lead {
  font-weight: 200 !important;
  font-size: 2rem !important;
  line-height: 1.43;
  margin-bottom: 3.6rem;
}

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

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

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

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

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

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

blockquote {
  margin: 4rem 0;
  padding: 4rem;
  position: relative;
}

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

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

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

@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: "Gothic A1", sans-serif;
  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: "Martel", serif;
  font-weight: 700;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: 0.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 0.2rem;
  padding: 0.4rem 0.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 4rem;
  height: 0;
}

hr#action-divider {
  border: solid #3a3a3a;
  border-width: 2px 0 0;
  margin: 3rem 0;
}

hr#action-divider::before {
  position: absolute;
  content: "Or";
  left: calc(50% - 1.5rem);
  top: -1.5rem;
  padding: 0 2px;
  background-color: #b3c2c1;
}

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

ul {
  list-style: disc;
}

li {
  display: list-item;
}

ol,
ul {
  margin-left: 1.6rem;
}

ul li {
  padding-left: 0.4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0.8rem 0 0.8rem 1.6rem;
}

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

ul.disc li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f9861a;
  position: absolute;
  left: -16px;
  top: 11px;
  vertical-align: middle;
}

dt {
  margin: 0;
  color: #f9861a;
}

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: "Gothic A1", sans-serif;
  border-collapse: collapse;
}

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

th {
  color: #000000;
  font-family: "Gothic A1", sans-serif;
  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
 * ------------------------------------------------------------------- */
button,
.btn {
  margin-bottom: 1.6rem;
}

fieldset {
  margin-bottom: 1.6rem;
  border: 2px solid #777;
}

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

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

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

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

#loader>div {
  content: "";
  background: #ffffff;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

#loader>div:nth-of-type(1) {
  left: 15px;
}

#loader>div:nth-of-type(3) {
  left: -15px;
}

/* dots jump */
.dots-jump>div {
  -webkit-animation: dots-jump 1.2s infinite ease;
  animation: dots-jump 1.2s infinite ease;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.dots-jump>div:nth-of-type(1) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dots-jump>div:nth-of-type(3) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes dots-jump {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }
}

@keyframes dots-jump {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }
}

/* dots fade */
.dots-fade>div {
  -webkit-animation: dots-fade 1.6s infinite ease;
  animation: dots-fade 1.6s infinite ease;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dots-fade>div:nth-of-type(1) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.dots-fade>div:nth-of-type(3) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }
}

@keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }
}

/* dots pulse */
.dots-pulse>div {
  -webkit-animation: dots-pulse 1.2s infinite ease;
  animation: dots-pulse 1.2s infinite ease;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.dots-pulse>div:nth-of-type(1) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.dots-pulse>div:nth-of-type(3) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes dots-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes dots-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ===================================================================
 * # forms
 *
 * ------------------------------------------------------------------- */

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;
  height: 6.8rem;
  padding-block: 1.8rem !important;
  border: 0;
  outline: none;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem !important;
  font-weight: 400;
  line-height: 3.2rem;
  max-width: 100%;
  background: transparent !important;
  border: 2px solid #666 !important;
  border-radius: 20px !important;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #444 !important;
}

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

.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 {
  height: 25rem;
  resize: none !important;
}

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 {
  -webkit-box-shadow: 0 0 7px 6px rgba(114, 52, 239, 0.75) !important;
  -moz-box-shadow: 0 0 7px 6px rgba(114, 52, 239, 0.75) !important;
  box-shadow: 0 0 7px 6px rgba(114, 52, 239, 0.75) !important;
  border-color: #b47bff !important;
}

label {
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.714;
  color: #000000;
  display: block;
}

legend {
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.714;
  color: #333;
  /* background: #efa543; */
  /* display: block; */
  position: relative;
  top: -1rem;
  padding: 0 1rem;
}

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

label>.label-text {
  display: inline-block;
  margin-left: 1rem;
  font-family: "Gothic A1", sans-serif;
  line-height: inherit;
}

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


input[type="email"]:invalid,
input[type="number"]:invalid,
input[type="search"]:invalid,
input[type="text"]:invalid,
input[type="tel"]:invalid,
input[type="url"]:invalid,
input[type="password"]:invalid,
textarea:invalid,
select:invalid {
  border-color: var(--bs-danger);
  background-color: #ffedeb;
}

/* ------------------------------------------------------------------- 
 * ## 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: #f9861a;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.6rem;
  /* height: 6rem; */
  line-height: 5.6rem;
  padding: 0 3.2rem;
  margin: 0 0rem 1.6rem 0;
  color: #000000;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #d3d3d3;
  border: 0.2rem solid #d3d3d3;
}

.btn:hover,
button: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,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
  background: #f9861a;
  border-color: #f9861a;
  color: #ffffff;
}

.btn.btn--primary:hover,
button.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: #000000;
  border-color: #000000;
}

/* 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.2rem !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.2rem solid #000000;
  color: #000000;
}

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

.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: "Gothic A1", sans-serif;
  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
 * --------------------------------------------------------------------- */
.pull-quote {
  position: relative;
  padding: 2.4rem 0;
}

.pull-quote blockquote {
  background-color: #2e1240b8;
  border: none;
  margin: 0;
  padding-top: 6.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;
}

.pull-quote blockquote .quote-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-block: 0.5rem -1.5rem !important;
}

/** 
 * 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: "Gothic A1", sans-serif;
  font-weight: 700;
  border: none;
  color: #000000;
}

.stats-tabs li a:hover {
  color: #f9861a;
}

.stats-tabs li a em {
  display: block;
  margin: 0.8rem 0 0 0;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  font-style: normal;
  color: #7e7e7e;
}

/* ------------------------------------------------------------------- 
 * ## skillbars
 * ------------------------------------------------------------------- */
.skill-bars {
  list-style: none;
  margin-block: 2rem;
}

.skill-bars li {
  padding-bottom: 2rem;
}

.skill-bars li .label {
  position: relative;
  padding: 0 1rem 0.5rem;
}

.skill-bars li .label strong,
.skill-bars li .label span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
  line-height: 2.4rem;
}

.skill-bars li .progress {
  height: 1.3rem !important;
  border-radius: 10px !important;
  background: #d3d3d3 !important;
}

.skill-bars li .progress .progress-bar {
  border-radius: 10px !important;
}

@media (prefers-reduced-motion: no-preference) {
  .progress-bar-animation {
    animation: progress 2s ease forwards;
  }
}

@keyframes progress {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.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: "Gothic A1", sans-serif;
  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: 0.4em;
  margin-top: 0;
  margin-bottom: 6rem;
  color: #f9861a;
}

.subhead#details-header {
  margin-top: -1rem !important;
  color: #ffb671 !important;
}

.display-1 {
  font-size: 4.8rem;
  line-height: 1.333;
  font-weight: 400;
}

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

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

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

.section-intro::before {
  content: attr(data-num);
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 30rem;
  line-height: 1;
  letter-spacing: -0.045em;
  color: rgba(0, 0, 0, 0.12);
  position: absolute;
  top: -0.25em;
  left: 4.4rem;
}

.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 p.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;
  }

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

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

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

@media screen and (max-width: 500px) {
  .display-1 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 400px) {
  .section-intro {
    margin-bottom: 4rem;
  }

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

@media screen and (max-width: 360px) {
  .display-1 {
    font-size: 3.6rem;
  }

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

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

.s-header.offset {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: all 0.5s;
  transition: all 0.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: 38px;
  height: 38px;
}

.s-header.sticky .header-content .btn {
  height: 4.8rem !important;
  line-height: 4.4rem !important;
}

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

.s-header.sticky .header-nav li.active a {
  color: #fff;
}

.s-header.sticky .header-nav a::before {
  top: -80px;
}

.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 0.5s;
  transition: all 0.5s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  left: 8rem;
  top: 50%;
}

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

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

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

.header-nav {
  list-style: none;
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 6rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  margin: 0;
}

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

.header-nav a::before {
  position: absolute;
  content: "";
  top: -90px;
  left: 50%;
  width: 4px;
  height: 90px;
  background-color: #f9861a;
  border-radius: 6px;
  transform: translateY(-90px);
  transition: all 0.3s ease-in-out;
  transition-delay: 0.15s;
}

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

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

.header-nav li.active a {
  color: #fff !important;
}

.header-nav li.active a::before {
  transform: translateY(0px);
}

/* ------------------------------------------------------------------- 
 * ## mobile menu toggle
 * ------------------------------------------------------------------- */
.header-menu-toggle {
  z-index: 101;
  display: none;
  height: 4.2rem;
  width: 4.2rem;
  line-height: 4.2rem;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #ffffff;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: 5.2rem;
  top: 1.6rem;
  cursor: pointer;
}

.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 0.5s;
  transition: all 0.5s;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0.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 0.5s;
  transition: all 0.5s;
  position: absolute;
  left: 0;
}

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

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

.header-menu-toggle.is-clicked span {
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.1s;
  transition: all 0.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);
}

/* ------------------------------------------------------------------- 
 * ## download resume button
 * ------------------------------------------------------------------- */
.header-content .btn {
  border-color: #ffffff;
  color: #ffffff;
  margin: 0;
  padding: 0 4rem;
  font-size: 1.1rem;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  top: 50%;
  right: 8rem;
}

.header-content .btn:hover,
.header-content .btn:focus {
  background-color: #f9861a !important;
  border-color: #f9861a !important;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1700px) {
  .header-logo {
    left: 6rem;
  }

  .header-nav-wrap {
    max-width: none;
    width: 100%;
    padding-left: 13.2rem;
  }

  .header-content .btn {
    right: 6rem;
  }
}

@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: 2rem;
    height: 8rem;
  }

  .header-logo img {
    width: 42px;
    height: 40px;
  }

  .header-content {
    display: block;
    background-color: #050505;
    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-content .btn {
    margin-top: 4.8rem;
    -webkit-transform: translate3d(0, -2rem, 0);
    transform: translate3d(0, -2rem, 0);
    opacity: 0;
    visibility: hidden;
    position: static;
  }

  .header-nav-wrap {
    padding: 0;
    -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;
  }

  .header-nav a::before {
    top: 0;
    left: 0;
    width: 0;
    height: 0;
  }

  .header-nav li {
    position: relative;
    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 .header-content .btn {
    -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: 0.5s;
    transition-duration: 0.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: 0.7s;
    transition-delay: 0.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: 0.6s;
    transition-delay: 0.6s;
  }
}

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

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

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

  .header-content .btn {
    display: block;
  }
}

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

.s-hero::before {
  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(90deg, black 10%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.25;
}

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

.hero-content {
  height: 100%;
  max-width: 1400px;
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
  padding-top: 20vh;
  padding-bottom: 14vh;
  position: relative;
}

.hero-content h1 {
  font-size: 7rem;
  font-weight: 400;
  line-height: 1.257;
  padding-right: 3.2rem;
  margin-top: 4rem;
  color: #ffffff;
  position: relative;
}

.hero-content h1::before {
  content: "";
  display: block;
  height: 2px;
  width: 8rem;
  background-color: #f9861a;
  position: absolute;
  left: -10.8rem;
  top: -3rem;
}

.hero-content span.typed-text-output {
  color: #3aa2f8;
  margin-left: 1.5rem;
}

/* -------------------------------------------------------------------
 * ## hero social
 * ------------------------------------------------------------------- */
.hero-social {
  list-style: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 3.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-top: 8rem;
  margin-left: 0.4rem;
  margin-bottom: 0;
  position: relative;
}

.hero-social a {
  color: #ffffff;
}

.hero-social a:hover,
.hero-social a:focus,
.hero-social a:active {
  color: #f9861a;
}

.hero-social li {
  padding-left: 0;
}

.hero-social li::after {
  content: "/";
  color: rgba(255, 255, 255, 0.1);
  margin-left: 0rem;
  margin-right: 1rem;
}

.hero-social li:last-child::after {
  display: none;
}

/* -------------------------------------------------------------------
 * ## hero scroll
 * ------------------------------------------------------------------- */
.hero-scroll {
  position: absolute;
  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 0.3s ease-in-out;
  transition: all 0.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: 1.2rem;
  width: 1.2rem;
  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: #f9861a;
}

/* -------------------------------------------------------------------
 * ## animate intro content
 * ------------------------------------------------------------------- */
html.ss-preload .hero-content {
  opacity: 0;
}

html.ss-loaded .download-section__fade-in,
html.ss-loaded .hero-content {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

html.no-csstransitions .hero-content {
  opacity: 1;
}

/* ------------------------------------------------------------------- 
 * ## 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 {
    font-size: 6.3rem;
  }

  .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: 1500px) {
  .hero-content {
    max-width: 1000px;
  }
}

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

  .hero-content h1 {
    font-size: 6rem;
    padding-top: 0;
  }

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

@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: 1000px) {
  .hero-content h1 {
    font-size: 5.6rem;
  }

  .hero-social {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 800px) {
  .hero-content h1 {
    font-size: 4.8rem;
  }

  .hero-social {
    padding-right: 7.2rem;
  }

  .hero-scroll {
    right: 3.6rem;
  }

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

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

  .hero-content h1 br {
    display: none;
  }

  .hero-social {
    font-size: 1rem;
  }

  .hero-scroll {
    right: 2.4rem;
  }
}

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

@media screen and (max-width: 400px) {
  .hero-content h1 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 360px) {
  .hero-content h1 {
    font-size: 3.8rem;
  }
}

/* ===================================================================
 * # about, download & donation section
 *
 * ------------------------------------------------------------------- */
.s-about {
  padding-bottom: 16rem;
  background-color: #ffffff;
  position: relative;
}

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

.s-donation__section--body,
.s-download__section--login,
.s-about__section--profile {
  padding-top: 28rem;
  padding-bottom: 4rem;
  min-height: 108rem;
  position: relative;
}

.s-donation__section--body {
  padding-top: 20rem !important;
  min-height: 70rem !important;
}

.s-donation__section--body::before,
.s-download__section--login::before,
.s-about__section--profile::before {
  content: "";
  display: block;
  background-color: #b3c2c1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: calc(50% + 12vw);
}

.s-donation__section--body .row,
.s-download__section--login .row,
.s-about__section--profile .row {
  position: relative;
}

.s-about__section--profile .profile-pic {
  width: 24vw;
  position: absolute;
  top: 8rem;
  left: calc(50% + 80px);
}

.s-donation,
.s-download {
  padding-bottom: 16rem;
  background-color: #8e9ead;
  position: relative;
}

.download-wrapper {
  position: relative;
  justify-content: center;
  align-items: center;
  margin: 7.2rem 0 0 2rem;
  padding: 0 1rem;
}

.download-wrapper .preview-box {
  width: 90%;
  height: 60vh;
  background: url('../images/CV_page-0001.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.download-wrapper .preview-box .blur-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(3px);
}

.download-wrapper .preview-box .blur-backdrop span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 1px;
}

.download-wrapper .download-wrapper__actions {
  width: 90%;
  margin: 2.5rem 0;
}

.s-donation .display-1 {
  font-weight: 700;
  font-size: 5rem;
  margin-top: -1.5rem;
  font-family: "Poppins", sans-serif;
}

.s-donation .intro-description {
  font-size: 1.7rem;
  font-weight: 500;
  color: #444;
  line-height: 2.5rem;
  margin-left: -2rem;
}

@media screen and (max-width: 800px) {
  .mt-tab-4 {
    margin-top: 4rem;
  }

  .mt-tab-7 {
    margin-top: 7rem;
  }
}

@media screen and (max-width: 380px) {
  .s-donation .intro-description {
    margin-left: 0;
  }
}

/* ------------------------------------------------------------------- 
 * ## career position
 * ------------------------------------------------------------------- */
.work-positions {
  margin-top: 2rem;
}

.work-positions .column:nth-child(2n + 1) {
  padding-right: 40px;
}

.work-positions .column:nth-child(2n + 2) {
  padding-left: 40px;
}

.position {
  padding-top: 3.6rem;
  padding-bottom: 3.2rem;
  border-top: 1px solid #b3c2c1;
}

.position__header {
  margin-bottom: 4rem;
}

.position__header h6 {
  font-family: "Martel", serif;
  line-height: 2.8rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.position__header h6 .position__co {
  margin-right: 2rem;
}

.position__header h6 .position__pos {
  display: inline-block;
  font-size: 1.8rem;
  text-transform: none;
  letter-spacing: 0;
}

.position__timeframe {
  font-family: "Gothic A1", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  letter-spacing: 0.3rem;
  color: #7e7e7e;
}

.position__timeframe small {
  margin-left: 1rem;
  color: #3aa2f8;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {

  .s-donation__section--body::before,
  .s-download__section--login::before,
  .s-about__section--profile::before {
    left: 75%;
  }

  /* .download-wrapper, */
  .s-about__section--profile .profile-pic {
    width: 26vw;
    right: 0;
    left: auto;
  }

  .work-positions .column:nth-child(2n + 1) {
    padding-right: 30px;
  }

  .work-positions .column:nth-child(2n + 2) {
    padding-left: 30px;
  }
}

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

  .position {
    padding-right: 8rem;
  }
}

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

  .s-download__section--login,
  .s-about__section--profile {
    padding-top: 20rem;
    padding-bottom: 0;
    min-height: 0;
  }

  .s-donation__section--body::before,
  .s-download__section--login::before,
  .s-about__section--profile::before,
  .s-about__section--profile .profile-pic {
    display: none;
  }

  .download-wrapper {
    flex-direction: row !important;
  }

  .download-wrapper .preview-box {
    width: 70%;
    height: 45vh;
    margin: 0 2rem 0 -1rem;
  }

  hr#action-divider::before {
    background-color: #8e9ead;
  }

  .position {
    padding-right: 0;
  }
}

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

@media screen and (max-width: 485px) {
  .download-wrapper {
    margin: 7.2rem 0 0 -2rem;
  }

  .download-wrapper .preview-box {
    display: none;
    opacity: 0;
    -webkit-appearance: hidden;
    appearance: hidden;
  }

  .download-wrapper .download-wrapper__actions {
    flex: 0 0 100%;
  }
}

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

/* ===================================================================
 * # services section
 *
 * ------------------------------------------------------------------- */
.s-services {
  padding-top: 24rem;
  padding-bottom: 20rem;
  background-color: #1d1b37;
  position: relative;
}

.s-services__content {
  position: relative;
}

.s-services__leftcol {
  padding-bottom: 12rem;
}

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

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

/* ------------------------------------------------------------------- 
 * ## services list
 * ------------------------------------------------------------------- */
/* .services-list, */
.accordion {
  padding-left: 20px !important;
  margin: 8.8rem 0 0 0 !important;
  counter-reset: ctr !important;
}

.accordion-item {
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding-left: 0 !important;
  background-color: transparent !important;
  color: #fff !important;
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.accordion-header {
  background-color: transparent !important;
  margin-top: 0 !important;
  cursor: pointer !important;
  position: relative !important;
}

.accordion-header button {
  background: #4a46638e !important;
  border-radius: 0 !important;
}

.accordion-header h5 {
  position: relative !important;
}

.accordion-button {
  outline: 0 !important;
  border: none !important;
  padding-left: 1.111em !important;
  margin: 0 !important;
  position: relative !important;
  justify-content: start !important;
  font-size: 3rem !important;
  letter-spacing: 0.1rem !important;
}

.accordion-button span {
  font-family: "Gothic A1", sans-serif;
  font-weight: 600;
  color: #fff;
  padding-inline: 0.9rem;
}

.accordion-button.collapsed {
  background: none !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color) !important;
}

.accordion-button:not(.collapsed)::after {
  display: none !important;
}

.accordion-button::before {
  content: counter(ctr, decimal-leading-zero) ".";
  counter-increment: ctr;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 0.5em;
  line-height: 1;
  color: #f9861a;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.accordion-button[aria-expanded="true"]::after,
.accordion-button::after {
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  display: block !important;
  height: 6px;
  width: 6px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}

.accordion-button::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.accordion-button[aria-expanded="true"]::after {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.accordion-body {
  padding-top: 1.2rem !important;
  padding-left: 4rem !important;
  padding-right: 4rem !important;
  font-weight: 200 !important;
  color: #aaa;
}

.accordion-body strong {
  font-weight: 800 !important;
  color: #ccc;
}


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

@media screen and (max-width: 1040px) {
  .s-services .vert-line {
    height: 12rem;
    left: 16px;
  }

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

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

  .s-services__content .s-services__leftcol p.lead {
    max-width: none;
  }

  .accordion {
    padding-left: 0 !important;
    margin: 0 !important;
  }
}

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

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

@media screen and (max-width: 600px) {
  .s-services .vert-line {
    left: 34px;
  }

  .accordion-header h5 {
    font-size: 3.2rem !important;
  }
}

@media screen and (max-width: 500px) {
  .accordion-header h5 {
    font-size: 3rem !important;
  }
}

@media screen and (max-width: 400px) {
  .s-services .vert-line {
    left: 24px;
  }

  .accordion-header h5 {
    font-size: 2.8rem !important;
  }
}

/* ===================================================================
 * # portfolio
 *
 * ------------------------------------------------------------------- */
.s-payment-success,
.s-portfolio {
  padding-top: 24rem;
  padding-bottom: 0;
  background-color: #ffffff;
  position: relative;
}

.s-payment-success {
  padding-block: 15rem !important;
  background-color: #1d1b37 !important;
}

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

#payment-success .display-1 {
  position: relative;
  font-weight: 600;
  font-family: Poppins;
  font-size: 4.5rem;
  color: var(--heading);
}

/* ------------------------------------------------------------------- 
 * ## 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, 0.5s;
  transition: all, 0.5s;
}

.folio-item__thumb a::after {
  z-index: 1;
  content: "+";
  font-family: "Gothic A1", sans-serif;
  font-weight: 300;
  font-size: 3rem;
  color: #ffffff;
  display: block;
  height: 32px;
  width: 32px;
  line-height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  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: "Gothic A1", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.folio-item__project-link {
  z-index: 2;
  display: block;
  font-family: "Gothic A1", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #000000;
  background-color: #ffffff;
  padding: 0.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: #f9861a;
  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-payment-success::before,
  .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) {

  .s-payment-success::before,
  .s-portfolio {
    padding-top: 20rem;
  }

  .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;
  }
}

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

.s-testimonials h2#header-text {
  font-weight: 800;
  letter-spacing: 2px;
  font-family: 'Work Sans';
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--bs-code-color);
}

.testimonial-slider {
  position: relative;
}

.testimonial-slider p {
  font-family: "Gothic A1", sans-serif;
  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;
  justify-content: center;
  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;
  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: "Gothic A1", sans-serif;
  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;
  }
}

/* ===================================================================
 * # CTA
 *
 * ------------------------------------------------------------------- */
.s-cta {
  padding-top: 12rem;
  background-color: #ffffff;
  font-size: 2.2rem;
  line-height: 1.818;
  text-align: center;
}

.s-cta h2 {
  margin-top: 0;
}

.cta-content {
  max-width: 800px;
}

.cta-content .btn {
  max-width: 600px;
}

/* ------------------------------------------------------------------- 
 * responsive:
 * cta
 * ------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
  .s-cta {
    font-size: 2rem;
  }

  .cta-content {
    max-width: 600px;
  }
}

@media screen and (max-width: 600px) {
  .s-cta {
    font-size: 1.8rem;
  }
}

/* ===================================================================
 * # footer
 *
 * ------------------------------------------------------------------- */
.s-footer {
  padding-top: 24rem;
  padding-bottom: 2rem;
  background-color: #0b0a15;
  position: relative;
}

.s-footer .right-vert-line {
  background-color: #f9861a;
}

.s-footer__bottom {
  font-family: "Gothic A1", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0;
}

.footer-email-us {
  text-align: center;
  margin: 3rem 4rem;
}

.footer-email-us .btn:hover,
.footer-email-us .btn:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.s-footer .footer-intro {
  margin-top: 7.2rem;
  margin-left: 8.33333%;
  row-gap: 0.5rem;
}

/* ------------------------------------------------------------------- 
 * ## contact block
 * ------------------------------------------------------------------- */
.footer-contact-block {
  font-family: "Gothic A1", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.2rem;
}

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

.footer-contact-block a:hover,
.footer-contact-block a:focus {
  color: #f9861a;
}

.footer-contact-block__content,
.ss-scicons__list li {
  position: relative;
  padding: 0.8rem 0;
}

.footer-contact-block__header {
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-contact-block__content iframe {
  border-radius: 10px;
  height: 30rem;
}

/* ------------------------------------------------------------------- 
 * ## social media
 * ------------------------------------------------------------------- */
.ss-scicons__list {
  justify-content: center;
  column-gap: 4rem;
  align-items: center;
  list-style: none;
  margin-top: 0.4rem;
  margin-left: 0;
}

.ss-scicons__list li {
  cursor: pointer;
  padding-left: 0;
}

.ss-scicons__list li a {
  font-size: 3rem;
}

.ss-scicons__list li a i {
  color: #fff !important;
}

.ss-scicons__list li a:hover i {
  color: #f9861a !important;
}

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

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

.ss-copyright a:hover,
.ss-copyright a:focus {
  color: #f9861a;
}

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

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

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

.ss-policies {
  margin-top: 2rem;
}

.ss-policies ul {
  display: inline-flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}

.ss-policies ul li {
  display: inline;
}

.ss-policies ul li a {
  font-size: 1.4rem;
  color: var(--bs-code-color);
}

.ss-policies a:hover,
.ss-policies a:focus {
  color: #ffd1d2;
}

/* ------------------------------------------------------------------- 
 * ## go top
 * ------------------------------------------------------------------- */
.scroll-to-top {
  text-decoration: none !important;
  border: 0 none !important;
  display: block !important;
  height: 6.4rem !important;
  width: 6.4rem !important;
  border-radius: 50% !important;
  background-color: #162d47 !important;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
  background-color: #f9861a !important;
}

.scroll-to-top svg {
  height: 2.3rem !important;
  width: 3.2rem !important;
  position: absolute;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  top: 50%;
}

.scroll-to-top svg path {
  fill: #ffffff;
}

/* .scroll-to-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) {
  .scroll-to-top {
    right: 6rem;
  }

  .scroll-to-top {
    height: 6rem;
    width: 6rem;
  }
}

@media screen and (max-width: 900px) {
  .s-footer .footer-intro {
    margin-top: 4.2rem;
    margin-left: 0;
    row-gap: 2rem;
    margin-bottom: 9rem;
  }

  .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-top: 20rem;
  }

  .ss-copyright {
    padding: 0 10rem;
  }

  .scroll-to-top {
    right: 3.6rem;
  }
}

@media screen and (max-width: 600px) {
  .ss-copyright {
    padding: 0 8rem;
  }

  .ss-copyright span {
    display: block;
  }

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

.border-primary {
  border-color: #3aa2f8 !important;
}

.border-left {
  border-left: 1px solid #3aa2f8 !important;
}

.text-primary {
  color: #387fb2;
}

.position-absolute {
  position: absolute !important;
}


/* login section */
.login-sc-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 1rem !important;
  width: 100%;
  border-radius: 32px;
}

.login-sc-btns i {
  font-size: 2.5rem;
  padding-inline: 0.5rem;
}

.login-sc-btns span {
  font-size: 1.6rem;
  letter-spacing: 1px !important;
  padding-inline: 0.5rem;
}

.login-sc-btns#google-login-btn {
  background: #db4437;
  border-color: #db4437;
  color: #fff;
}

.login-sc-btns#google-login-btn:hover {
  background: #eb5244;
  border-color: #eb5244;
}

.login-sc-btns#fb-login-btn {
  background: #3b5998;
  border-color: #3b5998;
  color: #fff;
}

.login-sc-btns#fb-login-btn:hover {
  background: #4768b0;
  border-color: #4768b0;
}

.login-sc-btns#github-login-btn {
  background: #222;
  border-color: #222;
  color: #fff;
}

.login-sc-btns#github-login-btn:hover {
  background: #333;
  border-color: #333;
}

#subscribe-btn {
  letter-spacing: 2px;
  font-size: 1.6rem;
  border-radius: 32px;
}

#subscribe-btn:hover {
  background: var(--bs-blue);
}

/* //login section */


/* donation section misc */
.donation-card {
  padding: 2rem !important;
  border-radius: 12px !important;
}

.donation-card .header-text {
  margin: 1rem 0 0;
}

.donation-card .header-text span {
  color: var(--bs-pink);
}

.donation-card .no-chooser {
  display: flex;
  align-items: center !important;
  justify-content: space-between !important;
  margin: 1.5rem 0;
  padding: 0.5rem 1rem;
  background: #fffcd1;
  border-radius: 3px;
}

.donation-card .no-chooser .coffee-icon {
  font-size: 4.5rem;
}

.donation-card .no-chooser .fa-xmark {
  font-size: 2rem !important;
  font-weight: 700;
  color: #bbb;
}

.no-chooser input#coffee-nos {
  margin-bottom: 0;
  border: 1px solid #424242 !important;
  box-shadow: none !important;
  background: #fff !important;
  width: 9rem;
  height: 5rem;
  color: #000 !important;
  padding: 0.5rem 1rem;
  font-size: 2.1rem !important;
  border-radius: 10px !important;
  font-weight: 500 !important;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.no-chooser input#coffee-nos::placeholder {
  color: #aaa !important;
}

.no-chooser input#coffee-nos::-webkit-inner-spin-button {
  appearance: none;
}

@media screen and (max-width: 455px) {
  .donation-card .no-chooser {
    flex-direction: column;
  }

  /* .no-chooser input#coffee-nos {
    display: none;
    opacity: 0;
  } */
}

.no-chooser .nof-items__btns {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0 1.5rem;
  list-style: none;
  gap: 1rem;
}

.no-chooser .nof-items__btns input[type="radio"] {
  display: none;
  opacity: 0;
  appearance: none;
}

.nof-items__btns input[type="radio"]:checked~.item-btn {
  background: #1a164f;
  color: #fff;
}

.no-chooser .nof-items__btns .item-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background: #ffd87d;
  padding: 1.5rem;
  font-size: 2.3rem;
  border-radius: 50%;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #777;
  cursor: pointer;
  transition: 0.3s background ease-in;
}

.donation-card input#usermail,
.donation-card input#username {
  padding: 0.3rem 1.2rem !important;
  height: 5rem;
  margin-block: 1rem 0.2rem !important;
  border-radius: 10px !important;
  border: 2px solid #c1c1c1 !important;
  box-shadow: none !important;
  background: #c1c1c1 !important;
  color: #5d5d5d !important;
  width: 100%;
  transition: 0.35s ease !important;
}

.donation-card textarea#message-input {
  margin-block: 1rem !important;
  padding: 1.3rem 1.2rem !important;
  border-radius: 10px !important;
  border: 2px solid #c1c1c1 !important;
  box-shadow: none !important;
  background: #c1c1c1 !important;
  color: #5d5d5d !important;
  height: 15rem !important;
  line-height: 2.1rem;
  width: 100%;
  transition: 0.35s ease !important;
}

.donation-card input#usermail::placeholder,
.donation-card input#username::placeholder,
.donation-card textarea#message-input::placeholder {
  color: #777 !important;
}

.donation-card input#usermail:hover,
.donation-card input#username:hover,
.donation-card textarea#message-input:hover {
  background: #cccccc !important;
}


.donation-card .pay-btn {
  width: 100% !important;
  font-size: 1.8rem;
  letter-spacing: 3px;
  border-radius: 32px;
  margin-bottom: 0;
}

.donation-card .fa-face-smile-beam {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: #777;
  cursor: pointer;
}

@media screen and (max-width: 426px) {
  .EmojiPickerReact {
    width: 300px !important;
  }
}

@media screen and (max-width: 321px) {
  .EmojiPickerReact {
    width: 250px !important;
  }

  .donation-card .no-chooser .coffee-icon {
    font-size: 3rem;
  }

  .no-chooser input#coffee-nos {
    width: 8rem;
    height: 4rem;
  }

  .no-chooser .nof-items__btns {
    gap: 0.5rem;
  }

  .no-chooser .nof-items__btns .item-btn {
    width: 3.5rem;
    height: 3.5rem;
  }
}

/* //donation section misc */

/* modal popup */
.modal {
  position: fixed !important;
  top: 5vh;
  border-radius: 12px;
  padding: 0.5rem;
  width: 30rem;
  max-width: 90%;
  margin: 2rem auto;
  z-index: 1000;
  border: none;
  outline: none;
  box-shadow: 0 0 8px 9px rgba(0, 0, 0, 0.2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.6rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-header {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header h2 {
  margin-block: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff !important;
}

.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer .btn {
  background: none !important;
  border: 0;
  outline: 0;
  padding: 0.5rem 1.7rem;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px !important;
  line-height: 3.6rem !important;
}

.modal-footer .btn.btn-ghost {
  font-weight: 600;
  color: var(--bs-dark);
}

.modal-footer .btn.btn-ghost:hover {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.modal-footer .btn.btn-style {
  background-color: var(--bs-dark) !important;
  color: #fff !important;
}

.modal-footer .btn.btn-style:hover {
  background-color: #333 !important;
}

.modal-footer .btn.btn-style:disabled {
  background: #ccc !important;
  color: #aaa !important;
  cursor: not-allowed !important;
}

.userdetails-modal {
  width: 45rem !important;
  height: auto !important;
}

.userdetails-modal .modal-header {
  background: var(--bs-indigo);
}

.userdetails-modal form {
  margin-bottom: 0;
}

.userdetails-modal form label {
  color: #888;
  font-family: 'Poppins', sans-serif;
  font-weight: 600 !important;
  margin-bottom: 0;
}

.userdetails-modal form input {
  color: #000 !important;
  font-weight: 400;
  border-color: #ccc !important;
  border-radius: 5px !important;
  width: 100%;
  height: 4.8rem !important;
  padding: 0.8rem 1.6rem !important;
}

.userdetails-modal form input:focus {
  border-color: #090965 !important;
  box-shadow: none !important;
}

@media screen and (max-width: 380px) {
  .modal-footer {
    justify-content: center
  }

  .modal-footer .btn {
    width: 100%;
  }
}

/* //modal popup */



/* confirm page spinner */
.spinner-wrapper {
  position: relative;
  background: #ccffca;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 6;
  padding: 2rem 1rem;
}

.checkmark {
  position: relative;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: var(--bs-success);
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  -webkit-animation: ripple 1s linear infinite;
  animation: ripple 1s linear infinite;
  margin: 1.5rem auto;
}

.checkmark i {
  position: relative;
  color: var(--heading);
  font-size: 10rem;
}

@-webkit-keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 var(--bs-success), 0 0 0 10px var(--bs-success), 0 0 0 20px var(--bs-success);
  }

  100% {
    box-shadow: 0 0 0 10px var(--bs-success), 0 0 0 20px var(--bs-success),
      0 0 0 40px rgba(50, 100, 245, 0);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 var(--bs-success), 0 0 0 10px var(--bs-success), 0 0 0 20px var(--bs-success);
  }

  100% {
    box-shadow: 0 0 0 10px var(--bs-success), 0 0 0 20px var(--bs-success),
      0 0 0 40px rgba(50, 100, 245, 0);
  }
}

.confirm-message {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.confirm-message h1 {
  font-family: 'Martel';
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-block: 2.5rem;
  color: #01456d;
}

.confirm-message h5 {
  font-family: 'Work Sans';
  color: var(--bs-secondary);
  font-weight: 600;
  font-size: 3.2rem;
  margin-block: -0.7rem 1rem;
}

.confirm-message h5 a {
  color: var(--bs-primary);
  text-decoration: underline;
  font-weight: 600;
}

.confirm-message p {
  font-weight: 500;
  margin-bottom: 0.3rem !important;
  font-size: 1.3rem;
  color: var(--bs-pink);
}

h5.payment-data-block__content em,
.payment-data-block em {
  font-size: 1.7rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.payment-data-block em span {
  text-transform: uppercase;
  color: var(--bs-danger);
  font-style: normal;
}

.payment-data-block .pull-quote {
  padding: 0 !important;
  margin-top: 1.2rem !important;
}

.payment-data-block .pull-quote blockquote p {
  font-size: 2rem;
  margin-block: 2rem 0 !important;
}

h5.payment-data-block__header {
  margin-block: 0;
  font-family: 'Poppins', sans-serif;
  color: #80848a;
  font-weight: 700;
  font-size: 2rem;
}

p.payment-data-block__content {
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #1d1b37;
  font-weight: 500;
  font-size: 2.2rem;
  margin-top: -0.6rem;
}

@media screen and (max-width: 1200px) {
  p.payment-data-block__content {
    color: var(--bs-blue);
  }

  .payment-data-block .pull-quote blockquote {
    background-color: #efefef3d;
  }

}

/* //confirm page spinner  */


/* error page */
:root {
  --bg: #313942;
  --ghost: #528cce;
  --heading: #e7ebf2;
}

main.error404 {
  width: 100% !important;
  position: relative !important;
  background: var(--bg) !important;
  font-family: 'Poppins', sans-serif !important;
  align-items: center !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100vh !important;
  justify-content: center !important;
  text-align: center !important;
}

main.error404 h1 {
  color: var(--heading);
  font-size: 12.5rem;
  letter-spacing: .10em;
  margin: .025em 0;
  text-shadow: .05em .05em 0 rgba(0, 0, 0, .25);
  white-space: nowrap;
}

@media(max-width: 30rem) {
  main.error404 h1 {
    font-size: 8.5rem;
  }
}

main.error404 h1>span {
  animation: spooky 2s alternate infinite linear;
  color: var(--ghost);
  display: inline-block;
}

main.error404 h2 {
  color: var(--heading);
  margin-bottom: .40em;
  font-family: monospace;
  font-weight: 900;
  font-size: 4rem;
}

main.error404 p {
  color: #ccc;
  margin-top: 0;
}

main.error404 h5 {
  color: #777;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main.error404 h5 a {
  color: var(--bs-danger);
  text-decoration: underline !important;
}

@keyframes spooky {
  from {
    transform: translatey(.15em) scaley(.95);
  }

  to {
    transform: translatey(-.15em);
  }
}