body {
  margin:0;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  cursor: default;
  width: 100%;
  outline: none !important;
  background: #fff;
  color: #000;
}
a{
  text-decoration:none;
  -webkit-transition: 0.25s cubic-bezier(.23,1,.32,1);
	-moz-transition: 0.25s cubic-bezier(.23,1,.32,1);
	-o-transition: 0.25s cubic-bezier(.23,1,.32,1);
	transition: 0.25s cubic-bezier(.23,1,.32,1);
}
a:active,
a:focus,
a:hover {
  outline: none;
}
* {
  scroll-behavior: smooth;
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after {
	position: absolute;
	content: "";
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: 0.25s ease;
	-moz-transition: 0.25s ease;
	-o-transition: 0.25s ease;
	transition: 0.25s ease;
}
* {
	margin: 0;
	padding: 0;
}
h1, h2, h3 {
	font-family: 'Lora', serif;
}
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
.clearfix {
  clear: both;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
ol,ul {
  list-style: none;
  margin:0;
  padding:0;
}
hr {
	position: relative;
	height: 2px;
	background: #22A6B3;
	margin: 20px 0 40px 0;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	border: 0;
	border-radius: 3px;
	width: 100px;
}
.container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/* --------------------------------
	
	cookie-box
	
-------------------------------- */
.cookie-box {
	position: fixed;
	bottom: 30px;
	right: 160px;
	background: #F8F9F9;
	color: #000;
	padding: 32px;
	border-radius: 20px;
	width: 25vw;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 10px 35px rgba(29, 81, 179, 0.18);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(120%);
	will-change: transform;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.cookie-box.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
}
.cookie-box img {
	width: 50px;
	margin: 0 0 24px 0;
}
.cookie-box p {
	font-size: 14px;
	margin: 0 0 16px 0;
}
.btn-cookie {
	position: relative;
	display: block;
	padding: 15px 30px;
	width: 100%;
	border-radius: 8px;
	border: 2px solid #f23838;
	background: #f23838;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.btn-cookie:hover {
	background: transparent;
	color: #f23838;
}
@media (max-width: 1400px) {
.cookie-box {
	padding: 20px;
	border-radius: 10px;
}
.cookie-box p {
	font-size: 12px;
}
}
@media (max-width: 1200px) {
.cookie-box {
	width: 300px;
}
}
@media (max-width: 767px) {
.cookie-box {
	width: 100%;
	right: 0;
	bottom: 0;
}
}

/* --------------------------------
	
	header
	
-------------------------------- */
header {
	position: fixed;
	width: 100%;
	padding: 25px 0;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
	z-index: 10;
}
header:before {
  background: #000;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  -webkit-transition: 0.25s cubic-bezier(.23,1,.32,1);
	transition: 0.25s cubic-bezier(.23,1,.32,1);
}
header.shrink:before {
	height: 100%;
}
.header-flex {
  display: flex;
	align-items: center;
  justify-content: space-between;
}
.nav {
	position: relative;
	display: flex;
	align-items: center;
}
.nav.show {
  transform: translateX(0%);
}
.nav li {
	margin: 0 40px 0 0;
}
.nav li a {
	position: relative;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	padding: 0;
	display: block;
}
.nav li a:hover {
	color: #d8b47e;
}

/*----------------------------
	BURGER
----------------------------*/
.burger {
	width: 30px;
	height: 32px;
	cursor: pointer;
	position: relative;
	z-index: 10;
	display: none;
}
.burger::before, .burger span, .burger::after {
	width: 100%;
	height: 2px;
	display: block;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	opacity: 1;
}
.burger:before, .burger:after {
	transition: .15s linear;
	-webkit-transition: .15s linear;
	content: "";
}
.burger::before {
	top: 8px;
}
.burger span {
	top: 17px;
}
.burger:after {
	top: 26px;
}
/* Click */
.burger.cross span {
	opacity: 0;
}
.burger.cross:before, .burger.cross:after {
	top: 50%;
}
.burger.cross:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5); /*for IE*/
}
.burger.cross:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5); /*for IE*/
}
.burger:focus {
	outline: none;
}

/* --------------------------------
	
	intro
	
-------------------------------- */
#intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url(../img/bg-intro.jpg) center center;
  background-size: cover;
  color: #fff;
}
.flex-intro {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	height: 100vh;
	width: 45%;
}
.avtor-intro {
	position: absolute;
	width: 50%;
	height: 100vh;
	object-fit: cover;
	top: 0;
	right: 0;
}
h1 {
  font-size: 96px;
  margin-bottom: 20px;
	line-height: 1.2;
}
.intro-list {
	margin-bottom: 40px;
}
.intro-list li {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.4;
	margin-bottom: 20px;
	padding-left: 50px;
}
.intro-list li:before {
	background: url(../img/ico1.svg) center center;
  background-size: cover;
	width: 20px;
	height: 20px;
	top: 2px;
	left: 0;
}
hr.intro {
	width: 124px;
}
.btn {
	position: relative;
  font-family: 'Roboto', sans-serif;
	background: #22A6B3;
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	padding: 25px 35px;
	font-weight: 500;
	border-radius: 45px;
	display: block;
	text-align: center;
	max-width: 400px;
	line-height: 1.4;
}
.btn:hover {
  background: #028592;
}

/* --------------------------------
	
	service
	
-------------------------------- */
#service {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #fff;
	padding: 70px 0;
}
h2 {
	font-size: 48px;
	margin-bottom: 20px;
	line-height: 1.2;
}
.subtitle {
	font-size: 24px;
	text-transform: uppercase;
	line-height: 1.4;
}
.service {
	margin-bottom: 40px;
}
.tabs {
	position: relative;
	padding-left: 60px;
	margin-bottom: 60px;
}
.tabs-list {
	width: 40%;
	float: left;
	min-height: 470px;
}
#first-tab-group {
	position: relative;
	width: 60%;
	float: left;
	background: #F5F5F5;
	border-radius: 6px;
	min-height: 470px;
	padding: 80px 70px;
}
.tabs li {
	margin-bottom: 20px;
}
.tabs li a {
	position: relative;
	color: rgba(0,0,0,0.5);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}
.tabs li a.active {
	position: relative;
	color: rgba(0,0,0,1);
}
.tabs li a:before {
	background: #d8b47e;
	height: 1px;
	width: 0;
	top: 12px;
	left: -58px;
	-webkit-transition: 0.25s cubic-bezier(.23,1,.32,1);
	-moz-transition: 0.25s cubic-bezier(.23,1,.32,1);
	-o-transition: 0.25s cubic-bezier(.23,1,.32,1);
	transition: 0.25s cubic-bezier(.23,1,.32,1);
}
.tabs li a.active:before {
	width: 38px;
}
.tabgroup li {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 30px;
	padding-left: 60px;
}
.tabgroup li:last-child {
	margin-bottom: 0px;
}
.tabgroup li:before {
	width: 40px;
	height: 40px;
	background: #d8b47e;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	top: -8px;
	left: 0;
}
.tabgroup li:nth-child(1):before {
	content: "1";
}
.tabgroup li:nth-child(2):before {
	content: "2";
}
.tabgroup li:nth-child(3):before {
	content: "3";
}
.tabgroup li:nth-child(4):before {
	content: "4";
}

/* --------------------------------
	
	about
	
-------------------------------- */
#about {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #fff;
	padding: 70px 0;
}
.about {
	margin-bottom: 40px;
}
.about-list li {
	position: relative;
	font-size: 16px;
	line-height: 1.4;
	padding-left: 60px;
	margin-bottom: 20px;
}
.about-list li:last-child {
	margin-bottom: 0px;
}
.about-list li span {
	color: #22A6B3;
}
.about-list li:before {
	background: url(../img/ico2.svg) center center;
	background-size: cover;
	width: 24px;
	height: 24px;
	top: 0px;
	left: 0;
}
.col-7 {
	width: 60%;
	float: left;
}
.col-5 {
	width: 40%;
	float: left;
}
.avtor {
	width: 100%;
	padding-right: 50px;
}
h3 {
	font-size: 24px;
	margin: 40px 0;
}
.popup-gallery {
	display: flex;
}
.popup-gallery li {
	position: relative;
	margin-right: 10px;
}
.popup-gallery li img {
	width: 100%;
	display: block;
	object-fit: cover;
  -webkit-transition: 0.25s cubic-bezier(.23,1,.32,1);
  transition: 0.25s cubic-bezier(.23,1,.32,1);
}
.popup-gallery li a {
	position: relative;
	display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.gallery-icon {
	position: absolute;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255,255,255,0.75);
	border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  will-change: transform;
  -webkit-transition: 0.25s cubic-bezier(.23,1,.32,1);
  transition: 0.25s cubic-bezier(.23,1,.32,1);
}
.gallery-icon:before {
  background: url(../img/icon-search.svg) center center;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.popup-gallery li:hover .gallery-icon {
  transform: scale(1);
}
.popup-gallery li:hover img {
	opacity: 0.25;
  filter: grayscale(1);
}


/* --------------------------------
	
	projects
	
-------------------------------- */
#projects {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 70px 0;
}
.projects-grid {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 -0.5% 40px -0.5%;
}
.projects-grid:last-of-type {
	margin-bottom: 0px;
}
#projects h3 {
	font-size: 32px;
	margin-bottom: 20px;
	line-height: 1.2;
}
.projects-item {
	position: relative;
	width: 32.333%;
	overflow: hidden;
  margin: 0.5%;
}
.projects-item img {
	width: 100%;
	object-fit: fill;
	display: block;
  -webkit-transition: 0.35 cubic-bezier(.23,1,.32,1);
  transition: 0.35s cubic-bezier(.23,1,.32,1);
}
.projects-item:hover img {
	filter: grayscale(1);
}
.projects-overlay {
	position: absolute;
	background: rgba(0, 0, 0, 0.75);
	top: 0;
	left: 0;
	width: 100%;
  height: 100%;
	padding: 35px;
	color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
	-webkit-transition: 0.35 cubic-bezier(.23,1,.32,1);
  transition: 0.35s cubic-bezier(.23,1,.32,1);
}
.title-project {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
}
.description-project span {
	font-weight: 700;
}
.projects-item:hover .projects-overlay {
	transform: translateY(0%);
}
.projects-flex {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	border: 1px dashed rgba(255, 255, 255, 0.2);
}
.add-project {
	padding: 15px;
}
.add-project p {
	position: relative;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}
.add-project p:before {
	font-size: 288px;
	font-weight: 700;
	content: "!";
	color: rgba(0, 0, 0, 0.05);
	top: -120px;
	left: 0;
	right: 0;
	margin: 0 auto;
	line-height: 1;
}

/* --------------------------------
	
	skills
	
-------------------------------- */
#skills {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #F5F5F5;
	padding: 70px 0;
}
.skills-subtitle {
	font-size: 24px;
	text-transform: uppercase;
	width: 70%;
	margin-bottom: 50px;
}
.skills-list {
	position: relative;
	margin: 0 -30px;
}
.skills-list ul {
	width: 33.333%;
	float: left;
	padding: 0 30px;
}
.skills-list ul li {
	position: relative;
	margin-bottom: 15px;
}
.skills-list ul li img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 30px;
	will-change: transform;
	-webkit-transition: 0.35 cubic-bezier(.23,1,.32,1);
	-moz-transition: 0.35s cubic-bezier(.23,1,.32,1);
	-o-transition: 0.35s cubic-bezier(.23,1,.32,1);
	transition: 0.35s cubic-bezier(.23,1,.32,1);
}
.skills-list ul li span {
	display: inline-block;
	vertical-align: middle;
	width: 70%;
}
.skills-list ul li:hover img {
	transform: scale(1.2);
}

/* --------------------------------
	
	contact
	
-------------------------------- */
#contact {
	position: relative;
	width: 100%;
	overflow: hidden;
  background: url(../img/bg-intro.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
	color: #fff;
}
.contact-subtitle {
  font-size: 24px;
	margin-bottom: 40px;
	font-weight: 100;
}
.contact-subtitle span {
  color: #d8b47e;
	text-transform: uppercase;
	font-weight: 500;
}
#contact .col-7 {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	padding: 70px 0;
	width: 45%;
}
.contact-content {
	position: relative;
	width: 100%;
	display: flex;
	align-items: flex-start;
}
.contact-content h3 {
  margin: 0 0 30px 0;
}
.footer-contact {
	position: relative;
	background: rgba(0,0,0,0.55);
	padding: 40px 0;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
.contact-item {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-item li {
  display: flex;
  align-items: center;
  margin: 0 70px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: #d8b47e;
}
.contact-item li:last-child {
  margin: 0
}
.contact-item li a {
  display: flex;
  align-items: center;
  color: #d8b47e;
  font-weight: 700;
}
.contact-item li a:hover {
  color: #fff;
}
.contact-item li a img {
  width: 30px;
  height: 30px;
  margin: 0 12px 0 0;
}
.contact-item li.metro {
	flex-direction: column;
	align-items: flex-start;
}
.contact-item li.metro span {
  display: flex;
  align-items: center;
}
.contact-item li.metro img {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  margin: 0 10px 0 0;
}
.bold{
  font-weight: 700;
}
.avtor-end {
  position: absolute;
	width: 40%;
	top: 0;
	right: 0;
  height: 100%;
  object-fit: cover;
}
.form {
  position: relative;
	width: 100%;
}
.form-group {
	position: relative;
	width: 100%;
	font-family: 'Roboto', sans-serif;
}
input[type="text"] {
	position: relative;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #fff;
	display: block;
	width: 100%;
	height: 40px;
	margin-bottom: 25px;
	margin-top: 10px;
	background: transparent;
	padding: 0;
	border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
input[type="text"]:hover {
	border-bottom: 1px solid rgba(255,255,255,1);
	color: #fff;
}
input[type="email"] {
	position: relative;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #fff;
	display: block;
	width: 100%;
	height: 40px;
	margin-bottom: 25px;
	margin-top: 10px;
	background: transparent;
	padding: 0;
	border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
input[type="email"]:hover {
	border-bottom: 1px solid rgba(255,255,255,1);
	color: #fff;
}

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-moz-placeholder,
input:-ms-input-placeholder {
	color: rgba(255,255,255,0.7) !important;
}
.form-group.form-captcha {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0 0 0;
}
button {
  position: relative;
  font-family: 'Roboto', sans-serif;
  background: #22A6B3;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 25px 35px;
  font-weight: 500;
  border-radius: 45px;
  border: none;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.35 cubic-bezier(.23,1,.32,1);
  transition: 0.35s cubic-bezier(.23,1,.32,1);
}
button:hover {
	background: #028592;
}
button:disabled {
	opacity: 0.5;
	cursor: default;
}
button:disabled:hover {
	background: #22A6B3;
}
.agrement-txt {
	text-transform: none;
	font-size: 12px;
	font-weight: 300;
	color: #fff;
	line-height: 1.3;
	width: 90%;
	display: inline-block;
	vertical-align: top;
}
.agreement input {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
}
.agreement label {
	text-align: left;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-left: 40px;
	display: table;
}
.agreement input.checkbox ~ label:after {
	content: '';
	background: url(../img/check-default.svg) no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	transition: 0.25s ease-in-out;
	top: 0px;
	left: 0;
}
.agreement input.checkbox:checked ~ label:after {
	background: url(../img/check-active.svg) no-repeat center center;
	background-size: contain;
}
#agreement-error:after {
	display: none;
}
label.error {
	display: block;
	position: absolute;
	right: 0;
	background: #AAAB36;
	border: 0;
	color: #fff;
	padding: 6px 8px 6px 8px;
	text-align: center;
	font-size: 10px;
	line-height: 1;
	-webkit-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
	top: 0;
}
label.error::before {
  background: #AAAB36;
  width: 7px;
  height: 7px;
  left: -4px;
  top: 7px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.thank {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  padding: 30px 0;
}
label#agreement-error:after {
	display: none;
}
.agrement-txt a:hover:before {
	width: 100%;
}
#captchaInput {
	margin-left: 5px;
	display: inline-block;
	vertical-align: middle;
	color: #555;
	width: 50px;
	height: 44px;
	padding: 10px 0;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	margin: 0;
}
#captchaText {
  display: inline-block;
  vertical-align: middle;
	font-size: 18px;
  font-weight: 500;
	margin-right: 10px;
}



/* --------------------------------
	
	price
	
-------------------------------- */
#price {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #ECECEC;
	color: #000;
	padding: 70px 0;
}
.price-grid {
	position: relative;
	display: table;
	margin: 0 -1%;
}
.price-item {
	position: relative;
	width: 23%;
	float: left;
	margin: 0 1%;
	padding: 15px;
	text-align: center;
	transition: all 0.25s linear;
}
.price-item:hover {
	box-shadow: 0 10px 12px rgba(0,0,0,0.15);
}
.title-before {
	font-size: 12px;
	color: rgba(0,0,0,0.55);
	text-transform: uppercase;
	margin-bottom: 10px;
}
.price-item:nth-of-type(1) {
	background: rgba(255,255,255,0.15);
}
.price-item:nth-of-type(2) {
	background: rgba(255,255,255,0.35);
}
.price-item:nth-of-type(3) {
	background: rgba(255,255,255,0.55);
}
.price-item:nth-of-type(4) {
	background: rgba(255,255,255,1);
}
.price-item h2 {
	font-size: 20px;
}
.price-item h3 {
	font-size: 18px;
	margin: 0 0 10px 0;
}
.price-header {
	position: relative;
	min-height: 120px;
}
.price-body {
	position: relative;
	height: 1150px;
}
.price-body hr {
	margin: 20px auto;
	background: #d8b47e;
}
.price-body ul {
	margin-bottom: 20px;
}
.price-body li {
	position: relative;
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 15px;
}
.price-body li:before {
	border-bottom: 1px dashed #d8b47e;
	width: 55px;
	bottom: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.price-body li:last-child:before {
	border-bottom: 0;
}
.price-footer {
	background: #ececec;
	padding: 15px;
}
.price-footer p {
	position: relative;
	font-size: 24px;
	line-height: 1.4;
	color: #22A6B3;
	font-weight: 700;
}
.price-footer p span {
	font-size: 16px;
	font-weight: 400;
	color: #000;
}

/* --------------------------------
	
	online
	
-------------------------------- */
#online {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: url(../img/online-bg.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	color: #000;
	padding: 70px 0;
}
.accordion-group {
	position: relative;
	width: 100%;
	margin: 0 auto 40px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.accordion {
	position: relative;
	width: 48%;
}
.accordion-item {
	position: relative;
	cursor: default;
	margin-bottom: 10px;
	width: 100%;
	padding: 15px 30px 15px 15px;
	background: #22A6B3;
}
.accordion-item:last-of-type {
	margin-bottom: 0px;
}
.drop {
	cursor: pointer;
}
.acc-hidden {
	position: relative;
	display: none;
	padding: 15px 0 0 0;
	margin-top: 15px;
	border-top: 1px dashed rgba(255,255,255,0.4);
	color: #fff;
}
.acc-target {
	position: relative;
	display: table;
	width: 100%;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	padding-left: 45px;
}
.num-online {
	position: absolute;
	font-size: 28px;
	top: -8px;
	left: 0;
	color: rgba(255,255,255,0.2);
}
.acc-target span {
	font-weight: 700;
}
.acc-hidden li {
	position: relative;
	font-size: 14px;
	line-height: 1.4;
	margin: 0 0 10px 0;
	padding-left: 30px;
}
.acc-hidden li::before {
	background: #22A6B3;
	width: 5px;
	height: 5px;
	top: 8px;
	left: 0;
	border-radius: 50%;
}
.accordion .drop .acc-target:after {
  width: 12px;
  height: 12px;
  background: url(../img/plus.svg) no-repeat center center;
  background-size: contain;
  right: -15px;
  top: 35%;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.accordion .acc-target.active:after {
  transform: rotate(45deg);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.online-end {
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	background: rgba(255,255,255,0.55);
	padding: 20px;
}
.online-end h2 {
	position: relative;
	font-size: 24px;
	margin-bottom: 10px;
	padding-bottom: 20px;
}
.online-end h2:before {
	background: #22A6B3;
	width: 120px;
	height: 2px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.online-end p {
	position: relative;
	font-size: 24px;
	font-weight: 200;
}
.online-end p span {
	font-size: 16px;
}







/* --------------------------------
	
	footer
	
-------------------------------- */
footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  height: 90px;
}
.flex-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  height: 90px;
  align-items: center;
}
.footer-link {
  position: relative;
  font-size: 14px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}
.footer-link:after {
	background: #22A6B3;
	width: 0;
	height: 1px;
	bottom: -6px;
	right: 0;
	-webkit-transition: 0.35 cubic-bezier(.23,1,.32,1);
  transition: 0.35s cubic-bezier(.23,1,.32,1);
}
.footer-link:hover:after  {
	width: 70px;
}
.mail {
	padding-left: 50px;
}
.mail:before {
	background: url(../img/mail.svg) no-repeat center center;
	background-size: contain;
	width: 30px;
	height: 30px;
	top: -6px;
	left: 0;
}
.policy {
  margin-right: 40px;
}
.social {
  position: relative;
	display: flex;
	vertical-align: middle;
	align-items: center;
}
.social li {
	margin-right: 15px;
}
.social li:last-child {
	margin-right: 0px;
}
.social li:hover {
	opacity: 0.8;
}
.social li a {
	display: block;
  width: 40px;
  height: 40px;
}
.social li img {
	display: block;
  width: 100%;
}
.back-top {
	position: fixed;
	bottom: 25px;
	right: 30px;
	opacity: 0;
	transform: translateY(100px);
	cursor: pointer;
	-webkit-transition: 0.65 cubic-bezier(.23,1,.32,1);
	-moz-transition: 0.65s cubic-bezier(.23,1,.32,1);
	-o-transition: 0.65s cubic-bezier(.23,1,.32,1);
	transition: 0.65s cubic-bezier(.23,1,.32,1);
}
.up {
	opacity: 0.5;
	transform: translateY(0px);
}
.back-top:hover {
	opacity: 1;
}

/* --------------------------------
	
	b1
	
-------------------------------- */
#b1 {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: url(../img/b1.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
	padding: 70px 0;
}
#b1:before {
	background: url(../img/b1-fon.svg) no-repeat center right;
  background-size: cover;
  width: 45%;
  height: 100%;
  top: 0;
  left: 0;
}
.b1-flex {
	position: relative;
	display: flex;
	justify-content: space-between;
}
.b1-content {
	width: 40%;
}
.b1-content .subtitle {
	width: 75%;
  font-size: 18px;
  line-height: 1.4;
}
#b1 h2 {
	margin-bottom: 40px;
}
#stats-counter {
	margin: 80px 0 0 0;
	width: 50%;
}
.stats-counter-value {
	font-size: 72px;
	font-weight: 700;
  color: #d8b47e;
}
.stats-title {
	font-size: 18px;
	font-weight: 700;
}
.stats-counter-txt {
	font-size: 14px;
  color: rgba(255,255,255,0.65);
}
#b1:after {
	background: url(../img/b1-fon2.svg) no-repeat center left;
  background-size: cover;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
}
.b1-grid {
	position: relative;
	z-index: 2;
	width: 34%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.b1-item {
	margin: 20px 0;
  display: flex;
  align-items: center;
}
.b1-item:nth-of-type(2) {
	transform: translateX(-55px);
}
.b1-item:nth-of-type(3) {
	transform: translateX(-100px);
}
.b1-item:nth-of-type(4) {
	transform: translateX(-145px);
}
.b1-item:nth-of-type(5) {
	transform: translateX(-190px);
}
.b1-item img {
	width: 55px;
  flex: 0 0 auto;
  margin: 0 30px 0 0;
}
.b1-value {
	font-size: 24px;
	font-weight: 700;
  color: #22A6B3;
}
.b1-item-txt {
	line-height: 1.6;
	margin: 10px 0 0 0;
}

/* --------------------------------
	
	b2
	
-------------------------------- */
#b2 {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 70px 0;
}
.b2-flex {
	display: flex;
	justify-content: space-between;
}
.b2-img {
	width: 40%;
	object-fit: cover;
}
.b2-content {
	position: relative;
	width: 60%;
	padding: 0 0 0 70px;
}
.b2-content p {
	font-size: 13px;
	line-height: 1.4;
	margin: 20px 0;
}
.b2-content ul {
	margin-bottom: 30px;
}
.b2-content li {
	position: relative;
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 20px;
	padding-left: 50px;
}
.b2-content li::before {
	background: url(../img/ico1.svg) center center;
	background-size: cover;
	width: 20px;
	height: 20px;
	top: 2px;
	left: 0;
}
.b2-content h3 {
	margin: 0 0 30px 0;
}
.b2-grid {
	display: flex;
	justify-content: space-between;
	margin: 0 -1% 40px -1%;
}
.b2-grid p {
	padding: 30px;
	background: #f5f5f5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 18px;
	line-height: 1.4;
	margin: 0 1%;
}
.b2-grid p span {
	font-weight: 700;
}

/* --------------------------------
	
	b3
	
-------------------------------- */
#b3 {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 70px 0;
  background: url(../img/bg-intro.jpg) center center;
  background-size: cover;
  color: #fff;
}
.b3-flex {
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.b3-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1% 40px -1%;
	justify-content: center;
}
.b3-item {
  position: relative;
	padding: 30px;
	width: 23%;
	margin: 0 1% 2% 1%;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #fff;
	-webkit-transition: 0.25s ease;
	transition: 0.25s ease;
	color: #000;
	align-items: center;
	text-align: center;
}
.b3-item:before {
	background: #000;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.25s ease;
	transition: 0.25s ease;
}
.b3-item:hover:before {
	width: 100%;
}
.b3-item p {
  position: relative;
	line-height: 1.6;
  -webkit-transition: 0.25s ease;
	transition: 0.25s ease;
}
.b3-item:hover {
	color: #fff;
}
.b3-item p span {
	font-weight: 700;
	font-family: 'Lora', serif;
	font-size: 20px;
	line-height: 1;
}
.b3-item .num {
	position: absolute;
	font-size: 64px;
	font-weight: 700;
	color: #7565652e;
	top: 10px;
	left: 10px;
  line-height: 1;
}
.b3-item img {
  position: relative;
	width: 55px;
  height: 55px;
  margin: 0 0 15px 0;
}
.b3-form {
	width: 35%;
	position: relative;
}
.b3-form h3 {
	margin: 0 0 30px 0;
}
.b3-form .form-group.form-captcha {
	flex-wrap: wrap;
}
.b3-form #captchaInput {
	width: 60%;
}
.b3-form button {
	margin: 20px 0 0 0;
}

/* --------------------------------
	
	b4
	
-------------------------------- */
#b4 {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 70px 0;
	background: #000;
	color: #fff;
}
.b4-flex {
	display: flex;
	justify-content: center;
}
.b4-flex p {
	position: relative;
	width: 60%;
	font-size: 24px;
	text-align: center;
	line-height: 1.4;
}
.b4-flex p span {
	font-size: 48px;
  font-weight: 700;
  font-family: 'Lora', serif;
}
.b4-flex p::before {
	background: url(../img/quote.svg) no-repeat center center;
	background-size: contain;
	width: 70px;
	height: 70px;
	top: -30px;
	left: 0;
}

/* --------------------------------
	
	b5
	
-------------------------------- */
#b5 {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 70px 0;
	background: #fff;
}
#b5 .container {
	position: static;
}
.b5-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 80vh;
}
.b5-img {
	position: absolute;
	bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.b5-img img {
	position: relative;
	height: 77vh;
	display: block;
	object-fit: contain;
}
.b5-img:before {
	background: #f5f5f5;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  bottom: 0;
  transform: translate(0,150px);
}
.b5-txt {
	position: relative;
	font-size: 24px;
	text-align: center;
	width: 70%;
	line-height: 1.6;
	font-family: 'Lora', serif;
	font-weight: 700;
}
.b5-txt:before {
	background: #22A6B3;
	border-radius: 3px;
	width: 100px;
  height: 2px;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.b5-form {
	position: relative;
	background: rgba(0,0,0,0.75);
	padding: 20px 40px;
	color: #fff;
	width: 80%;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
.b5-form h3 {
	margin: 0 0 10px 0;
}
#mentorform {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1%;
	width: auto;
}
#mentorform .form-group {
	width: 48%;
	margin: 0 1%;
}
.agreement {
  position: relative;
}
#mentorform .mentor-form-group {
	width: 100%;
  margin: 0 1%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#mentorform button {
	flex: 0 0 auto;
}
#mentorform input[type="email"], #mentorform input[type="text"] {
	margin-bottom: 15px;
	margin-top: 0px;
}

/* --------------------------------
	
	b6
	
-------------------------------- */
#b6 {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 70px 0;
	background: #f5f5f5;
}
#b6 h2{
	text-align: center;
  margin: 0 0 40px 0;
}
.b6-grid {
	position: relative;
	display: flex;
	justify-content: space-between;
  margin: 0 -1%;
}
.b6-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	padding: 40px;
	background: #fff;
	margin: 0 1%;
  -webkit-transition: 0.25s ease;
	transition: 0.25s ease;
}
.b6-item:hover {
	box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.b6-item img {
	width: 200px;
  height: 200px;
	margin: 0 0 25px 0;
  border-radius: 50%;
  border: 10px solid #000;
}
.b6-item p {
	line-height: 1.6;
}
.b6-item p span {
	font-weight: 700;
}

/* --------------------------------
	
	modal-box
	
-------------------------------- */
.modal, .modal-box {
	z-index: 9999;
}
.modal-sandbox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
}
.modal.open {
	opacity: 1;
	visibility: visible;
}
.modal-box {
  display: table;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal-body {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	z-index: 9999;
}
.modal_container {
	padding: 70px;
	margin: 0 auto;
	width: 30%;
	position: relative;
	display: table;
	background: #000;
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
	color: #fff;
}
.open .modal_container {
	animation: modalbox 0.25s ease-out both;
}
.modal_container h3 {
	margin: 0 0 30px 0;
}
/* Close Button */
.close-modal {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
  width: 16px;
	height: 16px;
	z-index: 9999;
}
.close-modal img {
	position: relative;
	width: 100%;
}
.close-modal:hover img {
	transform: rotate(-180deg)
}
/* Animation */
@-webkit-keyframes modalbox {
  0% {
    transform: translateX(-100%);
    opacity: 0;
	}
  100% {
    transform: translateX(0%);
    opacity: 1;
	}
}
@keyframes modalbox {
  0% {
    transform: translateX(-100%);
    opacity: 0;
	}
  100% {
    transform: translateX(0%);
    opacity: 1;
	}
}












/* --------------------------------
	
	адаптив
	
-------------------------------- */
@media (max-width: 1600px) {
	h1 {
		font-size: 76px;
	}
	.intro-list li {
		font-size: 14px;
	}
	header {
		padding: 15px 0;
	}
	.b3-item p span {
		font-size: 18px;
	}
	.b3-item {
		padding: 30px 20px;
	}
	.modal_container {
		padding: 70px 40px;
		width: 32%;
	}
	
	
	
	
	
	
	
	
}

@media (max-width: 1400px) {
	h1 {
    font-size: 64px;
	}
	.intro-list li {
    font-size: 16px;
	}
	.subtitle {
    font-size: 18px;
	}
	.tabs li a {
    font-size: 14px;
	}
	.tabs li {
    margin-bottom: 15px;
	}
	.tabs li a::before {
    top: 10px;
	}
	.skills-subtitle {
    font-size: 18px;
    width: 50%;
	}
	.contact-subtitle {
    font-size: 18px;
	}
	.back-top {
    bottom: 85px;
	}
	
	
	
	
	
	
	
	
	
	
	
}

@media (max-width: 1200px) {
	.container {
    max-width: 100%;
    padding: 0 50px;
	}
	.avtor-intro {
    width: 48%;
	}
	.intro-list li {
    font-size: 14px;
	}
	.intro-list li::before {
    top: 0px;
	}
	.tabs-list {
    width: 50%;
		min-height: 410px;
	}
	#first-tab-group {
    width: 50%;
    min-height: 410px;
	}
	.tabgroup li {
    font-size: 14px;
	}
	.about-list li {
    font-size: 14px;
	}
	.projects-overlay {
    top: 70%;
	}
	.projects-item:hover .projects-overlay {
    top: 40%;
    height: 60%;
	}
	.title-project {
    font-size: 16px;
	}
	.description-project {
    font-size: 14px;
	}
	.skills-subtitle {
    width: 70%;
	}
	.skills-list ul {
    width: 50%;
	}
	h2 {
    font-size: 36px;
	}
	.price-item {
    width: 100%;
    margin: 1% 0;
    padding: 15px;
	}
	.price-body {
    height: auto;
    margin-bottom: 40px;
	}
	.price-grid {
    margin: 0;
	}
	.price-header {
    min-height: auto;
	}
	.price-item h2 {
    font-size: 24px;
	}
	.price-item h3 {
    margin: 0 0 20px 0;
	}
	.online-item {
		width: 48%;
	}
	.online-end h2 {
		font-size: 28px;
	}
	.b1-grid {
		width: 35%;
	}
	#b1::after {
		width: 58%;
	}
	.b2-grid {
		flex-direction: column;
		margin: 0 0 40px 0;
	}
	.b2-grid p {
		margin: 0 0 20px 0;
		width: 100%;
	}
	.b2-grid p:last-child {
		margin: 0;
	}
	.b3-grid {
		margin: 0 0 40px 0;
	}
	.b3-item {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.b3-content {
		width: 50%;
	}
	.b3-form {
		width: 50%;
	}
	.nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 35%;
		height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		padding: 50px;
		background: #000;
		will-change: transform;
		transform: translateX(-100%);
		-webkit-transition: 0.25s cubic-bezier(.23,1,.32,1);
		transition: 0.25s cubic-bezier(.23,1,.32,1);
	}
	.nav.show {
		transform: translateX(0%);
	}
	.burger {
		display: block;
	}
	.nav li {
		margin: 15px 0;
	}
	.nav li a {
		font-size: 14px;
	}
	.b5-txt {
		width: 100%;
	}
	.b5-form {
		width: 100%;
	}
	.b5-img::before {
		width: 550px;
		height: 550px;
	}
	.b4-flex p {
		width: 80%;
	}
	.b6-item {
		padding: 30px;
	}
	.b2-img {
		object-position: left;
	}
	.contact-item {
		align-items: flex-start;
		flex-direction: column;
	}
	.contact-item li {
		margin: 0 0 25px 0;
	}
	.contact-item li:last-child {
		margin: 0;
	}
	.modal_container {
		padding: 40px;
		width: 50%;
	}
	
	
	
	
	
	
	
	
	
	
}

@media (max-width: 991px) {
	.avtor-intro {
		width: 100%;
		right: 0;
		position: relative;
		display: block;
		height: auto;
	}
	.tabs-list {
    width: 100%;
    min-height: auto;
	}
	.tabs {
    padding-left: 0;
    margin-bottom: 30px;
	}
	.tabs li {
    margin-bottom: 15px;
    display: inline-block;
    margin-right: 40px;
	}
	.tabs li a {
    font-size: 12px;
	}
	.tabs li a.active::before {
    width: 18px;
    top: 8px;
    left: -28px;
	}
	#first-tab-group {
    width: 100%;
    min-height: auto;
	}
	#service .btn {
    position: absolute;
    bottom: 70px;
    margin: 0 auto;
    left: 0;
		right: 0;
		display: table;
	}
	#service .container {
    position: static;
	}
	#service {
    padding: 70px 0 160px 0;
	}
	.col-7 {
    width: 100%;
	}
	#about .col-7 {
		margin-top: 40px;
	}
	.col-5 {
    width: 100%;
	}
	.about {
    margin-bottom: 40px;
	}
	.avtor {
		width: 100%;
		padding-left: 0;
		margin: 0 auto;
		display: block;
	}
	.popup-gallery li {
    margin-bottom: 10px;
	}
	.projects-overlay {
		padding: 15px 25px;
	}
	.projects-item:hover .projects-overlay {
    top: 0%;
    height: 100%;
	}
	.add-project p::before {
    font-size: 200px;
    top: -80px;
	}
	.add-project p {
    font-size: 18px;
	}
	.skills-subtitle {
    width: 100%;
    text-align: center;
	}
	#contact {
		height: auto;
		padding: 70px 0 0 0;
	}
	.avtor-end {
		position: relative;
		width: 90%;
		margin: 0 auto;
		display: block;
	}
	#contact .col-7 {
		height: auto;
		margin-bottom: 40px;
		align-items: center;
	}
	h2 {
    text-align: center;
	}
	.subtitle {
    text-align: center;
	}
	hr {
    margin: 20px 0 40px 0;
    margin: 20px auto;
	}
	header .container {
    position: static;
	}
	.back-top {
    display: none;
	}
	hr.intro {
    margin: 20px 0 40px 0;
	}
	.online-item h3 {
		font-size: 18px;
		margin: 30px 0 20px 0;
	}
	.online-end {
		width: 100%;
		padding: 20px;
	}
	.online-end h2 {
		font-size: 24px;
		padding-bottom: 15px;
	}
	.online-end p {
		font-size: 20px;
	}
	.accordion {
		width: 100%;
		margin-bottom: 10px;
	}
	.nav {
		width: 50%;
	}
	.flex-intro {
		height: auto;
		width: 100%;
		padding: 100px 0 70px 0;
	}

	.popup-gallery {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.b1-flex {
		flex-direction: column;
	}
	.b1-content {
		width: 100%;
		margin: 0 0 40px 0;
		text-align: center;
	}
	h3 {
		text-align: center;
	}
	.b1-grid {
		width: 100%;
		text-align: center;
	}
	.b2-flex {
		flex-direction: column;
		align-items: center;
	}
	.b2-content {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	.b2-img {
		width: 100%;
		margin: 0 0 40px 0;
	}
	.b3-flex {
		flex-direction: column;
	}
	.b3-content {
		width: 100%;
		padding: 0;
		margin: 0 0 40px 0;
	}
	.b3-form {
		width: 100%;
	}
	#contact .col-7 {
		flex-direction: column;
		padding: 0;
		width: 100%;
	}
	.b1-content .subtitle {
		width: 100%;
	}
	#stats-counter {
		width: 100%;
	}
	#b1::after {
		width: 28%;
	}
	#b1::before {
		width: 100%;
	}
	.b1-item:nth-of-type(2), .b1-item:nth-of-type(3), .b1-item:nth-of-type(4), .b1-item:nth-of-type(5) {
		transform: translateX(0);
	}
	.b1-item {
		flex-direction: column;
	}
	.b1-item img {
		margin: 0 0 20px 0;
	}
	#mentorform .form-group {
		width: 100%;
		margin: 0;
	}
	.b5-img img {
		height: 72vh;
	}
	.b4-flex p {
		width: 100%;
		font-size: 18px;
	}
	.b6-grid {
		margin: 0;
		flex-direction: column;
	}
	.b6-item {
		margin: 0 0 30px 0;
	}
	.b6-item:last-of-type {
		margin: 0;
	}
	.avtor {
		padding-right: 0;
	}
	.modal_container h3 {
		text-align: left;
	}
	#b1::before {
		background: rgba(0,0,0,0.85);
		width; 100%;
	}
	
	
	
	
	
	
	
	
	
}

@media (max-width: 767px) {
	.container {
    padding: 0 30px;
	}
	.flex-intro {
    height: auto;
		padding-bottom: 40px;
	}
	h1 {
		font-size: 46px;
		margin-bottom: 0px;
	}
	.intro-list {
		margin-bottom: 20px;
	}
	.btn {
		font-size: 12px;
	}
	#service {
    padding: 40px 0 140px 0;
	}
	#service .btn {
    bottom: 50px;
	}
	#about {
    padding: 40px 0;
	}
	header {
    padding: 5px 0;
	}
	.projects-item {
    width: 100%;
	}
	.projects-item:hover .projects-overlay {
    top: 50%;
    height: 50%;
	}
	.projects-overlay {
    padding: 20px 25px;
		top: 82%;
	}
	#skills {
    padding: 40px 0;
	}
	.skills-subtitle {
    font-size: 16px;
	}
	.subtitle {
    font-size: 16px;
	}
	.skills-list ul {
    width: 70%;
    float: none;
    display: block;
    margin: 0 auto;
	}
	#contact {
    padding: 40px 0 0 0;
	}
	.contact-subtitle {
    font-size: 16px;
		text-align: center;
		line-height: 1.6;
	}
	footer {
		height: auto;
		padding: 40px 0;
	}
	.flex-footer {
		flex-direction: column;
		height: auto;
	}
	.mail {
		margin-bottom: 30px;
	}
	.policy {
		margin-right: 0;
		display: block;
		text-align: center;
	}
	.online-item {
		width: 100%;
		margin: 2% 0;
	}
	.online-item h3 {
		margin: 20px 0 20px 0;
	}
	.online-item li {
		font-size: 14px;
	}
	#online {
		padding: 40px 0;
	}
	#price {
		padding: 40px 0;
	}
	.projects-flex {
		height: 50vh;
	}
	.modal_container {
		padding: 40px 20px;
		width: 90%;
	}
	.b5-txt {
		font-size: 18px;
	}
	#mentorform .mentor-form-group {
		margin: 0;
		flex-direction: column;
	}
	#b6, #b1, #b5, #b2, #b3 {
		padding: 40px 0;
	}
	
	
	
	
	
}

@media (max-width: 480px) {
	.container {
    padding: 0 15px;
	}
.flex-intro {
	width: 100%;
	height: 100vh;
}
	.intro-list li {
    padding-left: 35px;
		padding-right: 100px;
	}
h1 {
	font-size: 13vw;
}
	.intro-list li {
		font-size: 14px;
		padding: 0 0 0 30px;
		line-height: 1.6;
	}
	.btn {
    width: 100%;
    text-align: center;
	}
	.nav {
    width: 100%;
	}
	.tabs li {
    width: 40%;
    float: left;
    margin-left: 10%;
		margin-right: 0px;
	}
	.tabs {
    margin-bottom: 20px;
    display: table;
	}
	#first-tab-group {
    padding: 40px 20px;
	}
	#service .btn {
    bottom: 50px;
    width: 90%;
	}
	.popup-gallery li {
    margin-bottom: 0;
    width: 50%;
    margin-right: 0;
    float: left;
    padding: 10px;
	}
	#projects {
    padding: 40px 0;
	}
	.projects-item:hover .projects-overlay {
    top: 0%;
    height: 100%;
	}
	.projects-overlay {
    padding: 10px 15px;
    top: 68%;
	}
	.skills-list ul {
    width: 100%;
	}
	.skills-list ul li {
    position: relative;
    margin-bottom: 25px;
    text-align: center;
	}
	.skills-list ul li img {
    display: block;
    margin: 0 auto;
	}
	.skills-subtitle {
    margin-bottom: 30px;
	}
	#contact h2 {
    margin-bottom: 0;
	}
	.contact-subtitle {
    margin-bottom: 30px;
	}
	button {
    float: none;
    margin-top: 30px;
	}
	.avtor-end {
    width: 90%;
	}
	.nav li {
    margin-bottom: 35px;
	}
	#online h2 {
		font-size: 28px;
	}
	.online-end p {
		font-size: 18px;
	}
	.online-end {
		padding: 15px;
	}
	#online .online-end h2 {
		font-size: 20px;
	}
	.online-grid {
		margin-bottom: 20px;
	}
	.acc-target {
		padding-left: 35px;
	}
	.num-online {
		font-size: 24px;
	}
	#b1::before {
		width: 100%;
	}
	.stats-title {
		line-height: 1.4;
	}
	.b2-grid p {
		text-align: center;
	}
	.projects-flex {
		height: 30vh;
	}
	.soc li {
		text-align: center;
		justify-content: center;
	}
	.form-group.form-captcha {
		flex-wrap: wrap;
	}
	#captchaInput {
		width: 60%;
	}
	button {
		width: 100%;
	}
	.b5-img img {
		height: 115vh;
	}
	.b5-flex {
		height: 120vh;
	}
	.b4-flex p span {
		font-size: 36px;
	}
	.b4-flex p::before {
		width: 50px;
		height: 50px;
	}
	.nav {
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	footer {
		padding: 20px 0;
	}
	.policy {
		margin: 15px 0;
	}
	.social li a {
		width: 35px;
		height: 35px;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}
