2021-05-24 13:38:13 +00:00
|
|
|
html {
|
|
|
|
width: 100%;
|
|
|
|
overflow-x: hidden;
|
|
|
|
font-display: swap;
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: Poppins, Helvetica;
|
|
|
|
font-display: swap;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 1.5;
|
|
|
|
color: #222;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*................................................... Body */
|
|
|
|
|
|
|
|
body {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
margin: 0px;
|
|
|
|
overflow: hidden;
|
2021-05-26 06:34:47 +00:00
|
|
|
/*background-color: #B8FFE1;*/
|
2021-05-24 13:38:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
width: 100%;
|
|
|
|
padding: 20px 40px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2021-05-25 21:07:56 +00:00
|
|
|
position: relative;
|
|
|
|
z-index: 1000;
|
2021-05-24 13:38:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
section {
|
|
|
|
display: flex;
|
2021-05-26 06:34:47 +00:00
|
|
|
flex-direction: column;
|
2021-05-24 13:38:13 +00:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 60px 40px;
|
2021-05-25 20:30:40 +00:00
|
|
|
position: relative;
|
2021-05-24 13:38:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*................................................... Text */
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #222222;
|
|
|
|
border-bottom: 2px solid #222222;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
border-bottom: 4px solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2021-05-25 17:12:04 +00:00
|
|
|
font-size: 64px;
|
2021-05-24 13:38:13 +00:00
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
color: inherit;
|
|
|
|
font-weight: 700;
|
|
|
|
width: 100%;
|
|
|
|
line-height: 1.2;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 36px;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
color: #252132;
|
|
|
|
font-weight: 700;
|
|
|
|
width: 100%;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2021-05-24 22:29:55 +00:00
|
|
|
font-size: 24px;
|
2021-05-24 13:38:13 +00:00
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
color: inherit;
|
|
|
|
text-align: inherit;
|
|
|
|
width: 100%;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 18px;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
color: inherit;
|
|
|
|
width: 100%;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.5;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
color: #48494e;
|
|
|
|
width: 100%;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*................................................... Interactives */
|
|
|
|
|
|
|
|
button {
|
|
|
|
border: none;
|
|
|
|
background-color: black;
|
|
|
|
padding: 10px 20px;
|
|
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
|
|
|
background-color: darkblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
input, textarea {
|
|
|
|
padding: 15px;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid rgba(0,0,0,0.2);
|
|
|
|
margin-bottom: 15px;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus {
|
|
|
|
border: 1px solid blue;
|
|
|
|
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-05-25 10:23:13 +00:00
|
|
|
/*................................................... General classes and IDs */
|
2021-05-24 13:38:13 +00:00
|
|
|
.container-1200px {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 1200px;
|
|
|
|
display: flex;
|
2021-05-24 22:29:55 +00:00
|
|
|
align-items: flex-start;
|
|
|
|
position: relative;
|
2021-05-24 13:38:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.column-50 {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 50%;
|
2021-05-25 20:30:40 +00:00
|
|
|
position: relative;
|
2021-05-24 13:38:13 +00:00
|
|
|
}
|
|
|
|
|
2021-05-25 10:23:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*................................................... Nav */
|
2021-05-24 13:38:13 +00:00
|
|
|
.nav-link-block {
|
|
|
|
font-size: 30px;
|
|
|
|
font-weight: 800;
|
2021-05-26 06:52:50 +00:00
|
|
|
opacity: .6;
|
|
|
|
transition: all .3s ease-out;
|
2021-05-26 06:34:47 +00:00
|
|
|
|
2021-05-24 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link-block:hover {
|
2021-05-26 06:52:50 +00:00
|
|
|
opacity: 1;
|
2021-05-24 13:38:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.navlink-li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navlink {
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-subtext {
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-cta-button {
|
|
|
|
border: 3px solid transparent;
|
2021-05-25 19:14:25 +00:00
|
|
|
transition: all .3s ease-out;
|
2021-05-24 13:38:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-cta-button:hover {
|
|
|
|
border: 3px solid black;
|
|
|
|
background-color: white;
|
|
|
|
color: black;
|
|
|
|
padding: 10px 25px;
|
|
|
|
}
|
|
|
|
|
2021-05-25 10:23:13 +00:00
|
|
|
.hamburger {
|
|
|
|
display: none;
|
|
|
|
cursor: pointer;
|
2021-05-26 06:52:50 +00:00
|
|
|
transition: all .3s ease-out;
|
2021-05-25 10:23:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hamburger-line {
|
|
|
|
width: 30px;
|
|
|
|
height: 3px;
|
|
|
|
background-color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*................................................... Hero Section */
|
2021-05-25 19:14:25 +00:00
|
|
|
|
2021-05-26 13:16:53 +00:00
|
|
|
section.hero-section {
|
|
|
|
padding: 0px 40px 40px 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.my-name {
|
|
|
|
color: #222;
|
|
|
|
padding: 0px;
|
|
|
|
font-size: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body-bg {
|
|
|
|
position: fixed;
|
|
|
|
z-index: -1;
|
|
|
|
width: 100%;
|
|
|
|
opacity: .5;
|
|
|
|
min-height: 100vh;
|
|
|
|
background-image: url("images/stone-wall-bg.jpg");
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wavy-line {
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
top: 350px;
|
|
|
|
left: 0;
|
|
|
|
opacity: .5;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body-bg.gradient {
|
|
|
|
/*background-image: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0));*/
|
|
|
|
}
|
|
|
|
|
2021-05-25 19:14:25 +00:00
|
|
|
.hero-content-container {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2021-05-25 20:30:40 +00:00
|
|
|
.hero-ctas-block {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
2021-05-26 06:50:09 +00:00
|
|
|
.hero-content-link {
|
|
|
|
color: rgba(0,0,0,0.4);
|
|
|
|
transition: all .3s ease-out;
|
|
|
|
border-bottom: 2px solid rgba(0,0,0,0.4);
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero-content-link:hover {
|
|
|
|
background-color: #222222;
|
|
|
|
color: white;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2021-05-25 20:30:40 +00:00
|
|
|
.main-cta-button {
|
|
|
|
margin: 0;
|
|
|
|
border: 3px solid #333;
|
2021-05-26 06:50:09 +00:00
|
|
|
background-color: #fff;
|
2021-05-25 20:30:40 +00:00
|
|
|
color: #222;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 600;
|
|
|
|
transition: all .3s ease-out;
|
|
|
|
padding: 15px 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-cta-button:hover {
|
|
|
|
background-color: #222;
|
|
|
|
color: white;
|
|
|
|
padding: 15px 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.linkedin-link {
|
|
|
|
border: none;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
2021-05-25 20:49:37 +00:00
|
|
|
margin-right: 20px;
|
2021-05-25 20:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.linkedin-link:hover {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2021-05-26 13:16:53 +00:00
|
|
|
|
2021-05-24 13:38:13 +00:00
|
|
|
|
2021-05-24 22:29:55 +00:00
|
|
|
.linkedin-block {
|
|
|
|
padding: 10px 20px 10px 10px;
|
|
|
|
background-color: #0a66c2;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
border-radius: 100px;
|
2021-05-25 19:14:25 +00:00
|
|
|
transition: all .3s ease-out;
|
2021-05-24 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.linkedin-block:hover {
|
|
|
|
padding: 10px 25px 10px 15px;
|
|
|
|
background-color: #0C529B;
|
|
|
|
}
|
|
|
|
|
|
|
|
.linkedin-profile-pic-block {
|
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
|
|
|
border-radius: 100px;
|
|
|
|
margin-right: 10px;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
border: 3px solid rgba(255,255,255,0.5);
|
|
|
|
}
|
|
|
|
|
2021-05-26 13:16:53 +00:00
|
|
|
#animation-half-column {
|
|
|
|
perspective: 600px;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
2021-05-24 22:29:55 +00:00
|
|
|
#my-face {
|
|
|
|
width: 500px;
|
|
|
|
height: 500px;
|
|
|
|
position: relative;
|
2021-06-03 21:35:02 +00:00
|
|
|
z-index: 10;
|
2021-05-24 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.face-wrapper {
|
|
|
|
width: 500px;
|
|
|
|
height: 500px;
|
|
|
|
position: relative;
|
|
|
|
animation: facehover 3s infinite;
|
|
|
|
animation-timing-function: ease;
|
|
|
|
transition: all .4s ease-out;
|
2021-06-03 21:35:02 +00:00
|
|
|
transform-style: preserve-3d;
|
2021-05-24 22:29:55 +00:00
|
|
|
/* transform: rotate3d(20,-20,0,20deg); rotateX(60deg) rotateY(60deg)*/
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes facehover {
|
|
|
|
0% {top:0;}
|
|
|
|
50% {top:5px;}
|
|
|
|
100% {top:0;}
|
|
|
|
}
|
|
|
|
|
|
|
|
.centered-content {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2021-05-25 10:23:13 +00:00
|
|
|
.linkedin-cta-text {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 500;
|
|
|
|
color: white;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-05-25 20:49:37 +00:00
|
|
|
#color-overlay {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: transparent;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
transition: all .3s ease-out;
|
2021-05-25 21:00:54 +00:00
|
|
|
z-index: 0;
|
2021-05-25 20:49:37 +00:00
|
|
|
}
|
|
|
|
|
2021-05-26 06:34:47 +00:00
|
|
|
.hero-image-blur {
|
|
|
|
width: 500px;
|
|
|
|
height: 500px;
|
2021-05-26 07:11:04 +00:00
|
|
|
background-color: #0D2659;
|
2021-05-26 06:34:47 +00:00
|
|
|
border-radius: 1000px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
transform: translateZ(-400px);
|
|
|
|
filter: blur(50px);
|
|
|
|
z-index: -1;
|
2021-05-26 07:17:16 +00:00
|
|
|
opacity: .05;
|
2021-05-26 06:34:47 +00:00
|
|
|
}
|
|
|
|
|
2021-05-26 13:16:53 +00:00
|
|
|
.paint-spatter {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background-image: url("images/pain-splatter-1.png");
|
|
|
|
background-size: cover;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
z-index: -10;
|
|
|
|
transform: scale(1.5);
|
|
|
|
mix-blend-mode: lighten;
|
|
|
|
opacity: .1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.morphing-shapes-container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
mix-blend-mode: multiply;
|
|
|
|
z-index: -10;
|
|
|
|
transition: all .3s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
#morph-shape-1 {
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#morph-shape-2 {
|
|
|
|
width: 150px;
|
|
|
|
height: 150px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 120px;
|
|
|
|
right: -60px;
|
|
|
|
z-index: -10;
|
|
|
|
}
|
|
|
|
|
|
|
|
#morph-shape-3 {
|
|
|
|
width: 60px;
|
|
|
|
height: 60px;
|
|
|
|
position: absolute;
|
|
|
|
top: 30px;
|
|
|
|
right: 30px;
|
|
|
|
opacity: .5;
|
|
|
|
z-index: -10;
|
|
|
|
}
|
|
|
|
|
2021-06-03 21:35:02 +00:00
|
|
|
#bg-circle {
|
|
|
|
width: 700px;
|
|
|
|
height: 700px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: #ddd;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate3d(-50%,-55%,-300px);
|
|
|
|
z-index: -1000;
|
|
|
|
position: absolute;
|
|
|
|
transition: all .5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-05-26 13:16:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-05-26 06:34:47 +00:00
|
|
|
.scroll-down-icon {
|
|
|
|
font-size:80px;
|
|
|
|
font-weight:400;
|
|
|
|
transform:rotate(90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.scroll-down-link-block {
|
|
|
|
border: none;
|
|
|
|
opacity: .5;
|
|
|
|
transition: all .3s ease-out;
|
|
|
|
position: relative;
|
|
|
|
animation: scrolldownicon 2s infinite;
|
2021-05-26 07:11:04 +00:00
|
|
|
animation-timing-function: ease-in-out;
|
2021-05-26 06:34:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.scroll-down-link-block:hover {
|
|
|
|
border: none;
|
|
|
|
opacity: 1;
|
2021-05-26 07:11:04 +00:00
|
|
|
animation-play-state: paused;
|
2021-05-26 06:34:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes scrolldownicon {
|
|
|
|
0% {top: 0;}
|
2021-05-26 07:11:04 +00:00
|
|
|
50% {top: 20px;}
|
2021-05-26 06:34:47 +00:00
|
|
|
100% {top: 0;}
|
|
|
|
}
|
|
|
|
|
2021-05-25 10:23:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*.................................................................................................................. Mobile Styles */
|
|
|
|
|
2021-05-25 20:30:40 +00:00
|
|
|
@media (max-width: 950px) {
|
2021-05-25 10:23:13 +00:00
|
|
|
|
|
|
|
.hamburger {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-around;
|
|
|
|
padding: 10px;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2021-05-26 06:50:09 +00:00
|
|
|
background-color: #fff;
|
2021-05-25 10:23:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hamburger:hover {
|
|
|
|
padding: 18px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hamburger-line {
|
|
|
|
}
|
|
|
|
|
2021-05-25 20:30:40 +00:00
|
|
|
nav {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
|
|
|
|
.column-50 {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container-1200px {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2021-05-25 10:23:13 +00:00
|
|
|
#my-face {
|
2021-05-25 20:49:37 +00:00
|
|
|
|
2021-05-25 10:23:13 +00:00
|
|
|
}
|
|
|
|
|
2021-05-25 20:30:40 +00:00
|
|
|
.face-wrapper {
|
2021-05-26 16:14:31 +00:00
|
|
|
margin-top: 0;
|
2021-05-25 20:49:37 +00:00
|
|
|
right: -20vw;
|
2021-05-25 20:30:40 +00:00
|
|
|
}
|
|
|
|
|
2021-05-26 13:16:53 +00:00
|
|
|
#wavy-line {
|
|
|
|
width: 300%;
|
|
|
|
top: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#morph-shape-1 {
|
2021-05-26 16:14:31 +00:00
|
|
|
top: 40px;
|
|
|
|
left: -100px;
|
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#morph-shape-2 {
|
|
|
|
top: auto;
|
|
|
|
bottom: 50px;
|
|
|
|
left: 0px;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#morph-shape-3 {
|
|
|
|
top: 250px;
|
|
|
|
left: -150px;
|
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
2021-05-26 13:16:53 +00:00
|
|
|
}
|
|
|
|
|
2021-05-25 10:23:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-05-25 20:30:40 +00:00
|
|
|
@media (max-width: 550px) {
|
2021-05-25 10:23:13 +00:00
|
|
|
|
|
|
|
h1 {
|
2021-05-25 17:12:04 +00:00
|
|
|
font-size: 44px;
|
2021-05-25 10:23:13 +00:00
|
|
|
}
|
|
|
|
|
2021-05-25 10:38:58 +00:00
|
|
|
header {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
2021-05-25 19:14:25 +00:00
|
|
|
section.hero-section {
|
2021-05-26 14:01:24 +00:00
|
|
|
padding: 20px;
|
2021-05-25 20:30:40 +00:00
|
|
|
}
|
|
|
|
|
2021-05-25 21:07:56 +00:00
|
|
|
.hero-subtext {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
2021-05-25 20:30:40 +00:00
|
|
|
.container-1200px.hero-content-container {
|
2021-05-26 16:14:31 +00:00
|
|
|
padding-right: 40vw;
|
2021-05-25 10:36:01 +00:00
|
|
|
}
|
|
|
|
|
2021-05-25 10:23:13 +00:00
|
|
|
.hero-content-link {
|
2021-05-26 06:50:09 +00:00
|
|
|
background-color: #fff;
|
2021-05-25 20:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hero-ctas-block {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
2021-05-25 10:23:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.linkedin-cta-text {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.linkedin-block {
|
|
|
|
padding: 7px 15px 7px 7px;
|
2021-05-25 20:30:40 +00:00
|
|
|
margin-bottom: 15px;
|
2021-05-25 10:23:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#my-face {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.face-wrapper {
|
2021-05-25 20:30:40 +00:00
|
|
|
top: 0;
|
2021-05-26 16:14:31 +00:00
|
|
|
margin-top: -500px;
|
|
|
|
right: -60vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
#morph-shape-1 {
|
|
|
|
top: 100px;
|
|
|
|
left: 40px;
|
|
|
|
width: 70px;
|
|
|
|
height: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#morph-shape-2 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#morph-shape-3 {
|
|
|
|
display: none;
|
2021-05-25 20:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-05-26 06:34:47 +00:00
|
|
|
@media (max-width: 450px) {
|
|
|
|
|
2021-05-26 14:01:24 +00:00
|
|
|
.my-name {
|
|
|
|
font-size: 48px;
|
|
|
|
}
|
|
|
|
|
2021-05-26 06:34:47 +00:00
|
|
|
#my-face {
|
|
|
|
margin-top: 0;
|
|
|
|
width: 400px;
|
|
|
|
height: 400px;
|
|
|
|
}
|
2021-05-25 20:30:40 +00:00
|
|
|
|
2021-05-26 13:16:53 +00:00
|
|
|
.face-wrapper {
|
2021-05-26 16:14:31 +00:00
|
|
|
margin-top: -530px;
|
2021-05-26 13:16:53 +00:00
|
|
|
width: 400px;
|
|
|
|
height: 400px;
|
|
|
|
right: -50vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wavy-line {
|
|
|
|
width: 300%;
|
|
|
|
top: 450px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#morph-shape-1 {
|
2021-05-26 16:14:31 +00:00
|
|
|
top: 80px;
|
|
|
|
left: 40px;
|
2021-05-26 13:16:53 +00:00
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 350px) {
|
|
|
|
|
2021-05-26 14:01:24 +00:00
|
|
|
.my-name {
|
|
|
|
font-size: 40px;
|
|
|
|
}
|
|
|
|
|
2021-05-25 20:30:40 +00:00
|
|
|
.face-wrapper {
|
2021-05-26 16:14:31 +00:00
|
|
|
margin-top: -550px;
|
2021-05-26 06:34:47 +00:00
|
|
|
width: 400px;
|
|
|
|
height: 400px;
|
|
|
|
right: -50vw;
|
2021-05-25 10:23:13 +00:00
|
|
|
}
|
|
|
|
|
2021-05-26 13:16:53 +00:00
|
|
|
#morph-shape-1 {
|
2021-05-26 14:01:24 +00:00
|
|
|
top: 20px;
|
|
|
|
left: 60px;
|
2021-05-26 13:16:53 +00:00
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
|
2021-05-25 10:23:13 +00:00
|
|
|
}
|
|
|
|
|
2021-05-24 13:38:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|