/* -----------------------------------
	Body and Core Css
----------------------------------- */

@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");

* {
  margin: 0;
  padding: 0;
  font-family: inherit;
  outline: none !important;
  list-style: none !important;
  text-decoration: none !important;
}

*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #fff;
  overflow: hidden;
  letter-spacing: 0.8px;
  background-color: #1a2a41;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: 600;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 18px;
}

i,
em {
  font-style: normal;
}

img {
  max-width: 100%;
}

blockquote {
  position: relative;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.5);
}

blockquote span {
  display: block;
  font-size: 14px;
  margin-top: 20px;
}

blockquote span img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

/* Button Style */
.btn-st {
  position: relative;
  display: inline-block;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 100;
  background-color: transparent;
  border: none;
  z-index: 2;
}

.btn-st:before {
  content: "";
  position: absolute;
  width: 40%;
  height: 200%;
  top: -50%;
  left: -15%;
  background: #0e0f10;
  padding: 0px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-st:after {
  content: "";
  position: absolute;
  width: 110%;
  height: 10%;
  top: 105%;
  left: -5%;
  background: #fff;
  padding: 0px;
  z-index: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-st:hover:before {
  -webkit-border-radius: unset;
  border-radius: unset;
  -webkit-transform: translateX(120%) scaleX(3) scaleY(0.8);
  transform: translateX(120%) scaleX(3) scaleY(0.8);
}

.btn-st:hover:after {
  -webkit-transform: translateX(-55%) translateY(-550%) rotate(90deg)
    scaleX(0.3);
  transform: translateX(-55%) translateY(-550%) rotate(90deg) scaleX(0.3);
}

/* ---------- Margin & Padding --------- */

.mt-0 {
  margin-top: 0 !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mt-55 {
  margin-top: 55px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-65 {
  margin-top: 65px !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.mt-75 {
  margin-top: 75px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mt-85 {
  margin-top: 85px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mt-95 {
  margin-top: 95px !important;
}
.mt-100 {
  margin-top: 100px !important;
}

/* Custom Margin Bottom */
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-55 {
  margin-bottom: 55px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-65 {
  margin-bottom: 65px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.mb-75 {
  margin-bottom: 75px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.mb-85 {
  margin-bottom: 85px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.mb-95 {
  margin-bottom: 95px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.m-0 {
  margin: 0px !important;
}

/* Custom Padding top */
.pt-0 {
  padding-top: 0 !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pt-25 {
  padding-top: 25px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pt-35 {
  padding-top: 35px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pt-55 {
  padding-top: 55px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pt-65 {
  padding-top: 65px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pt-75 {
  padding-top: 75px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pt-85 {
  padding-top: 85px !important;
}
.pt-90 {
  padding-top: 90px !important;
}
.pt-95 {
  padding-top: 95px !important;
}
.pt-100 {
  padding-top: 100px !important;
}

/* Custom Padding top */
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pb-35 {
  padding-bottom: 35px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pb-55 {
  padding-bottom: 55px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pb-65 {
  padding-bottom: 65px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pb-75 {
  padding-bottom: 75px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pb-85 {
  padding-bottom: 85px !important;
}
.pb-90 {
  padding-bottom: 90px !important;
}
.pb-95 {
  padding-bottom: 95px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.p-0 {
  padding: 0 !important;
}

/* -----------------------------------
	Section Css
----------------------------------- */

.page {
  position: fixed;
  width: calc(90% + 2px);
  height: 100%;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow: auto;
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.2, 0.2, 1.1);
  transition: all 0.6s cubic-bezier(0.5, 0.2, 0.2, 1.1);
}

#about:target .pt-home,
#resume:target .pt-home,
#portfolio:target .pt-home,
#contact:target .pt-home {
  -webkit-filter: blur(3px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pt-about,
.pt-resume,
.pt-portfolio,
.pt-contact {
  background-color: #0e0f10;
}

#about:target .pt-about,
#resume:target .pt-resume,
#portfolio:target .pt-portfolio,
#contact:target .pt-contact {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.page .header-page {
  position: relative;
  text-align: center;
}

.page .header-page:after,
.page .header-page:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  left: calc(50% - 46px);
  bottom: -19px;
  background-color: #fff;
}

.page .header-page:before {
  left: calc(50% + 16px);
}

.page .header-page span {
  position: absolute;
  width: 35px;
  height: 17px;
  left: calc(50% - 17px);
  margin-top: 10px;
}

.page .header-page span:before,
.page .header-page span:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  border: 2px solid #fff;
  -webkit-border-radius: 50px 50px 0;
  border-radius: 50px 50px 0 50px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.page .header-page span:after {
  left: auto;
  right: 0;
  -webkit-border-radius: 50px 50px 50px 0;
  border-radius: 50px 50px 50px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.page .header-box {
  position: relative;
  text-align: center;
}

.page .header-box:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: calc(50% - 7px);
  bottom: -16px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid #fff;
}

.page .header-box h3:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  left: calc(50% - 45px);
  bottom: -10px;
  background-color: #fff;
}

.page .header-box h3:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  left: calc(50% + 15px);
  bottom: -10px;
  background-color: #fff;
}

.page .box-1,
.page .box-2 {
  position: relative;
  padding: 30px;
  background-color: #070708;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.page .box-1:hover,
.page .box-2:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

blockquote:after,
.page .box-1:after,
.page .box-2:after,
.pt-about .testimonial-item:after {
  border-top: 35px solid #0e0f10;
}

.pt-about .info .photo:after {
  border-top: 35px solid #070708;
}

.page .box-2:after {
  border-bottom: 35px solid #0e0f10;
}

blockquote:before,
.page .box-1:before,
.page .box-2:before,
.pt-about .testimonial-item:before {
  border-bottom: 35px solid #0e0f10;
}
.pt-about .info .photo:before {
  border-bottom: 35px solid #070708;
}

.page .box-2:before {
  border-bottom: 35px solid #0e0f10;
}
.pt-about .inter-icon:after,
.btn-st-item:after {
  border-top: 15px solid #070708;
}
.pt-about .inter-icon:before,
.btn-st-item:before {
  border-bottom: 15px solid #070708;
}
.pt-portfolio .portfolio-filter ul:after {
  border-top: 100px solid #0e0f10;
}
.pt-portfolio .portfolio-filter ul:before {
  border-bottom: 100px solid #0e0f10;
}

/* ------------------------------
		3. Menu Css
------------------------------ */

.header-main {
  position: fixed;
  width: 10%;
  height: 100%;
  top: 0;
  overflow: auto;
  overflow-x: hidden;
  background-color: rgba(14, 15, 16, 0.6);
  z-index: 99;
}

.header-main ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  margin: 30px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-main ul li span.active {
  color: #fff;
}

#about:target .header-main ul li a,
#resume:target .header-main ul li a,
#portfolio:target .header-main ul li a #contact:target .header-main ul li a {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

#about:target .icon-a,
#resume:target .icon-r,
#portfolio:target .icon-p #contact:target .icon-c {
  color: #fff;
  -webkit-transform: scale(1.3) !important;
  transform: scale(1.3) !important;
}

/* Logo */
.header-main .logo {
  text-align: center;
  padding: 40px 0;
  border-right-color: #0e0f10;
  border-bottom: 5px solid #0e0f10;
}
.header-main .logo img {
  max-width: 50%;
}

.header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background-color: #070708;
  -webkit-box-shadow: 0 0px 50px 0 #000;
  box-shadow: 0 0px 50px 0 #000;
  z-index: 10;
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-mobile h2 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: inline-block;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 50px;
  white-space: nowrap;
}

.header-mobile .header-toggle {
  font-size: 20px;
  line-height: 50px;
  cursor: pointer;
  width: 50px;
  text-align: center;
}

.header-mobile .header-toggle i {
  color: #fff;
}

/* ------------------------------
		4. Home Section
------------------------------ */

.pt-home {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.pt-home:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  background-color: #12171b;
}

.pt-home .banner {
  position: absolute;
  width: 90%;
  top: 50%;
  color: #fff;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pt-home .banner h1 {
  color: #fff;
  margin-bottom: 15px;
}

.pt-home .banner p {
  color: #fff;
  font-size: 30px;
}

/* Social */
.pt-home .social {
  position: absolute;
  width: 40px;
  height: 120px;
  top: 20px;
  z-index: 1;
}

.pt-home .social ul li {
  display: inline-block;
}

.pt-home .social ul li i {
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.pt-home .social ul li i:hover {
  color: #fff;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

/* ---------------------------------
	About Section
--------------------------------- */

/* User Info Block */
.pt-about .info .loc {
  font-size: 12px;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
}

.pt-about .info p {
  font-size: 14px;
  line-height: 24px;
}

.pt-about .info-icon {
  padding-top: 45px;
}

.pt-about .info-icon i {
  display: flex;
  float: left;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0e0f10;
  font-size: 20px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #fff;
  margin-right: 15px;
}

.pt-about .desc-icon h6 {
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
}

.pt-about .desc-icon p {
  color: #fff;
  font-size: 12px;
  line-height: 21px;
}

.pt-about .desc-icon {
  padding-left: 15px;
  padding-top: 5px;
}

/* My Interests */
.pt-about .inter-icon {
  position: relative;
  background: #0e0f10;
  margin: 20px 0;
  padding: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pt-about .inter-icon:hover {
  background: #070708;
}

.pt-about .inter-icon i {
  position: relative;
  width: 30px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-right: 30px;
}

.pt-about .inter-icon i:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 46px;
  left: 40px;
  background-color: #070708;
}

.pt-about .desc-inter h6 {
  font-size: 15px;
  font-weight: 100;
  line-height: 15px;
}

.pt-about .desc-inter {
  padding-top: 3px;
}

/* ---------------------------------
	Resume Section
--------------------------------- */
/* Experience */
.pt-resume .experience .item {
  position: relative;
  padding-top: 15px;
  padding-left: 40px;
  margin-bottom: 40px;
}

.pt-resume .experience .item:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}

.pt-resume .experience .item:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  top: 21px;
  left: 6px;
  background-color: #fff;
}

.pt-resume .experience .main p {
  color: #fff;
  font-size: 12px;
}

.pt-resume .experience .main p i {
  font-size: 13px;
  margin-right: 5px;
}

.pt-resume .experience .main h4 {
  position: relative;
  line-height: 15px;
  margin-bottom: 15px;
}

.pt-resume .experience .main h4:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: -46px;
  background-color: #0e0f10;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
}

.pt-resume .experience .item:hover h4:before {
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* Skills Bar */
.pt-resume .my-skills ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.pt-resume .my-skills ul li {
  flex-basis: 30%;
  filter: grayscale(1);
  transition: filter 0.3s linear;
}
.pt-resume .my-skills ul li img {
  max-width: 75px;
}
.pt-resume .my-skills ul li:not(:last-child) {
  margin-bottom: 20px;
}
.pt-resume .my-skills ul li:hover {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.pt-resume .my-skills ul li.html {
  color: #e34f26;
}
.pt-resume .my-skills ul li.css {
  color: #1e90ff;
}
.pt-resume .my-skills ul li.js {
  color: #f7df1e;
}
.pt-resume .my-skills ul li.bootstrap {
  color: #7952b3;
}
.pt-resume .my-skills ul li.sass {
  color: #cf649a;
}
.pt-resume .my-skills ul li.git {
  color: white;
}
.pt-resume .my-skills ul li.gulp {
  color: #eb4a4b;
}
.pt-resume .my-skills ul li.react {
  color: #00d8ff;
}
.pt-resume .my-skills ul li.vue {
  color: #42b883;
}

/* ---------------------------------
	Portfolio Section
--------------------------------- */
/* Portfolio Filter */
.pt-portfolio .portfolio-filter {
  text-align: center;
}

.pt-portfolio .portfolio-filter ul {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 20px;
  background-color: #070708;
}

.pt-portfolio .portfolio-filter ul li {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pt-portfolio .portfolio-filter ul li.active {
  color: #0e0f10;
  background-color: #fff;
}

/* Portfolio Item */
.pt-portfolio .portfolio-items figure.item {
  position: relative;
  background-color: #0e0f10;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  height: 160px;
}
.pt-portfolio .portfolio-items figure.item:hover .tools {
  bottom: 0;
}
.pt-portfolio .portfolio-items figure.item:hover img {
  opacity: 1;
}
.pt-portfolio .portfolio-items figure img {
  opacity: 0.7;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pt-portfolio .portfolio-items figure.item .tools {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  background-color: rgba(57, 62, 70, 0.6);
  transition: bottom 0.3s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 0;
}
.pt-portfolio .portfolio-items figure.item .tools span {
  color: white;
  cursor: pointer;
  transition: color 0.3s linear;
}
.pt-portfolio .portfolio-items figure.item .tools span:hover {
  color: #1b6ca8;
}
.pt-portfolio .portfolio-items figure.item .tools span:hover a {
  color: #1b6ca8 !important;
}
.pt-portfolio .portfolio-items figure.item .tools span:not(:last-child) {
  margin-right: 10px;
}
.pt-portfolio .portfolio-items figure.item .tools span a {
  color: white;
  transition: color 0.3s linear;
}
.pt-portfolio .portfolio-items .technologies {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3f42484d;
  z-index: 2;
  display: none;
}
.pt-portfolio .portfolio-items .technologies > div {
  background: #222831;
  border-radius: 10px;
  width: 500px;
  margin: 190px auto;
  padding: 20px;
  position: relative;
}
.pt-portfolio .portfolio-items .technologies > div .title {
  padding: 10px 0;
  font-weight: 600;
  color: white;
}
.pt-portfolio .portfolio-items .technologies .close {
  position: absolute;
  right: 10px;
  top: 10px;
  color: red;
  cursor: pointer;
  z-index: 1;
  opacity: 1;
}
.pt-portfolio .portfolio-items .technologies > div ul li {
  color: white;
}
.pt-portfolio .portfolio-items .technologies > div ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
  color: #1b6ca8;
}
/* ---------------------------------
	Contact Section
--------------------------------- */
/* Contact info */
.pt-contact .contact-info {
  text-align: center;
  margin-top: 100px;
}
.pt-contact .contact-info .info {
  display: flex;
  flex-direction: column;
}
.pt-contact .contact-info .info a {
  margin-bottom: 1rem;
  padding: 30px 0 0px;
}
.pt-contact .contact-info .info i {
  font-size: 30px;
  color: #fff;
}

.pt-contact .contact-info .info p {
  font-size: 15px;
  line-height: 25px;
  padding: 30px 0 0px;
}

.pt-contact .contact-info .info span {
  color: #495057;
}

/* ---------------------------------
		12. Preloader Css
--------------------------------- */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 5000;
}

#preloader.loaded {
  visibility: hidden;
}

#preloader.loaded .loading-area {
  opacity: 0;
}

#preloader .loading-area {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#preloader.loaded .loading-area .circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 50px auto;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid #fff;
  border-top-color: #0e0f10;
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
}

#preloader.loaded .left-side {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

#preloader .left-side {
  left: 0;
}

#preloader.loaded .right-side {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

#preloader .right-side {
  right: 0;
}

#preloader .left-side,
#preloader .right-side {
  position: absolute;
  width: 50%;
  height: 100%;
  background: #0e0f10;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}

/* ---------------------------------
		13. Tooltip Css
--------------------------------- */

[data-tooltip] {
  position: relative;
}

[data-tooltip]:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 99;
  -webkit-transition: transform 0.3s ease, opacity 0.3s;
  transition: transform 0.3s ease, opacity 0.3s;
}

[data-tooltip]:after {
  content: attr(data-tooltip);
  font: normal 10px "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
  padding: 10px 15px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}

[data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

[data-tooltip][data-position="top"]:after {
  bottom: 100%;
  margin-bottom: 25px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

[data-tooltip][data-position="top"]:hover:after {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

[data-tooltip][data-position="left"]:after {
  right: 100%;
  margin-right: 10px;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

[data-tooltip][data-position="left"]:hover:after {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

[data-tooltip][data-position="right"]:after {
  left: 100%;
  margin-left: 10px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

[data-tooltip][data-position="right"]:hover:after {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

[data-tooltip][data-position="bottom"]:after {
  top: 100%;
  margin-top: 25px;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

[data-tooltip][data-position="bottom"]:hover:after {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/* ---------------------------------
	Responsible Css
--------------------------------- */
@media screen and (max-width: 991px) {
  .pt-home .banner h1 {
    font-size: 60px;
  }
  .pt-home .banner p {
    font-size: 25px;
  }
  .pt-about .btn-st {
    margin: 0 0 20px 20px;
  }
  .pt-home .social {
    top: unset;
    bottom: 60px;
  }
  .pt-portfolio ul,
  .pt-portfolio ul li {
    display: block !important;
  }
  .hidden-sm {
    display: none;
  }
  .width-sm {
    width: 50%;
    float: left;
  }
  .pt-contact .contact-info .info {
    margin-bottom: 40px;
  }
  .page .mob-box-mt {
    margin-top: 100px !important;
  }
}

@media screen and (max-width: 768px) {
  .page {
    width: 100%;
  }
  #about:target .pt-about,
  #resume:target .pt-resume,
  #portfolio:target .pt-portfolio #contact:target .pt-contact {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .header-main {
    width: 90px;
    background-color: rgba(14, 15, 16, 1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header-mobile {
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header-main ul li {
    font-size: 25px;
  }
  .header-main .logo,
  .music-bg {
    padding: 20px 0;
  }
  .page .mob-mt {
    margin-top: 120px !important;
  }
  .page .header-page h2 {
    font-size: 32px;
  }
  .pt-home .banner h1 {
    font-size: 50px;
  }
  .pt-home .banner p {
    font-size: 20px;
  }
  .page .box {
    padding: 20px;
  }
}

@media screen and (max-width: 575px) {
  .page .header-box h3 {
    font-size: 23px;
  }
  .pt-home .banner {
    width: 100%;
  }
  .pt-home .banner h1 {
    font-size: 40px;
  }
  .pt-home .banner p {
    font-size: 17px;
  }
  .pt-portfolio .portfolio-filter ul {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .width-sm {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .pt-about .info .photo img {
    max-width: 100%;
    margin: 0 auto 30px;
  }
  .pt-about .info .information {
    text-align: center;
  }
  .pt-portfolio .portfolio-items .technologies > div {
    width: 100%;
  }
  .pt-portfolio .portfolio-items .technologies > div .main-tech,
  .pt-portfolio .portfolio-items .technologies > div .framework,
  .pt-portfolio .portfolio-items .technologies > div .others,
  .pt-portfolio .portfolio-items .technologies > div .plugin {
    text-align: center;
  }
}
/* ---------------------------------
	Animation Css
--------------------------------- */

/* Animation Spinner */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* -------------------------------- 

xrotate-3 

-------------------------------- */
.cd-headline.rotate-3 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.cd-headline.rotate-3 b {
  opacity: 0;
}
.cd-headline.rotate-3 i {
  display: inline-block;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.is-visible .cd-headline.rotate-3 i {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cd-headline.rotate-3 i.in {
  -webkit-animation: cd-rotate-3-in 0.6s forwards;
  -moz-animation: cd-rotate-3-in 0.6s forwards;
  animation: cd-rotate-3-in 0.6s forwards;
}
.cd-headline.rotate-3 i.out {
  -webkit-animation: cd-rotate-3-out 0.6s forwards;
  -moz-animation: cd-rotate-3-out 0.6s forwards;
  animation: cd-rotate-3-out 0.6s forwards;
}

.no-csstransitions .cd-headline.rotate-3 i {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 0;
}

.no-csstransitions .cd-headline.rotate-3 .is-visible i {
  opacity: 1;
}

@-webkit-keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
  }
}
@-moz-keyframes cd-rotate-3-in {
  0% {
    -moz-transform: rotateY(180deg);
  }
  100% {
    -moz-transform: rotateY(0deg);
  }
}
@keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@-webkit-keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
  }
}
@-moz-keyframes cd-rotate-3-out {
  0% {
    -moz-transform: rotateY(0);
  }
  100% {
    -moz-transform: rotateY(-180deg);
  }
}
@keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
}
