* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px grey;
            box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #da226f;
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(161, 30, 85, 0.932);
  }
  
  header {
    font-family: 'Poppins', sans-serif;
  }
  
  header nav {
    height: 12vh;
    padding: 0 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2;
  }
  
  header .burger {
    display: none;
  }
  
  header .burger div {
    width: 28px;
    height: 3px;
    background: #141313;
    margin-top: 2px;
  }
  
  header .burger .small {
    width: 20px;
  }
  
  header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  header li {
    list-style: none;
    margin-left: 1.5rem;
  }
  
  header .dark-mode {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: transparent;
    /* Rounded sliders */
  }
  
  header .dark-mode .moon {
    margin-left: 0.3rem;
  }
  
  header .dark-mode .moon img {
    width: 25px;
  }
  
  header .dark-mode .switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 27px;
  }
  
  header .dark-mode .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  header .dark-mode .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #535050;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  header .dark-mode .slider:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  
  header .dark-mode input:checked + .slider {
    background-color: #854fee;
  }
  
  header .dark-mode input:focus + .slider {
    -webkit-box-shadow: 0 0 1px #854fee;
            box-shadow: 0 0 1px #854fee;
  }
  
  header .dark-mode input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  header .dark-mode .slider.round {
    border-radius: 50px;
  }
  
  header .dark-mode .slider.round:before {
    border-radius: 50%;
  }
  
  header a {
    text-decoration: none;
    position: relative;
    color: #141313;
    font-size: 1.1rem;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  header a:hover {
    color: #854fee;
    padding: 0 0.6rem;
  }
  
  #home {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-family: 'Ubuntu', sans-serif;
  }
  
  #home .left {
    margin: 5rem;
    font-size: 1.5rem;
  }
  
  #home .left .text {
    font-size: 3rem;
  }
  
  #home .left .name {
    font-size: 5rem;
  }
  
  #home .left .title {
    font-size: 1.4rem;
    margin-left: 0.2rem;
  }
  
  #home .left .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  #home .left .btn {
    margin: 1rem 0.5rem;
    width: 8rem;
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
    border: 2px solid #4458dc;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
  
  #home .left .btn a {
    text-decoration: none;
    color: #141313;
  }
  
  #home .left .btn:hover {
    border-radius: 13px 5px 13px 5px;
    background-color: #4458dc;
  }
  
  #home .left .btn:hover a {
    color: white;
  }
  
  #home .left .btn.active {
    background-color: #4458dc;
    color: white;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  #home .left .btn.active a {
    color: white;
  }
  
  #home .left .btn.active:hover {
    background: white;
  }
  
  #home .left .btn.active:hover a {
    color: #141313;
  }
  
  #home .right {
    margin: 1rem 5rem;
  }
  
  #home .right img {
    max-width: 500px;
  }
  
  #about {
    font-family: 'Poppins', sans-serif;
  }
  
  #about .container {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  #about .container .left {
    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;
  }
  
  #about .container .left img {
    width: 400px;
  }
  
  #about .container .right {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  #about .container .right .title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
  }
  
  #about .container .right .text {
    padding: 1rem 1rem;
    width: 100%;
    text-align: justify;
  }
  
  #about .container .right .btn {
    font-family: 'Ubuntu', sans-serif;
    width: 10rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.9rem 0.3rem;
    background-color: #4458dc;
    border: 2px solid #4458dc;
    outline: none;
    border-radius: 5px;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    cursor: pointer;
  }
  
  #about .container .right .btn:hover {
    border-radius: 13px 5px 13px 5px;
    background-color: white;
  }
  
  #about .container .right .btn a {
    text-decoration: none;
    color: white;
    padding: 1rem;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  
  #about .container .right .btn a:hover {
    color: black;
  }
  
  #skill {
    margin-top: 15vh;
  }
  
  #skill .title {
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    font-size: 2.1rem;
    text-align: center;
    padding: 3rem;
    position: relative;
    font-weight: 600;
  }
  
  #skill .container {
    margin: 1rem 1rem;
    width: 100%;
  }
  
  #skill .fa-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: -2rem 2rem 0 2rem;
    color: #c0c7ce;
  }
  
  #skill ul {
    -webkit-margin-before: 0em;
            margin-block-start: 0em;
    -webkit-margin-after: 0em;
            margin-block-end: 0em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-start: 0px;
            padding-inline-start: 0px;
  }
  
  #skill .cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    list-style: none;
    padding: 1rem;
  }
  
  #skill .cards {
    -webkit-overflow-scrolling: touch;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  
  #skill .cards::-webkit-scrollbar {
    display: none;
  }
  
  #skill .card-item {
    margin-bottom: 2rem;
    display: inline-block;
    margin-right: 1.5rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  
  #skill .card {
    position: relative;
    border-radius: 20px;
    -webkit-box-shadow: 0px 1px 10px rgba(121, 113, 146, 0.452);
            box-shadow: 0px 1px 10px rgba(121, 113, 146, 0.452);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    padding: 1rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  #skill .card .img {
    width: 180px;
    height: 180px;
  }
  
  #skill .card img {
    width: 100%;
    height: auto;
  }
  
  #skill .card .name {
    text-align: center;
    font-size: 1.5rem;
    color: #777777;
  }
  
  #skill .card:hover {
    -webkit-box-shadow: 0px 10px 20px rgba(57, 56, 61, 0.425);
            box-shadow: 0px 10px 20px rgba(57, 56, 61, 0.425);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  
  #service {
    margin-top: 8rem;
  }
  
  #service h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
  }
  
  #service .wrapper .cards {
    font-family: 'Poppins', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 5% 10%;
    padding: 0;
  }
  
  #service .wrapper .card-items {
    width: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  #service .wrapper .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-self: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem;
    -webkit-box-shadow: 0px 1px 10px rgba(121, 113, 146, 0.452);
            box-shadow: 0px 1px 10px rgba(121, 113, 146, 0.452);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  #service .wrapper .card img {
    width: 40%;
  }
  
  #service .wrapper .card .title {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #535050;
  }
  
  #service .wrapper .card .text {
    margin-top: 0.5rem;
    text-align: justify;
    text-justify: inter-word;
    color: #777777;
  }
  
  #service .wrapper .card:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-box-shadow: 0px 10px 20px rgba(57, 56, 61, 0.425);
            box-shadow: 0px 10px 20px rgba(57, 56, 61, 0.425);
  }
  
  @media (max-width: 900px) {
    #service .wrapper .card-items {
      width: 85%;
    }
  }
  
  #contact {
    font-family: 'Poppins', sans-serif;
    background: #03203c;
    width: 100%;
    padding: 3rem 0;
  }
  
  #contact h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: white;
    letter-spacing: 2px;
  }
  
  #contact .container {
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 3rem 0;
  }
  
  #contact .left {
    -webkit-box-flex: 70%;
        -ms-flex: 70%;
            flex: 70%;
    margin-left: 10%;
  }
  
  #contact .left p {
    letter-spacing: 2px;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1rem auto;
    color: #f3f1f1;
  }
  
  #contact .left input[type='text'],
  #contact .left input[type='email'] {
    width: 70%;
    height: 2.3rem;
    border: 2px solid #738da5;
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    outline: none;
    font-size: 1rem;
    margin: 0.5rem 0px;
    border-radius: 10px;
    padding-left: 0.3rem;
    color: white;
    background: #052a4d;
  }
  
  #contact .left input[type='text']::-webkit-input-placeholder,
  #contact .left input[type='email']::-webkit-input-placeholder {
    color: #777777;
  }
  
  #contact .left input[type='text']:-ms-input-placeholder,
  #contact .left input[type='email']:-ms-input-placeholder {
    color: #777777;
  }
  
  #contact .left input[type='text']::-ms-input-placeholder,
  #contact .left input[type='email']::-ms-input-placeholder {
    color: #777777;
  }
  
  #contact .left input[type='text']::placeholder,
  #contact .left input[type='email']::placeholder {
    color: #777777;
  }
  
  #contact .left input[type='text']:focus,
  #contact .left input[type='email']:focus {
    background: #133f68;
  }
  
  #contact .left label {
    color: #f3f1f1;
  }
  
  #contact .left textarea {
    margin-top: 0.5rem;
    width: 70%;
    padding: 0.3rem;
    font-size: 1.1rem;
    background: #052a4d;
    color: white;
    border-radius: 10px;
    border: 2px solid #201f1f17;
    outline: none;
  }
  
  #contact .left textarea:focus {
    background: #133f68;
  }
  
  #contact .left textarea::-webkit-input-placeholder {
    color: #f5eeee;
  }
  
  #contact .left textarea:-ms-input-placeholder {
    color: #f5eeee;
  }
  
  #contact .left textarea::-ms-input-placeholder {
    color: #f5eeee;
  }
  
  #contact .left textarea::placeholder {
    color: #f5eeee;
  }
  
  #contact .left button {
    padding: 0.6rem 1.5rem;
    margin-top: 0.4rem;
    border-radius: 5px;
    background-color: #4458dc;
    border: 2px solid #4458dc;
    color: white;
    font-size: 1.1rem;
    letter-spacing: 1px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
  }
  
  #contact .left button:hover {
    background-color: #052a4d;
    color: #f3f1f1;
  }
  
  #contact .right {
    -webkit-box-flex: 30%;
        -ms-flex: 30%;
            flex: 30%;
    margin-top: 0.7rem;
    color: #f3f1f1;
    margin-right: 10%;
  }
  
  #contact .right .title {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
  }
  
  #contact .right .info {
    margin-top: 1.5rem;
  }
  
  #contact .right .info p {
    margin-top: 0.8rem;
  }
  
  #contact .right .info p i {
    padding: 0px 0.5rem;
  }
  
  #contact .right .icon {
    margin: 1rem;
  }
  
  #contact .right .icon i {
    font-size: 1.7rem;
    padding: 0.5rem;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  #contact .right .icon .fa-linkedin:hover,
  #contact .right .icon .fa-facebook:hover {
    color: #3636f3;
  }
  
  #contact .right .icon .fa-github:hover {
    color: black;
  }
  
  #contact .right .icon .fa-instagram:hover {
    color: red;
  }
  
  @media (min-width: 900px) {
    #about .container {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      margin: 0 2rem 0 5rem;
    }
    #about .container .left {
      width: 500px;
    }
    #about .container .right {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin-left: 10rem;
    }
    #about .container .right .text {
      padding: 1rem 0rem;
      width: 90%;
    }
    #skill .cards {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
    #skill .card-item {
      margin-top: 1rem;
      padding: 1rem;
    }
    #skill .fa-icon {
      display: none;
    }
  }
  
  @media (max-width: 900px) {
    #home .left {
      margin: 4rem 0 0 5rem;
    }
    #home .right img {
      display: none;
    }
    header .burger {
      display: block;
      position: relative;
      border-radius: 50%;
      padding: 0.7rem;
      cursor: pointer;
      -webkit-transition: all 0.9s ease;
      transition: all 0.9s ease;
    }
    header .burger .line1,
    header .burger .line3 {
      -webkit-transition: all 0.9s ease;
      transition: all 0.9s ease;
    }
    header .burger:hover, header .burger:focus {
      background: rgba(168, 164, 164, 0.295);
    }
    header .nav-links {
      border-radius: 0px 10px 10px 0;
      width: 100%;
      height: auto;
      background: #000a12;
      position: absolute;
      top: 11vh;
      left: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      z-index: 1000;
      clip-path: circle(100px at 10% -10%);
      -webkit-clip-path: circle(100px at -90% 0%);
      pointer-events: none;
      -webkit-transition: all 0.8s ease-out;
      transition: all 0.8s ease-out;
    }
    header .nav-links li {
      padding: 8%;
    }
    header .nav-links li a {
      color: white;
    }
    header .nav-links li a:hover {
      padding: 6px 12px;
      background: white;
      border-radius: 50px;
      color: black;
    }
    header .active-nav {
      -webkit-transition: all 1s ease-in;
      transition: all 1s ease-in;
      clip-path: circle(1000px at 90% -10%);
      -webkit-clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
    }
    header .cross {
      -webkit-transition: all 0.9s ease;
      transition: all 0.9s ease;
    }
    header .cross .small {
      visibility: hidden;
    }
    header .cross .line1 {
      -webkit-transition: all 0.9s ease;
      transition: all 0.9s ease;
      -webkit-transform: rotate(45deg) translate(2px, 5px);
              transform: rotate(45deg) translate(2px, 5px);
    }
    header .cross .line3 {
      -webkit-transition: all 0.9s ease;
      transition: all 0.9s ease;
      -webkit-transform: rotate(-45deg) translate(2px, -6px);
              transform: rotate(-45deg) translate(2px, -6px);
    }
    #contact .container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    #contact .container .left {
      width: 110%;
    }
    #contact .container .right {
      margin-left: 10%;
    }
    #contact .container .right .title {
      margin-top: 3rem;
    }
  }
  
  #galary {
    margin-top: 3rem;
    background: -webkit-gradient(linear, left bottom, left top, from(#03203cad), to(rgba(32, 102, 114, 0.404)));
    background: linear-gradient(to top, #03203cad, rgba(32, 102, 114, 0.404));
    padding: 1rem;
  }
  
  #galary h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    padding-top: 3rem;
  }
  
  #galary .image {
    top: 0;
    z-index: 100;
  }
  
  #galary .image .cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 6% 10%;
  }
  
  #galary .image .card-item {
    border: 8px ridge rgba(53, 47, 47, 0.562);
    margin: 1rem;
    -webkit-box-shadow: 0px 10px 10px 3px rgba(97, 95, 95, 0.315);
            box-shadow: 0px 10px 10px 3px rgba(97, 95, 95, 0.315);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  #galary .image .card-item img {
    width: 300px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  #galary .image .card-item:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    overflow-x: hidden;
  }
  
  .dark-mode {
    background: #141313;
    color: white;
  }
  
  .dark-mode a {
    color: white;
  }
  
  .dark-mode #home .left .btn a {
    color: white;
  }
  
  .dark-mode .btn:hover {
    background-color: #141313;
  }
  
  .dark-mode #home .left .btn.active:hover {
    background-color: #141313;
  }
  
  .dark-mode #home .left .btn.active:hover a {
    color: white;
  }
  
  .dark-mode #about .container .right .btn:hover {
    background-color: #141313;
  }
  
  .dark-mode #about .container .right .btn:hover a {
    color: white;
  }
  
  .dark-mode header .burger div {
    background: white;
  }
  
  /* Progress Bar */
  .progress {
    height: 4px;
    width: 0%;
    background-color: rgba(173, 95, 127, 0.616);
    border-radius: 10px;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-animation: progress 1s linear;
            animation: progress 1s linear;
  }
  
  @-webkit-keyframes progress {
    to {
      background-color: #da226f;
      width: 100%;
    }
  }
  
  @keyframes progress {
    to {
      background-color: #da226f;
      width: 100%;
    }
  }
  
  :root * {
    /* Pause the animation */
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
    -webkit-animation-delay: calc(var(--scroll) * -1s);
            animation-delay: calc(var(--scroll) * -1s);
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
  }
  /*# sourceMappingURL=Style.css.map */