@charset "UTF-8";
/* Import all .scss directories */
/* Import all abstracts .scss files */
/* Font Imports */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@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");
/* Mixins */
.container {
  margin: 0 auto;
  width: 82%;
  position: relative;
}

@media (max-width: 900px) {
  .container {
    margin: 0 auto;
    width: 92%;
  }
}

@-webkit-keyframes gradient {
  0% {
    background-position: 12% 50%;
  }
  50% {
    background-position: 100% 75%;
  }
  100% {
    background-position: 12% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 12% 50%;
  }
  50% {
    background-position: 100% 75%;
  }
  100% {
    background-position: 12% 50%;
  }
}

/* Import all base .scss files */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: initial;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

input {
  -webkit-appearance: none;
  border-radius: 0;
}

.wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

a {
  text-decoration: none;
}

p {
  font-family: "Roboto", sans-serif !important;
}

/**
 * Typography
 * =================================
 * - Base
 * - Paragraphs
 * - Headings
 * - Type sizes
 * - Misc
 * - Utilities
 *
 * Body font size, leadings etc have been set in _variables.scss
 */
/**
 * Headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-rendering: optimizelegibility;
  margin-top: 0;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: normal;
}

.landing-title,
.title-section {
  font-size: 80px;
  color: #35323E;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 2px 0 5px #3a057048;
}

.landing-title span,
.title-section span {
  color: #760ADF;
}

.landing-description {
  font-size: 22px;
  font-weight: 500;
}

.title-section {
  font-size: 45px;
}

@media (max-width: 900px) {
  .title-section {
    font-size: 35px;
  }
}

.title-section:after {
  content: "";
  display: block;
  border-bottom: 5px solid #ab5ef6;
  width: 125px;
  position: relative;
  bottom: -10px;
}

p {
  margin-bottom: 20px;
  color: #848486;
  line-height: 1.6em;
  font-size: 18px;
}

.p-under-title {
  width: 60%;
}

@media (max-width: 900px) {
  .p-under-title {
    width: 100%;
  }
}

/* Import all components .scss files */
/* Place all button components styling here */
.cta-btn,
.cta-btn-fill,
.cta-btn-uppercase {
  color: #35323E !important;
  background: transparent;
  background-color: transparent;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 18px;
  border: 2px solid #35323E;
  -webkit-transition: 0.3s ease-in !important;
  transition: 0.3s ease-in !important;
  display: inline-block;
  position: relative;
}

.cta-btn:hover,
.cta-btn-fill:hover,
.cta-btn-uppercase:hover {
  -webkit-box-shadow: 0 3px 10px 7px #3a057007;
          box-shadow: 0 3px 10px 7px #3a057007;
  background-color: #35323E;
  color: white !important;
  cursor: pointer;
}

.cta-btn-fill {
  background-color: #35323E;
  color: white !important;
}

.cta-btn-uppercase {
  text-transform: uppercase;
  padding: 12px 55px;
  letter-spacing: 1px;
}

.scrollToTopBtn {
  background-color: #35323E;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 22px;
  line-height: 48px;
  width: 48px;
  padding: 0;
  /* place it at the bottom right corner */
  position: fixed;
  bottom: 30px;
  right: 30px;
  /* keep it at the top of everything else */
  z-index: 100;
  /* hide with opacity */
  opacity: 0;
  /* also add a translate effect */
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  /* and a transition */
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.showBtn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sm-icon {
  font-size: 14px;
  color: #35323E;
  float: right;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
}

/* Place all input components styling here */
input,
select,
textarea {
  border: 1px solid #ccc;
  font-size: 18px;
  padding: 20px;
}

input:focus,
select:focus,
textarea:focus {
  border: 1px solid #c7c7c7;
}

/* Place all modal/popup components styling here */
.horizontal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.horizontal-list li {
  display: inline-block;
  margin: 0 15px;
}

.horizontal-list li a {
  color: #3B0570;
  font-weight: 700;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.horizontal-list li a:hover {
  cursor: pointer;
  color: #922ef3;
}

@media (max-width: 900px) {
  .horizontal-list li {
    margin: 0 10px !important;
  }
}

.vertical-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vertical-list li {
  margin: 10px 0;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.vertical-list li:hover {
  cursor: pointer;
  color: #922ef3;
}

@media (max-width: 900px) {
  .vertical-list li {
    margin: 0 10px;
  }
}

/** Vertical list of experience tab **/
@media (max-width: 900px) {
  #tabs-experience {
    overflow-x: scroll;
  }
  #tabs-experience li {
    display: table-cell;
    width: auto;
    line-height: 1.1;
  }
}

.socials-links {
  margin-top: 40px;
  font-size: 40px;
}

.socials-links li {
  margin: 0 10px;
}

.socials-links a {
  color: #35323E !important;
}

.skills-li {
  font-size: 30px;
}

.skills-li li {
  margin: 10px 15px 10px 0;
}

#illustration-landing {
  max-height: 500px;
  float: right;
}

@media (max-width: 900px) {
  #illustration-landing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: 350px;
    width: auto;
    float: none;
  }
}

#self-img {
  background-image: url("/images/self.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  width: 300px;
  -webkit-box-shadow: 0 0 0 3px #000, 0 0 0 7px #fff, 0 0 0 10px #000;
          box-shadow: 0 0 0 3px #000, 0 0 0 7px #fff, 0 0 0 10px #000;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: background-image .5s ease-in-out;
  transition: background-image .5s ease-in-out;
}

#self-img:hover {
  background-image: url("/images/self-color.jpg");
}

@media (max-width: 900px) {
  #self-img {
    height: 280px;
    margin-bottom: 30px;
  }
}

#contact-illustration {
  height: 400px;
  float: left;
}

@media (max-width: 900px) {
  #contact-illustration {
    margin-bottom: 25px;
  }
}

.img-company-logo {
  border-radius: 50%;
  float: right;
  height: 65px;
  width: 65px;
  -webkit-box-shadow: 0 0 10px 5px #aa5ef610;
          box-shadow: 0 0 10px 5px #aa5ef610;
}

.breadcrum {
  text-align: center;
  color: white;
}

.breadcrum .wrapper {
  padding: 120px 0;
  background-color: rgba(0, 0, 0, 0.685);
}

.breadcrum-title {
  font-size: 60px;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0;
}

#projects-breadcrum {
  background: url("https://images.hdqwalls.com/download/city-blurred-hd-2560x1440.jpg");
  background-size: cover;
  background-position: 90%;
}

.project {
  margin-top: 100px;
}

.project-img {
  max-height: 300px;
  -webkit-filter: brightness(100%);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media (max-width: 900px) {
  .project-img {
    width: 100%;
    margin: 30px 0 !important;
  }
}

.project-img:hover {
  -webkit-filter: brightness(75%);
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.04);
}

.project-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

.project-card {
  background-color: white;
  padding: 30px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.068);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.068);
  margin-bottom: 30px;
  z-index: 100;
}

.project-tech {
  font-size: 15px;
  color: #848486;
  margin-bottom: 30px;
}

.project-links a {
  font-size: 20px;
  color: #35323E !important;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.project-links a:hover {
  cursor: pointer;
  color: #9994a8;
}

@media (max-width: 900px) {
  .project-content {
    display: contents;
  }
}

.right-content {
  text-align: right !important;
  z-index: 99999;
  margin-left: -100px;
}

.right-content .horizontal-list li {
  margin: 0 0 0 15px;
}

.left-content {
  text-align: left;
  z-index: 99999;
  margin-right: -100px;
}

.container-btn {
  padding-top: 40px;
}

.projects-container {
  padding: 40px;
}

@media (max-width: 900px) {
  .projects-container {
    padding: 5px;
  }
  .projects-container .title-section {
    margin-top: 60px;
  }
}

.projects-container .back-btn {
  border-radius: 5px;
  padding: 15px 25px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.09);
  color: #35323E;
  font-size: 18px;
  -webkit-transition: -webkit-box-shadow .5s;
  transition: -webkit-box-shadow .5s;
  transition: box-shadow .5s;
  transition: box-shadow .5s, -webkit-box-shadow .5s;
}

.projects-container .back-btn:hover {
  opacity: 0.8;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.07);
          box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.07);
}

.projects-container-grid {
  display: inline-block;
}

.projects-container .projects-grid {
  padding-bottom: 10%;
}

.projects-container .projects-grid .project {
  padding: 15px !important;
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.projects-container .projects-grid .project .content {
  background-color: #35323E;
  color: white;
  position: relative;
  bottom: 0;
  -webkit-filter: brightness(100%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.projects-container .projects-grid .project .content:hover {
  -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  margin-top: -10px;
}

.projects-container .projects-grid .project .content .bottom {
  padding: 20px;
}

.projects-container .projects-grid .project .content img {
  width: 100%;
  padding: 0;
  max-height: 210px;
}

.projects-container .projects-grid .project .content .title {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0 15px 0;
}

.projects-container .projects-grid .project .content .description {
  color: white;
}

.prev-portolio {
  margin: 100px 0;
  background-color: #FCFCFC;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.07);
}

@media (max-width: 900px) {
  .prev-portolio {
    margin: 40px 0;
  }
  .prev-portolio .left-img {
    padding-right: 0 !important;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0 !important;
  }
  .prev-portolio .right-img {
    padding-left: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}

.prev-portolio .left-img {
  padding-right: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.prev-portolio .right-img {
  padding-left: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.prev-portolio .content {
  padding: 20px;
}

.prev-portolio img {
  height: 100%;
  width: 100%;
}

.prev-portolio .title-previous {
  color: #35323E;
  font-size: 26px;
  margin: 20px 0;
  font-weight: 600;
  text-shadow: 2px 0 5px #3a057048;
}

/* Style the tab */
.tab {
  overflow: hidden;
  -webkit-transition: .5s smooth !important;
  transition: .5s smooth !important;
}

.tab button {
  background-color: transparent;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 40px 14px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .tab button {
    font-size: 14px;
    padding: 14px 20px 14px 0;
  }
}

.tab button:hover {
  color: #760ADF;
}

.active {
  color: #ab5ef6;
  background-color: transparent;
  -webkit-transition: .5s;
  transition: .5s;
}

.active:after {
  content: "";
  display: block;
  border-bottom: 4px solid #ab5ef6;
  width: 20px;
  position: relative;
  bottom: -5px;
}

@media (max-width: 900px) {
  .active:after {
    left: -2px;
  }
}

.active-vertical {
  color: #ab5ef6 !important;
  border-left: 5px solid #760ADF !important;
  -webkit-transition: .5s smooth !important;
  transition: .5s smooth !important;
}

/* Style the tab content */
.tabcontent,
.tabcontent-vertical {
  display: none;
  padding: 6px 0;
  border-top: none;
  opacity: 0;
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
  -webkit-animation: fadeIn 0.9s forwards;
  animation: fadeIn 0.9s forwards;
}

@media (max-width: 900px) {
  .tabcontent,
  .tabcontent-vertical {
    -webkit-animation: fadeIn forwards;
    animation: fadeIn forwards;
  }
}

.tabcontent .job-title,
.tabcontent-vertical .job-title {
  font-size: 26px;
  font-weight: 600;
  color: #3B0570;
}

@media (max-width: 900px) {
  .tabcontent .job-title,
  .tabcontent-vertical .job-title {
    margin-top: 40px;
  }
}

.tabcontent .job-date,
.tabcontent-vertical .job-date {
  margin-top: 10px;
  color: #848486;
  font-size: 17px;
}

.tabcontent .job-activities,
.tabcontent-vertical .job-activities {
  margin-bottom: 40px;
}

.tabcontent .job-activities li,
.tabcontent-vertical .job-activities li {
  margin: 10px 0 20px 0;
  position: relative;
  padding-left: 40px;
  font-size: 40px;
}

.tabcontent .job-activities li:before,
.tabcontent-vertical .job-activities li:before {
  content: "▹";
  color: #760ADF;
  position: absolute;
  left: 0;
  top: 7px;
  font-weight: bold;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.tabcontent .job-activities li span,
.tabcontent-vertical .job-activities li span {
  font-size: 18px;
  color: #35323E;
}

.tabcontent .job-tech,
.tabcontent-vertical .job-tech {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

#hobbies {
  pointer-events: none;
}

.skills-tab li {
  font-size: 40px;
}

.skills-tab p {
  margin: 10px 0 0 0;
  font-size: 14px;
  color: black;
  font-weight: 600;
}

.skills-tab .icon-skill-img {
  height: 35px;
  width: 35px;
}

.vertical-tabs {
  margin-top: 40px;
  padding: 0;
}

.vertical-tabs li {
  padding: 30px 0 30px 30px;
  margin: 0;
  width: 100%;
  border-left: 5px solid #ccc;
  color: #848486;
  font-weight: 500;
  font-size: 18px;
  margin-left: 20px;
}

@media (max-width: 900px) {
  .vertical-tabs li {
    padding: 10px;
    border-left: none !important;
    margin: 0 20px 0 0;
    padding: 30px;
  }
}

.vertical-tabs li:hover {
  border-left: 5px solid #999999;
  color: #666666;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  #content-experience .tabcontent {
    margin-top: 40px;
  }
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  font-size: 14px;
  visibility: hidden;
  font-weight: 500;
  width: 120px;
  background-color: #35323E;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #35323E transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  padding: 10px 20px;
}

.tooltip .tooltiptext {
  -webkit-transition: .3s ease;
  transition: .3s ease;
  opacity: 0;
}

.tooltip:hover .tooltiptext {
  opacity: 1;
}

.timeline {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 9px;
  margin-left: -1px;
  width: 3px;
  height: 100%;
  background: #848486;
  z-index: 1;
}

.timeline-block {
  width: calc(80% + 8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  clear: both;
}

.timeline .marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #FCFCFC;
  background: #35323E;
  margin-top: 10px;
  z-index: 9999;
}

.timeline-content {
  width: 95%;
  padding: 0 15px;
}

.timeline-content h3 {
  margin: 10px 0;
  font-weight: 600;
  font-size: 20px;
  color: #35323E;
}

.timeline-content span {
  font-size: 14px;
  color: #a4a4a4;
  line-height: 1.6em;
}

.timeline-content p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5em;
  word-spacing: 1px;
  color: #848486;
}

@media screen and (max-width: 768px) {
  .container:before {
    left: 8px;
    width: 2px;
  }
  .timeline-block {
    width: 100%;
    margin-bottom: 30px;
  }
}

::-webkit-scrollbar {
  width: 14px;
}

/* Track */
::-webkit-scrollbar-track {
  border: 1px dotted #d6d6d6;
  background-color: #FCFCFC;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left bottom, left top, from(#760ADF), to(#ab5ef6));
  background: linear-gradient(360deg, #760ADF 0%, #ab5ef6 100%);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: 0 0 10px 5px #aa5ef610;
}

.progress-container {
  width: 100%;
  height: 8px;
  background: #ffc;
  position: fixed;
  top: 0;
  z-index: 99999;
}

.progress-container .progress-bar {
  height: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#760ADF), to(#ab5ef6));
  background: linear-gradient(90deg, #760ADF 0%, #ab5ef6 100%);
  width: 0%;
}

.progress-container .content {
  padding: 100px 0;
  margin: 50px auto 0 auto;
  width: 80%;
}

.self-shape-lg {
  background-color: #ab5ef6;
  opacity: 0.07;
  width: 130vw;
  height: 500px;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  top: 150px;
  position: absolute;
  left: -20px;
  z-index: -200 !important;
}

.self-shape-sm {
  background-color: #760ADF;
  opacity: 0.04;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  width: 130vw;
  height: 300px;
  top: 250px;
  position: absolute;
  left: -20px;
  z-index: -200 !important;
}

/* Import all layouts .scss files */
/* Header component */
header {
  padding: 60px 0 50px 0;
  text-align: right;
  background-color: transparent;
}

@media (max-width: 900px) {
  header .desktop-menu {
    display: none;
  }
}

#mobile-right {
  display: none;
  position: fixed;
  top: 40px;
  right: 20px;
  z-index: 999999;
}

@media (max-width: 900px) {
  #mobile-right {
    display: inline-block;
  }
  #mobile-right #mobile-btn {
    color: #35323E;
    font-size: 37px;
    z-index: 99999;
  }
  #mobile-right #mobile-btn:hover {
    cursor: pointer;
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.mobile-menu {
  font-size: 18px;
  z-index: 9999;
  padding: 15px 25px 15px 25px;
  font-weight: 700;
  text-align: center;
  background-color: #35323E;
  z-index: 9999;
  border-radius: 10px;
  margin: 0 auto;
  width: 90%;
  position: fixed;
  left: 5%;
  display: none;
  -webkit-box-shadow: 0 0 400px 0 black;
          box-shadow: 0 0 400px 0 black;
  -webkit-animation: fade-in .3s linear forwards;
  animation: fade-in .3s linear forwards;
}

.mobile-menu li {
  margin: 30px 0;
}

.mobile-menu li a {
  color: white;
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
}

.mobile-menu li a:hover {
  color: #ab5ef6;
  cursor: pointer;
}

.mobile-menu .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu .bottom .cta-btn-mobile {
  color: white;
  font-size: 16px;
  border: 3px solid white;
  padding: 10px 40px;
  border-radius: 50px;
}

.mobile-menu .bottom .cta-btn-mobile:hover {
  color: #35323E;
  background-color: white;
}

.hamburger--slider.is-active .hamburger-inner:before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

footer {
  padding: 3.2rem 0;
  text-align: center;
  background-color: #faf6ff;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
  footer {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
}

footer p {
  color: #35323E;
  margin: 0;
}

@media (max-width: 900px) {
  footer .menu-footer li {
    display: block !important;
    margin-top: 30px !important;
  }
}

@media (max-width: 900px) {
  footer .footer-socials {
    margin-bottom: 20px;
  }
}

footer .footer-socials li {
  margin-bottom: 30px;
}

footer .footer-socials a {
  background: transparent;
  border: 3px solid #35323E;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 46px;
  font-size: 20px;
  display: inline-block;
  color: #35323E !important;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

footer .footer-socials a:hover {
  background: #35323E;
  color: white !important;
}

.sub-footer {
  opacity: 0.95;
  background-color: #f4f0f8;
  text-align: center;
  margin: 0;
  padding: 1.5rem 0;
  -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.08);
}

.sub-footer p {
  font-size: 16px;
  color: #35323E;
  font-weight: 600;
  margin: 0;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 900px) {
  .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
  }
}

.row .col {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  position: relative;
}

.row .col-4 {
  -webkit-box-flex: 33%;
      -ms-flex: 33%;
          flex: 33%;
}

.row .col-3 {
  -webkit-box-flex: 25%;
      -ms-flex: 25%;
          flex: 25%;
}

.row .col-8 {
  -webkit-box-flex: 66%;
      -ms-flex: 66%;
          flex: 66%;
}

@media (max-width: 900px) {
  .row .col,
  .row .col-4,
  .row .col-3,
  .row .col-8 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

section {
  padding: 100px 0;
}

#landing-section,
#projects,
#contact {
  background-color: #FCFCFC;
}

#landing-section {
  padding: 0 0 60px 0;
  min-height: 100vh;
  background: linear-gradient(-45deg, #FCFCFC, #ccc);
  background-size: 400% 400%;
  -webkit-animation: gradient 110s ease infinite;
          animation: gradient 110s ease infinite;
  background-image: url("/images/bg-boost-desktop.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60%;
}

#landing-section .row {
  display: table;
}

@media (max-width: 900px) {
  #landing-section .row {
    display: inline-block;
  }
}

#landing-section #col-left {
  display: table-cell;
  vertical-align: middle;
}

#about {
  position: relative;
}
/*# sourceMappingURL=main.css.map */