/*------------------------------------------------------------------------*/
/*      Author Name: Denis Tatar                                          */
/*      Author : https://www.linkedin.com/in/denis-tatar-097588149/       */
/*      Date Develop: 20.07.2020                                          */
/*------------------------------------------------------------------------*/
html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Overpass", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
body.page-is-loaded {
  overflow-x: hidden;
  overflow-y: auto;
}
body.menuIsOpen {
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  margin: 0 0 1rem;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  color: #1C1C1C;
}

img {
  display: inline-block;
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: #666666;
  text-decoration: none;
  -webkit-animation: all 0.2s ease;
          animation: all 0.2s ease;
}
a:hover {
  text-decoration: underline;
  color: #666666;
}

/* General Style */
section.black,
footer.black {
  background-color: #1C1C1C;
  color: #fff;
}
section.white,
footer.white {
  background-color: #fff;
  color: #1C1C1C;
}

.title_1 {
  font-size: 45px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -1.5px;
  margin: 0 auto 15px;
  text-align: center;
}

.title_2 {
  font-size: 27px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1.5px;
  margin: 0 auto 5px;
}

.title_3 {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1;
}

.subtitle_1 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 10px;
  margin: 0;
  text-align: center;
}

.line {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 2px;
  margin: 10px auto 30px;
}
.line.black {
  background-color: rgba(102, 102, 102, 0.25);
}
.line.white {
  background-color: #fff;
}
.line.full_width {
  max-width: calc(100% - 30px);
}
.line.big_space {
  margin: 30px auto;
}

.black {
  color: #1C1C1C;
}

.white {
  color: #fff;
}

.content_justify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* Buttons */
.btn {
  font-size: 17px;
  color: #fff;
  line-height: 1;
  background-color: #1C1C1C;
  padding: 1.3rem 4rem;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.btn span {
  position: relative;
  top: 2px;
}
.btn:hover {
  color: #fff;
  opacity: 0.9;
}
.btn.btn-2 {
  color: #1C1C1C;
  background-color: #fff;
}

/* Header */
.header {
  font-family: "Poppins", sans-serif;
  line-height: 1;
  background-color: #1C1C1C;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 25px;
  z-index: 1000;
}
.header .logo {
  font-size: 25px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
.header .logo:hover {
  text-decoration: none;
}
.header .menu_wrap .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
}
.header .menu_wrap .menu li {
  margin-left: 15px;
}
.header .menu_wrap .menu li:first-child {
  margin-left: 0;
}
.header .menu_wrap .menu li .menu-icon {
  display: inline-block;
  color: #fff;
  width: 30px;
  height: 27px;
  position: relative;
  right: -5px;
  top: -1px;
}
.header .menu_wrap .menu a {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.header .menu_wrap .menu a:hover {
  text-decoration: none;
  opacity: 0.9;
}
.header .menu_wrap .menu li.active a {
  color: #EE6002;
}
.header .menu_wrap .menu .download_cv a {
  color: #EE6002;
}
.header.sticky-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}
.header.sticky-menu.sticky-menu-open {
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.header .mobile_wrap {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .mobileBtn {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 1111;
}
.header .mobileBtn > span {
  background-color: #fff;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -15px;
  -webkit-transition: height 100ms;
  transition: height 100ms;
}
.header .mobileBtn > span:after, .header .mobileBtn > span:before {
  content: '';
  background-color: #fff;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.header .mobileBtn > span:after {
  top: -7px;
}
.header .mobileBtn > span:before {
  bottom: -7px;
}
.header .download_cv_mobile {
  font-size: 18px;
  line-height: 1;
  margin-right: 15px;
}
.header .download_cv_mobile a {
  color: #EE6002;
}
.header .download_cv_mobile a:hover {
  text-decoration: none;
}

.mobile_menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #1C1C1C;
  opacity: 0;
  -webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: scale(0);
          transform: scale(0);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile_menu .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile_menu .menu li {
  margin: 0 0 10px;
}
.mobile_menu .menu li:last-child {
  margin-bottom: 0;
}
.mobile_menu .menu li a {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.mobile_menu .menu li a:hover {
  text-decoration: none;
  opacity: 0.9;
}
.mobile_menu .menu li.active a, .mobile_menu .menu li.download_cv a {
  color: #EE6002;
}
.mobile_menu.mobileMenuOpen {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.mobile_menu.mobileMenuOpen ul li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile_menu .close_menu {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1111;
  background: none;
  border: none;
}
.mobile_menu .close_menu > span {
  background-color: #fff;
  border-radius: 1px;
  height: 0;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -15px;
  -webkit-transition: height 100ms;
  transition: height 100ms;
}
.mobile_menu .close_menu > span:after, .mobile_menu .close_menu > span:before {
  content: '';
  background-color: #fff;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 1px;
  left: 50%;
  margin-left: -15px;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}
.mobile_menu .close_menu > span:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile_menu .close_menu > span:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mobile_menu .close_menu:focus, .mobile_menu .close_menu:active {
  outline: none;
}

/* Screen 768px */
@media (max-width: 991px) {
  .header .menu_wrap {
    display: none;
  }
  .header .mobile_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header.header_about-page .menu_wrap {
    display: block;
  }

  .mobile_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* Screen 320px */
@media (max-width: 479px) {
  .header.header_about-page {
    padding: 15px;
  }
  .header.header_about-page .logo {
    font-size: 19px;
  }
  .header.header_about-page .menu_wrap .menu li .menu-icon {
    width: 20px;
    height: 18px;
  }
  .header.header_about-page .menu_wrap .menu li {
    margin-left: 10px;
  }
  .header.header_about-page .menu_wrap .menu li a {
    font-size: 13px;
  }
  .header.header_about-page .menu_wrap .menu li:first-child {
    margin-left: 0;
  }
}
/* Head Section */
.head_section {
  background: url("../images/head_bg.jpg") no-repeat center fixed;
  background-size: cover;
  position: relative;
  height: 100vh;
}
.head_section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.head_section .head_title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}
.head_section .head_title span {
  display: block;
}
.head_section .btn_more {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  position: absolute;
  bottom: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.head_section .btn_more .btn_icon {
  width: 32px;
  color: #fff;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 0;
  margin-top: -2px;
  -webkit-animation: btnMoreAnim 1.3s linear forwards infinite;
          animation: btnMoreAnim 1.3s linear forwards infinite;
}
.head_section.head_section_about {
  background: url("../images/about_head_bg.jpg") no-repeat center fixed;
  height: auto;
  padding: 200px 0 140px;
  background-size: cover;
  background-attachment: unset;
}
.head_section.head_section_about .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@-webkit-keyframes btnMoreAnim {
  from {
    top: 0;
  }
  50% {
    top: 5px;
  }
  to {
    top: 0;
  }
}

@keyframes btnMoreAnim {
  from {
    top: 0;
  }
  50% {
    top: 5px;
  }
  to {
    top: 0;
  }
}
.isMobile .head_section.head_section_about,
.isMobile .head_section {
  background-attachment: unset;
}

/* Profile Section */
.profile_section {
  padding: 140px 0;
}
.profile_section .section_content {
  color: #000;
  padding-right: 3rem;
}
.profile_section .profile_img {
  max-width: 220px;
  border: 10px solid #EBEBEB;
}
.profile_section .line {
  margin-bottom: 50px;
}
.profile_section a {
  color: #EE6002;
}
.profile_section .profile_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.profile_section .profile_col .title_2 {
  margin-left: 0;
  margin-right: 0;
}

/* Experience Section */
.experience_section {
  padding: 140px 0;
}
.experience_section .experience_section-row {
  margin-bottom: 30px;
}
.experience_section .experience_section-row:last-child {
  margin-bottom: 0;
}
.experience_section .title_2 {
  margin-bottom: 20px;
}
.experience_section .section_content {
  font-size: 16px;
  font-weight: 200;
}
.experience_section .section_content span {
  color: #EE6002;
}
.experience_section .experience_footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.experience_section .experience_footer > * {
  margin-right: 20px;
}
.experience_section .experience_footer > *:last-child {
  margin-right: 0;
}
.experience_section .experience_footer .experience_location,
.experience_section .experience_footer .experience_link {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}
.experience_section .experience_footer .experience_location .icon,
.experience_section .experience_footer .experience_link .icon {
  width: 21px;
  margin-right: 2px;
  color: #fff;
  display: inline-block;
}
.experience_section .experience_footer .experience_location span,
.experience_section .experience_footer .experience_link span {
  line-height: 1;
  display: inline-block;
  position: relative;
  top: 2px;
}

/* Abilities Section */
.abilities_section {
  padding: 140px 0;
}
.abilities_section .title_2 {
  margin-bottom: 20px;
}
.abilities_section .col-left {
  padding-right: 25px;
}
.abilities_section .col-right {
  padding-left: 25px;
}
.abilities_section .line {
  margin: 20px auto;
}

.skills-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}
.skills-list li .skill-name {
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
  color: #1C1C1C;
}
.skills-list li .skill-name .skill-name-desc {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
}
.skills-list li .skill-name .skill-name-desc i {
  font-style: normal;
}
.skills-list li .skill-level {
  line-height: 1;
}
.skills-list li .skill-level .skill-level-icon {
  display: inline-block;
  width: 80px;
  line-height: 1;
  color: #666666;
}
.skills-list li .skill-level.skill-level-1 .skill-level-icon svg path:nth-child(1) {
  fill: #EE6002;
}
.skills-list li .skill-level.skill-level-2 .skill-level-icon svg path:nth-child(1), .skills-list li .skill-level.skill-level-2 .skill-level-icon svg path:nth-child(2) {
  fill: #EE6002;
}
.skills-list li .skill-level.skill-level-3 .skill-level-icon svg path:nth-child(1), .skills-list li .skill-level.skill-level-3 .skill-level-icon svg path:nth-child(2), .skills-list li .skill-level.skill-level-3 .skill-level-icon svg path:nth-child(3) {
  fill: #EE6002;
}
.skills-list li .skill-level.skill-level-4 .skill-level-icon svg path:nth-child(1), .skills-list li .skill-level.skill-level-4 .skill-level-icon svg path:nth-child(2), .skills-list li .skill-level.skill-level-4 .skill-level-icon svg path:nth-child(3), .skills-list li .skill-level.skill-level-4 .skill-level-icon svg path:nth-child(4) {
  fill: #EE6002;
}
.skills-list li .skill-level.skill-level-5 .skill-level-icon svg path:nth-child(1), .skills-list li .skill-level.skill-level-5 .skill-level-icon svg path:nth-child(2), .skills-list li .skill-level.skill-level-5 .skill-level-icon svg path:nth-child(3), .skills-list li .skill-level.skill-level-5 .skill-level-icon svg path:nth-child(4), .skills-list li .skill-level.skill-level-5 .skill-level-icon svg path:nth-child(5) {
  fill: #EE6002;
}

/* Projects Section */
.projects_section {
  padding: 140px 0;
}
.projects_section .subtitle_1 {
  padding: 0 100px;
}
@media screen and (min-width: 1300px) {
  .projects_section .subtitle_1 {
    padding: 0 22vw;
  }
}
.projects_section .projects-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.projects_section .projects-item-wrap {
  max-width: 33.33%;
  padding: 5px;
}
.projects_section .projects-item-wrap .projects-item {
  position: relative;
  overflow: hidden;
}
.projects_section .projects-item-wrap .projects-item .project-item-overlay {
  font-family: "Poppins", sans-serif;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(38, 38, 38, 0.65);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.projects_section .projects-item-wrap .projects-item .project-item-overlay .project-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}
.projects_section .projects-item-wrap .projects-item .project-item-overlay .project-line {
  display: block;
  width: 75%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}
.projects_section .projects-item-wrap .projects-item .project-item-overlay .project-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  margin: 10px 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  display: inline-block;
  -webkit-transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s transform ease-in-out;
  transition: 0.3s transform ease-in-out, 0.3s -webkit-transform ease-in-out;
}
.projects_section .projects-item-wrap .projects-item .project-item-overlay .project-link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s transform ease-in-out;
  transition: 0.3s transform ease-in-out, 0.3s -webkit-transform ease-in-out;
}
.projects_section .projects-item-wrap .projects-item .project-item-overlay .project-link {
  font-family: "Overpass", sans-serif;
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
}
.projects_section .projects-item-wrap .projects-item .project-item-overlay .project-link .project-link-icon {
  width: 19px;
  display: inline-block;
}
.projects_section .projects-item-wrap .projects-item .project-item-overlay .project-link span {
  display: inline-block;
  position: relative;
  top: 2px;
}
.projects_section .projects-item-wrap .projects-item .project-item-overlay .project-link:hover {
  opacity: 0.9;
}
.projects_section .projects-item-wrap .projects-item:hover .project-item-overlay {
  opacity: 1;
}
.projects_section .projects-item-wrap .projects-item:hover .project-desc,
.projects_section .projects-item-wrap .projects-item:hover .project-link-wrap {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* Hobbies Section */
.hobbies_section {
  padding: 140px 0;
}
.hobbies_section .subtitle_1 {
  padding: 0 100px;
}
@media screen and (min-width: 1300px) {
  .hobbies_section .subtitle_1 {
    padding: 0 22vw;
  }
}
.hobbies_section .item {
  opacity: 0.4;
  -webkit-transition: .4s ease all;
  transition: .4s ease all;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
@media (max-width: 1000px) {
  .hobbies_section .item {
    margin: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
.hobbies_section .owl-carousel .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.hobbies_section .owl-carousel .item .carousel-image {
  width: 60%;
}
.hobbies_section .owl-carousel .item .carousel-text {
  font-size: 15px;
  line-height: 1.4;
  position: absolute;
  background-color: #fff;
  -webkit-box-shadow: 20px 15px 26px -9px rgba(0, 0, 0, 0.12);
          box-shadow: 20px 15px 26px -9px rgba(0, 0, 0, 0.12);
  padding: 35px;
  right: 10px;
  width: 60%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hobbies_section .owl-carousel .item .carousel-text .carousel-text-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  color: #000;
}
.hobbies_section .owl-carousel .item .carousel-text span,
.hobbies_section .owl-carousel .item .carousel-text a {
  color: #EE6002;
}
.hobbies_section .owl-carousel .item .carousel-text a {
  text-decoration: underline;
}
.hobbies_section .owl-carousel .owl-nav button.owl-next,
.hobbies_section .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  left: 0;
}
.hobbies_section .owl-carousel .owl-nav button.owl-next span[aria-label],
.hobbies_section .owl-carousel .owl-nav button.owl-prev span[aria-label] {
  display: none;
}
.hobbies_section .owl-carousel .owl-nav button.owl-next:hover, .hobbies_section .owl-carousel .owl-nav button.owl-next:focus, .hobbies_section .owl-carousel .owl-nav button.owl-next:active,
.hobbies_section .owl-carousel .owl-nav button.owl-prev:hover,
.hobbies_section .owl-carousel .owl-nav button.owl-prev:focus,
.hobbies_section .owl-carousel .owl-nav button.owl-prev:active {
  outline: none;
}
.hobbies_section .owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 0;
}
.hobbies_section .active .item {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.hobbies_section .owl-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
}
.hobbies_section .owl-controls {
  position: absolute;
  margin-top: 300px;
}

/* Project Details */
.about_project_section {
  padding: 80px 0;
}
.about_project_section .title_2 {
  margin-bottom: 30px;
}
.about_project_section a {
  color: #EE6002;
}
.about_project_section .content_justify {
  margin-top: 30px;
}
.about_project_section .details_img {
  max-width: 400px;
}
.about_project_section .about_text p {
  line-height: 1.3;
}
.about_project_section .about_text ul li {
  line-height: 1.4;
}

/* Download CV Section */
.download_cv_section {
  padding: 35px 0;
  text-align: center;
}
.download_cv_section.white .btn {
  color: #fff;
  background-color: #1C1C1C;
}

/* Footer */
.footer {
  font-family: "Poppins", sans-serif;
  padding: 25px 0;
}
.footer .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer div[class*="col-"] {
  line-height: 1;
}
.footer .logo {
  font-size: 25px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
.footer .logo:hover {
  text-decoration: none;
}
.footer .copyright {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}
.footer .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer .footer-social li {
  margin-left: 14px;
}
.footer .footer-social li:first-child {
  margin-left: 0;
}
.footer .footer-social a .footer-icon {
  width: 18px;
  line-height: 1;
  display: inline-block;
}
.footer .footer-social a.facebook {
  color: #2E4DA7;
}
.footer .footer-social a.linkedin {
  color: #0077B5;
}
.footer .footer-social a.github {
  color: #3c72be;
}
.footer .footer-social a:hover {
  opacity: 0.9;
}
.footer.white {
  background-color: #fff;
}
.footer.white .logo,
.footer.white .copyright {
  color: #1C1C1C;
}

.loader-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #1C1C1C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999;
}

.d-spinner {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 0.3, 1);
          animation-timing-function: cubic-bezier(0, 1, 0.3, 1);
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.d-spinner.d-spinner__one {
  -webkit-animation-name: dSpinnerOne;
          animation-name: dSpinnerOne;
  fill: #fd6c0d;
}
.d-spinner.d-spinner__two {
  -webkit-animation-name: dSpinnerTwo;
          animation-name: dSpinnerTwo;
  fill: #fe9a58;
}
.d-spinner.d-spinner__three {
  -webkit-animation-name: dSpinnerThree;
          animation-name: dSpinnerThree;
  fill: #fed7be;
}
.d-spinner.d-spinner__four {
  -webkit-animation-name: dSpinnerFour;
          animation-name: dSpinnerFour;
  fill: #ffede1;
}

@-webkit-keyframes dSpinnerOne {
  0% {
    opacity: 0;
    fill: #feaa72;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  7% {
    opacity: 1;
    fill: #feaa72;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
  }
  57% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
    fill: #fd6c0d;
  }
  74% {
    opacity: 1;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 1, 0);
            animation-timing-function: cubic-bezier(0, 0, 1, 0);
  }
  83% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
}

@keyframes dSpinnerOne {
  0% {
    opacity: 0;
    fill: #feaa72;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  7% {
    opacity: 1;
    fill: #feaa72;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
  }
  57% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
    fill: #fd6c0d;
  }
  74% {
    opacity: 1;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 1, 0);
            animation-timing-function: cubic-bezier(0, 0, 1, 0);
  }
  83% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
}
@-webkit-keyframes dSpinnerTwo {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  3% {
    opacity: 0;
    fill: #fed7be;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  10% {
    opacity: 1;
    fill: #fed7be;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
    fill: #fe9a58;
  }
  71% {
    opacity: 1;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 1, 0);
            animation-timing-function: cubic-bezier(0, 0, 1, 0);
  }
  79% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
}
@keyframes dSpinnerTwo {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  3% {
    opacity: 0;
    fill: #fed7be;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  10% {
    opacity: 1;
    fill: #fed7be;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
    fill: #fe9a58;
  }
  71% {
    opacity: 1;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 1, 0);
            animation-timing-function: cubic-bezier(0, 0, 1, 0);
  }
  79% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
}
@-webkit-keyframes dSpinnerThree {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  6% {
    opacity: 0;
    fill: white;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  13% {
    opacity: 1;
    fill: white;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
  }
  63% {
    fill: #fed7be;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
  }
  68% {
    opacity: 1;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 1, 0);
            animation-timing-function: cubic-bezier(0, 0, 1, 0);
  }
  76% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
}
@keyframes dSpinnerThree {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  6% {
    opacity: 0;
    fill: white;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  13% {
    opacity: 1;
    fill: white;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
  }
  63% {
    fill: #fed7be;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
  }
  68% {
    opacity: 1;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 1, 0);
            animation-timing-function: cubic-bezier(0, 0, 1, 0);
  }
  76% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
}
@-webkit-keyframes dSpinnerFour {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  9% {
    opacity: 0;
    fill: white;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  16% {
    opacity: 1;
    fill: white;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
  }
  64% {
    fill: #ffede1;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
  }
  65% {
    opacity: 1;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 1, 0);
            animation-timing-function: cubic-bezier(0, 0, 1, 0);
  }
  73% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
}
@keyframes dSpinnerFour {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  9% {
    opacity: 0;
    fill: white;
    -webkit-transform: rotateZ(-65deg) scale(0.6);
            transform: rotateZ(-65deg) scale(0.6);
  }
  16% {
    opacity: 1;
    fill: white;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
  }
  64% {
    fill: #ffede1;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
  }
  65% {
    opacity: 1;
    -webkit-transform: rotateZ(0) scale(1);
            transform: rotateZ(0) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 1, 0);
            animation-timing-function: cubic-bezier(0, 0, 1, 0);
  }
  73% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotateZ(45deg) scale(0.61);
            transform: rotateZ(45deg) scale(0.61);
  }
}
/* Disable Parallax on Mobile */
.isDesktop .parallax-background {
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*----> Responsive <---- */
/* Screen 768px */
@media (max-width: 991px) {
  .profile_section,
  .experience_section,
  .abilities_section,
  .projects_section,
  .hobbies_section {
    padding: 100px 0;
  }

  .skills-list li .skill-name {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .skills-list li .skill-name .skill-name-desc {
    font-size: 12px;
    display: block;
    max-width: 70%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .projects_section .projects-item-wrap {
    max-width: 50%;
  }

  .hobbies_section .item,
  .hobbies_section .active .item {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  .hobbies_section .owl-carousel .item .carousel-text {
    padding: 15px;
  }

  .head_section.head_section_about {
    padding: 150px 0 100px;
  }
}
/* Screen 736px */
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .title_2 {
    font-size: 25px;
  }

  .head_section .head_title {
    font-size: 35px;
  }

  .profile_section,
  .experience_section,
  .abilities_section,
  .projects_section,
  .hobbies_section {
    padding: 50px 0;
  }

  .profile_section .line {
    margin-bottom: 30px;
  }

  .profile_section .profile_col {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .profile_section .section_content {
    padding-right: 0;
  }

  .abilities_section .col-left {
    padding-right: 15px;
  }

  .abilities_section .col-right {
    padding-left: 15px;
  }

  .abilities_section .title_2 {
    margin-bottom: 0;
  }

  .projects_section .subtitle_1 {
    padding: 0;
  }

  .projects_section .projects-item-wrap .projects-item .project-item-overlay .project-title {
    font-size: 15px;
  }

  .projects_section .projects-item-wrap .projects-item .project-item-overlay .project-desc {
    margin: 0 0 5px;
  }

  .hobbies_section .subtitle_1 {
    padding: 0 50px;
  }

  .download_cv_section {
    padding: 20px 0;
  }

  .btn {
    padding: 1rem 3.5rem;
  }

  .head_section.head_section_about {
    padding: 115px 0 70px;
  }

  .about_project_section {
    padding: 40px 0;
  }

  .about_project_section .title_2 {
    font-size: 21px;
    margin-bottom: 20px;
  }

  .about_project_section .about_text p {
    line-height: 1.2;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .skills-list li .skill-name .skill-name-desc {
    display: inline-block;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 100%;
  }

  .projects_section .projects-item-wrap .projects-item .project-item-overlay .project-desc {
    font-size: 12px;
  }

  footer.footer .container {
    max-width: 100%;
  }

  .footer .logo {
    font-size: 21px;
  }

  .footer .copyright {
    font-size: 14px;
  }
}
/* Screen 320px */
@media (max-width: 479px) {
  .title_1 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .title_3 {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .line.big_space {
    margin: 10px auto 20px;
  }

  .profile_section .line {
    margin-bottom: 20px;
  }

  .profile_section .row .profile_col:last-child {
    display: none;
  }

  .experience_section .row .line {
    display: none;
  }

  .experience_section .row:first-child .line {
    display: block;
  }

  .experience_section .title_2 {
    margin-bottom: 15px;
  }

  .experience_section .section_content {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .experience_section .experience_section-row {
    margin-bottom: 20px;
  }

  .experience_section .experience_footer {
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
  }

  .experience_section .experience_section-row:last-child .experience_footer {
    border: none;
    padding-bottom: 0;
  }

  .projects_section .projects-item-wrap {
    max-width: 100%;
  }

  .projects_section .projects-item-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .hobbies_section .subtitle_1 {
    padding: 0;
  }

  .hobbies_section .owl-carousel .item .carousel-image {
    width: 100%;
  }

  .hobbies_section .owl-carousel .item .carousel-text .carousel-text-title {
    font-size: 18px;
    color: #fff;
  }

  .hobbies_section .owl-carousel .item .carousel-text {
    font-size: 12px;
    line-height: 1.2;
    background-color: rgba(28, 28, 28, 0.75);
    width: 52%;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .hobbies_section .owl-carousel .owl-nav button.owl-next,
  .hobbies_section .owl-carousel .owl-nav button.owl-prev {
    width: 50%;
  }

  .hobbies_section .owl-carousel .owl-nav button.owl-next span[aria-label],
  .hobbies_section .owl-carousel .owl-nav button.owl-prev span[aria-label] {
    display: block;
    font-size: 30px;
    color: #fff;
    height: 100%;
  }

  .hobbies_section .owl-carousel .owl-nav button.owl-prev {
    text-align: left;
    padding-left: 20px !important;
  }

  .hobbies_section .owl-carousel .owl-nav button.owl-next {
    text-align: right;
    padding-right: 20px !important;
  }

  footer.footer {
    padding: 20px 0;
    text-align: center;
  }

  .footer .logo {
    font-size: 22px;
    margin-bottom: 5px;
    display: inline-block;
  }

  .footer .copyright {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .footer .footer-social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .about_project_section {
    padding: 30px 0;
  }

  .about_project_section .title_2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .about-page .head_section .head_title {
    font-size: 25px;
  }
}
/* Screen 400px */
@media (max-width: 400px) {
  .loader-wrap svg {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }

  .head_section .head_title {
    font-size: 30px;
  }

  .title_1 {
    font-size: 35px;
  }

  .header .logo {
    font-size: 21px;
  }

  .header .download_cv_mobile {
    font-size: 15px;
  }
}
@media (max-width: 325px) {
  .header {
    padding: 15px;
  }

  .head_section .btn_more {
    font-size: 16px;
  }
}
