/*
600px: phone
600-900px: tablet portriat
900-1200px: tablet landscape
1200-1800: normal style apply
1800px+: big desktop
*/
/*
$breakpoint option
- phone
- tab-port
- tab-land
- big-desktop

start with px unit but need to change to other unit
in case user have a default font size for their bowser
best to use em unit, some bowser can't do rem
1em = 16px

*/
/*
COLORS:

dark blue: #112d4e
blue: #3f72af
lighter blue: #a6b1e1
light blue: #dbe2ef
light grey: #f9f7f7
*/
@keyframes wordSpaceOut {
  0% {
    opacity: 0;
    letter-spacing: 0vw; }
  100% {
    opacity: 1;
    letter-spacing: 1vw; } }

@keyframes moveInButton {
  0% {
    opacity: 0;
    transform: translateY(30px); }
  100% {
    opacity: 1;
    transform: translate(0); } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  /* force inheritance */ }

html {
  font-size: 62.5%;
  /* 
    using % instead of px so user can change it 
    since the whole website uses rem unit
    and rem is heavily depending on font-size
    changing font-size makes responsive design very easy
    */ }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  padding: 0px 2.5rem;
  background-color: #f5f5f5;
  box-sizing: border-box;
  /* so the padding and border nolong added to the total height or width of the box */
  /* border: solid red 1px; */ }
  @media (max-width: 56.25em) {
    body {
      padding: 0; } }

body {
  font-family: 'Poppins', sans-serif;
  /* font-size: 16px; */
  color: #1d1d1d;
  font-weight: 300; }

.heading-top {
  color: #fff;
  width: 100%;
  font-weight: 500;
  text-transform: uppercase;
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* element starting point shift to the middle */ }
  .heading-top--big {
    display: block;
    text-align: center;
    font-size: 7rem;
    letter-spacing: 2rem;
    animation-name: wordSpaceOut;
    animation-duration: 4s;
    animation-timing-function: ease-out;
    padding: 1rem; }
    @media (max-width: 37.5em) {
      .heading-top--big {
        letter-spacing: 1rem;
        font-size: 6rem; } }
    @media (max-width: 25em) {
      .heading-top--big {
        letter-spacing: 1rem;
        font-size: 4rem; } }
  .heading-top--sml {
    display: block;
    text-align: center;
    font-size: 2.6rem;
    letter-spacing: 1rem;
    font-weight: 200;
    line-height: 3rem;
    padding: 0rem 2rem;
    /* font-family: 'Inconsolata', monospace; */ }
    @media (max-width: 37.5em) {
      .heading-top--sml {
        letter-spacing: 0.5rem;
        font-size: 2.2rem;
        line-height: 5rem;
        font-weight: 300; } }
    @media (max-width: 25em) {
      .heading-top--sml {
        font-weight: 400;
        letter-spacing: 0.2rem;
        line-height: 3rem; } }

.heading-secondary {
  font-size: 6rem;
  text-transform: uppercase;
  font-weight: 300;
  background-image: linear-gradient(#a6b1e1, #112d4e);
  display: inline-block;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0.1);
  letter-spacing: 1rem;
  transition: all .2s; }
  @media (max-width: 56.25em) {
    .heading-secondary {
      font-size: 5rem; } }
  @media (max-width: 37.5em) {
    .heading-secondary {
      font-size: 4rem;
      font-weight: 400;
      letter-spacing: 0.4rem; } }
  @media (max-width: 25em) {
    .heading-secondary {
      font-size: 3.5rem;
      font-weight: 400;
      letter-spacing: 0.2rem; } }
  .heading-secondary:hover {
    letter-spacing: 1.5rem; }

.heading-secondary--2 {
  font-size: 6rem;
  text-transform: uppercase;
  font-weight: 300;
  display: inline-block;
  color: #fff;
  letter-spacing: 1rem;
  transition: all .2s; }
  @media (max-width: 56.25em) {
    .heading-secondary--2 {
      font-size: 5rem; } }
  @media (max-width: 37.5em) {
    .heading-secondary--2 {
      font-size: 4rem;
      font-weight: 400;
      letter-spacing: 0.4rem; } }
  @media (max-width: 25em) {
    .heading-secondary--2 {
      font-size: 3.5rem;
      font-weight: 400;
      letter-spacing: 0.2rem; } }
  .heading-secondary--2:hover {
    letter-spacing: 1.5rem; }

.heading-tertiary {
  color: #000;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 200;
  padding: 2rem;
  text-align: center; }

.paragraph {
  font-size: 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 3rem;
  display: inline-block;
  padding: 2rem; }

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

.u-margin-bottom-big {
  margin-bottom: 9rem; }

.u-margin-bottom-medium {
  margin-bottom: 5rem; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem; }

.composition {
  display: flex;
  justify-content: space-evenly; }
  .composition__icon {
    font-size: 6rem;
    color: #f5f5f5;
    display: inline-block;
    border-radius: 1rem;
    z-index: 10;
    transition: all .2s;
    outline-offset: 0.5rem; }
    .composition__icon--i1 {
      padding: 1rem 2.2rem; }
    .composition__icon--i2 {
      padding: 1rem; }
    .composition__icon--i3 {
      padding: 1rem 1.5rem; }
    .composition__icon--i4 {
      padding: 1.4rem 1rem; }
    .composition__icon:hover {
      outline: 1rem solid #a6b1e1;
      transform: scale(1.05);
      z-index: 20; }

.btn {
  border: none; }
  .btn, .btn:link, .btn:visited {
    /* after click */
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.5rem 3rem;
    display: inline-block;
    transition: all .2s;
    position: relative; }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); }
    .btn:hover::after {
      /* after hover */
      transform: scaleX(1.2) scaleY(1.7);
      opacity: 0; }
  .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }
  .btn--white {
    background-color: #fff;
    color: #3f72af;
    width: 90%;
    font-size: 1.4rem;
    text-align: center;
    margin: 1.5rem;
    letter-spacing: 2px; }
    .btn--white::after {
      background-color: #fff; }
  .btn::after {
    content: "";
    display: inline-block;
    /* have to state the content and display property for it to show up */
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s; }
  .btn--animated {
    animation: moveInBottom .5s ease-out .75s;
    animation-fill-mode: backwards;
    /* starts at 0% animation */ }

.card {
  perspective: 180rem;
  -moz-perspective: 180rem;
  position: relative;
  height: 52rem; }
  .card__side {
    background-color: #000;
    height: 52rem;
    transition: all 1s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 2px;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.35); }
    .card__side--front {
      background-color: #f5f5f5; }
    .card__side--back {
      background-color: #112d4e;
      transform: rotateY(180deg); }
  .card:hover .card__side--front {
    transform: rotateY(-180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0deg); }
  .card__picture {
    background-size: cover;
    height: 22rem; }
    .card__picture--1 {
      background-image: url(../img/foodbank.png); }
    .card__picture--2 {
      background-image: url(../img/uapplied.png); }
    .card__picture--3 {
      background-image: url(../img/shopaholic.jpg); }
  .card__heading {
    font-size: 2.5rem;
    font-weight: 200;
    color: #f5f5f5;
    position: absolute;
    top: 20rem;
    right: 0rem;
    text-align: right; }
  .card__heading-span {
    background-image: linear-gradient(to right bottom, rgba(17, 45, 78, 0.85), rgba(166, 177, 225, 0.85));
    padding: 0.5rem 1.5rem; }
  .card__details {
    padding: 3rem; }
    .card__details--main {
      text-align: center;
      font-size: 1.4rem;
      color: rgba(17, 45, 78, 0.75);
      padding: 2rem 0.5rem; }
    .card__details ul {
      list-style: none;
      width: 80%;
      margin: 0 auto; }
      .card__details ul li {
        text-align: center;
        font-size: 1.8rem;
        padding: 1rem; }
        .card__details ul li:not(:last-child) {
          border-bottom: 1px solid #cacaca; }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 100%;
    padding: 1.5rem; }
  .card__des-box {
    text-align: center;
    color: #fff;
    margin-bottom: 8rem; }
  .card__des-btn {
    padding: 0rem 3rem; }
    .card__des-btn a {
      border-radius: 2px; }
  .card__des {
    font-size: 1.8rem; }
  @media (max-width: 56.25em) {
    .card {
      height: auto; }
      .card__side {
        height: auto;
        position: relative;
        border-radius: 2px; }
        .card__side--back {
          background-color: #112d4e;
          transform: rotateY(0); }
      .card:hover .card__side--front {
        transform: rotateY(0); }
      .card:hover .card__side--back {
        transform: rotateY(0); }
      .card__cta {
        position: relative;
        top: 0%;
        left: 0%;
        transform: translate(0);
        width: 100%;
        padding: 1.5rem; }
      .card__des-box {
        margin-top: 2rem;
        margin-bottom: 2rem; }
      .card__des-btn {
        padding: 0rem 3rem; }
        .card__des-btn a {
          border-radius: 2px; }
      .card__des {
        font-size: 1.8rem; } }

.form {
  text-align: center; }
  .form__group {
    margin-bottom: 3rem; }
  .form__input {
    font-size: 1.5rem;
    font-family: inherit;
    padding: 1rem 2rem;
    border-radius: 2px;
    background-color: #fff;
    border: none;
    border-bottom: 3px solid transparent;
    width: 90%;
    display: inline-block;
    transition: all .3s; }
    .form__input:focus {
      outline: none;
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
      border-bottom: 3px solid #a6b1e1; }
    .form__input:focus:invalid {
      border-bottom: 3px solid orangered; }
    .form__input::-webkit-input-placeholder {
      color: rgba(29, 29, 29, 0.4);
      font-weight: 200; }

.project-box {
  background-color: rgba(255, 255, 255, 0.85);
  font-size: 2.3rem;
  padding: 2rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
  transition: transform .5s;
  height: 35rem;
  display: inline-block; }
  .project-box__icon {
    font-size: 6rem;
    margin-bottom: .5rem; }
  .project-box:hover {
    transform: translateY(1rem) scale(1.04); }
  .project-box__text {
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif; }

@media screen and (max-width: 480px) {
  .project-box {
    display: inline-block;
    width: 100%; } }

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 5555;
  transition: all .3s;
  opacity: 0;
  visibility: hidden; }
  .popup:target {
    opacity: 1;
    visibility: visible; }
  .popup__close:link, .popup__close:visited {
    color: rgba(29, 29, 29, 0.6);
    position: absolute;
    top: 0.2rem;
    right: 2.5rem;
    font-size: 3rem;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    padding: 0.5rem; }
  .popup__close:hover {
    color: #112d4e; }
  .popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 85%;
    background-color: #fff;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    border-radius: 3px; }
  .popup__top {
    display: block; }
  .popup__bottom {
    display: block;
    margin-top: 2rem; }

#overlay {
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events: none; }

#overlay.active {
  opacity: 1;
  pointer-events: all; }

.header__icon-box {
  display: block; }

#myIcon2 {
  width: 15rem;
  border-radius: 50%;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0%);
  /* element starting point shift to the middle */
  border: 0.4rem solid #a6b1e1;
  padding: 2px;
  filter: grayscale(100%); }
  #myIcon2:hover {
    filter: grayscale(30%); }

.slider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  overflow: hidden; }
  .slider .slides {
    width: 400%;
    display: flex; }
    .slider .slides input {
      display: none; }
    .slider .slides .slide {
      width: 25%;
      transition: .8s; }
      .slider .slides .slide img {
        width: 900px; }
    .slider .slides .slide-manual {
      z-index: 6000;
      position: absolute;
      width: 100%;
      margin-top: 4rem;
      display: flex;
      justify-content: center; }
      .slider .slides .slide-manual .manual-btn {
        border: 3px solid #112d4e;
        padding: 0.5rem;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.9s;
        box-shadow: 1px 1px 6px #888888; }
        .slider .slides .slide-manual .manual-btn:not(:last-child) {
          margin-right: 3rem; }
        .slider .slides .slide-manual .manual-btn:hover, .slider .slides .slide-manual .manual-btn:checked {
          background-color: #112d4e; }
    .slider .slides .slide-auto {
      z-index: 6000;
      position: absolute;
      width: 100%;
      margin-top: 4rem;
      display: flex;
      justify-content: center; }
      .slider .slides .slide-auto div {
        border: 3px solid whitesmoke;
        padding: 0.5rem;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.8s; }
        .slider .slides .slide-auto div:not(:last-child) {
          margin-right: 3rem; }

#radio1:checked ~ .first {
  margin-left: 0; }

#radio2:checked ~ .first {
  margin-left: -25%; }

#radio3:checked ~ .first {
  margin-left: -50%; }

#radio4:checked ~ .first {
  margin-left: -75%; }

#radio5:checked ~ .first {
  margin-left: 0; }

#radio6:checked ~ .first {
  margin-left: -25%; }

#radio7:checked ~ .first {
  margin-left: -50%; }

#radio8:checked ~ .first {
  margin-left: -75%; }

#radio9:checked ~ .first {
  margin-left: 0%; }

#radio10:checked ~ .first {
  margin-left: -25%; }

#radio11:checked ~ .first {
  margin-left: -50%; }

#radio12:checked ~ .first {
  margin-left: -75%; }

#radio1:checked ~ .slide-auto .auto-btn1 {
  background: #112d4e; }

#radio2:checked ~ .slide-auto .auto-btn2 {
  background: #112d4e; }

#radio3:checked ~ .slide-auto .auto-btn3 {
  background: #112d4e; }

#radio4:checked ~ .slide-auto .auto-btn4 {
  background: #112d4e; }

#radio5:checked ~ .slide-auto .auto-btn5 {
  background: #112d4e; }

#radio6:checked ~ .slide-auto .auto-btn6 {
  background: #112d4e; }

#radio7:checked ~ .slide-auto .auto-btn7 {
  background: #112d4e; }

#radio8:checked ~ .slide-auto .auto-btn8 {
  background: #112d4e; }

#radio9:checked ~ .slide-auto .auto-btn9 {
  background: #112d4e; }

#radio10:checked ~ .slide-auto .auto-btn10 {
  background: #112d4e; }

#radio11:checked ~ .slide-auto .auto-btn11 {
  background: #112d4e; }

#radio12:checked ~ .slide-auto .auto-btn12 {
  background: #112d4e; }

.section-about-content {
  padding: 0rem 2rem; }

.section-about-paragraph {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .section-about-paragraph-image {
    font-size: 6rem;
    color: #112d4e;
    padding: 2rem; }
    @media (max-width: 37.5em) {
      .section-about-paragraph-image {
        padding: 1rem;
        font-size: 4rem; } }

.header {
  height: 90vh;
  /* always 95% height */
  background-image: linear-gradient(rgba(166, 177, 225, 0.8), rgba(17, 45, 78, 0.8)), url(../img/ilya-pavlov-OqtafYT5kTw-unsplash.jpg);
  background-size: cover;
  /* always fit the element inside the box */
  background-position: top;
  /* background imgs always at the top */
  -webkit-clip-path: polygon(100% 0, 100% 88%, 50% 100%, 0 88%, 0 0);
  clip-path: polygon(100% 0, 100% 88%, 50% 100%, 0 88%, 0 0); }
  @media (max-width: 37.5em) {
    .header {
      -webkit-clip-path: polygon(100% 0, 100% 93%, 50% 100%, 0 93%, 0 0);
      clip-path: polygon(100% 0, 100% 93%, 50% 100%, 0 93%, 0 0); } }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
  @media (max-width: 56.25em) {
    .row {
      max-width: 55rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 5rem; }
      @media (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 6rem; } }
    @media (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 5rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 5rem * 2) / 3); }
  .row .col-2-of-3 {
    width: calc(((100% - 5rem * 2) / 3) * 2 + 5rem); }
  .row .col-1-of-4 {
    width: calc((100% - 5rem * 3) / 4); }
  .row .col-2-of-4 {
    width: calc(((100% - 5rem * 3) / 4) * 2 + 5rem); }
  .row .col-3-of-4 {
    width: calc(((100% - 5rem * 3) / 4) * 3 + (5rem * 2)); }

.navigation__checkbox {
  display: none; }

.navigation__button {
  background-color: #fff;
  height: 6rem;
  width: 6rem;
  position: fixed;
  top: 5rem;
  right: 7rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer; }
  @media (max-width: 56.25em) {
    .navigation__button {
      top: 4rem;
      right: 5rem; } }
  @media (max-width: 37.5em) {
    .navigation__button {
      top: 2.5rem;
      right: 2.5rem; } }

.navigation__background {
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  position: fixed;
  top: 5.5rem;
  right: 7.5rem;
  background-image: radial-gradient(#a6b1e1, #112d4e);
  z-index: 1000;
  opacity: 0.95;
  transition: transform .8s; }
  @media (max-width: 56.25em) {
    .navigation__background {
      top: 4.5rem;
      right: 5.5rem; } }
  @media (max-width: 37.5em) {
    .navigation__background {
      top: 3rem;
      right: 3rem; } }

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6); }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%; }

.navigation__item {
  margin: 1rem; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 200;
  padding: 0.3rem 1rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 240%;
  transition: all .8s; }
  .navigation__link:link span, .navigation__link:visited span {
    margin-right: 2rem;
    font-size: 2rem;
    display: inline-block; }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #a6b1e1;
  transform: translateX(0.8rem); }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(70); }

.navigation__checkbox:checked ~ .navigation__nav {
  width: 90%;
  opacity: 1; }

.navigation__icon {
  position: relative;
  margin-top: 3rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 2rem;
    height: 1px;
    background-color: #112d4e;
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all .3s; }
  .navigation__icon::before {
    top: -0.6rem; }
  .navigation__icon::after {
    top: 0.6rem; }

.navigation__button:hover .navigation__icon::before {
  top: -0.8rem; }

.navigation__button:hover .navigation__icon::after {
  top: 0.8rem; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg); }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg); }

.section-skills h3 {
  letter-spacing: 1rem;
  position: relative;
  padding-bottom: 2px; }

.section-skills h3::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 10%;
  height: 1.5px;
  width: 80%;
  background-image: linear-gradient(to left, transparent 0%, rgba(17, 45, 78, 0.85), transparent 100%); }

.section-skills i {
  display: inline-block;
  font-size: 6rem;
  color: #112d4e;
  padding: 3rem 1.5rem; }

.section-skills i:hover {
  color: #a6b1e1; }

.section-about,
.section-skills {
  background-color: #fff;
  padding: 18rem 5rem;
  margin-top: -10vh;
  -webkit-clip-path: polygon(50% 0%, 100% 12%, 100% 88%, 50% 100%, 0% 88%, 0% 12%);
  clip-path: polygon(50% 0%, 100% 12%, 100% 88%, 50% 100%, 0% 88%, 0% 12%); }
  @media (max-width: 56.25em) {
    .section-about,
    .section-skills {
      -webkit-clip-path: polygon(50% 0%, 100% 7%, 100% 93%, 50% 100%, 0% 93%, 0% 7%);
      clip-path: polygon(50% 0%, 100% 7%, 100% 93%, 50% 100%, 0% 93%, 0% 7%);
      padding: 13rem 2rem; } }
  @media (max-width: 25em) {
    .section-about,
    .section-skills {
      -webkit-clip-path: polygon(50% 0%, 100% 3%, 100% 97%, 50% 100%, 0% 97%, 0% 3%);
      clip-path: polygon(50% 0%, 100% 3%, 100% 97%, 50% 100%, 0% 97%, 0% 3%);
      padding: 7rem 0.1rem; } }

.section-projects {
  padding: 20rem 2rem;
  background-image: linear-gradient(rgba(166, 177, 225, 0.9), rgba(17, 45, 78, 0.9)), url(../img/mesh-X0z-meKcGAE-unsplash.jpg);
  background-size: cover; }

.section-project {
  background-image: linear-gradient(rgba(17, 45, 78, 0.8), rgba(166, 177, 225, 0.8)), url(../img/mesh-X0z-meKcGAE-unsplash.jpg);
  background-size: cover;
  padding: 20rem 3rem;
  margin-top: -12vh;
  -webkit-clip-path: polygon(50% 0%, 100% 12%, 100% 88%, 50% 100%, 0% 88%, 0% 12%);
  clip-path: polygon(50% 0%, 100% 12%, 100% 88%, 50% 100%, 0% 88%, 0% 12%); }
  @media (max-width: 56.25em) {
    .section-project {
      -webkit-clip-path: polygon(50% 0%, 100% 5%, 100% 95%, 50% 100%, 0% 95%, 0% 5%);
      clip-path: polygon(50% 0%, 100% 5%, 100% 95%, 50% 100%, 0% 95%, 0% 5%);
      padding: 13rem 3rem 18rem 3rem; } }
  @media (max-width: 25em) {
    .section-project {
      margin-top: -5vh;
      -webkit-clip-path: polygon(50% 0%, 100% 2%, 100% 98%, 50% 100%, 0% 98%, 0% 2%);
      clip-path: polygon(50% 0%, 100% 2%, 100% 98%, 50% 100%, 0% 98%, 0% 2%);
      padding: 9rem 3rem 12rem 3rem; } }

.section-contact-icon {
  background-color: #112d4e;
  padding: 10rem 6rem;
  margin-top: -5vh;
  -webkit-clip-path: polygon(50% 0%, 100% 12%, 100% 100%, 0 100%, 0 12%);
  clip-path: polygon(50% 0%, 100% 12%, 100% 100%, 0 100%, 0 12%); }
  @media (max-width: 37.5em) {
    .section-contact-icon {
      padding: 6rem 4rem; } }

.section-copyright {
  background-color: #112d4e;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: -1vh; }

.section-contact {
  background-color: #fff;
  padding: 15rem 6rem;
  margin-top: -10vh;
  -webkit-clip-path: polygon(50% 0%, 100% 12%, 100% 100%, 0 100%, 0 12%);
  clip-path: polygon(50% 0%, 100% 12%, 100% 100%, 0 100%, 0 12%); }

.contact {
  margin: 10rem;
  background-image: linear-gradient(to top, rgba(166, 177, 225, 0.2), #fff);
  border-radius: 3px;
  box-shadow: 0 1rem 2.5rem rgba(17, 45, 78, 0.05);
  outline-offset: 2rem;
  padding: 3rem 5rem; }
