@font-face {
  font-family: 'light';
  src: url(../fonts/work-sans/WorkSans-Light.ttf);
}

@font-face {
  font-family: 'regular';
  src: url(../fonts/work-sans/WorkSans-Regular.ttf);
}

@font-face {
  font-family: 'bold';
  src: url(../fonts/work-sans/WorkSans-Bold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'regular';
}

/********************* Global Style********************/
.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
  font-family: 'light';
}

h1 {
  font-size: 30px !important;
  font-family: 'bold';
}

h2 {
  font-size: 28px  !important;
  font-family: 'bold';
}

h3 {
  font-size: 25px  !important;
  font-family: 'regular';
}

h4 {
  font-size: 23px  !important;
  font-family: 'regular';
}

h5 {
  font-size: 20px  !important;
  font-family: 'regular';
}

h6 {
  font-size: 16px  !important;
  font-family: 'regular';
}

p, span {
  font-size: 15px  !important;
  font-family: 'light';
}

body {
  background-color: #1D1E24;
}

body::-webkit-scrollbar-thumb {
  background-color: #0045ff;
  border-radius: 0px;
}

body::-webkit-scrollbar {
  width: 2px;
  background-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  color: #FCFCFC;
}

p, span {
  color: #AEB0B8;
}

a, i {
  color: #93959C;
}

p::-moz-selection,
li::-moz-selection {
  background: transparent !important;
  color: #FCFCFC !important;
}

p::selection,
li::selection {
  background: transparent !important;
  color: #FCFCFC !important;
}

.personal-logo-brand {
  width: 100%;
  height: 50vh;
  background: url(../images/personal_intro/experience.gif);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.profile-information {
  width: 85%;
  margin: auto;
  height: 100%;
  background-color: #23262B;
  -webkit-box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.07);
          box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.07);
  padding: 1.875rem;
  position: relative;
  top: -108px;
  -webkit-transition: -webkit-box-shadow .3s ease-in-out;
  transition: -webkit-box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  border-radius: 20px;
  border: 4px solid #23262B;
}

.profile-information .image-content {
  width: 10.125rem;
  height: 10.125rem;
  overflow: hidden;
  margin-top: -4.125rem;
  border-radius: 20px;
  background-color: #23262B;
  border: 4px solid #23262B;
  -webkit-box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

.profile-information .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.profile-information .personal-info-content h2, .profile-information .personal-info-content p {
  text-transform: capitalize;
}

.profile-information .personal-info-content h2 {
  position: relative;
  overflow: hidden;
  padding: 0px 20px;
  width: 200px;
  height: 50px;
}

.profile-information .personal-info-content h2 span {
  position: absolute;
  z-index: 1;
  font-size: 28px !important;
  color: #FCFCFC;
  top: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.profile-information .personal-info-content h2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/personal_image/heading-bk.png);
  background-size: contain;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: .5s;
  transition: .5s;
}

.profile-information .personal-info-content p {
  font-weight: 600;
  letter-spacing: 3px;
}

.profile-information .personal-info-content a {
  margin: 0px 5px;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.profile-information .personal-info-content a i {
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.profile-information .personal-info-content a:hover i {
  color: #0081ff;
  -webkit-box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
          box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
}

.profile-information .contact-info {
  text-transform: capitalize;
}

.profile-information .contact-info span {
  font-size: 20px;
}

.profile-information .contact-info h6 {
  margin-top: .5rem;
}

.profile-information .contact-info a {
  color: #FCFCFC;
  font-weight: 600;
}

.protofolio {
  width: 85%;
  background-color: #23262B;
  margin: auto;
  border-radius: 20px;
  -webkit-box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.07);
          box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.07);
  padding: 1.875rem;
  -webkit-transition: -webkit-box-shadow .3s ease-in-out;
  transition: -webkit-box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  margin-bottom: 120px;
}

.protofolio h3 {
  text-transform: capitalize;
  position: relative;
  margin-bottom: 35px;
  letter-spacing: 3px;
}

.protofolio h3::after {
  content: '';
  position: absolute;
  left: 0;
  width: 80px;
  height: 3px;
  border-radius: 5px;
  background: #0081ff;
  bottom: -15px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
          box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
}

.protofolio p {
  line-height: 1.8rem;
  text-transform: capitalize;
}

.protofolio .cv-btn-shape {
  margin: auto;
  text-align: center;
  width: 200px;
  cursor: pointer;
}

.protofolio .cv-btn-shape .input-group-text {
  background: transparent;
  border-color: #33363D !important;
  border-right-width: 0px;
  border-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  padding: 0.375rem 0rem 0.375rem 0.75rem !important;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.protofolio .cv-btn-shape .input-group-text i {
  background: -webkit-gradient(linear, left top, right top, from(#0081ff), to(#0045ff));
  background: linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  margin-left: 20px;
}

.protofolio .cv-btn-shape .btn-cv {
  color: #FCFCFC;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: capitalize;
  font-family: 'regular';
  background: transparent;
  border: 1px solid #33363D !important;
  border-left-width: 0px !important;
  border-radius: 10px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  padding: .75rem 1.375rem .75rem 1.375rem !important;
}

.protofolio .cv-btn-shape:hover .btn-cv, .protofolio .cv-btn-shape:hover .input-group-text {
  border-color: #0081ff !important;
  -webkit-box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
          box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
}

.protofolio .what-doing .card {
  background: transparent;
  border: 2px solid #33363D !important;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1.875rem 1.875rem 1.5rem;
  text-transform: capitalize;
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.protofolio .what-doing .card h4 {
  font-size: 18px !important;
  margin: 1rem 0rem;
}

.protofolio .what-doing .card .card-icon i {
  font-size: 50px;
  margin-bottom: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#0081ff), to(#0045ff));
  background: linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.protofolio .what-doing .card:hover {
  border-color: #0081ff !important;
  -webkit-box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
          box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
}

.protofolio .resume h3 {
  text-transform: capitalize;
  margin-bottom: 30px;
}

.protofolio .resume h3 i {
  margin-right: 5px;
  font-size: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#0081ff), to(#0045ff));
  background: linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.protofolio .resume .timeline-pannel {
  padding: 0px 1rem;
  border-left: 3px solid #33363D;
}

.protofolio .resume .timeline-pannel .timeline-data {
  position: relative;
  margin-bottom: 40px;
}

.protofolio .resume .timeline-pannel .timeline-data::before {
  position: absolute;
  content: '';
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: -23px;
  height: 0.625rem;
  width: 0.625rem;
  background-color: #0D86FF;
  -webkit-box-shadow: 0 0 0 0.1875rem rgba(13, 134, 255, 0.25);
          box-shadow: 0 0 0 0.1875rem rgba(13, 134, 255, 0.25);
}

.protofolio .resume .timeline-pannel .timeline-data ul {
  margin-top: 10px;
  list-style-type: none;
  color: #AEB0B8;
}

.protofolio .resume .timeline-pannel .timeline-data ul li {
  position: relative;
}

.protofolio .resume .timeline-pannel .timeline-data ul li::after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 7px;
  left: -20px;
  background: -webkit-gradient(linear, left top, right top, from(#0081ff), to(#0045ff));
  background: linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.protofolio .projects-section .card {
  background: #2E2F36;
  -webkit-box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.07);
          box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.07);
  border-color: transparent !important;
  margin-bottom: 2rem;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: .5s linear;
  transition: .5s linear;
}

.protofolio .projects-section .card .image-content {
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
  height: 14rem;
  position: relative;
}

.protofolio .projects-section .card .image-content img {
  -o-object-fit: cover;
     object-fit: cover;
}

.protofolio .projects-section .card .image-content .overlay-line {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 38, 43, 0.8);
  top: 0;
  left: -100%;
  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;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.protofolio .projects-section .card .image-content .overlay-line a i {
  font-size: 50px;
  background: -webkit-gradient(linear, left top, right top, from(#0081ff), to(#0045ff));
  background: linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: rotations 2s linear infinite;
          animation: rotations 2s linear infinite;
}

.protofolio .projects-section .card .image-content .under-update {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 180px;
  height: 40px;
  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;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #2E2F36;
  opacity: .95;
  border: 2px solid linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  -webkit-box-shadow: 0 0px 10px rgba(0, 69, 255, 0.2);
          box-shadow: 0 0px 10px rgba(0, 69, 255, 0.2);
}

.protofolio .projects-section .card .image-content .under-update h6 {
  color: #fff;
  text-transform: capitalize;
  margin: 0px;
}

.protofolio .projects-section .card .image-content img {
  width: 100%;
  height: 100%;
}

.protofolio .projects-section .card .card-body {
  text-align: center;
  padding: 1.5rem 1.5rem 0.5rem;
}

.protofolio .projects-section .card .card-body .card-title {
  -webkit-transition: .5s linear;
  transition: .5s linear;
  text-transform: capitalize;
}

.protofolio .projects-section .card:hover {
  -webkit-box-shadow: 0 0px 10px rgba(0, 69, 255, 0.2);
          box-shadow: 0 0px 10px rgba(0, 69, 255, 0.2);
}

.protofolio .projects-section .card:hover .overlay-line {
  left: 0%;
}

.protofolio .projects-section .card:hover .card-body .card-title {
  background: -webkit-gradient(linear, left top, right top, from(#0081ff), to(#0045ff));
  background: linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-content {
  width: 100%;
  background-color: #1D1E24;
  position: fixed;
  height: 49px;
  bottom: 0px;
  left: 0px;
  -webkit-box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.07);
          box-shadow: -4px 8px 24px rgba(0, 0, 0, 0.07);
}

.nav-content .nav-circle-toggler {
  position: fixed;
  z-index: 99999999999;
  bottom: 3%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.nav-content .nav-circle-toggler .nav-checkbox {
  position: absolute;
  display: block;
  top: 0;
  display: block;
  left: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.nav-content .nav-circle-toggler .nav-checkbox:hover + label, .nav-content .nav-circle-toggler .nav-checkbox:hover + label::after, .nav-content .nav-circle-toggler .nav-checkbox:hover + label::before {
  background: -webkit-gradient(linear, left top, right top, from(#0081ff), to(#0045ff));
  background: linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
          box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
}

.nav-content .nav-circle-toggler .nav-checkbox:checked + label::after, .nav-content .nav-circle-toggler .nav-checkbox:checked + label::before {
  top: 0;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  background: -webkit-gradient(linear, left top, right top, from(#0081ff), to(#0045ff));
  background: linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  -webkit-box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
          box-shadow: 0 10px 15px rgba(0, 69, 255, 0.2);
}

.nav-content .nav-circle-toggler .nav-checkbox:checked + label::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-content .nav-circle-toggler .nav-checkbox:checked + label::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-content .nav-circle-toggler .nav-checkbox:checked + label {
  background: transparent;
}

.nav-content .nav-circle-toggler .nav-checkbox:checked ~ .menu .nav-link {
  margin-bottom: -9px;
  opacity: 1;
}

.nav-content .nav-circle-toggler .nav-checkbox:checked ~ .menu .nav-link:nth-child(1) {
  -webkit-transform: rotate(12deg) translateX(-80px);
          transform: rotate(12deg) translateX(-80px);
}

.nav-content .nav-circle-toggler .nav-checkbox:checked ~ .menu .nav-link:nth-child(1) a {
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}

.nav-content .nav-circle-toggler .nav-checkbox:checked ~ .menu .nav-link:nth-child(2) {
  -webkit-transform: rotate(90deg) translateX(-80px);
          transform: rotate(90deg) translateX(-80px);
}

.nav-content .nav-circle-toggler .nav-checkbox:checked ~ .menu .nav-link:nth-child(2) a {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.nav-content .nav-circle-toggler .nav-checkbox:checked ~ .menu .nav-link:nth-child(3) {
  -webkit-transform: rotate(180deg) translateX(-80px);
          transform: rotate(180deg) translateX(-80px);
}

.nav-content .nav-circle-toggler .nav-checkbox:checked ~ .menu .nav-link:nth-child(3) a {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.nav-content .nav-circle-toggler label {
  width: 40px;
  height: 5px;
  position: absolute;
  display: block;
  background-color: #0045ff;
  border-radius: 3px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.nav-content .nav-circle-toggler label::after, .nav-content .nav-circle-toggler label::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 5px;
  display: block;
  z-index: 1;
  border-radius: 3px;
  background-color: #0045ff;
}

.nav-content .nav-circle-toggler label::after {
  bottom: 10px;
}

.nav-content .nav-circle-toggler label::before {
  top: 10px;
}

.nav-content .nav-circle-toggler .nav {
  display: block;
  margin: auto;
}

.nav-content .nav-circle-toggler .nav-link {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: transparent !important;
  width: 50px !important;
  height: 50px !important;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.nav-content .nav-circle-toggler .nav-link a {
  display: block;
  line-height: 50px;
  width: 50px;
  height: 50px;
  background-color: #1D1E24;
  -webkit-box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07), 3px 3px 5px rgba(0, 0, 0, 0.6);
          box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07), 3px 3px 5px rgba(0, 0, 0, 0.6);
  text-align: center;
  font-size: 30px;
  border-radius: 50%;
  color: #FCFCFC;
}

.nav-content .nav-circle-toggler .nav-link a:hover, .nav-content .nav-circle-toggler .nav-link a.active {
  -webkit-box-shadow: inset -3px -3px 7px rgba(0, 0, 0, 0.07), inset 3px 3px 5px rgba(0, 0, 0, 0.6);
          box-shadow: inset -3px -3px 7px rgba(0, 0, 0, 0.07), inset 3px 3px 5px rgba(0, 0, 0, 0.6);
  color: #0081ff;
}

.loading-page {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  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;
  background-color: #23262B;
  z-index: 99999999999999999999;
}

.loading-page i {
  line-height: 120px;
  position: absolute;
  text-align: center !important;
  font-size: 50px;
  background: -webkit-gradient(linear, left top, right top, from(#0081ff), to(#0045ff));
  background: linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: inset-rotations 2s linear infinite;
          animation: inset-rotations 2s linear infinite;
}

.loading-page .loader {
  position: relative;
  width: 120px;
  height: 120px;
}

.loading-page .loader span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(calc(18deg * var(--i)));
          transform: rotate(calc(18deg * var(--i)));
}

.loading-page .loader span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#0081ff), to(#0045ff));
  background: linear-gradient(to right, #0081ff 0%, #0045ff 100%);
  -webkit-box-shadow: 0 0px 10px rgba(0, 69, 255, 0.2), 0 0px 15px rgba(0, 69, 255, 0.2), 0 0px 20px rgba(0, 69, 255, 0.2);
          box-shadow: 0 0px 10px rgba(0, 69, 255, 0.2), 0 0px 15px rgba(0, 69, 255, 0.2), 0 0px 20px rgba(0, 69, 255, 0.2);
  -webkit-animation: niceAnimate 1s linear infinite;
          animation: niceAnimate 1s linear infinite;
  -webkit-animation-delay: calc(.05s * var(--i));
          animation-delay: calc(.05s * var(--i));
}

.loading-page .my-name {
  position: absolute;
  bottom: 10px;
}

.loading-page .my-name span {
  display: inline-block;
  font-style: normal;
  color: #93959C;
  font-size: 50px;
  font-weight: bold;
  -webkit-animation: wordAnimate 1s linear infinite;
          animation: wordAnimate 1s linear infinite;
  -webkit-animation-delay: calc(.05s * var(--i));
          animation-delay: calc(.05s * var(--i));
}

.scroll-top-content {
  position: fixed;
  right: 5px;
  bottom: 50px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
}

.scroll-top-content .scroll-top {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, transparent 40%, #0045ff);
  -webkit-animation: scroll-top 2s linear infinite;
          animation: scroll-top 2s linear infinite;
}

.scroll-top-content .scroll-top::before {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  background: #1D1E24;
  border-radius: 50%;
  z-index: 1000;
}

.scroll-top-content .scroll-top::after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(45deg, transparent, transparent 40%, #0045ff);
  border-radius: 50%;
  z-index: 1;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.scroll-top-content i {
  text-align: center;
  font-size: 30px;
  position: absolute;
  color: #AEB0B8;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999999;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes niceAnimate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes niceAnimate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes inset-rotations {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes inset-rotations {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes rotations {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotations {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes wordAnimate {
  0% {
    color: #0045ff;
    -webkit-filter: blur(1.5px);
            filter: blur(1.5px);
  }
  50% {
    color: #AEB0B8;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    text-shadow: none;
  }
  0% {
    color: #0D86FF;
    -webkit-filter: blur(1.5px);
            filter: blur(1.5px);
  }
}

@keyframes wordAnimate {
  0% {
    color: #0045ff;
    -webkit-filter: blur(1.5px);
            filter: blur(1.5px);
  }
  50% {
    color: #AEB0B8;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    text-shadow: none;
  }
  0% {
    color: #0D86FF;
    -webkit-filter: blur(1.5px);
            filter: blur(1.5px);
  }
}

@-webkit-keyframes scroll-top {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes scroll-top {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .profile-information .image-content,
  .profile-information .personal-info-content h2 {
    margin-right: auto;
    margin-left: auto;
  }
  .profile-information .personal-info-content p,
  .profile-information .personal-info-content h2 {
    margin-top: 10px;
  }
  .profile-information .personal-info-content p,
  .profile-information .personal-info-content .contact-icons-info {
    text-align: center;
    margin: auto;
  }
  h1, h2 {
    font-size: 20px !important;
  }
  h3, h4 {
    font-size: 17px !important;
  }
  h5, h6 {
    font-size: 15px !important;
  }
  p, span {
    font-size: 12px !important;
  }
  .protofolio .projects-section .card {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
}

@media (max-width: 500px) {
  .protofolio .projects-section .card .image-content {
    height: 9rem;
  }
}
/*# sourceMappingURL=style.css.map */