body{
	background-color: rgba(255,255,255,0);
  font-family: Arial, Helvetica, sans-serif;
}

body.inner{
  padding-top: 80px;
}

.wrap{
  position: relative;
  width: 100%;
}

.work{
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/***************************************************** main ****************************************/
.top_code{
  height: 100vh;
  background-image: url(img/bg_main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top_code .work{
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.top_code::before{
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.code_content{
  display: flex;
  flex-wrap: wrap;
  max-width: 50%;
}

.code_title{
  width: 720px;
  color: #fff;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.5em;
}

.code_text{
  width: 720px;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  font-weight: 400;
  line-height: 2em;
  margin-top: 15px;
}

.code_logo{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.logo_big{
  width: 350px;
  height: 350px;
  background-image: url(svg/logo.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/***************************************************** main ****************************************/

/***************************************************** header ****************************************/
.header{
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  padding: 0 60px;
}

body.inner .header{
  height: 80px;
  background-color: rgba(32, 32, 32, 1);
}

.header.sticky{
  background-color: rgba(0, 0, 0, 1);
  height: 80px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
}

.logo{
  text-decoration: none;
  color: #fff;
  font-size: 32px;
}

.main_menu_list{
  display: flex;
}

.menu-item{
  margin: 0 20px;
}

.menu-item:last-child{
  margin-right: 0;
}

.menu-item a{
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: .3s;
}

.menu-item.current-post-parent a,
.menu-item.current-menu-item a,
.menu-item a:hover{
  color: rgba(255,255,255,0.5);
  transition: .3s;
}

.code_line{
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-top: 25px;
}

.code_more{
  background-color: #fff;
  border-radius: 2px;
  padding: 15px 25px;
  color: #252525;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

.mouse-container{
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 50%;
  margin-left: -15px;
  transform: translate(-50%, -50%);
  width: 30px;
}

.mouse-container svg{
  width: 100%;
}

svg #wheel {
	animation: scroll ease 1.5s infinite;
}

@keyframes scroll {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(100px);
	}
}

/***************************************************** header ****************************************/
/***************************************************** create ****************************************/
.code_create{
  display: flex;
  width: 100%;
  padding: 75px 0;
}

.code_create_block{
  width: calc(100%/3 - 40px);
  margin: 20px;
}

.code_create_icon{
  width: 64px;
  height: 64px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.code_create_icon.development{
  background-image: url(svg/development.svg);
}

.code_create_icon.design{
  background-image: url(svg/design.svg);
}

.code_create_icon.repair{
  background-image: url(svg/repair.svg);
}

.code_create_title{
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
}

.code_create_text{
  width: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
  margin-top: 15px;
  color: #656565;
}
/***************************************************** create ****************************************/
/***************************************************** portfolio ****************************************/
.wrap_portfolio{
  padding: 75px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15)
}

.code_portfolio_line{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.code_portfolio_all_link{
  background-color: #252525;
  border-radius: 2px;
  padding: 18px 36px;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.code_portfolio_all_link:hover{
  background-color: #404040;
  transition: .3s;
}

.code_portfolio_top{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.code_portfolio_top_title{
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
  color: #000;
}

.code_portfolio_top_btns{
  display: flex;
}

.code_portfolio_top_btns_left{
  width: 50px;
  height: 50px;
  border: 2px solid #252525;
  background-image: url(svg/arrowbtn.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  cursor: pointer;
  transform-origin: center center;
  transform: rotate(180deg);
  border-left: 1px solid #252525;
}

.code_portfolio_top_btns_right{
  width: 50px;
  height: 50px;
  border: 2px solid #252525;
  background-image: url(svg/arrowbtn.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  cursor: pointer;
  border-left: 1px solid #252525;
}

.code_portfolio_slider{
  display: flex;
  width: 100%;
  margin: 40px 0;
}

.code_portfolio_slider .code_portfolio_slide{
  position: relative;
  background-color: rgba(0, 0, 0, 0.05);
  width: calc(100%/4 - 30px);
  height: 350px;
  margin: 25px 15px;
  overflow: hidden;
}

.code_portfolio_slider .code_portfolio_slide::before{
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  transition: .3s;
  background-repeat: no-repeat;
  background-position: top 20px right 20px;
}

.code_portfolio_slider .code_portfolio_slide:hover::before{
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(svg/arrowdiag.svg);
  transition: .3s;
}

.code_portfolio_slider .code_portfolio_slide img{
  transition: .3s;
}

.code_portfolio_slider .code_portfolio_slide:hover img{
  transform: scale(1.1);
  transition: .3s;
}

.code_portfolio_slide_info{
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .3s;
  box-sizing: border-box;
  padding: 25px;
}

.code_portfolio_slider .code_portfolio_slide:hover .code_portfolio_slide_info{
  opacity: 1;
  transition: .3s;
}

.code_portfolio_slide_info_subtitle{
  color: #fff;
  font-size: 14px;
}

.code_portfolio_slide_info_title{
  margin-top: 15px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
/***************************************************** portfolio ****************************************/
/***************************************************** blog ****************************************/
.wrap_blog{
  padding: 75px 0;
  background-color: #F0F0F1;
}

.work_title{
  display: flex;
  justify-content: center;
  width: 100%;
}

.work_title h2{
  max-width: 450px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
  color: #000;
}

.code_blog{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 25px;
}

.code_blog_post{
  position: relative;
  width: calc(100%/3 - 40px);
  margin: 20px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 40px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
  padding-bottom: 80px;
}

.code_blog_post_icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.code_blog_post_icon img{
  max-width: 100%;
  height: auto;
}

.code_blog_post_title{
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4em;
  margin-top: 20px;
}

.code_blog_post_description{
  width: 100%;
  font-size: 14px;
  color: #656565;
  line-height: 1.6em;
  margin-top: 15px;
}

.code_blog_post_more{
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 40px;
}

.code_blog_post_more::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  width: 24px;
  height: 24px;
  background-image: url(svg/arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: -12px;
  transition: .3s;
}

.code_blog_post_more:hover::after{
  right: 35px;
}

.code_blog_post_link{
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}
/***************************************************** blog ****************************************/
/***************************************************** skills ****************************************/
.wrap_skills{
  background-color: #252525;
  padding: 75px 0;
}

.code_skills{
  display: flex;
  align-items: center;
}

.code_skills_title{
  max-width: 300px;
  font-size: 32px;
  color: #fff;
  line-height: 1.5em;
}

.code_skills_blocks{
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 300px);
  box-sizing: border-box;
  padding-left: 50px;
}

.code_skills_block{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100%/5 - 20px);
  margin: 10px;
  height: 50px;
  padding: 10px 0px 10px 0px;
  background-color: #F0F0F1;
  border-radius: 8px 8px 8px 8px;
  font-size: 24px;
  font-weight: 600;
}
/***************************************************** skills ****************************************/
/***************************************************** news ****************************************/
.wrap_news{
  padding: 75px 0;
}

.code_news{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.code_news_block{
  position: relative;
  width: calc(100%/3 - 40px);
  margin: 20px;
  background-color: #f1f1f1;
  box-sizing: border-box;
  padding: 30px;
  padding-bottom: 70px;
}

.code_news_img{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
}

.code_news_img img{
  max-height: 100%;
  vertical-align: bottom;
}

.code_news_title{
  width: 100%;
  margin-top: 25px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5em;
}

.code_news_more{
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: inline-block;
  color: #252525;
  margin-top: 25px;
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 3px;
}

.code_news_more::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #252525;
}
/***************************************************** news ****************************************/
/***************************************************** content_blog ****************************************/
.blog_container{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 75px 0;
}

.content_blog{
  width: 800px;
}

.blog_block{
  width: 100%;
  margin-bottom: 60px;
}

.blog_block_image{
  width: 100%;
}

.blog_block_image img{
  max-width: 100%;
  min-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.blog_block_content{
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dedede;
  padding: 45px;
  border-top: none;
}

.blog_block_title{
  width: 100%;
  font-size: 24px;
  line-height: 1.4em;
}

.blog_block_text{
  width: 100%;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8em;
  color: rgba(0, 0, 0, 0.6);
}

.blog_block_text p{
  color: rgba(0, 0, 0, 0.6);
  margin: 15px 0;
}

.blog_block_text h1{
  font-size: 22px;
  margin: 15px 0;
}

.blog_block_text h2{
  font-size: 20px;
  margin: 15px 0;
}

.blog_block_text h3{
  font-size: 18px;
  margin: 15px 0;
}

.blog_block_text ol{
  list-style-type: decimal;
  padding-left: 30px;
}

.blog_block_text ol li{
  position: relative;
  margin: 15px 0;
  padding-left: 10px;
}

.blog_block_text ul li{
  position: relative;
  margin: 15px 0;
  padding-left: 40px;
}

.blog_block_text ul li::before{
  content: '';
  position: absolute;
  top: 9px;
  left: 20px;
  width: 8px;
  height: 8px;
  background-color: rgba(32, 32, 32, 1);
}

.blog_block_text .wp-block-quote{
  margin: 15px 0;
  position: relative;
  background-color: transparent;
  padding: 10px 30px;
  border-left: 3px solid rgba(32, 32, 32, 1);
  line-height: 1.8em;
  font-size: 18px;
}

.blog_block_line{
  width: 100%;
  margin-top: 30px;
}

.blog_block_link{
  display: inline-block;
  background-color: #252525;
  border-radius: 2px;
  padding: 14px 28px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

.blog_block_link:hover{
  background-color: #404040;
  transition: .3s;
}
/***************************************************** content_blog ****************************************/
/***************************************************** sidebar ****************************************/
.sidebar{
  width: calc(100% - 860px);
  margin-left: 60px;
}

.widget{
  width: 100%;
  margin-bottom: 60px;
}

.widget_title{
  width: 100%;
  border-bottom: 3px solid rgba(32, 32, 32, 1);
  font-size: 18px;
  padding-bottom: 20px;
}

.widget_content{
  width: 100%;
}

.widget_link{
  display: flex;
  align-items: center;
  width: 100%;
  margin: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0,0.3);
  padding-bottom: 20px;
  text-decoration: none;
  color: #000;
}

.widget_line_img{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.widget_line_img img{
  max-width: 160px;
  height: auto;
  vertical-align: bottom;
}

.widget_line_title{
  width: calc(100% - 80px);
  box-sizing: border-box;
  padding-left: 25px;
  line-height: 1.3em;
}
/***************************************************** sidebar ****************************************/
/***************************************************** footer ****************************************/
.wrap_footer{
  background-color: rgba(32, 32, 32, 1);
}

.top_footer{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 50px 0;
}

.top_footer_text{
  max-width: 420px;
  color: #fff;
  line-height: 1.3em;
  font-size: 30px;
}

.top_footer_block{
  max-width: 300px;
  margin-left: 100px;
  padding-top: 12px;
}

.top_footer_title{
  color: #fff;
  font-weight: 400;
}

.top_footer_list{
  margin-top: 25px;
}

.top_footer_item{
  margin-bottom: 15px;
}

.top_footer_item a{
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: .3s;
}

.top_footer_item a:hover{
  color: rgba(255,255,255,1);
  transition: .3s;
}

.footer{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  padding: 25px 0;
  color: #fff;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/***************************************************** footer ****************************************/

/********************************************** mobile ******************************************/
@media only screen and (max-width: 1365px){
  .header{
    padding: 0 20px;
  }

  .top_code{
    padding: 150px 0;
    box-sizing: border-box;
    padding-top: 200px;
  }
}

@media only screen and (max-width: 1200px){
  .work{
    max-width: calc(100%  - 40px);
  }

  .top_code{
    height: auto;
  }

  .mouse-container{
    display: none;
  }
}

@media only screen and (max-width: 1199px){
  .code_skills_block{
    font-size: 16px;
  }

  .code_skills_title{
    width: 250px;
    font-size: 28px;
    line-height: 1.4em;
  }

  .code_skills_blocks{
    width: calc(100% - 250px);
  }

  .code_news_block{
    width: calc(100% / 3 - 20px);
    margin: 10px;
    padding: 15px;
    padding-bottom: 55px;
  }

  .code_news_title{
    font-size: 16px;
  }

  .code_news_more{
    left: 15px;
    bottom: 15px;
  }

  .top_footer{
    justify-content: flex-start;
  }

  .code_content{
    max-width: 60%;
  }

  .code_title{
    font-size: 32px;
  }

  .code_title{
    width: auto;
  }
  
  .content_blog{
	  width: 640px;
  }
  
  .sidebar{
	width: calc(100% - 680px);
    margin-left: 40px;
  }
}

@media only screen and (max-width: 1023px){
  .main_menu{
    display: none;
  }

  .logo_big{
    display: none;
  }

  .code_content{
    max-width: 100%;;
  }

  .code_blog_post{
    width: calc(100% - 40px);;
  }

  .code_skills{
    flex-wrap: wrap;
  }

  .code_skills_title{
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .code_skills_blocks{
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }

  .code_news_block{
    width: calc(100%/2 - 20px);
  }


  .code_news_img{
    background-color: rgba(0, 0, 0, 0);
  }

  .top_footer_text{
    max-width: 300px;
    font-size: 28px;
  }

  .code_create{
    flex-wrap: wrap;
  }

  .code_create_block{
    width: calc(100% - 40px);
  }
  
  .content_blog{
	  width: 100%;
  }
  
  .sidebar{
	width: 100%;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px){
  .top_footer_text{
    display: none;
  }
  
  .blog_block_content{
	  padding: 25px 15px;
  }
}

@media only screen and (max-width: 639px){
  .code_skills_block{
    width: calc(100% / 3 - 20px);
  }

  .top_footer_block{
    margin-left: 50px;
  }

  .code_news_block{
    width: calc(100% - 20px);
  }

  .code_news_img{
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 479px){
  .logo{
    font-size: 26px;
  }
}
/********************************************** mobile ******************************************/