/*-----------------------------------------------------------------------------------------*/
/*---------------------------------- 00. VARIABLES ----------------------------------------*/
/*-----------------------------------------------------------------------------------------*/
/*-------------Color-------*/
/*-------------Fonts-------*/
/*-------------Transitions-------*/
/*-------------Animations--------*/
@keyframes fadeIn {
  0% {
    margin-top: -45px;
  }
  100% {
    margin-top: -75px;
  }
}
/* Browser Scrollbar */
body::-webkit-scrollbar {
  width: 8px;
  background-color: #FB5B8B;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
  background-color: #FBFBFE;
}

body::-webkit-scrollbar {
  width: 8px;
  background-color: #FB5B8B;
  border-radius: 100px;
}

body::-webkit-scrollbar-thumb {
  background-color: #FB5B8B;
  border-radius: 100px;
  width: 8px;
}

body#home::-webkit-scrollbar,
body#home::-webkit-scrollbar-thumb,
body#home::-webkit-scrollbar-track,
body#home::-webkit-scrollbar {
  display: none;
}

/*--------------Loader-------------*/
body:before {
  width: 100%;
  height: 100%;
  content: "";
  background: #FBFBFE;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  transition: all 1500ms ease-in-out;
  opacity: 1;
  visibility: visible;
  border-bottom: 1px solid #E4E5F2;
}

body:after {
  font-family: "icomoon";
  content: "\e900";
  font-size: 90px;
  color: #243461;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 122px;
  height: 90px;
  left: 50%;
  top: 50%;
  margin-top: -45px;
  margin-left: -61px;
  transition: all 700ms ease-in-out;
  opacity: 1;
  visibility: visible;
  animation-name: fadeIn;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

body.loaded:after {
  opacity: 0;
  visibility: hidden;
}

body.loaded:before {
  top: -100%;
}

body.hidden {
  overflow: hidden;
}

/*-----------------------------------------------------------------------------------------*/
/*---------------------------------- 01. GENERIC CLASSES ----------------------------------*/
/*-----------------------------------------------------------------------------------------*/
html,
body {
  -webkit-overflow-scrolling: touch;
}

html {
  box-sizing: border-box;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  height: 100%;
}

body {
  /*overflow: hidden;*/
  overflow-y: auto;
}

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

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
hr,
a,
a img,
font,
img,
dd,
dl,
dt,
li,
ol,
ul,
blockquote,
fieldset,
form,
label,
legend,
em,
figure,
caption {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  border: 0 none;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Body-Input-Links */
body {
  width: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding-top: 0px !important;
  position: relative;
  overflow-x: hidden;
  font-size: 16px;
  color: #243461;
  background: #FBFBFE;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

input[type=submit],
a {
  color: inherit;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

::-moz-selection {
  color: #243461;
  background: #E4E5F2;
  opacity: 1;
}

::selection {
  color: #243461;
  background: #E4E5F2;
  opacity: 1;
}

/* column grid */
.g1,
.g2,
.g3,
.g4,
.g5,
.g6,
.g7,
.g8,
.g9,
.g10,
.g11,
.g12 {
  display: block;
  position: relative;
  margin-left: 1%;
  margin-right: 1%;
  float: left;
}

.g12 {
  width: 98%;
}

.g11 {
  width: 89.667%;
}

.g10 {
  width: 81.333%;
}

.g9 {
  width: 73%;
}

.g8 {
  width: 64.667%;
}

.g7 {
  width: 56.333%;
}

.g6 {
  width: 48%;
}

.g5 {
  width: 39.667%;
}

.g4 {
  width: 31.333%;
}

.g3 {
  width: 23%;
}

.g2 {
  width: 14.667%;
}

.g1 {
  width: 6.333%;
}

/* Wrappers */
.fullWrapper {
  width: 100%;
  float: left;
}

.mainWrapper {
  width: 98%;
  margin: 0 auto;
  position: relative;
  height: 100%;
}
.mainWrapper:after {
  content: "";
  position: absolute;
  right: 400px;
  top: 0;
  height: 100%;
  background-color: #E4E5F2;
  width: 1px;
}

.mainWrapper {
  max-width: 1430px;
  border-right: 1px solid #E4E5F2;
}

/* Table Vertical */
.tableWrapper {
  width: 100%;
  height: 100%;
  display: table;
}
.tableWrapper .tableCell {
  vertical-align: middle;
  display: table-cell;
  width: 100%;
  height: 100%;
}

/* Side menu */
#TrackScrollProgress {
  float: left;
  width: 100%;
}

.spt-scrollStopContainer .spt-stopCircle,
.spt-vertScrollStopContainer .spt-stopCircle,
.spt-scrollStopContainer .spt-finalStopCircle,
.spt-vertScrollStopContainer .spt-finalStopCircle {
  width: 9px;
  height: 9px;
  border-width: 2px;
  border-color: #FB5B8B !important;
  left: 2px;
  border: none;
  background: #E4E5F2;
}

.spt-stopCircle {
  transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
}

.spt-stopCircle:hover,
.spt-stopCircle.spt-reached {
  background: #FB5B8B;
}

.spt-verticalScrollProgress .spt-verticalScrollProgressContainer {
  background-color: transparent;
  left: 6px;
}

.spt-verticalScrollProgress .spt-verticalScrollProgressContainer .spt-verticalScrollProgressBar {
  width: 1px;
  border-bottom: none;
  background: #FB5B8B;
  top: -3px;
}

.spt-scrollStopTitles .spt-stopTitle,
.spt-vertScrollStopTitles .spt-stopTitle,
.spt-scrollStopTitles .spt-finalStopTitle,
.spt-vertScrollStopTitles .spt-finalStopTitle {
  font-weight: 700;
  color: #B6BCD4;
  font-size: 11px;
  transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  margin-top: -4px;
  line-height: 17px;
}

.spt-scrollStopTitles .spt-stopTitle.spt-reached,
.spt-vertScrollStopTitles .spt-stopTitle.spt-reached,
.spt-scrollStopTitles .spt-finalStopTitle.spt-reached,
.spt-vertScrollStopTitles .spt-finalStopTitle.spt-reached,
.spt-scrollStopTitles .spt-stopTitle.spt-hover,
.spt-vertScrollStopTitles .spt-stopTitle.spt-hover,
.spt-scrollStopTitles .spt-finalStopTitle.spt-hover,
.spt-vertScrollStopTitles .spt-finalStopTitle.spt-hover {
  color: #243461;
}

.spt-vertScrollStopTitles .spt-stopTitle.spt-hover {
  color: #676188 !important;
}

.spt-vertScrollStopTitles {
  left: 14px;
  width: 170px !important;
}

/* Load animation*/
.spt-verticalScrollProgress {
  z-index: 99999;
  transform: translateX(208px);
  transition: margin ease-in-out 1s;
}

.spt-stopCircle:after {
  content: "01";
  font-family: "bold";
  font-size: 11px;
  color: #e1e1e1;
  left: -27px;
  top: -6px;
  position: absolute;
  transition: all ease-in-out 0.4s;
  -webkit-transition: all ease-in-out 0.4s;
  display: none;
}

.spt-stopCircle:hover:after,
.spt-stopCircle.spt-reached:after {
  color: #FB5B8B;
  left: -26px;
  top: -5px;
}

.spt-finalStopCircle:after,
.spt-stopTitle:after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: -12px;
  top: 3px;
  border: 1px solid #FB5B8B;
  border-radius: 100%;
  transition: all 450ms ease-in-out;
  opacity: 0;
}

.spt-finalStopCircle:after {
  left: 0;
  top: 0;
}

.spt-finalStopCircle.spt-reached:after,
.spt-stopTitle.spt-reached:after {
  left: -21px;
  top: -4px;
  width: 26px;
  height: 26px;
  opacity: 1;
}

.spt-finalStopCircle.spt-reached {
  background: #FB5B8B;
}

.spt-finalStopCircle.spt-reached:after {
  left: -9px;
  top: -8px;
}

.spt-finalStopTitle {
  width: 80px;
  line-height: 11px !important;
  transform: translateY(11px) !important;
}

/* 
.spt-stopCircle.spt-stop2:after {
    content: "02"
}

.spt-stopCircle.spt-stop3:after {
    content: "03"
}

.spt-finalStopCircle:after {
    content: "04"
}
 */
.spt-horizontalScrollProgress {
  display: none !important;
}

.spt-smallDevice.spt-mobileOnly {
  z-index: 6;
  bottom: 0;
  top: auto;
  height: 60px;
  background: #FBFBFE;
  border-top: 1px solid #E4E5F2;
}

/* Cursor */
#cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: #243461;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
}
#cursor.linkHover {
  background-color: #FB5B8B;
}
#cursor.unzoom, #cursor.zoom {
  background-color: #FB5B8B;
}

#cursor-border {
  --size: 50px;
  position: fixed;
  top: calc(var(--size) / -2);
  left: calc(var(--size) / -2);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #243461;
  pointer-events: none;
  transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out, height 0.15s ease-out, background-color 0.15s ease-out;
  z-index: 999;
}
#cursor-border .icon-btnArrow {
  font-size: 77px;
  color: #FB5B8B;
  position: absolute;
  left: 39px;
  margin-left: -5px;
  transform: rotate(-90deg);
  top: -13px;
  opacity: 0;
  transition: all ease-in-out 0.15s;
}
#cursor-border.linkHover {
  --size: 80px;
  box-shadow: 0 0 0 1px #FB5B8B;
}
#cursor-border.linkHover .icon-btnArrow {
  opacity: 1;
  top: 2px;
  left: 80px;
}
#cursor-border.zoom {
  --size: 80px;
  box-shadow: 0 0 0 1px #FB5B8B;
}
#cursor-border.unzoom {
  --size: 30px;
  box-shadow: 0 0 0 1px #FB5B8B;
}

.mouse-cursor-gradient-tracking {
  position: relative;
  border: none;
  cursor: pointer;
  outline: none;
  overflow: hidden;
}

.mouse-cursor-gradient-tracking span {
  position: relative;
}

.mouse-cursor-gradient-tracking::before {
  --size: 0;
  content: "";
  mix-blend-mode: difference;
  position: absolute;
  opacity: 1;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #FBFBFE, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}

.mouse-cursor-gradient-tracking:hover::before {
  --size: 200px;
}

/*----------------------- LoadedAnims ------------------------*/
.loaded #ruler {
  top: -8px;
}
.loaded .helloSection .mainWrapper .scrollBtn {
  animation: moveDown 0.75s normal forwards ease-in-out;
  animation-delay: 2.65s;
}
@keyframes moveDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/*-----------------------------------------------------------------------------------------*/
/*---------------------------------- 00. HOME ---------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/
#ruler {
  width: 75px;
  float: left;
  position: fixed;
  left: calc(50% - 790px);
  top: -300px;
  border-right: 1px solid #E4E5F2;
  z-index: 1;
  transition: all 1500ms ease-in-out;
}
#ruler ul {
  float: left;
  width: 100%;
}
#ruler ul li {
  float: right;
  width: 100%;
  position: relative;
  height: 10px;
  color: #E4E5F2;
  font-weight: 600;
  font-size: 10px;
  text-align: right;
  padding-right: 30px;
}
#ruler ul li:first-child:after {
  width: 20px;
}
#ruler ul li:after {
  content: "";
  width: 10px;
  height: 1px;
  background: #E4E5F2;
  position: absolute;
  right: 0px;
  top: 7px;
}

/* --------- Hello --------*/
.helloSection {
  height: calc(100vh + 1px);
  border-bottom: 1px solid #E4E5F2;
}
.helloSection .mainWrapper {
  padding-left: 100px;
  padding-top: 50px;
}
.helloSection .mainWrapper .logo {
  position: relative;
  float: left;
  width: 100%;
  z-index: 1;
}
.helloSection .mainWrapper .logo .icon-logo {
  font-size: 45px;
  float: left;
}
.helloSection .mainWrapper .logo .icon-logo span {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.1px;
  position: absolute;
  left: 50px;
  top: 5px;
  width: 0px;
  text-transform: uppercase;
  text-align: left;
  transition: all 450ms ease-in-out;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  opacity: 0;
}
.helloSection .mainWrapper .logo .icon-logo span small {
  font-size: 11px;
  font-weight: 600;
  display: block;
  letter-spacing: -0.22px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
}
.helloSection .mainWrapper .logo .icon-logo:hover span {
  left: 85px;
  width: 120px;
  opacity: 1;
}
.helloSection .mainWrapper .scrollBtn {
  width: 150px;
  height: 150px;
  border: 1px solid #FB5B8B;
  border-radius: 100%;
  text-align: center;
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
  padding-top: 67px;
  position: relative;
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: none;
  float: left;
  opacity: 0;
  transform: translateY(-100px);
}
.helloSection .mainWrapper .scrollBtn:after {
  content: "\e901";
  font-family: "icomoon";
  position: absolute;
  left: 50%;
  margin-left: -3px;
  bottom: -10px;
  font-size: 77px;
  font-weight: 100;
  color: #FB5B8B;
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.helloSection .mainWrapper .scrollBtn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #FB5B8B;
  display: block;
  border-radius: 100px;
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
  opacity: 0;
}
.helloSection .mainWrapper .scrollBtn:hover {
  cursor: pointer;
  background: #FB5B8B;
  transform: translateY(-25px);
  box-shadow: 0px 30px 70px -15px #FB5B8B;
  color: #ffffff;
}
.helloSection .mainWrapper .scrollBtn:hover:before {
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  opacity: 1;
}
.helloSection .mainWrapper .scrollBtn:hover:after {
  bottom: -40px;
}
.helloSection .mainWrapper .doubleTitle {
  padding-left: 0;
}
.helloSection .mainWrapper .doubleTitle:after {
  content: "Hello";
}
.helloSection .mainWrapper h2 {
  font-size: 85px;
  line-height: 87px;
  font-weight: 800;
  float: left;
  margin-top: 20px;
  margin-bottom: 17vh;
  width: 80%;
  margin-right: 20%;
  letter-spacing: -5px;
  position: relative;
  z-index: 1;
}
.helloSection .mainWrapper .info {
  float: right;
  margin-top: 62px;
  margin-right: 20%;
  padding-right: 75px;
  position: relative;
  z-index: 1;
}
.helloSection .mainWrapper .info span {
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  float: right;
  color: #B6BCD4;
  margin-left: 100px;
  text-transform: uppercase;
}

#home .hide {
  opacity: 1;
  color: #e4e5f2;
  font-weight: bold;
  font-size: 11px;
  margin-top: -9px;
  margin-left: 30px;
  background: #fbfbfe;
  position: absolute;
  padding: 0 5px;
}

.doubleTitle {
  font-family: "Playfair Display", sans-serif;
  font-size: 40px;
  float: left;
  width: 100%;
  padding-left: 100px;
  letter-spacing: -1px;
  font-weight: 700;
  position: relative;
}
.doubleTitle:after {
  font-family: "Playfair Display", sans-serif;
  font-size: 378px;
  color: #FBFBFE;
  text-shadow: 0px 54px 164px rgba(67, 59, 161, 0.085);
  position: absolute;
  top: -188px;
  left: -300px;
  line-height: 325px;
  z-index: -1;
  letter-spacing: -16px;
}

/* --------- Work --------*/
.workSection .mainWrapper {
  padding-top: 200px;
  display: table;
}
.workSection .mainWrapper .doubleTitle:after {
  content: "Work";
}
.workSection .mainWrapper .allWork {
  float: left;
  width: 100%;
  margin-top: 100px;
}
.workSection .mainWrapper .allWork .workProject {
  float: left;
  width: 100%;
  padding: 100px;
  border-bottom: 1px solid #E4E5F2;
  position: relative;
  z-index: 1;
}
.workSection .mainWrapper .allWork .workProject .leftContent {
  float: left;
  width: 70%;
  position: relative;
  z-index: 1;
  mix-blend-mode: plus-lighter;
}
.workSection .mainWrapper .allWork .workProject .leftContent .preHeader {
  float: left;
  width: 100%;
}
.workSection .mainWrapper .allWork .workProject .leftContent .preHeader span {
  font-size: 15px;
  line-height: 15px;
  float: left;
  position: relative;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 700ms ease-in-out;
}
.workSection .mainWrapper .allWork .workProject .leftContent .preHeader span:first-child:after {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 10px;
  position: relative;
  float: right;
  background: #243461;
  margin: 0 10px;
  top: 6px;
  transition: all 700ms ease-in-out;
}
.workSection .mainWrapper .allWork .workProject .leftContent h4 {
  float: left;
  width: 100%;
  font-size: 85px;
  line-height: 85px;
  letter-spacing: -3.4px;
  font-weight: 600;
  margin-top: 15px;
  mix-blend-mode: difference;
  mix-blend-mode: hard-light;
}
.workSection .mainWrapper .allWork .workProject .leftContent ul {
  float: left;
  width: 100%;
  margin-top: 15px;
}
.workSection .mainWrapper .allWork .workProject .leftContent ul li {
  display: inline-block;
  margin-right: 15px;
  mix-blend-mode: hard-light;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
}
.workSection .mainWrapper .allWork .workProject .rightDate {
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 4.2px;
  font-weight: 600;
  float: right;
  margin-top: 72px;
  mix-blend-mode: plus-lighter;
  position: relative;
  z-index: 1;
}
.workSection .mainWrapper .allWork .workProject:nth-child(3) {
  border-bottom: none;
}
.workSection .mainWrapper .allWork .workProject .follow-img {
  opacity: 0;
  width: 100%;
  margin-top: -90px;
  height: 596px;
  max-width: 400px;
  margin-left: -200px;
  left: 44%;
  top: 0;
  box-sizing: border-box;
  transition: ease 0.2s;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.workSection .mainWrapper .allWork .workProject .follow-img.foreGround {
  z-index: 2;
}
.workSection .mainWrapper .allWork .workProject .follow-img .mouseMoove {
  max-width: 400px;
  margin-left: -200px;
  transition: ease 0.2s;
  position: absolute;
  transform: translate(-50%, -50%);
}
.workSection .mainWrapper .allWork .workProject .follow-img .front {
  left: 22%;
  right: auto;
  mix-blend-mode: normal;
  position: absolute;
  top: 0;
  transition: ease 0.2s;
  transition: left 1.5s;
  z-index: 1;
}
.workSection .mainWrapper .allWork .workProject .follow-img .back {
  mix-blend-mode: hard-light;
  position: absolute;
  top: 0;
  right: 80%;
  left: auto;
  transition: right 2s, height 1s, top 1s;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 300px;
  top: 90px;
}
.workSection .mainWrapper .allWork .workProject .follow-img:after {
  content: "View more";
  font-size: 13px;
  letter-spacing: -0.1px;
  font-weight: 600;
  text-align: center;
  padding-top: 43px;
  border: 1px solid #FB5B8B;
  width: 110px;
  height: 110px;
  position: absolute;
  top: 200px;
  right: -50px;
  z-index: 4;
  border-radius: 100px;
  background: #FB5B8B;
  color: #FBFBFE;
  transition: all 700ms ease-in-out !important;
  box-shadow: 0px 30px 60px -25px #f95e8c;
}
.workSection .mainWrapper .allWork .workProject .follow-img:after:hover {
  background: #243461;
}
.workSection .mainWrapper .allWork .workProject .follow-img:before {
  content: "\e901";
  font-family: "icomoon";
  position: absolute;
  font-size: 77px;
  font-weight: 100;
  color: #FB5B8B;
  transition: all 1000ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
  right: -20px;
  top: 215px;
  transform: rotate(-90deg);
}
.workSection .mainWrapper .allWork .workProject:hover {
  z-index: 10;
}
.workSection .mainWrapper .allWork .workProject:hover .preHeader span {
  letter-spacing: 1.5px;
}
.workSection .mainWrapper .allWork .workProject:hover .preHeader span:after {
  width: 40px !important;
}
.workSection .mainWrapper .allWork .workProject:hover .follow-img {
  opacity: 1;
  left: 52%;
}
.workSection .mainWrapper .allWork .workProject:hover .front {
  left: 45%;
}
.workSection .mainWrapper .allWork .workProject:hover .back {
  right: 5%;
  height: 496px;
  top: 0;
}
.workSection .mainWrapper .allWork .workProject:hover .follow-img:before {
  right: -50px;
}

/* --------- Connect --------*/
.connectSection {
  border-top: 1px solid #E4E5F2;
  overflow: hidden;
}
.connectSection .mainWrapper {
  padding-top: 200px;
  display: table;
  padding-bottom: 150px;
}
.connectSection .mainWrapper .contactInfo {
  width: 80%;
  margin-right: 20%;
  float: left;
  padding-left: 100px;
  margin-top: 60px;
  z-index: 2;
  position: relative;
}
.connectSection .mainWrapper .contactInfo h3 {
  width: 100%;
  float: left;
  font-size: 85px;
  line-height: 85px;
  font-weight: 700;
  letter-spacing: -3.4px;
}
.connectSection .mainWrapper .contactInfo p {
  font-size: 25px;
  font-weight: 300;
  margin-top: 40px;
  line-height: 38px;
  float: left;
  width: 100%;
  padding-right: 200px;
  letter-spacing: -0.5px;
}
.connectSection .mainWrapper .contactInfo ul {
  float: left;
  width: 100%;
  margin-top: 70px;
}
.connectSection .mainWrapper .contactInfo ul li {
  float: left;
  width: auto;
}
.connectSection .mainWrapper .contactInfo ul li a {
  float: left;
  font-size: 35px;
  line-height: 35px;
  transition: all 450ms ease-in-out;
  margin-right: 90px;
  letter-spacing: -1.5px;
  font-weight: 800;
  position: relative;
}
.connectSection .mainWrapper .myClients {
  float: left;
  width: calc(100% - 400px);
  padding-left: 100px;
  margin-top: 100px;
  padding-top: 100px;
  border-top: 1px solid #E4E5F2;
  position: relative;
  z-index: 1;
}
.connectSection .mainWrapper .myClients .photoId {
  position: absolute;
  top: -117px;
  right: -117px;
  width: 234px;
  height: 234px;
  border-radius: 500px;
  border: 1px solid #E4E5F2;
}
.connectSection .mainWrapper .myClients .photoId img {
  width: 100%;
  border-radius: 500px;
}
.connectSection .mainWrapper .myClients .photoId:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 5px;
  background: #FB5B8B;
  top: 80%;
  left: 50%;
  margin-left: -1px;
  animation: mymove 5s infinite;
  z-index: -1;
}
@keyframes mymove {
  0% {
    top: 80%;
    height: 15px;
    opacity: 0.2;
  }
  25% {
    top: 150%;
    height: 400px;
    opacity: 0.4;
  }
  50% {
    top: 230%;
    height: 50px;
    opacity: 0.2;
  }
  75% {
    top: 300%;
    height: 4px;
    opacity: 0;
  }
  100% {
    top: 80%;
    opacity: 0;
  }
}
.connectSection .mainWrapper .myClients h4 {
  float: left;
  width: 100%;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  color: #B6BCD4;
  margin-bottom: 25px;
}
.connectSection .mainWrapper .myClients ul {
  display: table;
  margin-top: 20px;
}
.connectSection .mainWrapper .myClients ul li {
  display: table-cell;
  vertical-align: middle;
}
.connectSection .mainWrapper .myClients ul li img {
  margin-right: 50px;
  transition: all 450ms ease-in-out;
  opacity: 0.5;
}
.connectSection .mainWrapper .myClients ul li img:hover {
  opacity: 1;
}
.connectSection .mainWrapper .signature {
  float: left;
  width: calc(100% - 400px);
  margin-top: 100px;
  position: absolute;
  bottom: 42px;
  left: 100px;
}
.connectSection .mainWrapper .signature:after {
  content: "";
  width: 73px;
  height: 1px;
  background: #FB5B8B;
  left: -100px;
  position: absolute;
  top: 10px;
}
.connectSection .mainWrapper .signature .name {
  transition: all 450ms ease-in-out;
  position: relative;
  display: inline-block;
}
.connectSection .mainWrapper .signature .name .tooltip {
  position: absolute;
  width: 230px;
  font-size: 12px;
  background: #243461;
  color: #E4E5F2;
  text-align: center;
  padding: 8px;
  left: 50%;
  margin-left: -115px;
  top: -30px;
  border-radius: 2px;
  transition: all 450ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.connectSection .mainWrapper .signature .name .tooltip p {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-right: 10px;
}
.connectSection .mainWrapper .signature .name .tooltip button {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: transparent;
  color: #FB5B8B;
  border: 1px solid #FB5B8B;
  border-radius: 2px;
  display: inline-block;
  padding: 3px 8px;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
}
.connectSection .mainWrapper .signature .name .tooltip button:hover {
  background: #FB5B8B;
  color: #E4E5F2;
}
.connectSection .mainWrapper .signature .name .tooltip:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #243461;
  transform: rotate(45deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: -4px;
  z-index: -1;
  border-radius: 2px;
}
.connectSection .mainWrapper .signature .name:hover {
  color: #676188;
}
.connectSection .mainWrapper .signature .name:hover .tooltip {
  visibility: visible;
  opacity: 1;
  top: -50px;
}
.connectSection .mainWrapper .signature span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-right: 10px;
  display: inline-block;
}
.connectSection .mainWrapper .signature small {
  letter-spacing: -1px;
  font-weight: 700;
  font-size: 16px;
  margin-right: 10px;
}
.connectSection .mainWrapper .signature .downloadCV {
  float: right;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  margin-right: 62px;
  position: relative;
  z-index: 2;
  transition: all 300ms ease-in-out;
}
.connectSection .mainWrapper .signature .downloadCV i {
  font-size: 87px;
  font-weight: 100;
  height: 40px;
  display: block;
  overflow: hidden;
  position: absolute;
  bottom: -12px;
  right: -20px;
  transition: all 300ms ease-in-out;
}
.connectSection .mainWrapper .signature .downloadCV i:before {
  position: relative;
  top: -50px;
}
.connectSection .mainWrapper .signature .downloadCV:hover {
  color: #676188;
}
.connectSection .mainWrapper .signature .downloadCV:hover i {
  bottom: -25px;
}
.connectSection .doubleTitle:after {
  content: "Connect";
}

/*-----------------------------------------------------------------------------------------*/
/*---------------------------------- 02. PROJECT ------------------------------------------*/
/*-----------------------------------------------------------------------------------------*/
#project .mainWrapper + .mainWrapper:after {
  display: none;
}
#project #ruler {
  z-index: -1;
}
#project .topMenu {
  position: fixed;
  top: -81px;
  width: 1429px;
  left: 50%;
  margin-left: -715px;
  padding: 30px 100px;
  z-index: 99;
  transition: all 700ms ease-in-out;
  border-bottom: 1px solid transparent;
  opacity: 0;
}
#project .topMenu.animate {
  top: 0;
  opacity: 1;
}
#project .topMenu ul {
  width: 100%;
  float: left;
}
#project .topMenu ul .back {
  float: left;
}
#project .topMenu ul .back a {
  float: left;
}
#project .topMenu ul .back a .icon-back {
  float: left;
  font-size: 20px;
  color: #FB5B8B;
  position: relative;
  top: -3px;
  left: 0;
  transition: all 300ms ease-in-out;
}
#project .topMenu ul .back a span {
  font-size: 13px;
  float: left;
  color: #B6BCD4;
  margin: 0 10px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
}
#project .topMenu ul .back a .icon-logo {
  float: left;
  top: 1px;
  font-size: 14px;
  color: #B6BCD4;
  position: relative;
  transition: all 300ms ease-in-out;
}
#project .topMenu ul .back a:hover span,
#project .topMenu ul .back a:hover .icon-logo {
  color: #676188;
}
#project .topMenu ul .back a:hover i.icon-back {
  left: -10px;
}
#project .topMenu ul .back a:hover i.icon-logo {
  color: #FB5B8B;
}
#project .topMenu ul .btn {
  font-size: 13px;
  float: right;
  color: #B6BCD4;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
}
#project .topMenu ul .btn i {
  font-size: 10px;
  margin-top: 5px;
  transition: all 300ms ease-in-out;
}
#project .topMenu ul .btn.next {
  margin-left: 30px;
}
#project .topMenu ul .btn.next i {
  float: right;
  margin-left: 10px;
}
#project .topMenu ul .btn.next:hover i {
  transform: translateX(10px);
}
#project .topMenu ul .btn.prev {
  margin-right: 13px;
}
#project .topMenu ul .btn.prev i {
  float: left;
  margin-right: 10px;
  transition: all 300ms ease-in-out;
}
#project .topMenu ul .btn.prev:hover i {
  transform: translateX(-10px);
}
#project .topMenu ul .btn.inactive {
  opacity: 0.5;
}
#project .topMenu ul .btn.inactive i:before {
  color: #B6BCD4;
}
#project .topMenu ul .btn.inactive:hover i {
  transform: translateX(0px);
}
#project .topMenu ul .btn a:hover {
  color: #676188;
}
#project .topMenu.hide {
  top: -81px;
}
#project .topMenu.line {
  background: #FBFBFE;
  border-bottom: 1px solid #E4E5F2;
}
#project .bottomLinks .mainWrapper {
  padding: 100px;
  border-top: 1px solid #E4E5F2;
  display: table;
}
#project .bottomLinks .backTop {
  float: left;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
  position: relative;
  font-size: 16px;
  line-height: 16px;
}
#project .bottomLinks .backTop span {
  margin-right: 5px;
}
#project .bottomLinks .backTop i {
  display: inline-block;
  transform: rotate(90deg);
  font-size: 13px;
  top: 0px;
  position: absolute;
  transition: all 300ms ease-in-out;
}
#project .bottomLinks .backTop:hover {
  color: #676188;
  cursor: pointer;
}
#project .bottomLinks .backTop:hover i {
  top: -10px;
}
#project .bottomLinks a {
  float: right;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  transition: all 300ms ease-in-out;
  margin-right: 25px;
  position: relative;
  font-size: 16px;
  line-height: 16px;
  padding-right: 30px;
}
#project .bottomLinks a span {
  margin-right: 10px;
}
#project .bottomLinks a i {
  font-size: 22px;
  position: absolute;
  top: -4px;
  transition: all 300ms ease-in-out;
  right: 0px;
}
#project .bottomLinks a:hover {
  color: #676188;
}
#project .bottomLinks a:hover i {
  right: -10px;
}

.projectSection .mainWrapper {
  padding-left: 100px;
  padding-right: 100px;
  display: table;
  height: auto;
  z-index: 0;
}
.projectSection .mainWrapper:first-child {
  border-bottom: 1px solid #E4E5F2;
  padding-bottom: 100px;
}
.projectSection .mainWrapper + .mainWrapper {
  padding-bottom: 100px;
}
.projectSection .topTitle {
  width: 100%;
  float: left;
  margin-top: 150px;
}
.projectSection .topTitle h1 {
  font-size: 85px;
  line-height: 85px;
  font-weight: 600;
  letter-spacing: -4px;
  float: left;
  width: 75%;
}
.projectSection .topTitle h1 span {
  float: left;
  width: 100%;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.4px;
  margin-top: 15px;
}
.projectSection .topTitle h2 {
  float: left;
  text-align: right;
  width: 25%;
  font-size: 15px;
  line-height: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 32px;
}
.projectSection .projectInfo {
  float: left;
  width: 100%;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.projectSection .projectInfo ul {
  float: left;
  width: 25%;
}
.projectSection .projectInfo ul li {
  float: left;
  width: 100%;
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.5px;
}
.projectSection .projectInfo ul li:first-child {
  color: #B6BCD4;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}
.projectSection .projectInfo.conclude {
  margin-top: 100px;
}
.projectSection .projectInfo.conclude ul {
  width: 31.33%;
  margin-left: 3%;
}
.projectSection .projectInfo.conclude ul li:not(:first-child) {
  line-height: 22px;
  margin-bottom: 15px;
}
.projectSection .projectInfo.conclude ul:first-child {
  margin-left: 0;
}
.projectSection .projectInfo.conclude ul li:last-child {
  margin-bottom: 0;
}
.projectSection .gridImage {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 50px;
  z-index: 1;
  transition: width 500ms, margin 500ms, opacity 500ms, transform 600ms;
}
.projectSection .gridImage img {
  width: 100%;
  float: left;
  position: relative;
  z-index: 1;
  transition: all 500ms;
}
.projectSection .gridImage img.coverImage {
  width: calc(100% + 400px);
  margin-left: -200px;
}
.projectSection .gridImage.fullImage {
  width: calc(100% + 200px);
  margin-left: -100px;
}
.projectSection .gridImage.coverImage {
  width: calc(100% + 400px);
  margin-left: -200px;
}
.projectSection .gridImage.coverImage.hero {
  box-shadow: 0px 160px 240px -230px rgba(0, 2, 79, 0.9294117647);
  margin-bottom: 10vw;
}
.projectSection .gridImage.coverImage.hero:after {
  content: "Work";
  font-family: "Playfair Display", sans-serif;
  font-size: 378px;
  color: #FBFBFE;
  text-shadow: 0px 54px 164px rgba(67, 59, 161, 0.085);
  position: absolute;
  bottom: -250px;
  left: 0;
  font-weight: 800;
  opacity: 0.4;
  line-height: 325px;
  z-index: -1;
  letter-spacing: -16px;
  width: 100%;
  text-align: center;
}
.projectSection h3 {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 200px;
  z-index: -2;
}
.projectSection h3 strong {
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -3.4px;
  font-weight: 700;
  float: left;
  position: relative;
  z-index: 1;
  background: #FBFBFE;
  padding-right: 50px;
}
.projectSection h3 span {
  font-size: 30px;
  line-height: 30px;
  float: right;
  letter-spacing: -2px;
  margin-top: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  background: #FBFBFE;
  padding-left: 50px;
}
.projectSection h3:before {
  content: "";
  width: 130px;
  height: 1px;
  background: #FB5B8B;
  position: absolute;
  left: -164px;
  top: 54%;
  z-index: 1;
}
.projectSection h3:after {
  content: "";
  height: 1px;
  width: 100%;
  background: #E4E5F2;
  top: 54%;
  position: absolute;
  left: 0;
  z-index: 0;
}
.projectSection h4 {
  float: left;
  width: 100%;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 100px;
  text-transform: uppercase;
}
.projectSection p {
  float: left;
  width: 75%;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-top: 25px;
  padding-right: 100px;
}
.projectSection .twoCols {
  float: left;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 100px;
}
.projectSection .twoCols p {
  width: 100%;
  padding-right: 0;
}
.projectSection .twoCols p:first-child {
  margin-top: 0;
}
.projectSection .twoCols .rightCol,
.projectSection .twoCols .leftCol {
  float: left;
  width: 50%;
}
.projectSection .twoCols .rightCol img,
.projectSection .twoCols .leftCol img {
  float: left;
  width: 100%;
}
.projectSection .twoCols .leftCol {
  padding-right: 50px;
}
.projectSection .twoCols h4 {
  margin-top: 50px;
  margin-bottom: 0;
}
.projectSection .theChallenge {
  float: left;
  width: 100%;
  border: 1px solid #E4E5F2;
  margin-top: 200px;
  text-align: center;
  padding: 70px 130px;
  position: relative;
}
.projectSection .theChallenge .icon-challenge {
  position: absolute;
  top: -32px;
  left: 50%;
  margin-left: -60px;
  font-size: 65px;
  background: #FBFBFE;
  width: 120px;
  text-align: center;
}
.projectSection .theChallenge h3 {
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -3.4px;
  font-weight: 700;
  float: left;
  width: 100%;
  margin-top: 0;
  position: relative;
}
.projectSection .theChallenge h3::before, .projectSection .theChallenge h3:after {
  display: none;
}
.projectSection .theChallenge p {
  float: left;
  width: 100%;
  text-align: center;
  padding-right: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 43px;
  font-family: "Playfair Display", sans-serif;
}
.projectSection .theChallenge span {
  display: inline-block;
  border-radius: 100px;
  background: #E6E7EF;
  color: #727B9A;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  padding: 15px 20px;
  margin-top: 60px;
}
.projectSection .theChallenge span i {
  color: #727B9A;
  font-size: 12px;
  margin-left: 5px;
}
.projectSection .videoWrapper {
  width: 100%;
  float: left;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
.projectSection .videoWrapper .extraElement {
  position: absolute;
  left: 0;
  width: 35%;
  z-index: 1;
  top: 33%;
  left: 0;
  text-align: center;
}
.projectSection .videoWrapper .extraElement img {
  max-width: 70%;
}
.projectSection .videoWrapper .extraElement.right {
  right: 0;
  left: auto;
}
.projectSection .videoWrapper:after {
  content: "";
  width: 100%;
  position: absolute;
  top: 7px;
  left: 0;
  background: #E4E5F2;
  height: 1px;
}
.projectSection .videoWrapper video {
  width: 100%;
  position: relative;
  float: left;
}
.projectSection .videoWrapper span {
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  float: left;
  margin-bottom: 15px;
  padding-right: 30px;
  background: #FBFBFE;
  z-index: 1;
}
.projectSection .videoWrapper span i {
  font-size: 15px;
  position: relative;
  color: #FB5B8B;
  float: right;
  margin-left: 10px;
}
.projectSection .twoImages {
  float: left;
  width: 100%;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.projectSection .twoImages img {
  float: left;
  width: calc(50% - 25px);
}
.projectSection .twoImages img:first-child {
  margin-right: 50px;
}
.projectSection .twoImages.three img {
  width: calc(33.33% - 33.4px);
}
.projectSection .twoImages.three img:first-child {
  margin-right: 0;
}
.projectSection .twoImages.three img:first-child + img {
  margin: 0 50px;
}

/*-----------------------------------------------------------------------------------------*/
/*---------------------------------- 00. RESPONSIVE ---------------------------------------*/
/*-----------------------------------------------------------------------------------------*/
@media screen and (max-width: 1660px) {
  .projectSection .gridImage.coverImage {
    width: 130%;
    margin-left: -15%;
  }
}
@media screen and (max-width: 1620px) {
  .mainWrapper {
    max-width: 1310px;
  }
  #project .topMenu {
    width: 1308px;
    margin-left: -654px;
  }
  .spt-verticalScrollProgress.spt-verRight {
    right: 80px;
  }
  #ruler {
    left: calc(50% - 729px);
  }
}
@media screen and (max-width: 1520px) {
  .mainWrapper {
    max-width: 1250px;
  }
  #project .topMenu {
    width: 1248px;
    margin-left: -624px;
  }
  #ruler {
    left: calc(50% - 699px);
  }
  .spt-verticalScrollProgress.spt-verRight {
    right: 110px;
  }
}
@media screen and (max-width: 1439px) {
  .mainWrapper {
    max-width: 1100px;
  }
  .mainWrapper:after {
    right: 330px;
  }
  .projectSection .mainWrapper {
    padding-left: 80px;
    padding-right: 80px;
  }
  #project .topMenu {
    width: 1098px;
    margin-left: -549px;
    padding: 30px 80px;
  }
  #ruler {
    left: calc(50% - 624px);
  }
  .spt-verticalScrollProgress.spt-verRight {
    left: calc(50% + 335px);
    right: auto;
    width: 142px !important;
  }
  .connectSection .mainWrapper .myClients,
  .connectSection .mainWrapper .contactInfo,
  .doubleTitle,
  .helloSection .mainWrapper {
    padding-left: 80px;
  }
  .workSection .mainWrapper .allWork .workProject {
    padding: 80px 55px 80px 80px;
  }
  .connectSection .mainWrapper .myClients {
    padding-top: 80px;
    margin-top: 80px;
  }
  .connectSection .mainWrapper .signature {
    left: 80px;
  }
  .connectSection .mainWrapper .signature {
    width: calc(100% - 320px);
  }
  .connectSection .mainWrapper .myClients .photoId {
    right: -187px;
  }
  .connectSection .mainWrapper .contactInfo ul li a {
    margin-right: 70px;
  }
  .connectSection .mainWrapper .myClients ul li img {
    margin-right: 30px;
  }
  .projectSection .gridImage.coverImage.hero:after {
    font-size: 295px;
    letter-spacing: -11px;
    line-height: 295px;
  }
  .projectSection h3 strong {
    padding-right: 40px;
  }
  .projectSection h3 span {
    padding-left: 40px;
  }
  .projectSection h3:before {
    width: 120px;
    left: -140px;
  }
  #project .bottomLinks .mainWrapper {
    padding: 80px;
  }
  #project .bottomLinks .mainWrapper a {
    margin-right: 0;
  }
}
@media screen and (max-width: 1366px) {
  .mainWrapper:after {
    right: 280px;
  }
  .workSection .mainWrapper .allWork .workProject {
    padding: 80px 30px 80px 80px;
  }
  .connectSection .mainWrapper .myClients .photoId {
    right: -237px;
  }
  .connectSection .mainWrapper .signature:after {
    left: -80px;
    width: 50px;
  }
  .connectSection .mainWrapper .signature {
    width: calc(100% - 267px);
  }
  .helloSection .mainWrapper .info {
    padding-right: 0;
  }
  .projectSection p {
    width: 78%;
    padding-right: 50px;
  }
  .projectSection .gridImage img.coverImage {
    width: calc(100% + 20vw);
    margin-left: -10vw;
  }
}
@media screen and (max-width: 1279px) {
  #cursor-border,
  #cursor {
    display: none;
  }
  .mainWrapper {
    width: calc(100% - 150px);
    max-width: none;
  }
  .mainWrapper:after {
    display: none;
  }
  .workSection .mainWrapper .allWork .workProject .leftContent ul li {
    font-size: 15px;
    line-height: 15px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  #ruler {
    left: 0;
  }
  .connectSection .mainWrapper .contactInfo h3,
  .workSection .mainWrapper .allWork .workProject .leftContent h4,
  .helloSection .mainWrapper h2 {
    font-size: 80px;
    line-height: 80px;
  }
  .spt-verticalScrollProgress.spt-verRight {
    display: none;
  }
  #project .topMenu {
    width: calc(100% - 151px);
    margin-left: 0;
    left: 75px;
  }
  .helloSection .mainWrapper .info {
    padding-right: 0;
  }
  .workSection .mainWrapper .allWork .workProject {
    padding: 80px 310px 80px 80px;
  }
  .workSection .mainWrapper .allWork .workProject .follow-img {
    opacity: 1;
    width: 100%;
    margin-top: 0;
    height: 230px;
    max-width: 230px;
    margin-left: 0;
    right: 80px;
    top: 63px;
    left: auto;
  }
  .workSection .mainWrapper .allWork .workProject .follow-img:after,
  .workSection .mainWrapper .allWork .workProject .follow-img:before {
    display: none;
  }
  .workSection .mainWrapper .allWork .workProject .follow-img .front {
    left: 0;
    right: auto;
    top: 0;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 230px;
  }
  .workSection .mainWrapper .allWork .workProject .rightDate {
    width: 100%;
    margin-top: 30px;
    font-size: 11px;
  }
  .workSection .mainWrapper .allWork .workProject .follow-img .back {
    right: 0;
    left: auto;
    width: 100%;
    height: 230px;
    top: 0;
  }
  .workSection .mainWrapper .allWork .workProject:hover .follow-img {
    left: auto;
  }
  .connectSection .mainWrapper .contactInfo p {
    padding-right: 0;
  }
  .connectSection .mainWrapper .myClients .photoId:after {
    display: none;
  }
  .connectSection .mainWrapper .contactInfo {
    width: 100%;
    padding-right: 80px;
    margin-right: 0;
  }
  .connectSection .mainWrapper .myClients {
    width: 100%;
  }
  .connectSection .mainWrapper .myClients .photoId {
    right: 80px;
  }
  .connectSection .mainWrapper .signature {
    width: calc(100% - 150px);
  }
  #home .hide {
    opacity: 0;
  }
  .projectSection .topTitle h1 {
    font-size: 80px;
    line-height: 80px;
  }
  .projectSection .gridImage.coverImage.hero:after {
    font-size: 265px;
    bottom: -225px;
    line-height: 265px;
  }
  /* Tracker */
  .spt-smallDevice.spt-scrollProgress,
  .spt-smallDevice.spt-scrollProgressContainer,
  .spt-smallDevice.spt-scrollStopContainer,
  .spt-smallDevice.spt-scrollStopTitles {
    height: 1px;
  }
  .spt-scrollStopContainer .spt-stopCircle {
    top: -5px;
  }
  .spt-smallDevice.spt-scrollStopContainer .spt-finalStopCircle {
    left: auto;
    top: -6px;
  }
  .connectSection .mainWrapper .signature .downloadCV {
    margin-right: 20px;
  }
  .spt-scrollStopContainer .spt-stopCircle,
  .spt-vertScrollStopContainer .spt-stopCircle,
  .spt-scrollStopContainer .spt-finalStopCircle,
  .spt-vertScrollStopContainer .spt-finalStopCircle {
    color: transparent !important;
  }
  .spt-horizontalScrollProgress .spt-smallDevice .spt-stopCircle:after {
    content: "";
    width: 9px;
    height: 9px;
    position: absolute;
    left: 0px;
    top: 0px;
    border: 1px solid #FB5B8B;
    border-radius: 100%;
    transition: all 450ms ease-in-out;
    opacity: 0;
    display: block;
  }
  .spt-horizontalScrollProgress .spt-smallDevice .spt-stopCircle.spt-reached:after {
    opacity: 1;
    width: 25px;
    height: 25px;
    top: -8px;
    left: -8px;
  }
  .spt-finalStopCircle.spt-reached:after,
  .spt-stopTitle.spt-reached:after {
    display: none;
  }
  .spt-scrollStopTitles .spt-stopTitle.spt-reached,
  .spt-vertScrollStopTitles .spt-stopTitle.spt-reached,
  .spt-scrollStopTitles .spt-finalStopTitle.spt-reached,
  .spt-vertScrollStopTitles .spt-finalStopTitle.spt-reached,
  .spt-scrollStopTitles .spt-stopTitle.spt-hover,
  .spt-vertScrollStopTitles .spt-stopTitle.spt-hover,
  .spt-scrollStopTitles .spt-finalStopTitle.spt-hover,
  .spt-vertScrollStopTitles .spt-finalStopTitle.spt-hover {
    margin-left: 20px !important;
    margin-top: 42px !important;
    opacity: 0;
  }
  .spt-smallDevice.spt-mobileOnly {
    padding-left: 25px;
    padding-right: 25px;
  }
  .spt-stopCircle:before {
    position: absolute;
    font-size: 10px;
    top: 16px;
    color: #B6BCD4;
    left: 50%;
    width: 50px;
    margin-left: -25px;
    font-weight: 700;
  }
  .spt-stopCircle.spt-stop1:before {
    content: "Hello";
  }
  .spt-stopCircle.spt-stop2:before {
    content: "Work";
  }
  .spt-stopCircle.spt-stop3:before {
    content: "Connect";
  }
  .spt-finalStopCircle:before {
    content: "Resume";
    display: block !important;
    opacity: 1;
    position: absolute;
    font-size: 10px;
    top: 16px;
    color: #B6BCD4;
    left: 50%;
    width: 50px;
    margin-left: -25px;
    font-weight: 700;
  }
  .spt-finalStopCircle.spt-reached:before,
  .spt-stopCircle.spt-reached:before {
    color: #243461 !important;
  }
  /*End Tracker*/
}
@media screen and (max-width: 1100px) {
  .connectSection .mainWrapper .contactInfo h3,
  .workSection .mainWrapper .allWork .workProject .leftContent h4,
  .helloSection .mainWrapper h2 {
    font-size: 70px;
    line-height: 70px;
  }
  .helloSection .mainWrapper h2 {
    width: 100%;
    margin-right: 0;
    padding-right: 80px;
  }
  .helloSection .mainWrapper .info span {
    margin-left: 50px;
  }
  .connectSection .mainWrapper .myClients {
    padding-top: 170px;
    margin-top: 150px;
    padding-right: 80px;
  }
  .connectSection .mainWrapper .myClients ul li {
    text-align: center;
  }
  .connectSection .mainWrapper .myClients ul li img {
    margin-right: 0;
  }
  .connectSection .mainWrapper .myClients h4 {
    text-align: center;
  }
  .connectSection .mainWrapper .myClients .photoId {
    right: 50%;
    margin-right: -117px;
  }
  .connectSection .mainWrapper .myClients ul {
    width: 100%;
  }
  .connectSection .mainWrapper .contactInfo ul {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .helloSection .mainWrapper .info {
    margin-right: 0;
    padding-right: 80px;
  }
  .projectSection .topTitle h1 {
    font-size: 70px;
    line-height: 70px;
  }
  .projectSection .topTitle h2 {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 3px;
    margin-top: 29px;
  }
  .projectSection .theChallenge h3,
  .projectSection h3 strong {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -3px;
  }
  .projectSection h3 span {
    font-size: 25px;
    line-height: 25px;
    margin-top: 16px;
  }
  .projectSection p {
    width: 100%;
    padding-right: 0;
  }
  .projectSection .twoCols .leftCol {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }
  .projectSection .twoCols .rightCol {
    width: 100%;
  }
  .projectSection .twoCols .rightCol img {
    height: 60vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .projectSection .twoImages img {
    width: calc(50% - 12px);
  }
  .projectSection .twoImages img:first-child {
    margin-right: 24px;
  }
  .projectSection .twoImages.three img:first-child + img {
    margin: 0 24px;
  }
  .projectSection .twoImages.three img {
    width: calc(33.33% - 16.4px);
  }
}
@media screen and (max-width: 980px) {
  .connectSection .mainWrapper .contactInfo h3,
  .workSection .mainWrapper .allWork .workProject .leftContent h4,
  .helloSection .mainWrapper h2 {
    font-size: 60px;
    line-height: 60px;
  }
  .helloSection .mainWrapper h2 {
    margin-bottom: 50px;
  }
  .projectSection .mainWrapper {
    padding-left: 50px;
    padding-right: 50px;
  }
  .workSection .mainWrapper .allWork .workProject .leftContent .preHeader span {
    font-size: 12px;
  }
  .connectSection .mainWrapper .contactInfo ul li a {
    font-size: 30px;
    line-height: 30px;
  }
  .workSection .mainWrapper .allWork .workProject {
    padding: 50px 280px 50px 50px;
  }
  .connectSection .mainWrapper .myClients,
  .connectSection .mainWrapper .contactInfo,
  .doubleTitle,
  .helloSection .mainWrapper {
    padding-left: 50px;
  }
  .helloSection .mainWrapper h2 {
    padding-right: 50px;
  }
  .workSection .mainWrapper .allWork .workProject .follow-img {
    right: 50px;
    top: 36px;
  }
  .connectSection .mainWrapper .contactInfo {
    padding-right: 50px;
  }
  .connectSection .mainWrapper .myClients {
    padding-right: 50px;
  }
  #project .topMenu {
    padding: 30px 50px;
  }
  .projectSection .topTitle h1 {
    font-size: 60px;
    line-height: 60px;
  }
  .projectSection .topTitle h1 span {
    font-size: 22px;
    line-height: 22px;
  }
  .projectSection .gridImage.coverImage.hero:after {
    font-size: 225px;
    bottom: -174px;
    line-height: 225px;
    letter-spacing: -7px;
  }
  .projectSection .gridImage.coverImage.hero {
    box-shadow: 0px 140px 170px -100px rgba(0, 2, 79, 0.23);
  }
  .projectSection .theChallenge h3,
  .projectSection h3 strong {
    font-size: 42px;
    line-height: 42px;
    letter-spacing: -2.3px;
    padding-right: 25px;
  }
  .projectSection .theChallenge h3 {
    padding-right: 0;
  }
  .projectSection .theChallenge p {
    font-size: 25px;
  }
  .projectSection h3 span {
    font-size: 22px;
    line-height: 22px;
    margin-top: 12px;
    letter-spacing: -1px;
    padding-left: 25px;
  }
  .projectSection h3:before {
    width: 56px;
    left: -78px;
  }
  .projectSection h4 {
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 3px;
  }
  #project .bottomLinks .mainWrapper {
    padding: 50px;
  }
}
@media screen and (max-width: 900px) {
  #ruler {
    display: none;
  }
  .mainWrapper {
    border-left: 1px solid #E4E5F2;
    width: calc(100% - 70px);
  }
  #project .topMenu {
    width: calc(100% - 72px);
    margin-left: 0;
    left: 36px;
  }
  .projectSection .gridImage.coverImage {
    width: calc(100% + 100px);
    margin-left: -50px;
  }
  .projectSection .topTitle h1 {
    width: 70%;
  }
  .projectSection .topTitle h2 {
    width: 30%;
    font-size: 12px;
    margin-top: 26px;
    letter-spacing: 2.5px;
  }
  .projectSection .projectInfo {
    margin-top: 0;
  }
  .projectSection .projectInfo:not(.conclude) ul {
    width: 49%;
    margin-top: 50px;
    display: inline-block;
    vertical-align: top;
    float: none;
  }
  .projectSection h3 {
    margin-top: 150px;
  }
  .projectSection .twoCols,
  .projectSection h4 {
    margin-top: 75px;
  }
  .projectSection .theChallenge {
    padding: 70px;
  }
  .projectSection .gridImage img.coverImage {
    width: calc(100% + 10vw);
    margin-left: -5vw;
  }
}
@media screen and (max-width: 768px) {
  .connectSection .mainWrapper .contactInfo h3,
  .workSection .mainWrapper .allWork .workProject .leftContent h4,
  .helloSection .mainWrapper h2 {
    font-size: 50px;
    line-height: 50px;
  }
  .helloSection .mainWrapper h2 {
    letter-spacing: -3px;
  }
  .doubleTitle {
    font-size: 30px;
    line-height: 30px;
  }
  .doubleTitle:after {
    font-size: 230px;
    top: -132px;
    left: -80px;
    line-height: 230px;
  }
  .helloSection .mainWrapper .info span {
    font-size: 12px;
    line-height: 14px;
  }
  .connectSection .mainWrapper .myClients ul {
    width: 100%;
  }
  .connectSection .mainWrapper .contactInfo p {
    font-size: 20px;
    line-height: 28px;
  }
  .projectSection .topTitle h1 {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -3px;
  }
  .projectSection .topTitle h1 span {
    font-size: 17px;
    line-height: 17px;
    margin-bottom: 20px;
    letter-spacing: 0;
    margin-top: 10px;
  }
  .workSection .mainWrapper .allWork .workProject .leftContent h4 {
    letter-spacing: -2.5px;
  }
  .projectSection .theChallenge h3,
  .projectSection h3 strong {
    font-size: 34px;
    line-height: 34px;
    letter-spacing: -2px;
  }
  .projectSection .theChallenge p {
    font-size: 20px;
    line-height: 30px;
  }
  .projectSection h3 span {
    font-size: 18px;
    line-height: 18px;
    margin-top: 7px;
  }
  .projectSection h3 {
    margin-top: 100px;
  }
  .projectSection h4 {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 2.5px;
    margin-top: 75px;
  }
  .projectSection .twoCols {
    margin-top: 50px;
  }
  .projectSection p {
    font-size: 18px;
    line-height: 28px;
  }
  .projectSection .mainWrapper + .mainWrapper {
    padding-bottom: 100px;
  }
  .projectSection .twoImages img {
    width: 100%;
    margin-top: 50px;
  }
  .projectSection .twoImages img:first-child {
    margin: 0;
  }
  .projectSection .twoImages.three img {
    width: 100%;
  }
  .projectSection .twoImages.three img:first-child + img {
    margin-left: 0;
    margin-right: 0;
    margin-top: 50px;
  }
  .projectSection .projectInfo.conclude ul {
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
  }
  .projectSection .projectInfo.conclude ul:first-child {
    margin-top: 0;
  }
  .projectSection .projectInfo.conclude {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .workSection .mainWrapper .allWork .workProject {
    padding: 75vw 50px 50px 50px;
  }
  .workSection .mainWrapper .allWork .workProject .follow-img {
    right: auto;
    left: 50px;
    width: calc(100% - 100px);
    max-width: none;
    height: 60vw;
    margin-top: 0;
    top: 50px;
  }
  .workSection .mainWrapper .allWork .workProject .follow-img .front {
    top: 0;
    width: 100%;
    height: 60vw;
  }
  .workSection .mainWrapper .allWork .workProject .follow-img .back {
    height: 60vw;
    width: 100%;
    top: 0;
  }
  .workSection .mainWrapper .allWork .workProject .leftContent {
    width: 100%;
  }
  .connectSection .mainWrapper .myClients ul {
    display: block;
    margin-top: 0px;
  }
  .connectSection .mainWrapper .myClients ul li {
    width: 49%;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
  }
  .connectSection .mainWrapper .contactInfo ul {
    text-align: center;
  }
  .connectSection .mainWrapper .contactInfo ul li {
    float: none;
    display: inline-block;
  }
  .connectSection .mainWrapper .contactInfo ul li a {
    font-size: 25px;
    display: inline-block;
    line-height: 25px;
    margin: 0 25px;
  }
  .connectSection .mainWrapper .signature {
    width: calc(100% - 100px);
    left: 50px;
  }
  .connectSection .mainWrapper .signature:after {
    width: 30px;
    left: -50px;
  }
  .helloSection .mainWrapper .scrollBtn {
    width: 120px;
    height: 120px;
    padding-top: 54px;
    font-size: 13px;
    line-height: 13px;
  }
  .helloSection .mainWrapper .info {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
  }
  .helloSection .mainWrapper .info span {
    text-align: left;
    float: left;
    margin-left: 0;
    margin-right: 50px;
  }
  .helloSection .mainWrapper .scrollBtn {
    margin-top: 15vw;
  }
  .helloSection .mainWrapper h2 {
    margin-bottom: 30px;
  }
  .helloSection .mainWrapper .info {
    padding-right: 50px;
  }
  .projectSection .gridImage.coverImage.hero:after {
    font-size: 195px;
    bottom: -155px;
    line-height: 195px;
  }
  #project .bottomLinks a,
  #project .bottomLinks .backTop span {
    font-size: 13px;
    line-height: 13px;
  }
  #project .bottomLinks a i {
    font-size: 18px;
    top: -3px;
    right: 10px;
  }
  #project .bottomLinks .backTop i {
    font-size: 10px;
    top: 2px;
  }
  #project .bottomLinks a:hover i {
    right: 0px;
  }
}
@media screen and (max-width: 640px) {
  .connectSection .mainWrapper .contactInfo ul li {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .connectSection .mainWrapper .contactInfo ul li a {
    float: none;
  }
  .projectSection .mainWrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .connectSection .mainWrapper .myClients ul li {
    width: 100%;
  }
  .connectSection .mainWrapper .signature .downloadCV {
    position: absolute;
    left: 50%;
    width: 76px;
    margin-left: -52px;
    top: -100px;
  }
  .connectSection .mainWrapper {
    padding-bottom: 200px;
  }
  .connectSection .mainWrapper .signature a + span {
    float: right;
    margin-right: 0;
    position: relative;
    top: 3px;
  }
  .connectSection .mainWrapper .signature span {
    font-size: 12px;
    margin-right: 5px;
  }
  .connectSection .mainWrapper .signature small {
    font-size: 14px;
  }
  .connectSection .mainWrapper .contactInfo h3,
  .workSection .mainWrapper .allWork .workProject .leftContent h4,
  .helloSection .mainWrapper h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .doubleTitle {
    font-size: 24px;
    line-height: 24px;
  }
  .helloSection .mainWrapper .logo .icon-logo {
    font-size: 35px;
  }
  .mainWrapper {
    width: calc(100% - 50px);
  }
  .connectSection .mainWrapper .myClients,
  .connectSection .mainWrapper .contactInfo,
  .doubleTitle,
  .helloSection .mainWrapper {
    padding-left: 25px;
  }
  .helloSection .mainWrapper h2 {
    padding-right: 25px;
  }
  .workSection .mainWrapper .allWork .workProject {
    padding: 71vw 25px 25px 25px;
  }
  .workSection .mainWrapper .allWork .workProject .follow-img {
    left: 25px;
    width: calc(100% - 50px);
    top: 25px;
  }
  .connectSection .mainWrapper .myClients h4 {
    font-size: 12px;
  }
  .connectSection .mainWrapper .contactInfo p {
    font-size: 16px;
    line-height: 24px;
  }
  .connectSection .mainWrapper .contactInfo h3 {
    letter-spacing: -1.5px;
  }
  .workSection .mainWrapper .allWork .workProject .rightDate {
    letter-spacing: 2.2px;
  }
  .connectSection .mainWrapper,
  .workSection .mainWrapper {
    padding-top: 120px;
  }
  #TrackScrollProgress {
    overflow: hidden;
  }
  .helloSection .mainWrapper .info {
    padding-right: 25px;
  }
  .helloSection .mainWrapper .info span {
    margin-right: 20px;
  }
  .helloSection .mainWrapper .doubleTitle {
    white-space: nowrap;
  }
  #project .topMenu {
    width: calc(100% - 52px);
    margin-left: 0;
    left: 26px;
    padding: 30px 25px;
  }
  #project .topMenu ul .btn.prev {
    margin-right: 0;
  }
  .projectSection .gridImage.coverImage {
    width: calc(100% + 50px);
    margin-left: -25px;
  }
  .projectSection .topTitle h1 {
    font-size: 40px;
    line-height: 40px;
    width: 100%;
  }
  .projectSection .gridImage.coverImage.hero {
    box-shadow: 0px 160px 170px -100px rgba(0, 2, 79, 0.17);
  }
  .projectSection .gridImage.coverImage.hero:after {
    font-size: 125px;
    bottom: -92px;
    line-height: 125px;
    text-shadow: 0px 54px 164px rgba(67, 59, 161, 0.31);
  }
  .projectSection .topTitle h2 {
    width: 100%;
    font-size: 12px;
    margin-top: 15px;
    text-align: left;
    line-height: 12px;
  }
  .projectSection .projectInfo ul li:first-child {
    font-size: 11px;
    line-height: 11px;
    margin-bottom: 0;
  }
  .projectSection .projectInfo ul li {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: -0.15px;
  }
  .projectSection .projectInfo:not(.conclude) ul {
    height: 96px;
  }
  .projectSection .theChallenge h3,
  .projectSection h3 strong {
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -1.5px;
    padding-right: 12.5px;
  }
  .projectSection .theChallenge h3 {
    padding-right: 0;
  }
  .projectSection h3 span {
    font-size: 16px;
    line-height: 15px;
    margin-top: 6px;
    padding-left: 12.5px;
  }
  .projectSection h3:before {
    width: 30px;
    left: -41px;
  }
  .projectSection .gridImage.hero {
    margin-bottom: 15vw;
  }
  .projectSection h4 {
    font-size: 18px;
    line-height: 18px;
  }
  .projectSection p {
    font-size: 16px;
    line-height: 26px;
  }
  #project .bottomLinks .mainWrapper {
    padding: 25px;
  }
  .projectSection .twoCols,
  .projectSection h4 {
    margin-top: 50px;
  }
  .projectSection .twoImages.three img:first-child + img,
  .projectSection .twoImages img,
  .projectSection .threeImages,
  .projectSection .twoImages,
  .projectSection .twoCols,
  .projectSection .gridImage,
  .projectSection .videoWrapper {
    margin-top: 25px;
  }
  .projectSection .videoWrapper span {
    font-size: 12px;
  }
  .projectSection .theChallenge {
    padding: 50px;
  }
  .projectSection .theChallenge .icon-challenge {
    top: -25px;
    margin-left: -50px;
    font-size: 50px;
    width: 100px;
  }
  .projectSection .theChallenge span {
    font-size: 12px;
    line-height: 12px;
    margin-top: 40px;
  }
  .projectSection .gridImage img.coverImage {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .connectSection .mainWrapper .contactInfo h3,
  .workSection .mainWrapper .allWork .workProject .leftContent h4,
  .helloSection .mainWrapper h2 {
    font-size: 45px;
    line-height: 44px;
  }
  .workSection .mainWrapper .allWork .workProject .leftContent .preHeader span:first-child:after {
    width: 20px;
  }
  .workSection .mainWrapper .allWork .workProject:hover .preHeader span:after {
    width: 30px !important;
  }
  .connectSection .mainWrapper .signature {
    white-space: nowrap;
  }
  .connectSection .mainWrapper .signature span {
    margin-right: 0;
  }
  .workSection .mainWrapper .allWork .workProject .leftContent ul li {
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .doubleTitle:after {
    font-size: 180px;
    top: -102px;
    left: -80px;
    line-height: 180px;
    letter-spacing: -5px;
  }
  #project .topMenu ul .btn a {
    font-size: 0;
  }
  #project .topMenu .back span strong,
  #project .topMenu .back .icon-logo {
    display: none;
  }
  #project .topMenu {
    padding: 20px 25px;
  }
  #project .topMenu.hide {
    top: -62px;
  }
  .projectSection .topTitle h1 {
    font-size: 45px;
    line-height: 45px;
  }
  .projectSection .gridImage.coverImage.hero:after {
    text-shadow: 0px 54px 164px rgba(67, 59, 161, 0.23);
  }
  .projectSection .theChallenge h3,
  .projectSection h3 strong {
    font-size: 25px;
    line-height: 25px;
    letter-spacing: -1.2px;
  }
  .projectSection h3 span {
    font-size: 14px;
    line-height: 14px;
    margin-top: 6px;
    letter-spacing: -0.5px;
  }
  .projectSection h4 {
    font-size: 16px;
    line-height: 16px;
  }
  .projectSection p {
    font-size: 14px;
    line-height: 24px;
  }
  .projectSection .theChallenge {
    padding: 50px 25px;
  }
  .projectSection .theChallenge p {
    font-size: 18px;
    line-height: 28px;
  }
  #project .topMenu ul li.btn.inactive {
    font-size: 0;
  }
}
@media screen and (max-width: 414px) {
  .connectSection .mainWrapper .contactInfo h3,
  .workSection .mainWrapper .allWork .workProject .leftContent h4,
  .helloSection .mainWrapper h2 {
    font-size: 32px;
    line-height: 32px;
  }
  .helloSection .mainWrapper h2 {
    letter-spacing: -2px;
  }
  .workSection .mainWrapper .allWork .workProject .leftContent h4 {
    letter-spacing: -1.5px;
  }
  .helloSection .mainWrapper .info span {
    width: 100%;
    margin-bottom: 10px;
  }
  .helloSection .mainWrapper .info span {
    font-size: 11px;
    line-height: 12px;
  }
  .projectSection .topTitle h1 {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -1.5px;
  }
  .projectSection .gridImage.coverImage.hero:after {
    font-size: 95px;
    bottom: -69px;
    line-height: 95px;
    letter-spacing: -3px;
  }
  .projectSection .projectInfo ul {
    width: 100%;
    margin-top: 25px;
    height: auto;
  }
}
@media screen and (max-width: 408px) {
  .connectSection .mainWrapper .signature a + span {
    width: 100%;
    text-align: center;
    top: 13px;
  }
  .helloSection .mainWrapper .scrollBtn {
    width: 100px;
    height: 100px;
    padding-top: 44px;
    font-size: 12px;
    line-height: 12px;
  }
  .projectSection h3 span {
    float: left;
    width: 100%;
    padding-left: 0;
    background: transparent;
    position: absolute;
    left: 0;
    top: -25px;
  }
  .projectSection h3:after {
    width: calc(100% + 25px);
  }
}
/* Height Queries */
@media screen and (min-width: 1100px) and (max-height: 880px) {
  .helloSection .mainWrapper h2 {
    margin-bottom: 8vh;
  }
}
@media screen and (min-width: 1100px) and (max-height: 780px) {
  .helloSection .tableWrapper .tableCell {
    padding-bottom: 70px;
  }
  .helloSection .mainWrapper h2 {
    margin-top: 10px;
    margin-bottom: 5vh;
  }
}
@media screen and (min-width: 1100px) and (max-height: 680px) {
  .helloSection {
    min-height: 830px;
  }
  .helloSection .mainWrapper h2 {
    margin-bottom: 50px;
  }
  .helloSection .mainWrapper .tableWrapper .tableCell {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 414px) and (max-height: 700px) {
  .helloSection .tableWrapper {
    height: 90%;
  }
}
.underCon {
  height: 100vh;
}
.underCon .tableWrapper {
  height: 96%;
}
.underCon .doubleTitle {
  display: none;
}
.underCon h2 span {
  font-size: 25px;
  line-height: 30px;
  float: left;
  width: 100%;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 100px;
  position: relative;
  padding-left: 70px;
}
.underCon h2 span:after {
  width: 50px;
  height: 1px;
  background-color: #FB5B8B;
  position: absolute;
  left: 0;
  top: 14px;
  content: "";
}
.underCon h2:hover {
  cursor: normal;
}
.underCon .info {
  display: none;
}/*# sourceMappingURL=main.css.map */