/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@media (min-width:320px) {
  /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
}

@media (min-width:480px) {
  /* smartphones, Android phones, landscape iPhone */
}

@media (min-width:600px) {
  /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
}

@media (min-width:801px) {
  /* tablet, landscape iPad, lo-res laptops ands desktops */
}

@media (min-width:1025px) {
  /* big landscape tablets, laptops, and desktops */
}

@media (min-width:1281px) {
  /* hi-res laptops and desktops */
}

body {
  font-family: "Open Sans", sans-serif;
  color: #77657f;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: gray;
  text-decoration: none;
}

h1 {
  font-family: 'Reenie Beanie', cursive;
}

h3 {
  font-family: 'Julius Sans One', sans-serif;
}

h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

h2 {
  font-family: 'Julius Sans One', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #8282c2;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: white;
  line-height: 0;
}

.back-to-top:hover {
  background: gray;
  color: white;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #857198;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 991px) {
  #main {
    margin-left: 100px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #8282c2;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: white;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}



.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: white;
  background: #8282c2;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: white;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: white;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #9e7ece;
}

/*--------------------------------------------------------------
# General Section
--------------------------------------------------------------*/

#general {
  width: 100%;
  height: 100vh;
  background: url("../img/backgroundimg.jpg") top right no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 992px) {
  #general {
    padding-left: 160px;
  }
}

#general:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#general h1 {
  margin: 0;
  font-size: 94px;
  font-weight: 700;
  line-height: 56px;
  color: #666469;
  ;
}

#general p {
  color: #464348;
  margin: 15px 0 0 0;
  font-size: 55px;
  font-family: 'Reenie Beanie', cursive;
  /* font-family: "Poppins", sans-serif; */
}



#general p span {
  color: #8282c2;
  letter-spacing: 1px;
}

#general .social-links {
  margin-top: 20px;
}

#general .social-links a {
  font-size: 40px;
  display: inline-block;
  color: #8282c2;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#general .social-links a:hover {
  color: #aa90bb;
}

@media screen and (max-width: 992px) {
  #general {
    text-align: center;
  }

  #general h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #general p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #513662;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #aa90bb;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  color: #464348;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #4c4359;
}


.about .content ul {
  text-align: center;
  list-style: none;
  padding-left: 20px;
  padding-top: 5px;
}

.about .content ul li {

  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #9e7ece;
  line-height: 0;
}

.about .content p:last-child {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
}

.about .img-fluid {
  max-width: 100%;
  height: auto;

}

.about .col-lg-8.pt-4.pt-lg-0.content {
  font-size: large;

}


/*--------------------------------------------------------------
# skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: gray;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #f2f3f5;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #8282c2;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #513662;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid rgb(79, 64, 103);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #8282c2;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #9e7ece;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .icon-box {
  height: 100%;
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: lightgray;
  box-shadow: 0px 10px 130px 0px rgba(110, 123, 131, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.portfolio .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.portfolio .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.portfolio .icon-box h4 a {
  color: black;
  transition: ease-in-out 0.3s;
}

.portfolio .icon-box h4 a:hover {
  color: black;
  transition: ease-in-out 0.3s;
}


.portfolio .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0.08, 0, 0, 0.78);
}


.portfolio .icon-box.icon-box.iconbox-cyan {
  background: linear-gradient(rgba(252, 247, 247, 0.6), rgba(255, 255, 255, 0.856)), url("../img/project10.png");
  background-size: cover;
  position: relative;
}



.portfolio .icon-box.icon-box.iconbox-aqua {
  background: linear-gradient(rgba(252, 247, 247, 0.6), rgba(255, 255, 255, 0.856)), url("../img/project11.png");
  background-size: cover;
  position: relative;
}



.portfolio .icon-box.iconbox-yellow {
  background: linear-gradient(rgba(252, 247, 247, 0.763), rgba(255, 255, 255, 0.856)), url("../img/project4.png");
  background-size: cover;
  position: relative;
}


.portfolio .icon-box.iconbox-pink {
  background: linear-gradient(rgba(252, 247, 247, 0.763), rgba(255, 255, 255, 0.856)), url("../img/project3.png");
  background-size: cover;
  position: relative;
}


.portfolio .iconbox-yellow:hover .icon i {
  color: #fff;
}


.portfolio .iconbox-red:hover .icon i {
  color: #fff;
}


.portfolio .icon-box.iconbox-blue {
  background: linear-gradient(rgba(252, 247, 247, 0.763), rgba(255, 255, 255, 0.856)), url("../img/project1.png");
  background-size: cover;
  position: relative;
}

.portfolio .icon-box.iconbox-teal {
  background: linear-gradient(rgba(252, 247, 247, 0.763), rgba(255, 255, 255, 0.856)), url("../img/project5.png");
  background-size: cover;
  position: relative;
}

.portfolio .icon-box.iconbox-orange {
  background: linear-gradient(rgba(252, 247, 247, 0.763), rgba(255, 255, 255, 0.856)), url("../img/project2.png");
  background-size: cover;
  position: relative;
}


.portfolio .icon-box.iconbox-lime {
  background: linear-gradient(rgba(252, 247, 247, 0.763), rgba(255, 255, 255, 0.856)), url("../img/project9.png");
  background-size: cover;
  position: relative;
}

.portfolio .icon-box.iconbox-red {
  background: linear-gradient(rgba(252, 247, 247, 0.763), rgba(255, 255, 255, 0.856)), url("../img/project6.png");
  background-size: cover;
  position: relative;
}


.portfolio .icon-box.iconbox-green {
  background: linear-gradient(rgba(252, 247, 247, 0.54), rgba(255, 255, 255, 0.54)), url("../img/project8.png");
  background-size: cover;
  position: relative;
}

.portfolio .icon-box.iconbox-purple {
  background: linear-gradient(rgba(252, 247, 247, 0.4), rgba(255, 255, 255, 0.4)), url("../img/project7.png");
  background-size: cover;
  position: relative;
}
.portfolio p.title {
  font-size: 19px;
  text-align: center;
}

.portfolio p.description {
  font-size: 14px;
  text-align: left;
}


.portfolio p.github-link:hover {
  color: gray;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f7f8f9;
  color: #464348;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #8282c2;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #aa90bb;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}