html {
  font-size: 16px;
}
body {
  min-height: calc(100vh - 40px);
  position: relative;
  padding: 20px;
}
header {
  display: flex;
}
.main {
  min-height: calc(100vh - 40px);
  overflow: hidden;
  position: relative;
  transition: background 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  padding-bottom: 10rem;
  -webkit-font-smoothing: antialiased;
}
.main .mainBox {
  position: relative;
  left: 20px;
  top: 20px;
  width: calc(100vw - 80px);
  float: left;
}
.main .logoBox {
  float: left;
  width: 4.6rem;
  height: 2.18rem;
  padding: 1.25rem;
}
.main .logoBox .logo {
  position: absolute;
  z-index: 5;
  width: 4.37rem;
  height: 1.87rem;
}
.main .logoBox .logo-shadow {
  position: absolute;
  z-index: 2;
  transition: all 2s ease-in-out;
  width: 4.37rem;
  height: 1.87rem;
}
.main .linkBox {
  float: left;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1rem;
  letter-spacing: 0.1rem;
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 1px solid #666;
  text-decoration-line: none;
}
.main .menuWrap {
  float: right;
  margin-right: 2rem;
  margin-top: 1.625rem;
}
.main .menuWrap a {
  font-size: 1rem;
  text-decoration: none;
  margin-left: 2.5rem;
}
.main .menuWrap a:hover {
  text-decoration: underline;
}
.main .menuWrap a.active {
  text-decoration: line-through;
}
.main .menuWrap a:first-child {
  margin-left: 0;
}
.main .resumeDownload {
  float: right;
  position: relative;
  margin-right: 20px;
  margin-top: 20px;
  cursor: pointer;
}
.main .resumeDownload .downIcon {
  position: absolute;
  z-index: 5;
}
.main .resumeDownload .downShadow {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 3;
}
.main .resumeDownload span {
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.25rem;
  letter-spacing: 0.2rem;
  padding-left: 45px;
  padding-top: 7px;
  float: left;
}
.main a.button {
  text-decoration-line: none;
  position: relative;
  padding: 0.7rem 2rem;
  font-size: 1.25rem;
  font-weight: 400;
  border-radius: 0.5rem;
  border: 2px solid var(--homestroke);
  color: var(--homestroke);
}


.main h2.sectionTitle,
.main h3.sectionTitle {
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  font-family: 'Bitter', serif;
  margin-block-end: 0;
  margin-block-start: 0;
  margin-bottom: 3.125rem;
}
.main h2.sectionTitle:after,
.main h3.sectionTitle:after {
  content: "";
  width: 75px;
  height: 3PX;
  position: absolute;
  left: 0;
  bottom: -15px;
}
.main h3.sectionTitle {
  font-size: 2rem;
}
.main h3.subSectionTitle {
  margin-block-end: 0;
  margin-block-start: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.main h3.secondaryTitle {
  font-size: 2.125rem;
  font-weight: 700;
  position: relative;
  font-family: 'Bitter', serif;
  margin-block-start: 0;
  margin-block-end: 0;
}
.main .connect-section {
  border-top: 1px solid #CCC;
  padding-top: 3.125rem;
  max-width: 45rem;
  margin: 0 auto;
}
.main .connect-section .connect-photo {
  width: 8.75rem;
  height: 8.75rem;
  position: absolute;
}
.main .connect-section .connect-photo img {
  width: 8.75rem;
  margin-left: -0.625rem;
  margin-top: -0.625rem;
  border-radius: 50%;
  border: 4px solid #fff;
}
.main .connect-section .connect-content {
  width: 80%;
  padding-left: 10rem;
}
.main .connect-section .connect-content P {
  font-size: 1.2rem;
  font-weight: 400;
  padding: .75rem 0 2rem;
  line-height: 1.5rem;
}
.connect-section .connect-content .link-box img {
  width: 1rem;
  margin-right: 15px;
  margin-top: -3px;
}
.connect-section .connect-content a {
    padding: 0.7rem 1rem;
    font-size: 1rem;
    color: var(--homecolor);
    margin-right: 1.5rem;
    margin-top: 0;
    transition: .3s;
    border:1px solid  var(--homecolor);
    transition: .3s;
    border-radius: 5px;
    text-decoration: none;   
    transition: .3s;
    transform: scale(1);
    display: block;
    float: left;
}
.connect-section .connect-content a:hover {
    transform: scale(1.05);
}
.connect-section .connect-content a.meetup {
  background-color: var(--homecolor);
  border-color: var(--homecolor);
  color: #fff;
}

.field {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin: 0 auto;
}
.mouse {
  width: 30px;
  height: 60px;
  border: 3px solid var(--homeshadow);
  border-radius: 60px;
  position: relative;
}
.mouse::before {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--homestroke);
  border-radius: 50%;
  opacity: 0.6;
  animation: wheel 2s infinite;
  -webkit-animation: wheel 2s infinite;
}
@keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}
@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}
/*===================== HOME STYLES =====================*/
:root {
  --homebg: #F4F9FC;
  --homecolor: #101B61;
  --homestroke: #7F00DF;
  --homeshadow: #C8E8F2;
  --homeblue: #73BBC5;
}
.contentBox {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 100vh;
  flex-wrap: wrap;
}
.subContent {
  max-width: 75rem;
  display: flex;
  align-items: start;
  margin: 0 auto;
  flex-wrap: wrap;
}
.subContent section {
  width: 100%;
}
.home {
  background: var(--homebg);
  color: var(--homecolor);
}
.home h2.sectionTitle span {
  color: var(--homeblue);
}
.home h2.sectionTitle:after {
  background-color: var(--homeblue);
}
.home h3.sectionTitle span {
  color: var(--homeblue);
}
.home h3.sectionTitle:after {
  background-color: var(--homeblue);
}
.home header {
  position: absolute;
}
.home a {
  text-decoration-line: underline;
}
.home a.button {
  border-color: var(--homecolor);
  color: var(--homecolor);
  float: left;
  margin-top: 2rem;
}
.home a.button:hover {
  background-color: var(--homecolor);
  color: #fff;
}
.home .logoBox .logo {
  stroke: var(--homecolor);
}
.home .logoBox .logo-shadow {
  fill: var(--homeshadow);
}
.home .resumeDownload .downIcon {
  stroke: var(--homestroke);
}
.home .resumeDownload .downShadow {
  fill: var(--homeshadow);
}

.home .introSection {
  font-family: 'Bitter', serif;
  font-weight: 300;
  margin-top: 4rem;
  display: flex;
}
.home .introSection .myIntro {
  font-size: 3rem;
  line-height: 4.375rem;
  margin: 0 0 2.5rem 0;
  font-weight: 800;
}
.home .introSection .myIntro b{
  font-weight: 500;
  font-size: 2.6rem;
}
.home .introSection .myIntro span {
  color: var(--homeblue);
  float: left;
  width: 100%;
}
.home .introSection .myIntro strong {
  float: left;
  width: 100%;
  margin-bottom:  1rem;
}
.home .introSection .whereWorking p {
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 2rem;
}
.home .introSection .myleft {
  float: left;
}
.home .introSection .myright {
  width: 25rem;
  float: right;
  position: relative;
}
.home .introSection .myright .meHome,
.home .introSection .myright .meHomeShadow {
  width: 25rem;
  height: 30rem;
  position: absolute;
}
.home .introSection .myright .meHome {
  position: absolute;
  top: 0;
  z-index: 5;
}
.home .introSection .myright .meHomeShadow {
  background: url('../img/line-home.svg');
  background-size: 11px;
  z-index: 3;
  border-radius: 10px;
  transition: all 2s ease-in-out;
}
.home .workWrap {
  margin-bottom: 1.25rem;
  float: left;
}
.home .workWrap a {
  width: 36.25rem;
  float: left;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
  border-radius: 20px;
  margin-bottom: 2.5rem;
}
.home .workWrap a:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.home .workWrap a:active {
  transform: scale(1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.home .workWrap a img {
  width: 100%;
}
.home .workWrap a:nth-child(odd){
  margin-right: 2.5rem;
}
.home .home-about-text span {
  background: url(../img/dot-home.svg);
  background-size: 5px;
  font-size: 1.5rem;
  line-height: 4.25rem;
  padding: 15px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.home .connect-section .connect-photo {
  background: url(../img/dot-home.svg);
  background-size: 11px;
}
/*===================== ABOUT STYLES =====================*/
:root {
  --aboutbg: #F7F8F9;
  --aboutcolor: #021963;
  --aboutstroke: #5268BD;
  --aboutshadow: #C2E6D6;
  --aboutblue: #73BBC5;
}
.about {
  background: var(--aboutbg);
  color: var(--aboutcolor);
}
.about .aboutMe {
  position: relative;
}
.about h2.sectionTitle span,
.about h3.sectionTitle span {
  color: var(--aboutblue);
}
.about h2.sectionTitle:after,
.about h3.sectionTitle:after {
  background-color: var(--aboutblue);
}
.about a {
  text-decoration-color: var(--aboutstroke);
  text-decoration-line: underline;
}
.about a.button {
  border-color: var(--homeblue);
  color: var(--homeblue);
  float: left;
  margin-top: 2rem;
}
.about .logo {
  stroke: var(--aboutstroke);
}
.about .logo-shadow {
  fill: var(--aboutshadow);
}

.about .resumeDownload .downIcon {
  stroke: var(--aboutstroke);
}
.about .resumeDownload .downShadow {
  fill: var(--aboutshadow);
}
.about .contentBox {
  max-width: 75rem;
  margin: 7.5rem auto 0;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  flex-wrap: wrap;
}
.about .contentBox .myleft {
  width: 22rem;
  float: left;
}
.about .contentBox .myleft img {
  max-width: 17.5rem;
}
.about .contentBox .myleft div.dotbox {
  width: 17.5rem;
  height: 10rem;
  position: relalive;
  bottom: 0;
}
.about .contentBox .myleft .myImagePattern {
  background: url('../img/dot-about.svg');
  background-size: 11px;
  width: 17.5rem;
  height: 8rem;
  position: absolute;
  bottom: 8px;
  transition: all 1s ease-in-out;
}
.about .contentBox .myright {
  width: 53rem;
  float: right;
}
.about .contentBox .myright p {
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.about .contentBox .myright p b {
  font-weight: 600;
}
.about .contentBox .myright p:last-child {
  margin-bottom: 0;
}
.about .contentBox .myExperience {
  width: 100%;
}
.about .contentBox .myExperience .expRow {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  flex-direction: row;
  border-bottom: 1px dashed rgba(28, 73, 76, 0.25);
  width: 80%;
}
.about .contentBox .myExperience .expRow.firstRow {
  padding-top: 1.25rem;
}
.about .contentBox .myExperience .expRow .expRow-Year {
  font-weight: 400;
  font-size: 1rem;
  margin-top: 0.625rem;
  color: #555;
  width: 100%;
}
.about .contentBox .myExperience .expRow .expRow-Year span {
  padding: 0 5px 0 10px;
}
.about .contentBox .myExperience .expRow .expRow-Year strong {
  font-weight: 500;
}
.about .contentBox .myExperience .expRow .expRow-Year b {
  font-weight: 400;
  font-size: 0.937rem;
}
.about .contentBox .myExperience .expRow hr {
  height: 1px;
  width: 12.5rem;
  margin: 0 2rem 0 2rem;
  background: var(--aboutcolor);
}
.about .contentBox .myExperience .expRow .expRow-Company {
  font-weight: 500;
  width: 100%;
}
.about .contentBox .myExperience .expRow .expRow-Company span {
  font-weight: 400;
}
.about .contentBox .myExperience .expRow .expRow-Company a {
  text-decoration-style: dotted;
}
text-de .about .contentBox .myExperience .expRow .expRow-Company a:hover {
  text-decoration: underline;
}
.about .contentBox .myExperienceMobile {
  display: none;
}

.about .contentBox .myServices .expRow {
    width: 100%;
}
.about .contentBox .myServices .expRow  .expRow-Company {
    width: 40%;
    float: left;
    font-weight: 500;
    position: relative;
}

.about .contentBox .myServices .expRow  .expRow-Year {
  width: 60%;
  float: right;
  text-align: left;
  margin-top: 0;
  font-size: 1.25rem;
  color: #333;
}


.about .contentBox .mySkills .tagWrapper {
  float: left;
  margin-left: -1rem;
}
.about .contentBox .mySkills .tagWrapper .skillTag {
  background: url(../img/dot-about.svg);
  background-size: 5px;
  padding: 0.625rem 1.4rem;
  border: 1px solid var(--aboutcolor);
  border-radius: 2rem;
  margin: 0.8rem 0.6rem;
  float: left;
  font-size: 1rem;
}
.about .contentBox .mySkills h3.subSectionTitle {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  float: left;
  width: 100%;
}
.about .contentBox .mySkills h3.subSectionTitle span {
  color: var(--aboutblue);
}
.about .contentBox .mySkills .toolsWrapper {
  float: left;
  width: 100%;
  margin-left: -0.75rem;
}
.about .contentBox .mySkills .toolsWrapper .toolItem {
  float: left;
  margin-right: 1.8rem;
  min-width: 5.6rem;
  margin-bottom: 2rem;
}
.about .contentBox .mySkills .toolsWrapper .toolItem .iconWrapper {
  width: 4rem;
  height: 4rem;
  background-color: #D9D9D9;
  border-radius: 50%;
  margin: 0 auto;
}
.about .contentBox .mySkills .toolsWrapper .toolItem .iconWrapper img {
  width: 100%;
}
.about .contentBox .mySkills .toolsWrapper .toolItem span {
  font-size: 1rem;
  float: left;
  text-align: center;
  padding-top: 0.635rem;
  width: 100%;
}
.about .contentBox .experienceIn {
  width: 100%;
}
.about .connect-photo {
  background: url(../img/dot-about.svg);
  background-size: 11px;
}
.about .myQuotes {
  border-left: 5px solid #ccc;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-style: italic;
  font-size: 1.15rem;
}
/*===================== WORK STYLES =====================*/
:root {
  --workbg: #FFF7F7;
  --workcolor: #021963;
  --workstroke: #7E66C7;
  --workshadow: #FBC5D3;
  --workblue: #F67896;
}
.work {
  background: var(--workbg);
  color: var(--workcolor);
}
.work .subContent-short {
  max-width: 62.5rem;
}
.work .logo {
  stroke: var(--workstroke);
}
.work .logo-shadow {
  fill: var(--workshadow);
}

.work .resumeDownload .downIcon {
  stroke: var(--workstroke);
}
.work .resumeDownload .downShadow {
  fill: var(--workshadow);
}
.work h2.sectionTitle span {
  color: var(--workblue);
}
.work h2.sectionTitle:after {
  background-color: var(--workblue);
}
.work .workDesc {
  font-size: 1.25rem;
  line-height: 1.9rem;
  font-weight: 400;
}
.work .work-content {
  padding-top: 2.5rem;
}
.work .galWrap {
  min-height: 50rem;
}
.work .galWrap .galLinksWrap {
  width: 100%;
  margin-bottom: 2.5rem;
}
.work .galWrap .galLinks {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.work .galWrap .galLinks a {
  display: inline-block;
  text-decoration: none;
  margin: 0 1.25rem;
  cursor: pointer;
  transform: scale(1);
  transition: all 0.1s ease-in-out;
}
.work .galWrap .galLinks a.active {
  color: var(--workblue);
}
.work .galWrap .galLinks a:hover {
  transform: scale(1.1);
}
.work .galWrap .galItemWrap {
  float: left;
  width: 100%;
}
.work .galWrap .galItemWrap .galItem {
  width: 35rem;
  float: left;
  margin: 0 1.25rem 2.5rem;
  transition: all 0.25s ease-in-out;
  transform: scale(1);
  border-radius: 20px;
}
.work .galWrap .galItemWrap .galItem:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.work .galWrap .galItemWrap .galItem:active {
  transform: scale(1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.work .galWrap .galItemWrap .galItem img {
  width: 100%;
}
.work .connect-photo {
  background: url(../img/dot-work.svg);
  background-size: 11px;
}
/*===================== WORK ITEMS =====================*/
.work-item .sectionTitle {
  margin-bottom: 1.75rem !important;
}
.work-item .workDesc {
  float: left;
  width: 100%;
}
.work-item .work-item-content {
  width: 62.5rem;
  margin: 3.125rem auto 0;
}
.work-item .work-item-content h3 {
  font-size: 1.625rem;
  line-height: 2.125rem;
  margin-block-start: 0;
  margin-block-end: 0;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.work-item .work-item-content ul {
  margin-block-start: 0;
  margin-block-end: 0;
}
.work-item .work-item-content p,
.work-item .work-item-content li {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 400;
}
.work-item .work-item-content p.lastItem,
.work-item .work-item-content li.lastItem {
  margin-bottom: 0;
}
.work-item .work-item-content li {
  margin-bottom: 1rem;
}
.work-item .work-item-content li li {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.68rem;
  margin-bottom: 0;
}
.work-item .work-item-content p {
  margin-bottom: 1.5rem;
}
.work-item .work-item-content p span {
  font-size: 4rem;
  font-weight: 300;
}
.work-item .work-item-image {
  width: 75rem;
  margin: 3.125rem auto 0;
}
.work-item .work-item-image img {
  width: 100%;
}
.work-item .connect-content .sectionTitle {
  margin-bottom: 0 !important;
}
.contentBoxMobile {
  display: none;
}
@media only screen and (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1440px) {
  html {
    font-size: 14.5px;
  }
}
@media only screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 12px;
  }
}
@media only screen and (max-width: 950px) {
  html {
    font-size: 14px;
  }
  body {
    padding: 15px;
  }
  .contentBoxDesktop {
    display: none;
  }
  .contentBoxMobile {
    display: block;
  }
  .main .menuWrap {
    margin: 0.75rem 1rem 0 0;
  }
  .main .logoBox {
    padding: 0.5rem;
  }
  .subContent {
    max-width: 100%;
    padding: 4rem 2rem;
  }
  .home .contentBox {
    min-height: auto;
  }
  .home .section-topgap {
    margin-top: 0;
  }
  .home .introSection .myleft {
    width: 100%;
  }
  .home .introSection .myIntro {
    font-size: 2.5rem;
    line-height: 3rem;
    text-align: left;
    padding: 0 2rem;
    margin: 0 0 2rem 0;
  }
  .home .introSection .whereWorking {
    margin: 0 2rem;
  }
  .home .introSection .buttonWrap {
    margin: 0 2rem 2rem 2rem;
    float: left;
  }
  .home .home-about-text span {
    padding: 10px;
  }
  .home .workWrap a {
    width: 85%;
    display: block;
    margin: 0 auto 2rem !important;
  }
  .about .aboutMe {
    width: 100%;
  }
  .about .aboutMe .myleft,
  .about .aboutMe .myright {
    width: 92%;
    float: none;
    margin: 0 auto;
    padding: 0 4%;
  }
  .about .aboutMe .myleft {
    margin-bottom: 2rem;
  }
  .about .aboutMe .myImagePattern {
    display: none;
  }
  .about .myExperience,
  .about .mySkills {
    width: 92%;
    float: none;
    margin: 80px auto 0;
    padding: 0 4%;
  }
  .about .contentBox .myExperienceDesktop {
    display: none;
  }
  .about .contentBox .myExperienceMobile {
    display: block;
  }
  .about .contentBox .myExperienceMobile .expRow {
    width: 100%;
    display: block;
    float: left;
    padding: 1.5rem 0;
  }
  .about .contentBox .myExperienceMobile .expRow .expRow-Company,
  .about .contentBox .myExperienceMobile .expRow .expRow-Year {
    width: 100%;
    text-align: left;
    float: left;
    text-transform: capitalize;
  }
  .about .contentBox .myExperienceMobile .expRow .expRow-Company {
    padding-bottom: 1rem;
  }
  .about .contentBox .myExperienceMobile .expRow .expRow-Company span {
    font-weight: 500;
  }
  .about .contentBox .myExperienceMobile .expRow .expRow-Year {
    letter-spacing: 0;
  }
  .about .contentBox .mySkills .toolsWrapper .toolItem {
    margin-bottom: 2rem;
  }
  .work .galWrap .galItemWrap .galItem {
    width: 100%;
    margin: 0 0 2rem 0;
  }
  .work-content {
    padding-top: 0px !important;
    margin-top: 5rem;
  }
  .work .section-topgap {
    margin-bottom: -3rem;
    padding-bottom: 0;
    margin-top: 4rem;
  }
  .work-item .section-topgap {
    margin-bottom: -3rem;
    padding-bottom: 0;
    margin-top: 4rem;
  }
  .work-item .work-item-content {
    margin: 2.5rem auto 0;
  }
  .work-item .work-item-content p,
  .work-item .work-item-content h3 {
    margin-bottom: 1rem;
  }
  .work-item .work-item-image {
    margin: 1.5rem auto 0;
  }
}
@media only screen and (max-width: 600px) {
  .main .connect-section .connect-photo {
    display: none;
  }
  .main .connect-section .connect-content {
    padding-left: 0;
    width: 100%;
  }
  .main .connect-section .connect-content .link-box img {
    width: 1rem;
    margin-right: 30px;
  }
  .main .menuWrap {
    width: 100%;
    margin: 0;
    padding: 1.5rem 0 0;
  }
  .main .menuWrap a {
    margin: 0 0.8rem !important;
  }
  .home .introSection {
    margin-top: 10rem;
  }
}
