.btn {
  color: #5be0c1;
  background: #264652;
  height: 2.4em;
  line-height: 2.4em;
  width: 7.3em;
  font-size: 0.7em;
  position: absolute;
  text-decoration: none;
  text-align: center;
}

.btn svg {
  height: 2.4em;
  left: 0;
  position: absolute;
  top: 0px;
  width: 7.3em;
}

.btn rect {
  fill: none;
  stroke: #5be0c1;
  stroke-width: 2;
  stroke-dasharray: 422, 0;
  -webkit-transition: all 0.35s linear;
  transition: all 0.35s linear;
}

@media (min-width: 770px) {
  .btn:hover {
    background: #284a57;
    font-weight: 900;
    letter-spacing: 1px;
  }
  .btn:hover rect {
    stroke-width: 5;
    stroke-dasharray: 15, 310;
    stroke-dashoffset: 48;
    -webkit-transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
  }
}

@media (min-width: 1250px) {
  .btn {
    font-size: 1em;
    width: 7.5em;
    line-height: 2.188em;
  }
  .btn svg {
    width: 7.5em;
  }
}

.menu-icon {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 200;
  top: 8px;
  right: 0;
  cursor: pointer;
  display: block;
}

.menu-icon__line {
  height: 3px;
  width: 30px;
  display: block;
  background-color: #5be0c1;
  margin-bottom: 7px;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.1s ease;
  transition: transform 0.1s ease, background-color 0.5s ease;
  transition: transform 0.1s ease, background-color 0.5s ease, -webkit-transform 0.1s ease;
}

.menu-icon__line-left {
  width: 16.5px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.menu-icon__line-right {
  width: 16.5px;
  float: right;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

@media (min-width: 770px) {
  .menu-icon:hover .menu-icon__line-left,
  .menu-icon:hover .menu-icon__line-right {
    width: 30px;
  }
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotatez(410deg) translate(7px, 7px);
          transform: rotatez(410deg) translate(7px, 7px);
  width: 30px;
}

input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: rotatez(-410deg);
          transform: rotatez(-410deg);
}

input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  display: none;
}

#navbar-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 35px;
  background-color: #1d363f;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  opacity: 0.9;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
  z-index: 100;
}

#navbar-desktop .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  cursor: pointer;
}

#navbar-desktop h1 {
  font-family: "Dancing Script", cursive;
  font-size: 2em;
  color: #5be0c1;
}

#navbar-desktop .navlinks-desktop {
  display: none;
}

@media (min-width: 770px) {
  #navbar-desktop {
    padding: 20px 60px;
  }
  #navbar-desktop a {
    text-decoration: none;
    color: #ccd6f6;
    font-family: "Roboto Mono", monospace;
  }
  #navbar-desktop a:hover {
    color: #5be0c1;
  }
  #navbar-desktop .logo {
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  }
  #navbar-desktop .logo:hover {
    -webkit-transform: translate(-5px, 0);
            transform: translate(-5px, 0);
  }
  #navbar-desktop .navlinks-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 36.125em;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 0.9em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #navbar-desktop .nav-but-wrap {
    display: none;
  }
}

@media (min-width: 1050px) {
  #navbar-desktop .navlinks-desktop {
    font-size: 1em;
  }
}

#navbar-moblie {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: #162930;
  z-index: 100;
  -webkit-transition: ease 0.15s;
  transition: ease 0.15s;
  color: #ccd6f6;
  text-align: center;
  padding-top: 4em;
}

#navbar-moblie a {
  text-decoration: none;
  color: #ccd6f6;
}

#navbar-moblie .navlinks-mobile > ul > li {
  list-style: none;
  font-family: "Roboto Mono", monospace;
  color: #5be0c1;
  padding: 4vh 0;
}

.side-social {
  display: none;
}

@media (min-width: 770px) {
  .side-social {
    position: fixed;
    color: #ccd6f6a8;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    z-index: 100;
  }
  .side-social::after {
    content: '';
    position: absolute;
    top: 0.5em;
    margin-left: 16px;
    background-color: #ccd6f6a8;
    width: 40vh;
    height: 2px;
  }
  .side-social::after:hover {
    color: #5be0c1;
  }
  .side-social a {
    text-decoration: none;
    color: #ccd6f6a8;
    font-family: "Roboto Mono", monospace;
    font-weight: 100;
    font-size: 0.9em;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    display: inline-block;
    padding: 0 5px 0 5px;
  }
  .side-social a:hover {
    color: #5be0c1;
    -webkit-transform: translate(-5px, 0);
            transform: translate(-5px, 0);
  }
}

@media (min-width: 770px) {
  .email {
    display: unset;
    right: -40px;
    bottom: 30vh;
  }
}

@media (min-width: 1250px) {
  .email {
    right: 8px;
  }
}

.social-div i {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media (min-width: 770px) {
  .social-div {
    display: unset;
    left: -15px;
    bottom: 37vh;
  }
}

@media (min-width: 1250px) {
  .social-div {
    left: 20px;
  }
}

#welcome-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  width: 100vw;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1d363f), to(#284a57));
  background-image: linear-gradient(#1d363f, #284a57);
  padding-top: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#welcome-section .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

#welcome-section .text-container div {
  padding: 34px 34px 0 34px;
  font-family: "Barlow", sans-serif;
  color: #ccd6f6a8;
}

#welcome-section .text-container div h1 {
  font-family: "Roboto Mono", monospace;
  color: #5be0c1;
  font-size: 0.8em;
}

#welcome-section .text-container div h2 {
  font-size: 2em;
  color: #ccd6f6;
}

#welcome-section .text-container div h3 {
  font-size: 2em;
}

#welcome-section .text-container div p {
  font-size: 1em;
  padding-bottom: 2em;
}

#welcome-section .text-container div .data-container {
  padding: 5em 0 0 0;
}

#welcome-section .img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background-image: url(../Images/cover7.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 70% auto;
}

@media (min-width: 490px) {
  #welcome-section .img-container {
    background-size: auto auto;
  }
}

@media (max-height: 770px) and (max-width: 770px) {
  #welcome-section {
    height: 800px;
  }
}

@media (max-height: 770px) and (min-width: 770px) {
  #welcome-section .img-container {
    background-size: auto 28vw;
  }
}

@media (min-width: 770px) {
  #welcome-section {
    padding: 5vw 13vw 0 13vw;
  }
  #welcome-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 0;
  }
  #welcome-section .img-container {
    background-image: url(../Images/cover5.png);
    background-position: right bottom;
    background-size: auto 38vw;
    width: 50vw;
  }
  #welcome-section .text-container {
    width: 50vw;
    height: 100vh;
  }
  #welcome-section .text-container div {
    max-width: 800px;
  }
  #welcome-section .text-container div h1 {
    font-size: 1em;
  }
  #welcome-section .text-container div h2 {
    font-size: 2em;
  }
  #welcome-section .text-container div h3 {
    font-size: 2em;
    white-space: nowrap;
  }
  #welcome-section .text-container div p {
    font-size: 0.8em;
  }
}

@media (min-width: 1050px) {
  #welcome-section .text-container div h1 {
    font-size: 1.2em;
  }
  #welcome-section .text-container div h2 {
    font-size: 3.2em;
  }
  #welcome-section .text-container div h3 {
    font-size: 3.2em;
  }
  #welcome-section .text-container div p {
    font-size: 1em;
  }
}

@media (min-width: 1250px) {
  #welcome-section .text-container div h1 {
    font-size: 1.5em;
  }
  #welcome-section .text-container div h2 {
    font-size: 3.5em;
  }
  #welcome-section .text-container div h3 {
    font-size: 3.5em;
  }
  #welcome-section .text-container div p {
    font-size: 1.2em;
  }
}

#works h3 {
  color: #ccd6f6;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: 0;
  font-family: "Barlow", sans-serif;
  font-size: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  align-items: center;
  max-width: 1600px;
}

#works h3 div {
  width: 30vw;
}

#works .work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 2em 0 2em 0;
}

#works .work img {
  border-radius: 5px;
  width: 100%;
  height: auto;
  opacity: 0.2;
}

#works .work img:hover {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

#works .work div {
  position: absolute;
  z-index: 10;
}

#works .work div h5 {
  font-family: "Roboto Mono", monospace;
  color: #5be0c1;
}

#works .work div h4 {
  font-family: "Barlow", sans-serif;
  color: #ccd6f6;
}

#works .work div .description {
  font-family: "Barlow", sans-serif;
  color: #ccd6f6;
}

#works .work div .technology {
  font-family: "Roboto Mono", monospace;
  color: #ccd6f6;
  margin-bottom: 10px;
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

#works .work div i {
  color: #ccd6f6;
}

#works .w1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: right;
}

#works .w1 div {
  padding-right: 5px;
  right: 0;
}

#works .w1 .technology > span {
  padding-left: 10px;
}

#works .w2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: left;
}

#works .w2 div {
  padding-left: 5px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  left: 0;
}

#works .w2 .technology > span {
  padding-right: 10px;
}

@media (min-width: 770px) {
  #works h3 {
    font-size: 1.2em;
  }
  #works .work {
    padding: 60px 0 60px 0;
    width: 100%;
  }
  #works .work img {
    width: 38vw;
    height: auto;
  }
  #works .work div {
    right: 0;
  }
  #works .work div h4 {
    font-size: 1em;
  }
  #works .work div .description {
    padding: 1vw;
    background-color: #1d363f;
    margin: 22px 0 22px 0;
    border-radius: 5px;
    width: 35vw;
    font-size: 0.8em;
  }
  #works .work div .technology {
    font-size: 0.8em;
  }
  #works .work div i {
    font-size: 0.8em;
  }
  #works .w2 > div {
    width: 300px;
  }
}

@media (min-width: 1050px) {
  #works h3 {
    font-size: 1.5em;
  }
  #works .work div h4 {
    font-size: 1.3em;
  }
  #works .work div .description {
    font-size: 1em;
    padding: 20px;
  }
  #works .work div .technology {
    font-size: 0.9em;
  }
  #works .work div i {
    font-size: 0.9em;
  }
}

@media (min-width: 1400px) {
  #works h3 {
    font-size: 1.7em;
  }
  #works .work {
    max-width: 1600px;
  }
  #works .work div h4 {
    font-size: 1.5vw;
  }
  #works .work div .description {
    font-size: 1.1vw;
    padding: 30px;
  }
  #works .work div .technology {
    font-size: 1.1vw;
  }
  #works .work div i {
    font-size: 1.3em;
  }
}

#projects {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#projects h3 {
  color: #ccd6f6;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Barlow", sans-serif;
  max-width: 1600px;
  width: 100%;
  padding: 20px 0;
  font-size: 1.2em;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

#projects div {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  row-gap: 10px;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  max-width: 1600px;
}

#projects div .grid-item {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ccd6f6a8;
  font-family: "Barlow", sans-serif;
  background-color: #162930;
  padding: 30px;
  border-radius: 10px;
}

#projects div .grid-item .project-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 30px;
}

#projects div .grid-item .project-icon a > .fa-github {
  color: #ccd6f6a8;
}

#projects div .grid-item .project-icon .fa-folder {
  color: #5be0c1;
  font-size: 40px;
}

#projects div .grid-item .project-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#projects div .grid-item .project-details h5 {
  font-size: 1em;
  color: #ccd6f6;
}

#projects div .grid-item .project-details p > span {
  color: #ccd6f6a8;
  padding-right: 7px;
  font-size: 0.9em;
}

@media (min-width: 770px) {
  #projects h3 {
    font-size: 1.2em;
    padding-bottom: 60px;
  }
  #projects div {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  #projects div .grid-item .project-details h5 {
    font-size: 1.2em;
  }
}

@media (min-width: 1050px) {
  #projects h3 {
    font-size: 1.5em;
  }
  #projects div {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1600px) {
  #projects h3 {
    font-size: 1.7em;
  }
  #projects div .grid-item .project-details h5 {
    font-size: 1.5em;
  }
}

#certification h3 {
  color: #ccd6f6;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: 0;
  font-family: "Barlow", sans-serif;
  font-size: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  align-items: center;
  max-width: 1600px;
}

#certification h3 div {
  width: 30vw;
}

@media (min-width: 770px) {
  #certification h3 {
    font-size: 1.2em;
  }
}

@media (min-width: 1050px) {
  #certification h3 {
    font-size: 1.5em;
  }
}

@media (min-width: 1400px) {
  #certification h3 {
    font-size: 1.7em;
  }
}

.mycard {
  height: 100%;
  width: 100%;
  max-width: 24rem;
}

.cardtitle {
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-text-opacity));
  text-align: center;
}

.cardimg {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
  max-height: 6rem;
}

.carddescription {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
  text-align: center;
}

.slider {
  width: 100%;
  min-height: 385px;
}

.slider input {
  display: none;
}

.testimonials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  min-height: 375px;
  -webkit-perspective: 500px;
          perspective: 500px;
  margin-top: 5rem;
  overflow: hidden;
}

.testimonials .item {
  max-width: 20rem;
  border-radius: 1.5rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(30, 58, 138, var(--tw-border-opacity));
  top: 0;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #162930;
  padding: 30px;
  width: 450px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

.testimonials .item img {
  width: 100px;
}

.testimonials .item p {
  color: #ddd;
  font-family: "Barlow", sans-serif;
}

.testimonials .item h2 {
  font-size: 14px;
}

.dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dots label {
  display: block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #413b52;
  margin: 7px;
  -webkit-transition: color 0.2s, -webkit-transform 0.2s;
  transition: color 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, color 0.2s;
  transition: transform 0.2s, color 0.2s, -webkit-transform 0.2s;
}

@media (min-width: 770px) {
  h3 {
    font-size: 1.2em;
  }
  .cardtitle {
    font-size: 1.5rem;
    font-weight: bold;
  }
}

@media (min-width: 1050px) {
  h3 {
    font-size: 1.5em;
  }
  .cardtitle {
    font-size: 1.6rem;
  }
}

@media (min-width: 1400px) {
  h3 {
    font-size: 1.7em;
  }
  .cardtitle {
    font-size: 1.7rem;
  }
}

/* First */
#t-1:checked ~ .dots label[for="t-1"] {
  -webkit-transform: scale(2);
          transform: scale(2);
  background-color: #fff;
}

#t-1:checked ~ .dots label[for="t-2"] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#t-1:checked ~ .testimonials label[for="t-1"] {
  z-index: 4;
}

#t-1:checked ~ .testimonials label[for="t-2"] {
  -webkit-transform: translateX(300px) translateZ(-90px) translateY(-15px);
          transform: translateX(300px) translateZ(-90px) translateY(-15px);
  z-index: 3;
}

#t-1:checked ~ .testimonials label[for="t-3"] {
  -webkit-transform: translateX(600px) translateZ(-180px) translateY(-30px);
          transform: translateX(600px) translateZ(-180px) translateY(-30px);
  z-index: 2;
}

#t-1:checked ~ .testimonials label[for="t-4"] {
  -webkit-transform: translateX(900px) translateZ(-270px) translateY(-45px);
          transform: translateX(900px) translateZ(-270px) translateY(-45px);
  z-index: 1;
}

#t-1:checked ~ .testimonials label[for="t-5"] {
  -webkit-transform: translateX(1200px) translateZ(-360px) translateY(-60px);
          transform: translateX(1200px) translateZ(-360px) translateY(-60px);
}

/* Second */
#t-2:checked ~ .dots label[for="t-1"] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#t-2:checked ~ .dots label[for="t-2"] {
  -webkit-transform: scale(2);
          transform: scale(2);
  background-color: #fff;
}

#t-2:checked ~ .dots label[for="t-3"] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#t-2:checked ~ .testimonials label[for="t-1"] {
  -webkit-transform: translateX(-300px) translateZ(-90px) translateY(-15px);
          transform: translateX(-300px) translateZ(-90px) translateY(-15px);
}

#t-2:checked ~ .testimonials label[for="t-2"] {
  z-index: 3;
}

#t-2:checked ~ .testimonials label[for="t-3"] {
  -webkit-transform: translateX(300px) translateZ(-90px) translateY(-15px);
          transform: translateX(300px) translateZ(-90px) translateY(-15px);
  z-index: 2;
}

#t-2:checked ~ .testimonials label[for="t-4"] {
  -webkit-transform: translateX(600px) translateZ(-180px) translateY(-30px);
          transform: translateX(600px) translateZ(-180px) translateY(-30px);
  z-index: 1;
}

#t-2:checked ~ .testimonials label[for="t-5"] {
  -webkit-transform: translateX(900px) translateZ(-270px) translateY(-45px);
          transform: translateX(900px) translateZ(-270px) translateY(-45px);
}

/* Third */
#t-3:checked ~ .dots label[for="t-2"] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#t-3:checked ~ .dots label[for="t-3"] {
  -webkit-transform: scale(2);
          transform: scale(2);
  background-color: #fff;
}

#t-3:checked ~ .dots label[for="t-4"] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#t-3:checked ~ .testimonials label[for="t-1"] {
  -webkit-transform: translateX(-600px) translateZ(-180px) translateY(-30px);
          transform: translateX(-600px) translateZ(-180px) translateY(-30px);
}

#t-3:checked ~ .testimonials label[for="t-2"] {
  -webkit-transform: translateX(-300px) translateZ(-90px) translateY(-15px);
          transform: translateX(-300px) translateZ(-90px) translateY(-15px);
}

#t-3:checked ~ .testimonials label[for="t-3"] {
  z-index: 3;
}

#t-3:checked ~ .testimonials label[for="t-4"] {
  -webkit-transform: translateX(300px) translateZ(-90px) translateY(-15px);
          transform: translateX(300px) translateZ(-90px) translateY(-15px);
  z-index: 2;
}

#t-3:checked ~ .testimonials label[for="t-5"] {
  -webkit-transform: translateX(600px) translateZ(-180px) translateY(-30px);
          transform: translateX(600px) translateZ(-180px) translateY(-30px);
}

/* Fourth */
#t-4:checked ~ .dots label[for="t-3"] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#t-4:checked ~ .dots label[for="t-4"] {
  -webkit-transform: scale(2);
          transform: scale(2);
  background-color: #fff;
}

#t-4:checked ~ .dots label[for="t-5"] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#t-4:checked ~ .testimonials label[for="t-1"] {
  -webkit-transform: translateX(-900px) translateZ(-270px) translateY(-45px);
          transform: translateX(-900px) translateZ(-270px) translateY(-45px);
}

#t-4:checked ~ .testimonials label[for="t-2"] {
  -webkit-transform: translateX(-600px) translateZ(-180px) translateY(-30px);
          transform: translateX(-600px) translateZ(-180px) translateY(-30px);
}

#t-4:checked ~ .testimonials label[for="t-3"] {
  -webkit-transform: translateX(-300px) translateZ(-90px) translateY(-15px);
          transform: translateX(-300px) translateZ(-90px) translateY(-15px);
  z-index: 2;
}

#t-4:checked ~ .testimonials label[for="t-4"] {
  z-index: 3;
}

#t-4:checked ~ .testimonials label[for="t-5"] {
  -webkit-transform: translateX(300px) translateZ(-90px) translateY(-15px);
          transform: translateX(300px) translateZ(-90px) translateY(-15px);
}

/* Fifth */
#t-5:checked ~ .dots label[for="t-4"] {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#t-5:checked ~ .dots label[for="t-5"] {
  -webkit-transform: scale(2);
          transform: scale(2);
  background-color: #8f6f6f;
}

#t-5:checked ~ .testimonials label[for="t-1"] {
  -webkit-transform: translateX(-1200px) translateZ(-360px) translateY(-60px);
          transform: translateX(-1200px) translateZ(-360px) translateY(-60px);
}

#t-5:checked ~ .testimonials label[for="t-2"] {
  -webkit-transform: translateX(-900px) translateZ(-270px) translateY(-45px);
          transform: translateX(-900px) translateZ(-270px) translateY(-45px);
  z-index: 1;
}

#t-5:checked ~ .testimonials label[for="t-3"] {
  -webkit-transform: translateX(-600px) translateZ(-180px) translateY(-30px);
          transform: translateX(-600px) translateZ(-180px) translateY(-30px);
  z-index: 2;
}

#t-5:checked ~ .testimonials label[for="t-4"] {
  -webkit-transform: translateX(-300px) translateZ(-90px) translateY(-15px);
          transform: translateX(-300px) translateZ(-90px) translateY(-15px);
  z-index: 3;
}

#t-5:checked ~ .testimonials label[for="t-5"] {
  z-index: 4;
}

#contact h3 {
  color: #ccd6f6;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: 0;
  font-family: "Barlow", sans-serif;
  font-size: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  align-items: center;
  max-width: 1600px;
}

#contact h3 div {
  width: 30vw;
}

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

#contact .row {
  margin: -20px 0;
}

#contact .row:after {
  content: "";
  display: table;
  clear: both;
}

#contact .row .col {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contact .row .col.x-50 {
  width: 100%;
}

#contact .row .col.x-100 {
  width: 100%;
}

#contact .content-wrapper {
  min-height: 100%;
  position: relative;
}

#contact .get-in-touch {
  max-width: 650px;
  padding: 20% 0 20% 0;
  position: relative;
}

#contact .get-in-touch .title {
  text-align: center;
  font-family: Raleway, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 20px;
  color: #5be0c1;
  line-height: 48px;
  padding-bottom: 48px;
}

#contact .contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#contact .contact-form .form-field {
  position: relative;
  margin: 32px 0;
}

#contact .contact-form .input-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 3%;
  width: 94%;
  height: 38px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

#contact .contact-form .input-text:focus {
  outline: none;
}

#contact .contact-form .input-text:focus + .label, #contact .contact-form .input-text.not-empty + .label {
  -webkit-transform: translateY(-35px);
          transform: translateY(-35px);
  color: #ccd6f6a8;
}

#contact .contact-form .label {
  position: absolute;
  left: 3%;
  bottom: 8px;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #888;
  cursor: text;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

#contact .contact-form .submit-btn {
  display: inline-block;
  background-color: #162930;
  color: #5be0c1;
  font-family: Raleway, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  border: 1px solid #5be0c1;
  cursor: pointer;
}

@media (min-width: 770px) {
  #contact h3 {
    font-size: 1.2em;
  }
  #contact .get-in-touch {
    width: 100%;
  }
  #contact .input-text {
    border-radius: 10px;
  }
}

@media (min-width: 1050px) {
  #contact h3 {
    font-size: 1.5em;
  }
}

@media (min-width: 1400px) {
  #contact h3 {
    font-size: 1.7em;
  }
}

* {
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  -webkit-transition: height 0.66s ease-out;
  transition: height 0.66s ease-out;
}

.list {
  padding: 0 8px;
  color: #5be0c1;
  font-family: "Roboto Mono", monospace;
}

.line {
  margin-left: 15px;
  margin-top: 5px;
  background-color: #ccd6f6a8;
  height: 2px;
  width: 100px;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  overscroll-behavior: contain;
  z-index: 8;
}

#works, #projects, #certification, #contact {
  width: 100vw;
  height: auto;
  background-color: #284a57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 34px 0 34px;
}

@media (min-width: 770px) {
  #works, #projects, #certification, #contact {
    padding: 10vw 13vw 0 13vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#certification * {
  font-family: "Barlow", sans-serif;
}
/*# sourceMappingURL=stlyes.css.map */