/* [ GENERAL ] */
html {
  overflow-x: hidden;
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  background-color: #111;
}

a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
}

.poppins-font {
  font-family: 'Poppins', sans-serif;
}

.open-sans-font {
  font-family: 'Open Sans', sans-serif;
}

hr.separator {
  border-top: 1px solid #252525;
  margin: 70px auto 55px;
  max-width: 40%;
}

.ft-wt-600 {
  font-weight: 600;
}

.mb-30 {
  margin-bottom: 30px;
}

.no-transform {
  transform: none !important;
}

.custom-title {
  padding-bottom: 22px;
  font-size: 26px;
}

.error-message{
  display: block;
  color: red;
  /* margin-top: -15px; */
  height: 24px;
}

/*** Light Body ***/
body.light {
  color: #666;
  background-color: #fff;
}

body.home.light .home-details h1 span {
  color: #666;
}

body.home.light .home-details h6 {
  color: #777;
}

body.home.light .bg {
  background-image: url(../img/ava-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  box-shadow: 0 0 7px rgba(0, 0, 0, .3);
}

body.light .preloader .black_wall {
  background-color: #eee;
}

body.light .preloader {
  background-color: #fff;
}

body.light .title-section h1 {
  color: #666;
}

body.light .title-bg {
  color: rgba(30, 37, 48, 0.07);
}

body.light.about .box-stats {
  border: 1px solid #ddd;
}

body.light.about .c100,
body.light.about .resume-box .time {
  background-color: #eee;
}

body.light.about .resume-box .time,
body.light.about .resume-box p {
  color: #666;
}

body.light.about .resume-box .place:before {
  background-color: #666;
}

body.light.about .resume-box li:after {
  border-left: 1px solid #ddd;
}

body.light.about .c100>span {
  color: #666;
}

body.light.about .c100:after {
  background-color: #fff;
}

body.light.contact .contactform input[type=text],
body.light.contact .contactform input[type=email],
body.light.contact .contactform textarea {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #666;
}

body.light.contact ul.social li a {
  color: #666;
  background: #eee;
}

body.light.contact ul.social li a:hover {
  color: #fff;
}

body.light.blog .post-content {
  background-color: #f2f2f2;
}

body.light.blog .post-content .entry-header h3 a {
  color: #666;
}

body.light.blog .page-link {
  color: #666;
  background-color: #eee;
  border: 1px solid #eee;
}

body.light.blog-post .meta {
  color: #888;
}

body.light.blog .page-item.active .page-link {
  color: #fff;
}

body.light hr.separator {
  border-top: 1px solid #ddd;
}

@media (min-width: 992px) {
  body.light .header ul.icon-menu li.icon-box {
    background-color: #eee;
  }

  body.light .header ul.icon-menu li.icon-box i {
    color: #666;
  }

  body.light .header ul.icon-menu li.icon-box.active,
  body.light .header ul.icon-menu li.icon-box:hover,
  body.light .header ul.icon-menu li.icon-box.active i,
  body.light .header ul.icon-menu li.icon-box:hover i {
    color: #fff;
  }
}

@media (max-width: 991px) {
  body.light .main-img-mobile {
    border: 4px solid #eee;
  }

  body.light #menuToggle {
    border: 1px solid #ddd;
  }

  body.light #menuToggle,
  body.light #menu {
    background: #eee;
  }

  body.light #menuToggle>span,
  body.light #menuToggle input:checked~span {
    background: #666;
  }

  body.light #menu li a {
    color: #666;
  }

  body.light #menu li:after {
    background: #ddd;
  }

  hr.separator {
    margin: 50px auto;
  }
}

@media (max-width: 576px) {
  body.light .title-section {
    background: #eee;
    border-bottom: 1px solid #ddd;
  }

  body.light #menuToggle {
    border: 0;
  }
}

/*** Buttons ***/
.btn {
  box-shadow: none !important;
  border-radius: 26px;
  font-weight: 500;
  height: 46px;
  line-height: 46px;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 40px;
  outline: none !important;
  overflow: hidden;
  display: inline-block;
  position: relative;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .5px;
  border: 0;
}

.btn,
.btn:hover,
.btn:focus {
  color: #fff;
  text-decoration: none;
}

/*** Page Title ***/

.title-section {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 80px 0;
}

.title-section h1 {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.title-bg {
  font-size: 110px;
  left: 0;
  letter-spacing: 10px;
  line-height: 0.7;
  position: absolute;
  right: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 800;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.07);
}

/* [ HEADER ] */
/*================================================== */

/*** Desktop Navigation ***/

@media (min-width: 992px) {

  /*** Navigation ***/

  .header {
    position: fixed;
    right: 30px;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    height: calc(100vh - 200px);
    top: 100px;
    opacity: 1;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
  }

  .header.hide-header {
    z-index: 0 !important;
    opacity: 0;
  }

  .header ul.icon-menu {
    margin: 0;
    padding: 0;
  }

  .header ul.icon-menu li.icon-box {
    width: 50px;
    height: 50px;
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    transition: .3s;
    margin: 20px 0;
    /* border-radius: 50%; */
    /* background: #2b2a2a; */
  }

  .header ul.icon-menu li.icon-box i {
    color: #ddd;
    font-size: 19px;
    transition: .3s;
  }

  .header ul.icon-menu li.icon-box.active,
  .header ul.icon-menu li.icon-box:hover,
  .header ul.icon-menu li.icon-box.active i,
  .header ul.icon-menu li.icon-box:hover i {
    color: #fff;
  }

  .header .icon-box h2 {
    font-size: 15px;
    font-weight: 500;
  }

  .header .icon-box a {
    display: block;
    padding: 0;
    width: 50px;
    height: 50px;
  }

  .header .icon-box i.fa {
    position: absolute;
    pointer-events: none;
  }

  .header .icon-menu i {
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size: 35px;
    top: 15px;
  }

  .header .icon-box h2 {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    color: #fff;
    line-height: 50px;
    font-weight: 500;
    transition: all .3s;
    border-radius: 30px;
    text-transform: uppercase;
    padding: 0 20px 0 30px;
    height: 50px;
    pointer-events: none;
  }

  .header .icon-box a:hover h2 {
    opacity: 1;
    right: 27px;
    margin: 0;
    text-align: center;
    border-radius: 30px 0 0 30px;
    pointer-events: initial;
  }

  .header .icon-box h2:after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: 13px;
    width: calc(100% - 50px);
    height: 1px;
    background: #01f7b6;
  }
}

/* [ Pages ] */
/*================================================== */

/*** Homepage ***/

.home .color-block {
  position: fixed;
  height: 200%;
  width: 100%;
  transform: rotate(-15deg);
  left: -83%;
  top: -50%;
}

.home .bg {
  background-image: url(../img/ava-bg-color-2550.png);
  background-size: auto 95%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: #a9a9a9;
  height: calc(100vh - 60px);
  /* z-index: 111; */
  left: 50px;
  /* top: -25px; */
  /* box-shadow: 0 0 7px rgba(0,0,0,.9); */
  position: relative;
}

.home .bg::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #a9a9a9;
  transform: translate(15px, -15px);
  opacity: .4;
  z-index: -1;
}

.home .container-home {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.home .home-details>div {
  max-width: 550px;
  margin: 0 auto;
}

.home .home-details h1 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 700;
  margin: 18px 0 10px;
}

.home .home-details h1 span {
  color: #fff;
  font-weight: 600;
}

.home .home-details h6 {
  color: #eee;
  font-size: 22px;
  font-weight: 400;
  display: block;
}

.home .home-details p {
  margin: 10px 0 23px;
  font-size: 16px;
  line-height: 32px;
}

/*** About ***/

.about .main-content {
  padding-bottom: 20px;
}

/* Personal Info List */

.about .about-list li:not(:last-child) {
  padding-bottom: 20px;
}

.about .about-list .title {
  /* opacity: .8; */
  text-transform: capitalize;
}

.about .about-list .value {
  font-weight: 600;
}

/* Box Stats */

.about .box-stats {
  padding: 20px 30px 25px 40px;
  border-radius: 5px;
  border: 1px solid #252525;
}

.about .box-stats.wide {
  max-width: 47.3%;
  margin: 0 auto;
}

.about .box-stats.with-margin {
  margin-bottom: 30px;
}

.about .box-stats h3 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 50px;
  font-weight: 700;
}

.about .box-stats h3:after {
  content: '+';
  position: absolute;
  right: -24px;
  font-size: 33px;
  font-weight: 300;
  top: 2px;
}

.about .box-stats p {
  padding-left: 45px;
}

.about .box-stats p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 30px;
  height: 1px;
  background: #777;
}

/* Resume */
.about .resume-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about .resume-box li {
  position: relative;
  padding: 0 20px 0 60px;
  margin: 0 0 50px;
}

.about .resume-box li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  border-left: 1px solid #333;
}

.about .resume-box .icon {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  line-height: 40px;
  text-align: center;
  z-index: 1;
  border-radius: 50%;
  color: #fff;
  background-color: #252525;
}

.about .resume-box .time {
  color: #fff;
  font-size: 12px;
  padding: 1px 10px;
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 20px;
  font-weight: 600;
  background-color: #252525;
  opacity: .8;
}

.about .resume-box h5 {
  font-size: 18px;
  margin: 7px 0 10px;
}

.about .resume-box p {
  margin: 0;
  color: #eee;
  font-size: 14px;
}

.about .resume-box .place {
  opacity: .8;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding-left: 26px;
}

.about .resume-box .place:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 2px;
  background-color: #fff;
  left: 7px;
  top: 9px;
  opacity: .8;
}

/* Skills */

.about .c100 {
  float: none !important;
  margin: 0 auto;
  background-color: #252525;
}

.about .c100>span {
  color: #fff;
}

.about .c100:after {
  background-color: #111;
}

/*** Portfolio ***/
.portfolio .main-content {
  padding-bottom: 60px;
  margin-top: -15px;
}

/* Grid */
.portfolio .grid-gallery ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.portfolio .grid-gallery figure {
  margin: 0;
}

.portfolio .grid-gallery figure img {
  display: block;
  width: 100%;
  border-radius: 5px;
  transition: .3s;
}

.portfolio .grid-wrap {
  margin: 0 auto;
}

.portfolio .grid {
  margin: 0 auto;
}

.portfolio .grid li {
  width: 33.333333%;
  float: left;
  /* cursor: pointer; */
  padding: 15px;
}

.portfolio .grid figure {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.portfolio .grid figure img {
  display: block;
  position: relative;
}

.portfolio .grid li a {
  overflow: hidden;
}

.portfolio .grid li figure div {
  position: absolute;
  width: 100%;
  height: 100%;
  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;
  text-align: center;
  justify-content: center;
}

.portfolio .grid li figure div span {
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
}

/* Translate blocks */
.portfolio .grid .block {
  position: relative;
  width: 100%;
  height: 410px;
  min-height: 220px;
  max-height: 558px;
}

.portfolio .grid .block img {
  display: none;
}

.portfolio .grid .img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.translaterContainer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  top: -100%;
}

.translater {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 1;
}

.translaterContainer2 {
  width: 200px;
  height: 82px;
  overflow: hidden;
  position: relative;
  top: 0;
}

.translater2 {
  width: 200px;
  height: 82px;
  background-color: rgb(126, 126, 126);
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
}

.translate {
  animation: translate 0.5s ease-in;
}

@keyframes translate {
  to {
    left: 100%;
  }
}

.text-wrapper {
  width: 200px;
  height: 82px;
  position: absolute;
  bottom: 3%;
  left: 0;
  /* left: -10%; */
}

.text-wrapper--cont {
  width: 200px;
  height: 82px;
  background: rgba(204, 203, 203, 0.85);
  position: absolute;
  text-align: left;
  padding: 1rem;
  z-index: 1;
}

.text-wrapper--cont .text1,
.text-wrapper--cont .text2 {
  color: #000;
  line-height: 1;
  transition: all .3s ease;
}

.text-wrapper--cont .text1 {
  font-weight: bold;
  font-size: 1.5rem;
}

.portfolio .grid .block:hover .text1 {
  text-shadow: 1px 1px 3px #0c0c0c;
}

.text-wrapper--cont .text2 {
  font-size: 1.1rem;
}

/* End translate box */

/*** Contact ***/
.contact .main-content {
  padding-bottom: 85px;
}

/* Left Side */
.contact .custom-span-contact {
  font-weight: 600;
  padding-left: 50px;
  line-height: 21px;
  padding-top: 5px;
}

.contact .custom-span-contact i {
  left: 0;
  top: 10px;
  font-size: 33px;
}

.contact .custom-span-contact i.fa-phone-square {
  font-size: 39px;
  top: 7px;
}

.contact .custom-span-contact span {
  text-transform: uppercase;
  opacity: .8;
  font-weight: 400;
}

.contact ul.social {
  margin-left: -5px;
}

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

.contact ul.social li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  transition: .3s;
  font-size: 17px;
  margin: 0 6px;
  /* background: #2b2a2a; */
  /* border-radius: 50%; */
}

/* Form */
.contact .contactform input[type=text],
.contact .contactform input[type=email] {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  width: 100%;
  color: #fff;
  padding: 5px 26px 11px 11px;
  margin-bottom: 5px;
  outline: none !important;
  transition: .3s;
}

.contact .contactform textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  color: #fff;
  width: 100%;
  padding: 12px 26px 12px 12px;
  margin-bottom: 20px;
  height: 160px;
  min-height: 160px;
  overflow: hidden;
  outline: none !important;
  transition: .3s;
}

/* .contact .contactform .form-message {
  margin: 24px 0 0;
} */

.contact .contactform .output_message {
  display: block;
  color: #fff;
  /* height: 46px; */
  line-height: 1.3;
  padding: 1rem 0;
  /* border-radius: 30px; */
}

.contact .contactform .output_message.success {
  background: #28a745;
}

.contact .contactform .output_message.success:before {
  font-family: FontAwesome;
  content: "\f14a";
  padding-right: 10px;
}

.contact .contactform .output_message.error {
  background: #dc3545;
}

.contact .contactform .output_message.error:before {
  font-family: FontAwesome;
  content: "\f071";
  padding-right: 10px;
}

.contact .contactform input[type=text].error, 
.contact .contactform input[type=email].error, 
.contact .contactform textarea.error, 
body.light.contact .contactform input[type=text].error, 
body.light.contact .contactform input[type=email].error, 
body.light.contact .contactform textarea.error {
  border-bottom: 1px solid red !important;
}

/*** Blog ***/
.blog .main-content {
  padding-bottom: 85px;
}

/* Latest Posts */

.blog .post-container {
  display: block;
}

.blog .post-content {
  background-color: #252525;
  padding: 20px 25px 25px 25px;
  border-radius: 0 0 5px 5px;
}

.blog .post-content .entry-header h3 {
  line-height: 26px;
  cursor: pointer;
}

.blog .post-content .entry-header h3 a {
  text-decoration: none;
  transition: .5s;
}

.blog .post-thumb {
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}

.blog .post-thumb a {
  border-radius: 5px 5px 0 0;
}

.blog .post-container:hover img {
  transform: scale(1.2);
}

.blog .post-thumb a img {
  border-radius: 5px 5px 0 0;
  transition: .3s;
}

.blog .post-content .entry-content p {
  margin: 15px 0 5px;
}

.blog .post-content .entry-header h3 a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

/* pagination */

.blog .pagination {
  margin-bottom: 30px;
}

.blog .page-link {
  color: #fff;
  background-color: #252525;
  border: 1px solid #252525;
  padding: 0;
  margin: 0 10px;
  border-radius: 50% !important;
  width: 43px;
  height: 43px;
  line-height: 43px;
  text-align: center;
  transition: .3s;

}

.blog .page-link:focus,
.blog .page-link:active {
  box-shadow: none !important;
}

.blog .page-link:hover {
  color: #fff !important;
}

/* Blog Post */

.blog-post article {
  max-width: 700px;
  margin: 0 auto;
}

.blog-post article h1 {
  font-weight: 600;
  margin: 13px 0 20px;
}

.blog-post article img {
  border-radius: 5px;
  margin-bottom: 20px;
}

.blog-post .meta {
  color: #eee;
  font-size: 13px;
}

.blog-post .meta span {
  padding-right: 15px;
}

.blog-post .meta i {
  padding-right: 3px;
}

/* PROJECT DESCRIPTION PAGE*/
.project-description {
  min-width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 150px;
}

.project-description .image-container {
  position: relative;
  background: rgba(0, 0, 0, 1);
  max-width: 1100px;
  margin-top: 4rem;
  transform: scale(0.8) translate(20px, 115px) skew(0deg, 20deg) rotate(0);
  transition: 0.5s;
}

.project-image {
  position: absolute;
  width: 100%;
  max-width: 100%;
  margin-bottom: 3rem;
  transition: 0.5s;
}

.project-description .image-container .project-image:nth-child(4) {
  transform: translate(0px, 0px);
  opacity: 1;
}

.project-description .image-container .project-image:nth-child(3) {
  transform: translate(30px, -30px);
  opacity: .8;
}

.project-description .image-container .project-image:nth-child(2) {
  transform: translate(60px, -60px);
  opacity: .6;
}

.project-description .image-container .project-image:nth-child(1) {
  transform: translate(90px, -90px);
  opacity: .4;
}

.project-description .image-container:hover,
.project-description .image-container:hover .project-image:nth-child(1),
.project-description .image-container:hover .project-image:nth-child(2),
.project-description .image-container:hover .project-image:nth-child(3),
.project-description .image-container:hover .project-image:nth-child(4) {
  transform: translate(0px, 0px);
}

.project-description .image-container:hover {
  margin-top: 0;
}

.project-excerpt {
  min-width: 295px;
}

/* [ RESPONSIVE DESIGN STYLES ] */
@media screen and (min-width: 1920px) {
  .project-description {
    min-width: unset;
    max-width: 1920px;
    margin: 0 auto;
  }
}

@media (max-width: 1441px) {
  .home .bg {
    background-image: url(../img/ava-bg-color-1440.png);
    top: 0;
  }
}

@media (min-width: 1351px) {
  .portfolio .container-portfolio .grid {
    text-align: left;
  }
}

@media (max-width: 1350px) and (min-width: 992px) {
  .container {
    max-width: calc(100% - 195px);
  }

  .portfolio .container-portfolio {
    max-width: calc(100% - 195px);
  }
}

@media screen and (max-width: 1224px) {
  .project-description .image-container {
    margin: 2rem auto 0 3rem;
    max-width: 570px;
  }
}

@media (max-width: 1100px) and (min-width: 992px) {
  .home .home-details>div {
    max-width: 450px;
  }

  .project-description .image-container {
    margin: 2rem auto 0 5rem;
  }
}

@media (min-width: 1600px) {
  .home .home-details>div {
    max-width: 600px;
  }
}

@media (min-width: 992px) {
  .home .home-details-container {
    width: 100%;
    height: 100vh;
  }

  body.home {
    overflow: hidden;
  }

  .btn:before {
    font: 15px/1.2em FontAwesome;
    color: #fff;
    position: absolute;
    height: 100%;
    right: 25px;
    top: 50%;
    margin-top: -9px;
    transition: all 0.3s;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  .btn.btn-about:before {
    content: "\f2c0";
  }

  .btn.btn-portfolio:before {
    content: "\f07c";
    margin-top: -8px;
  }

  .btn.btn-preview:before {
    content: "\f08e";
  }

  .btn.btn-download:before {
    content: "\f019";
  }

  .btn.btn-contact:before {
    content: "\f1d9";
  }

  .btn span {
    position: relative;
    display: block;
    transition: all 0.3s;
  }

  .btn:hover span {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  .btn:hover:before {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Mobile  Navigation */

@media (max-width: 991px) {
  .btn {
    padding: 0 28px;
  }

  .title-section {
    padding: 40px 0;
  }

  .title-bg {
    font-size: 90px;
  }

  body.home {
    padding: 25px;
  }

  body.home .main-container {
    padding: 0 0 !important;
  }

  .home .home-details-container {
    margin: 0 auto;
  }

  .home .home-details {
    padding: 0;
  }

  .main-img-mobile {
    border-radius: 50%;
    width: 270px;
    height: 270px;
    border: 4px solid #252525;
    margin: 0 auto 25px;
    display: block;
  }

  .home .home-details h1 {
    font-size: 38px;
    line-height: 38px;
    margin: 29px 0 13px;
  }

  .home .home-details p {
    margin: 10px 0 23px;
    font-size: 15px;
    line-height: 30px;
  }

  #menuToggle {
    position: absolute;
  /* display: inline-block;
    position: fixed;
    top: 30px;
    right: 30px; */
  /* z-index: 1111; */
  /* user-select: none;
    padding: 0;
    width: 30px;
    height: 20px;
    border-radius: 5px; */
  /* background: #252525; */
  }

  .checkbox-wrapper {
    display: inline-block;
    position: fixed;
    top: 24px;
    right: 30px;
    user-select: none;
    padding: 0;
    width: 30px;
    height: 20px;
    border-radius: 5px;
    z-index: 1111;
  }

  #menuToggle .checkbox-wrapper:hover>span:nth-child(2),
  #menuToggle .checkbox-wrapper:hover>span:nth-child(4) {
    width: 100%;
  }

  #menuToggle .checkbox-wrapper input {
    display: flex;
    width: 30px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    top: 0;
    left: 0;
  }

  #menuToggle .checkbox-wrapper>span {
    display: flex;
    width: 30px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    /* background: #ffffff; */
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0;
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      opacity 0.55s ease;
  }

  #menuToggle .checkbox-wrapper>span:nth-child(2) {
    width: 50%;
    margin-left: auto;
  }

  #menuToggle .checkbox-wrapper>span:nth-child(4) {
    width: 50%;
    margin-right: auto;
  }

  #menuToggle .checkbox-wrapper>span:first-child {
    transform-origin: 0 0;
  }

  #menuToggle .checkbox-wrapper>span:nth-last-child(4) {
    transform-origin: 0 100%;
  }

  #menuToggle .checkbox-wrapper input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(5px, 0);
    /* background: #fff; */
    width: 100%;
  }

  #menuToggle .checkbox-wrapper input:checked~span:nth-last-child(1) {
    transform: rotate(-45deg) translate(0px, 4px);
  }

  #menuToggle .checkbox-wrapper input:checked~span:nth-last-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menu {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-top: 60px;
    background-color: #252525;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  }

  #menu li {
    position: relative;
    padding-left: 0px;
    padding-left: 0;
    margin-left: -120px;
  }

  #menu li:after {
    position: absolute;
    content: '';
    height: 1px;
    width: calc(100% - 60px);
    background: #333;
    left: 30px;
  }

  #menu li:last-child:after {
    display: none;
  }

  #menu li.active a span {
    font-weight: 600;
  }

  #menu li a {
    color: #fff;
    text-transform: uppercase;
    transition-delay: 2s;
    font-size: 26px;
    display: block;
    text-decoration: none;
    padding: 14px 0;
    position: relative;
  }

  #menu li a span {
    position: absolute;
    left: 50px;
    font-weight: 400;
  }

  .portfolio .grid li {
    width: 50%;
  }

  .portfolio .grid li figure div {
    display: none !important;
  }

  .project-description {
    min-width: unset;
    max-width: 720px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .project-description .image-container {
    margin: 0 auto 1rem;
    transform: none;
    background: transparent;
  }

  .project-excerpt {
    padding-bottom: 0 !important;
  }

  .project-description .image-container .project-image:nth-child(1) {
    transform: none;
    opacity: 1;
  }

  .project-description .image-container .project-image:nth-child(2),
  .project-description .image-container .project-image:nth-child(3),
  .project-description .image-container .project-image:nth-child(4) {
    display: none;
    transform: translate(0px, 0px);
  }

  .project-image {
    position: relative;
  }

  .project-text {
    font-weight: normal;
  }

  .contact .main-content {
    padding-bottom: 0;
  }

  .portfolio .grid .img {
    overflow: hidden;
  }

  .portfolio .grid .block img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  }

  .portfolio .grid .img:hover img:last-of-type {
    opacity: 0;
  }

  .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 1rem auto;
  }

  .owl-dots:focus,
  .owl-dots:active,
  .owl-dot:focus,
  .owl-dot:active {
    outline: none
  }

  .owl-dots .owl-dot span {
    display: block;
    border-radius: 50%;
    box-shadow: none !important;
    border: 4px solid #dde0e7;
    background-color: #dde0e7 !important;
    transition: .2s ease-in;
    width: 15px !important;
    height: 15px !important;
    margin: 5px !important;
  }
}

@media (max-width: 767px) {
  .home .home-details p {
    font-size: 14px;
    line-height: 28px;
  }

  .title-bg {
    font-size: 85px;
  }

  .project-description {
    max-width: 540px;
  }
}

@media (max-width: 576px) {
  .btn {
    font-size: 14px;
  }

  body {
    font-size: 14px;
  }

  .title-section.revealator-delay1 {
    transform: none !important;
    opacity: 1 !important;
  }

  /* #menuToggle {
    right: 10px;
    top: 4px;
    padding: 19px 0 0 13px;
    width: 49px;
    height: 49px;
  } */

  .home #menuToggle {
    right: 25px;
    top: 25px;
    padding: 17px 0 0 13px;
  }

  #menu li {
    padding-left: 25px;
  }

  #menu li a {
    font-size: 18px;
  }

  #menu li:after {
    width: calc(100% - 50px);
    left: 25px;
  }

  #menu li a span {
    left: 35px;
  }

  .main-content {
    padding-top: 40px;
  }

  #project-page .main-content {
    padding-top: 85px;
  }

  .main-content>.container,
  .project-description {
    padding: 0 25px;
  }

  .main-img-mobile {
    width: 230px;
    height: 230px;
  }

  .home .home-details h1 {
    font-size: 29px;
    line-height: 29px;
    margin: 18px 0 13px;
  }

  .home .home-details h6 {
    font-size: 19px;
  }

  .title-section {
    padding: 16px 25px 14px;
    background: #252525;
    border-bottom: 1px solid #333;
    margin-bottom: 36px;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 11;
    top: 0;
  }

  .title-section h1 {
    font-size: 26px;
  }

  .title-bg {
    display: none;
  }

  .custom-title {
    font-size: 21px;
    text-align: center !important;
  }

  .about .main-content {
    padding-bottom: 0;
  }

  .about .resume-box h5 {
    font-size: 17px;
  }

  .about .box-stats {
    padding: 15px 20px 20px 25px;
  }

  .about .c100 {
    transform: scale(.8);
  }

  .about .box-stats.with-margin {
    margin-bottom: 25px;
  }

  .about .box-stats h3 {
    font-size: 40px;
  }

  .about .box-stats p {
    padding-left: 0;
  }

  .about .box-stats p:before {
    display: none;
  }

  hr.separator {
    margin: 10px auto 30px;
  }

  .portfolio .main-content {
    padding-bottom: 10px;
    margin-top: 35px;
  }

  .portfolio .grid li {
    width: 100%;
  }

  .portfolio .main-content>.container {
    padding: 0 10px;
  }

  .blog .main-content {
    padding-bottom: 55px;
  }

  .blog-post article h1 {
    font-size: 25px;
  }

  .separator.mt-1 {
    margin-top: 35px !important;
  }

  .social.list-unstyled{
    margin-bottom: 1rem !important;
  }

  .contact .contactform input[type=text], .contact .contactform input[type=email]{
    margin-bottom: 15px;
  }

  .contact .contactform textarea{
    height: 80px;
    min-height: 80px;
  }
}

@media (max-width: 450px) {
  .about .about-list .value {
    font-weight: 500;
  }

  .pl-sm-0 {
    padding-left: 0;
    margin-left: -15px;
  }

  .home .bg {
    background-image: none;
  }
}

@media (max-width: 350px) {
  .about .resume-box li {
    padding: 0 0 0 55px;
  }
}

@media (max-width: 320px) {
  .about .about-list .value {
    font-size: 13px;
  }
}