body {
  background: #fef6ff;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  height: 100%;
}

/*---------------------------------------
    Typography              
-----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: 300;
}

h1,
h2,
h3 {
  font-weight: 300;
}

h1 {
  font-size: 42px;
  padding-bottom: 14px;
  margin-bottom: 0px;
}

h2 {
  font-size: 42px;
  line-height: 52px;
  margin-top: 0px;
}

h3 {
  font-size: 26px;
  line-height: 32px;
  padding-bottom: 6px;
}

h4 {
  color: #999;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 6px;
}

h5 {
  color: #666666;
}

strong {
  color: #232b2b;
  font-weight: normal;
}

p {
  color: #888;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.2px;
}

.section-btn {
  background-color: transparent;
  border: 3px solid #232b2b;
  border-radius: 100px;
  color: #232b2b;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1.6px;
  padding: 12px 36px;
  margin-top: 42px;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}

.section-btn:hover {
  background: #651fff;
  border-color: transparent;
  color: #fef6ff;
}

.btn-success:focus {
  background-color: #4b4453;
  border-color: transparent;
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
}

.section-title {
  position: relative;
  padding-bottom: 22px;
}

#about,
#service,
#experience,
#education,
#contact,
#blog {
  position: relative;
}

#home .container,
#about .container,
#experience .container,
#service .container,
#education .container,
#contact .container,
#blog .container {
  width: 100%;
  padding: 0;
  margin: 0;
}

#experience .experience-thumb,
#education .education-thumb {
  padding: 22px 42px 42px 42px;
}

#service,
#quotes,
footer {
  text-align: center;
}

#experience,
#education {
  background: #b0a8b9;
}

.background-image {
  background-position: 50% 50% !important;
  background-size: cover !important;
  width: 100%;
  height: 100%;
  min-height: 75vh;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.color-white {
  color: #fff;
}
.color-light {
  color: #fef6ff;
}
.color-dark {
  color: #4b4453;
}
.color-blue {
  color: #651fff;
}
.color-light-grey {
  color: #b0a8b9;
}
.color-black {
  color: #000;
}
.bg-blue {
  background: #651fff;
}
.bg-light-grey {
  background: #b0a8b9;
}
.bg-white {
  background: #fff;
}
.bg-light {
  background: #fef6ff;
}
.bg-dark {
  background: #4b4453;
}

/*---------------------------------------
    General               
-----------------------------------------*/

html {
  -webkit-font-smoothing: antialiased;
}

a {
  color: #651fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}
a:hover,
a:active,
a:focus {
  color: #651fff;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#flex-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.panel {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0px;
}

/*---------------------------------------
    Preloader section              
-----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #fef6ff;
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #651fff;
  border-top-color: #fef6ff;
  animation: spinner 0.6s linear infinite;
}

@-webkit-@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
    Navigation section              
-----------------------------------------*/

.custom-navbar {
  margin-bottom: 0;
  background-color: #fef6ff;
}

.custom-navbar .navbar-brand {
  color: #b0a8b9;
  text-shadow: 1px 1px #4b4453;
  font-weight: bold;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 1px;
}

.custom-navbar .nav li a {
  color: #4b4453;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 40px;
  transition: all 0.4s ease-in-out;
}

.custom-navbar .nav li a:hover {
  background: transparent;
  color: #651fff;
}

.custom-navbar .navbar-nav > li > a:hover,
.custom-navbar .navbar-nav > li > a:focus {
  background-color: transparent;
}

.custom-navbar .nav li.active > a {
  background-color: transparent;
  color: #651fff;
}

.custom-navbar .navbar-toggle {
  border: none;
  padding-top: 10px;
}

.custom-navbar .navbar-toggle {
  background-color: transparent;
}

.custom-navbar .navbar-toggle .icon-bar {
  background: #651fff;
  border-color: transparent;
}

@media (min-width: 768px) {
  .custom-navbar {
    padding: 12px 0;
    border-bottom: 0;
    background: 0 0;
  }
  .custom-navbar.top-nav-collapse {
    background: #fef6ff;
    box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.08);
    padding: 0;
  }
}

/*---------------------------------------
    Home section              
-----------------------------------------*/

#home h1 {
  padding-bottom: 18px;
}

#home .col-md-6 {
  background: #fef6ff;
  /* light blue color: #c3eafd; */
  padding-right: 0;
  padding-left: 0;
}

#home .home-img {
  background: url("../images/home-img.jpg") no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 100vh;
}

#home .home-thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  padding: 0 45px 0 45px;
}

/*---------------------------------------
   About section              
-----------------------------------------*/

#about .about-img {
  background: url("../images/about-img.jpg") no-repeat;
  width: 100%;
  height: auto;
  background-size: cover;
}

#about .about-thumb,
#about .skill-thumb {
  padding: 22px 32px 32px 32px;
}

#about .progress {
  background: #fff;
  border-radius: 0px;
  box-shadow: none;
  height: 2px;
  min-width: 30vh;
}

#about .progress-bar-primary {
  background: #b0a8b9;
}

#about strong,
#about span {
  font-weight: bold;
  display: inline-block;
  padding-bottom: 8px;
}
#flex-container-about {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.panel-about {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0px;
}
/*---------------------------------------
    Service section              
-----------------------------------------*/

#service {
  background: #b0a8b9;
}

#service p {
  font-size: 18px;
  line-height: 30px;
}

#service .service-thumb {
  padding: 52px 22px 52px 22px;
}

#service .service-thumb .fa {
  font-size: 42px;
  padding-bottom: 22px;
  display: inline;
}

#service h3 {
  text-align: left;
}

#service li {
  text-align: left;
  font-size: 18px;
}

#service li {
  text-align: left;
  margin-left: 1em;
}

#flex-container-service {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.panel-service {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0px;
}

/*---------------------------------------
    Experience section              
-----------------------------------------*/
#experience .col-md-6 {
  padding-left: 0px;
}

#experience .experience-img {
  background: url("../images/experience-img.jpg") no-repeat;
}

#experience .media-heading {
  margin-bottom: 0px;
}

#experience .media .fa {
  font-size: 42px;
  margin-right: 14px;
}

#experience h1 {
  color: #fef6ff;
}

#experience small {
  color: #fef6ff;
  font-weight: bold;
}
#flex-container-experience {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.panel-experience {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0px;
}
/*---------------------------------------
    Education section              
-----------------------------------------*/

#education {
  background: #651fff;
}

#education .education-img {
  background: url("../images/education-img.jpg") no-repeat;
  max-height: 50vh;
}

#education .media-heading {
  margin-bottom: 0px;
}

#education .media .fa {
  font-size: 42px;
  margin-right: 14px;
}

#education small {
  color: #b0a8b9;
  font-weight: bold;
}

#education .skill-thumb {
  padding: 22px 32px 32px 32px;
}

#education .progress {
  background: #fff;
  border-radius: 0px;
  box-shadow: none;
  height: 2px;
  min-width: 30vh;
}

#education .progress-bar-primary {
  background: #000;
}

#education .progress2 {
  background: #b0a8b9;
  border-radius: 0px;
  box-shadow: none;
  height: 2px;
  min-width: 30vh;
  margin-bottom: 20px;
}

#education .progress-bar-primary2 {
  background: #000;
}

#flex-container-education {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.panel-education {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0px;
}
/*---------------------------------------
   Private section              
-----------------------------------------*/

#private {
  background: url("../images/quotes-bg.jpg") 50% 0 repeat-y fixed;
  background-size: cover;
  background-position: center center;
  color: #fef6ff;
  position: relative;
  padding: 100px 0px;
}

#private h1 {
  color: #fef6ff;
  text-align: center;
  margin-bottom: 32px;
}

#private .overlay {
  background: #121212;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0.6;
}

#private .fa {
  font-size: 42px;
  margin-top: 32px;
  margin-bottom: 22px;
}

#private p {
  padding-top: 32px;
}

/*---------------------------------------
    Contact section              
-----------------------------------------*/

#contact {
  background: #b0a8b9;
}

#contact ul {
  margin: 22px;
  padding: 22px;
}

#contact li {
  font-size: 18px;
  color: #fef6ff;
  margin-left: 1em;
}
#contact .contact-thumb {
  padding: 22px 32px 22px 32px;
  min-height: 75vh;
}

#contact a {
  color: #fef6ff;
}
#contact .col-md-3,
#contact .col-md-6 {
  padding: 0px;
}
#contact .contact-img {
  background: url("../images/contact-img.jpg") no-repeat;
  width: 100%;
  height: 100%;
  min-height: 30vh;
}

#contact p {
  font-size: 18px;
}

#contact .contact-info {
  padding-top: 6px;
  padding-bottom: 6px;
}

#contact .fa {
  padding-right: 10px;
}

#flex-container-contact {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.panel-contact {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0px;
}
/*---------------------------------------
   Social icon             
-----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0px 10px 0px 0px;
  margin: 0;
  text-align: center;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  border: 2px solid transparent;
  color: #999;
  border-radius: 100px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  margin: 22px 4px 10px 4px;
}

.social-icon li a:hover {
  background: #651fff;
  border-color: #fef6ff;
  color: #fef6ff;
  transform: scale(1.1);
}
/*---------------------------------------
    blog section              
-----------------------------------------*/

#blog {
  background: #161616;
}

#blog p {
  font-size: 18px;
  line-height: 30px;
}

#blog .service-thumb {
  padding: 52px 22px 52px 22px;
}

#blog .service-thumb .fa {
  font-size: 42px;
  padding-bottom: 22px;
}

#flex-container-blog {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.panel-blog {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0px;
}

#blog .blog-img {
  background: url("../images/blog-img.jpg") no-repeat;
  min-height: 30vh;
}
#blog .blog2-img {
  background: url("../images/blog2-img.jpg") no-repeat;
  min-height: 30vh;
}

/*---------------------------------------
   Footer section              
-----------------------------------------*/

footer {
  padding: 140px 0px;
}

/*---------------------------------------
   Mobile Responsive         
-----------------------------------------*/

@media only screen and (max-width: 580px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
    line-height: inherit;
  }

  h3 {
    font-size: 22px;
    line-height: inherit;
  }
}

@media only screen and (max-width: 767px) {
  .custom-navbar .navbar-brand {
    line-height: 18px;
  }

  #home .home-thumb {
    height: auto;
    padding-top: 32px;
    padding-bottom: 12px;
  }

  #home .container,
  #about .container,
  #experience .container,
  #service .container,
  #education .container,
  #contact .container,
  #blog .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  #about .col-md-3,
  #experience .col-md-6,
  #education .col-md-6,
  #contact .col-md-3 {
    padding: 0;
    margin: 0;
  }

  .background-image {
    position: relative;
    min-height: 65vh;
  }
}

@media only screen and (max-width: 1024px) {
  .section-title {
    padding-bottom: 12px;
  }

  footer {
    padding: 40px 0;
  }
}
