*,
*:before
*:after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 17px;
	line-height: 1.6;
	color: #000;
}

a,
button,
.header__logo,
.nav__link,
.nav__lang-dropdown {
  -webkit-tap-highlight-color: transparent; /* Убирает синий фон на iOS/Android */
  -webkit-user-select: none;                /* Запрещает выделение текста */
  user-select: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

hr {
	display: block;
	width: 100%;
	height: 1px;
	margin: 40px 0;
	border: 0;
	background-color: #e5e5e5;
}




/* Page */
.page {
	overflow: hidden;
}




/* Container */
.container {
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}




/* Intro */
.intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100vh;
	min-height: 820px;
	position: relative;
	background: url("../img/intro.jpg") center no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
}

.intro__inner {
	width: 100%;
	max-width: 880px;
	margin: 80px auto 0;
	text-align: center;
}

.intro__suptitle {
	font-family: 'Kaushan Script' , cursive;
	font-size: 80px;
	color: #fff;
	margin-bottom: 40px;

}

.intro__title {
	color: #fff;
	font-size: 150px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 50px;
}

.intro__title:after {
	content: "";
	display: block;
	width: 60%;
	height: 3px;
	margin: 40px auto 0;
	background-color: #fff;
}




/* Header */
.header {
	width: 100%;
	padding-top: 30px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	opacity: .8;
}

.header.fixed {
	padding: 10px 0 0 0;
	background-color: #000;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	/*background: linear-gradient(to bottom, 
	#fff, #000);*/

	position: fixed;
	top: 0;
	right: 0;

	transform: translate3d(0, 0, 0);
}

.header.active {
	background-color: #000;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	display: flex;
	justify-content: flex-start;
	cursor: pointer;
}

.header__logo img {
	height: 50px;
	width: auto;
}

.header__logo h1 {
	color: #fff;
	font-size: 40px;
}




/* Nav */
.nav {
	padding-top: 5px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.nav__link {
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
	margin: 0 15px;
	position: relative;
	color: #fff;
	text-decoration: none;
	transition: color .4s linear;

}

.nav__link:after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	opacity: 0;
	background-color: #fff;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1;
	transition: opacity .4s linear;
}

.nav__link:hover {
	color: #fce38a;
}

.nav__link:hover:after,
.nav__link.active:after {
	opacity: 1;
}

.nav__link.active {
	color: #fce38a;
}




/* Nav-toggle */
.nav-toggle {
	width: 30px;
	padding: 10px 0;
	display: none;

	font-size: 0;
	color: transparent;

	border: 0;
	background: none;
	cursor: pointer;

	position: absolute;
	top: 34px;
	right: 15px;
	z-index: 1;
}

.nav-toggle:focus {
	outline: 0;
}

.nav-toggle__item {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #fff;

	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;

	transition: bacground .2s linear;
}

.nav-toggle.active .nav-toggle__item {
	background: none;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
	content: "";
	width: 100%;
	height: 3px;
	background-color: #fff;

	position: absolute;
	left: 0;
	z-index: 1;

	transition: transform .2s linear;
}

.nav-toggle__item:before {
	top: -8px;
}

.nav-toggle__item:after {
	bottom: -8px;
}

.nav-toggle.active .nav-toggle__item:before {
	transform-origin: left top;
	transform: rotate(45deg) 
	translateX(-3px);
}

.nav-toggle.active .nav-toggle__item:after {
	transform-origin: left bottom;
	transform: rotate(-45deg)
	translateX(-3px);
}




/* Lang-select */
.nav__lang-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  min-width: 110px;
}

.nav__lang-label {
  color: #fce38a;
  font-size: 16px;
  user-select: none;
}

.nav__lang-menu {
  display: none;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);

  background-color: #000;
  border-radius: 4px;
  min-width: 80px;
  z-index: 10;
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.nav__lang-menu li {
  list-style: none;
}

.nav__lang-menu li a {
  display: block;
  padding: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.4s ease;
}

.nav__lang-menu li a:hover {
  background-color: #fce38a;
  color: #000;
}




/* Button */
.btn {
	display: inline-block;
	vertical-align: top;
	width: 85px;
	padding: 10px 30px;
	margin: 10px 20px;
	border: 3px solid #fff;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	transition: background .5s linear, color .5s linear;
}

.btn:hover {
	background-color: #fff;
	color: #000;
}




/* Section */
.section {
	padding:80px 0 0;
}

.section--clients {
	background: url("../img/clients-bg.jpg") 
	center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
} 

.section--map {
	padding: 40px 0;
	background: #e6e6e6 
	url("../img/map-bg.jpg") 
	center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.section__header {
	width: 100%;
	max-width: 950px;
	margin: 0 auto 50px;
	text-align: center;
}

.section__title {
	font-size: 40px;
	font-weight: 700;
	color: #333;
	text-transform: uppercase;
}

.section__title:after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	margin: 30px auto 30px;
	background-color: #000;
}




/* Card */
.card {
	margin: 80px -15px 0;
	display: flex;
	justify-content: space-between;
}

.card__item {
	width: 33.33333%;
	padding: 0 15px;
}

.card__inner {
	position: relative;
	background: linear-gradient( to bottom,
  #e0e0e0 0%,
  #e9e9e9 60%,
  #fff 100%);
}

.card__item:hover .card__img {
	transform: translate3d(-10px, -10px, 0);
}

.card__item:hover .card__img img {
	opacity: .4;
}

.card__item:hover .card__text {
	opacity: 1;
}

.card__img {
	background: linear-gradient(to bottom, 
	#fff, #000);
	transition: transform .4s linear;
}

.card__img img {
	display: block;
	width: 100%;
	height: auto;
	transition: opacity .4s linear;
}

.card__text {
	width: 100%;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 2;
	transform: translate3d(0, -50%, 0);
	transition: opacity .4s linear;
}

.card__info {
	margin-top: 20px;
	text-align: center;
}

.card__name {
	margin-bottom: 5px;
	font-size: 15px;
	color: #333;
	text-transform: uppercase;
}

.card__prof {
	font-size: 15px;
	font-style: italic;
	font-weight: 300;
	color: #999;
}




/* Services */
.services {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.services__item {
	width: 23.33333%;
	padding: 0 35px 40px 85px;
	position: relative;
	margin-bottom: 40px;
}

.services__item--border {
	border-bottom: 1px solid #e5e5e5;
}

.services__icon {
	height: 50px;
	width: auto;
	position: absolute;
	left: 28px;
	top: 0;
	z-index: 1;
}

.services__title {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
}




/* Prices */
.prices {
	display: flex;
	margin: 0 -15px;
}

.prices__item {
	width: 50%;
	padding: 0 15px;
}

.prices__img {
	display: block;
	max-width: 100%;
	height: auto;
}




/* Accordion */
.accordion__item {
	margin-bottom: 10px;
	border: 2px solid #e5e5e5;
}

.accordion__item.active 
.accordion__content {
	display: block;
}

.accordion__item.active 
.accordion__header {
	border-bottom-color: #e5e5e5;
}

.accordion__item.active 
.accordion__header:after {
	transform: translateY(-50%)
	rotate(-45deg);
	margin-top: 5px;
}

.accordion__header {
	padding: 15px 20px 15px 65px;
	position: relative;
	border-bottom: 2px solid transparent;
	cursor: pointer;
}

.accordion__header:after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 1;
	transform: translateY(-50%)
	rotate(135deg);
}

.accordion__icon {
	height: 35px;
	width:  35px;
	position: absolute;
	top: 50%;
	left: 20px;
	z-index: 1;
	transform: translateY(-50%);
}

.accordion__content {
	padding: 15px 20px;
	font-style: italic;
	font-weight: 600;
	display: none;
}

.accordion__title {
	text-transform: uppercase;
}




/* Reviews */
.reviews {
	position: relative;
}

.reviews .slick-slider {
	padding: 0 110px;
}

.reviews__item {
	min-height: 210px;
	padding-left: 180px;
	position: relative;
}

.reviews__photo {
	padding: 10px 0 0 10px;
	display: block;
	height: 135px;
	width: 135px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.reviews__text {
	margin-bottom: 15px;
	font-size: 24px;
	font-style: italic;
	font-weight: 300;
	color: #999;
}

.reviews__author {
	font-family: 'Kaushan Script' , cursive;
	font-size: 24px;
	color: #333;
}

.reviews__author:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 60px;
	height: 3px;
	margin-right: 10px;
	background-color: #000;
}

.slick-arrow {
	display: block;
	font-size: 0;
	color: transparent;
	border: 0;
	background: none;
	cursor: pointer;
	position: absolute;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
}

.slick-arrow:focus {
	outline: 0;
}

.slick-arrow:after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border-top: 2px solid #000;
	border-left: 2px solid #000;
}

.slick-prev {
	left: 0;
	transform: rotate(-45deg);
}

.slick-next {
	right: 0;
	transform: rotate(135deg);
}




/* Works */
.works {
	display: flex;
}

.works__col {
	flex: 1 1 0;
}

.works__item {
	overflow-x: hidden;
	position: relative;
	background: linear-gradient(to bottom, 
	#fff, #000);
}

.works__item:hover .works__image {
	opacity: .4;
	transition: opacity .4s linear;
}

.works__item:hover .works__info {
	opacity: 1;
	transition: opacity .4s linear;
}

.works__image {
	display: block;
	width: 100%;
	height: auto;
	transition: opacity .4s linear;
}

.works__info {
	width: 100%;
	text-align: center;
	color: #fff;
	opacity: 0;

	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;

	transform: translate3d(0, -50%, 0);
	transition: opacity .4s linear;
}

.works__title {
	margin-bottom: 5px;
	text-transform: uppercase;
}

.works__text {
	font-size: 20px;
	font-weight: 300;
	font-style: italic;
}




/* Clients */
.clients {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 70px;
}

.clients__item {
	width: 30%;
	padding: 0 45px 0 175px;
	position: relative;
	margin-bottom: 70px;
}

.clients__photo {
	width: 110px;
	height: 110px;

	border-radius: 50%;

	position: absolute;
	top: 0;
	left: 40px;
	z-index: 1;
}

.clients__name {
	margin-bottom: 5px;
	text-transform: uppercase;
}

.clients__prof {
	font-size: 16px;
	font-style: italic;
	font-weight: 300;
}

.clients__text:before {
	content: "";
	display: block;
	width: 75px;
	height: 3px;
	margin: 15px 0;
	background-color: #000;
}




/* Footer */
.footer {
	padding: 110px 0 130px 0;
	color: #333;
}

.footer__inner {
	display: block;
	padding-bottom: 45px;
}

.footer__logo {
	margin-bottom: 10px;
	font-size: 45px;
	font-weight: 700;
	color: #ccc;
}

.footer__text {
	margin-bottom: 40px;
}

.footer__text:after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	color: #333;
	background-color: #e5e5e5;
}

.footer__social {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.footer__social__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.footer__social__label {
  font-size: 20px;
  color: #999;
  font-style: italic;
  font-weight: 300;
}

.footer__social__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__social__icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.7s ease;
  font-size: 40px;
  color: #000;
  text-decoration: none;
}

.footer__social__icons a:hover {
  background-color: #333;
  color: #fff;
}




/* Map */
.map {
	text-align: center;
}

.map__title{
	font-size: 25px;
	color: #fff;
	font-weight: 700;
}

.map__title a {
	color: inherit;
	text-transform: uppercase;
	text-decoration: none;
}

.map__title a:hover {
	text-decoration: underline;
}

.map__title:after {
	content: "";
	display: block;
	width: 100px;
	height: 3px;
	margin: 0 auto;
	background-color: #fff;
}




/* Copyright */
.copyright {
	padding: 25px 0;
	border-top: 1px solid #e5e5e5;
	font-size: 14px;
	color: #333;
	text-align: center;
}

.copyright span {
	color: #f38181;
}




/* MEDIA 1230 */
@media (max-width: 1230px) {

  /* Intro */
	.intro__suptitle{
		font-size: 70px;
	}

	.intro__title {
		font-size: 120px;
	}


	/* Services	*/
	.services__item--border {
		border-bottom: 0;
	}


	/* Reviews */
	.reviews__text {
		font-size: 20px;
	}


	/* Footer */
	.footer {
		padding: 40px 0;
	}

}




/* MEDIA 1040 */
@media (max-width: 1040px) {
	
	/* Header */
	.header {
		padding-top: 10px;
	}

	/* Nav */
	.nav {
		display: none;
		width: 100%;
		position: absolute;
		top:100%;
		left: 0;
		background-color: #000;
	}

	.nav.active {
		display: block;
	}
	
	.nav__link {
		display: block;
		width: 100%;
		margin: 0;
		padding: 10px 20px;
	}

	
	/* Nav-toggle */
	.nav-toggle {
		display: block;
	}

}




/* MEDIA 990 */
@media (max-width: 990px) {

  /* Intro */
	.intro__suptitle{
		font-size: 50px;
	}

	.intro__title {
		font-size: 80px;
	}


	/* Services	*/
	.services__item {
		width: 50%;
		padding-bottom: 0;
	}

	.services__item--border {
		border-bottom: 0;
	}


	/* Reviews */
	.reviews .slick-slider {
		padding: 0 60px;
	}

	.reviews__photo {
		height: 110px;
		width: 110px;
	}

	.reviews__item {
		padding-left: 140px;
	}


	/* Clients */
	.clients {
		max-width: 600px;
		margin: 0 auto;
	}

	.clients__item {
		width: 100%;
		padding-right: 0;
	}

	.clients__item:last-child {
		margin-bottom: 20;
	}
	
}




/* MEDIA 770 */
@media (max-width: 770px) {

	/* Intro */
	.intro {
    min-height: 650px;
  }


	/* Header */
	.header {
		padding: 10px 0;
	}


	/* Section */
	.section__title {
		font-size: 25px;
	}

	.section__title:after {
		margin: 15px auto 15px;
	}


	/* Card */
	.card {
		margin-top: 40px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.card__item {
		width: 100%;
		max-width: 410px;
		margin-bottom: 30px;
	}

	.card__item:last-child {
		margin-bottom: 0;
	}


	/* Services	*/
	.services {
		justify-content: center;
	}

	.services__item {
		width: 100%;
		max-width: 400px;
		padding-left: 55px;
		padding-right: 0;
	}

	.services__icon {
		left: 0;
	}


	/* Prices */
	.prices{
		flex-wrap: wrap;
	}

	.prices__img {
		display: none;
	}

	.prices__item {
		width: 100%;
	}


	/* Works */
	.works {
		flex-wrap: wrap;
	}

	.works__col {
		flex: none;
		width: 50%;
	}


	/* Reviews */
	.reviews__photo {
		position: static;
		margin: 0 auto;
		padding: 0 0 20px 0;
	}

	.reviews__item {
		padding-left: 0;
	}

	.reviews__text {
		font-size: 16px;
	}

	.reviews__author {
		font-size: 20px;
	}

}




/* MEDIA 575 */
@media (max-width: 575px) {

  /* Intro */
	.intro__suptitle{
		font-size: 40px;
	}

	.intro__title {
		font-size: 55px;
	}


	/* Header */
	.header__logo img {
	height: 40px;
	width: auto;
	}

	.header__logo h1 {
	color: #fff;
	font-size: 30px;
	}


	/* Nav-toggle */
	.nav-toggle{
		top: 25px;
		right: 10px;
	}


	/* Reviews */
	.reviews .slick-slider {
		padding: 0;
	}

	.slick-arrow {
		top: 18%;
	}


	/* Works */
	.works__col {
		width: 100%;
	}


	/* Clients */
	.clients__photo {
		position: static;
	}

	.clients__item {
		padding-left: 0;
		text-align: center;
	}

	.clients__text:before {
		margin: 15px auto;
	}

}




/* MEDIA 365 */
@media (max-width: 380px) {

  /* Intro */
	.intro__suptitle{
		font-size: 30px;
	}

	.intro__title {
		font-size: 40px;
	}


	/* Header */
	.header__logo img {
	height: 40px;
	width: auto;
	}

	.header__logo h1 {
	color: #fff;
	font-size: 25px;
	}

	.header.fixed {
	padding: 10px 0px 5px 0;
	}


	/* Nav-toggle */
	.nav-toggle{
		top: 20px;
		right: 10px;
	}


	/* Section */
	.section__title {
	font-size: 30px;
	font-weight: 700;
	color: #333;
	}

}