@font-face {
	font-family: 'Open Sans Bold';
	src: url('../fonts/OpenSans-Bold.ttf');
	font-display: swap;
}

@font-face {
	font-family: 'Open Sans Light';
	src: url('../fonts/OpenSans-Light.ttf');
	font-display: swap;
}

@font-face {
	font-family: 'Open Sans Regular';
	src: url('../fonts/OpenSans-Regular.ttf');
	font-display: swap;
}

@font-face {
	font-family: 'Open Sans Semibold';
	src: url('../fonts/OpenSans-Semibold.ttf');
	font-display: swap;
}

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

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}


body {
	font-family: 'Open Sans Regular', sans-serif;
	color: rgba(33, 33, 33, 255);
	font-size: 16px;
}

a {
	text-decoration: none;
}

/* img {
	max-width: 100%;
	height: auto;
} */

ul {
	list-style: none;
}

/* header 
*/
.menu-bar {
	padding: 20px 0 10px 0;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fcfcfc+0,efefef+37,dfdfdf+57,f4f4f4+100 */
	background: #fcfcfc;
	/* Old browsers */
	background: -moz-linear-gradient(top, #fcfcfc 0%, #efefef 37%, #dfdfdf 57%, #f4f4f4 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, #fcfcfc 0%, #efefef 37%, #dfdfdf 57%, #f4f4f4 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #fcfcfc 0%, #efefef 37%, #dfdfdf 57%, #f4f4f4 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f4f4f4', GradientType=0);
	/* IE6-9 */


}

.menu-bar__logo {
	height: 60px;
}

.menu__item {
	margin-left: 37px;
}

.menu__link {
	font-size: 20px;
	line-height: 22px;
	font-weight: 600;
	color: #212121;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}

.menu__link:hover {
	text-decoration: none;
	color: #00897b;
	opacity: .9;
}

.menu__item:first-child {
	margin-left: 0;
}

.menu__search-icon {
	cursor: pointer;
}

.main-menu {
	position: relative;
}

.mobile {
	position: fixed;
	z-index: 100;
	background: azure;
	width: 100%;
	height: auto;
	display: none;
	flex-direction: column;
	top: 0;
	justify-content: center;
	text-align: center;
	left: 0;
	align-items: center;
	padding: 8% 0;
	margin: 0 auto;
}

.burger {
	width: 35px;
	display: none;
	height: 30px;
	position: absolute;
	bottom: 50%;
	transform: translateY(-50%);
	right: 0;
	cursor: pointer;
}

.burger_item {
	position: absolute;
	height: 2px;
	background: #000;
	width: 100%;
	cursor: pointer;
	left: 0;
	top: 0;
}

.burger_item:nth-child(1) {
	top: 100%;
}

.burger_item:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.close_btn {
	width: 35px;
	height: 30px;
	display: none;
	position: fixed;
	cursor: pointer;
	right: 5%;
	top: 5%;
	width: 35px;
	height: 30px;
	display: none;
	position: fixed;
	cursor: pointer;
	right: 5%;
	top: 5%;
}

.close_item {
	position: absolute;
	/* z-index: 100;
	display:none; */
	height: 2px;
	background: #000;
	width: 100%;
	transform: rotate(-45deg);
	cursor: pointer;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}


.close_item:nth-child(1) {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

/* intro
*/
.intro {
	position: relative;
	height: 100vh;
	background: #7d7e7e url('../img/intro-bg.jpg');
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-position: center;
}

.intro:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0.5;
	background-color: #000000;
}


.intro__title {
	font-size: 60px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #fff;
	margin-bottom: 100px;
	text-align: center;
}

.intro__subtitle {
	font-size: 22px;
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #fff;
	margin-bottom: 100px;
	text-align: center;
}

.btn {
	padding: 20px 25px;
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #fff;
	text-transform: uppercase;
	border: 3.0px solid #f8f8f8;
	transition: background .3s;
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	-ms-transition: background .3s;
	-o-transition: background .3s;
}

.btn:hover {
	background-color: #00897b;
	border-color: transparent;
	color: #fbfdff;
}

.intro__buttons {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 435px;
	width: 100%;
	margin: 0 auto;
}

/* section
*/

section {
	padding: 100px 0;
}

.section__title {
	font-size: 30px;
	line-height: 22px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #212121;
	text-align: center;
	margin-bottom: 36px;
}

.section__subtitle {
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #212121;
	text-align: center;
	margin: 0 auto;
	width: 60%;
	margin-bottom: 66px;
}

/* about
*/

.about__img {
	text-align: center;
	margin-bottom: 41px;
}

.about__title {
	text-align: center;
	font-size: 20px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #212121;
	margin-bottom: 21px;
}

.about__subtitle {
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #212121;
	display: block;
	text-align: center;
	margin-bottom: 12%;
}

/* services 
*/

.services {
	background: #e4fdf9;
}

.services__card {
	background-color: #fff;
	margin-bottom: 10%;
	padding: 65px;
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.34);
	text-align: center;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}

.card-btn {
	text-transform: uppercase;
	border: 2.0px solid #212121;
	padding: 15px 6px;
	background: transparent;
	margin-top: 8%;
	width: 60%;
	transition: background .3s;
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	-ms-transition: background .3s;
	-o-transition: background .3s;
}

.services__card:hover {
	background-color: #00897b;
	box-shadow: 0px 17px 19px 0px rgba(0, 0, 0, 0.73);

}

.services__card:hover .about__title,
.services__card:hover .about__subtitle {
	color: #fff;

}

.services__card:hover .card-btn {
	border: 2.0px solid #fff;
	color: #fff;
	cursor: pointer;
}

.card-btn:hover {
	background: #005d54;
}

.services__card:hover img{
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(3deg) brightness(101%) contrast(103%);
}

/* portfolio 
*/

.portfolio__card {
	position: relative;
	transition: all .3s;
	margin: 5% 0;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}

.portfolio__card:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #00000087;
	opacity: 0;
	transition: opacity .3s;
	-webkit-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-o-transition: opacity .3s;
}

.portfolio__info {
	position: absolute;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100;
}

.portfolio__image {
	max-width: 350px;
	width: 100%;
	height: auto;
}

.portfolio__card:hover.portfolio__card:before {
	opacity: .8;
}

.portfolio__card:hover .portfolio__info {
	display: flex;
}

.portfolio__link {
	font-size: 20px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #ffffff;
	transition: color .3s;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-ms-transition: color .3s;
	-o-transition: color .3s;
}

.portfolio__link:hover {
	color: #00ffe5;
	text-decoration: none;
}

.portfolio__subtitle {
	font-size: 15px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #ffffff;
}

.filter__tabs {
	text-align: center;
	margin-bottom: 2%;
}

.filter__btn {
	padding: 12px 20px;
	font-size: 16px;
	line-height: 22px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #000;
	text-transform: uppercase;
	background: #fff;
	outline: none;
	border: 2.0px solid #00897b;
	margin-right: 2%;
	transition: box-shadow .2s;
	-webkit-transition: box-shadow .2s;
	-moz-transition: box-shadow .2s;
	-ms-transition: box-shadow .2s;
	-o-transition: box-shadow .2s;
}

.filter__btn:hover {
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.34);
}

.filter__btn:active {
	transform: scale(1.02);
	-webkit-transform: scale(1.02);
	-moz-transform: scale(1.02);
	-ms-transform: scale(1.02);
	-o-transform: scale(1.02);
}

.filter__btn.is-active {
	background-color: #00897b;
	color: #fff;
}

/* pricing 
*/

.price {
	background-color: rgba(6, 12, 11, 0.09);
}

.price__card {
	background-color: #fff;
	transition: box-shadow .3s;
	margin-bottom: 10%;
	-webkit-transition: box-shadow .3s;
	-moz-transition: box-shadow .3s;
	-ms-transition: box-shadow .3s;
	-o-transition: box-shadow .3s;
}

.price__card:hover {
	box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.34);
}

.price__card-header {
	min-height: 209px;
	background: url('../img/price_header.png');
	background-repeat: no-repeat;
	text-align: center;
	padding: 25px;
}

.price__card-header sup {
	font-size: 25px;
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #ffffff;
	vertical-align: super;
}

.price__card-header sub {
	font-size: 17px;
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #ffffff;
	vertical-align: super;
}

.price__card-title {
	font-size: 25px;
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #ffffff;
	margin-bottom: 50px;
}

.price__card-pricing {
	font-size: 50px;
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #ffffff;
}

.price__card-body {
	padding: 25px 0;
}

.price__card-list {
	text-align: center;
	padding: 0;
}

.price__card-list-item {
	font-size: 17px;
	line-height: 22px;
	font-weight: 300;
	letter-spacing: 0.05em;
	color: #212121;
	padding-bottom: 12px;
	margin: 0 auto 30px;
	width: 50%;
	border-bottom: 1.0px solid #00000052;
}

.price__card-footer {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
}

.price__card-btn {
	text-transform: uppercase;
	border: 2.0px solid #212121;
	padding: 15px 6px;
	margin-bottom: 30px;
	background: transparent;
	width: 60%;
	transition: background .3s;
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	-ms-transition: background .3s;
	-o-transition: background .3s;
}

.price__card-btn:hover {
	background-color: #00897b;
	border: 2.0px solid transparent;
	color: #fff;
}

/* team 
*/

.team__item {
	text-align: center;
}

.team__item-name {
	font-size: 20px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #212121;
	margin-top: 36px;
}

.team__item-position {
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #212121;
	margin-top: 30px;
}

.social-item {
	width: 37px;
	height: 37px;
	background-color: #3949ab;
	border-radius: 10.0px;
	transition: border-radius .4s;
	-webkit-transition: border-radius .4s;
	-moz-transition: border-radius .4s;
	-ms-transition: border-radius .4s;
	-o-transition: border-radius .4s;
}

.social-item:hover {
	border-radius: 14.0px;
	-webkit-border-radius: 14.0px;
	-moz-border-radius: 14.0px;
	-ms-border-radius: 14.0px;
	-o-border-radius: 14.0px;
}

.team__social {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	margin: 30px 0 70px;
}

.team__item-img img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	transition: border-radius .3s;
	-webkit-transition: border-radius .3s;
	-moz-transition: border-radius .3s;
	-ms-transition: border-radius .3s;
	-o-transition: border-radius .3s;
}

.team__item-img img:hover {
	border-top-right-radius: 85px;
	border-bottom-left-radius: 85px;
}



/* blog 
*/

.blog {
	background: #e4fdf9;
}

.blog__info-title {
	font-size: 25px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #212121;
	margin-bottom: 5%;
	display: block;
	transition: color .3s;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-ms-transition: color .3s;
	-o-transition: color .3s;
}

.blog__info-title:hover {
	color: #00897b;
	text-decoration: none;
}

.blog__info {
	margin: 0 5%;
}

.blog__img {
	margin-bottom: 10%;
}

.blog__img img {
	max-width: 100%;
	height: auto;
}

.blog__info-date,
.blog__info-category {
	font-size: 17px;
	line-height: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #212121;
	margin-right: 6%;
	vertical-align: bottom;
}

.date-img,
.category-img {
	margin-right: 2%;
}

.blog__info-description {
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	color: #212121;
	margin-top: 5%;
}

/* contact 
*/

.contact .section__title,
.contact .section__subtitle {
	color: #fff;
}

.contact {
	background: #000 url('../img/contact_bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
}

.contact__info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.contact__info-item {
	width: 33.333%;
}

.contact__icon {
	width: 105px;
	height: 105px;
	background-color: #3949ab;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin: 0 auto;
	transition: background .3s;
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	-ms-transition: background .3s;
	-o-transition: background .3s;
}

.contact__icon:hover {
	background: #1e2f99;
}

.contact__description {
	margin-top: 10%;
}

.contact__title,
.contact__subtitle {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #ffffff;
	text-align: center;
}

.form {
	max-width: 1000px;
	width: 100%;
	margin: 5% auto;
}

input[type="text"],
input[type="email"] {
	background-color: #ffffff;
	width: 48%;
	padding: 20px;
	border-radius: 10.0px;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #212121;
}

.form__header {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

#textarea {
	width: 100%;
	min-height: 323px;
	border-radius: 10.0px;
	margin-top: 3%;
	padding: 20px;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #212121;
}

.send-btn {
	text-transform: uppercase;
	background-color: #ffffff;
	border-radius: 10.0px;
	padding: 20px 55px;
	margin: 2% 0;
	border: none;
	transition: opacity .3s;
	-webkit-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-o-transition: opacity .3s;
}

.send-btn:hover {
	opacity: .7;
}

.form__footer {
	display: flex;
	justify-content: flex-end;
}

.copyright {
	padding: 3% 5% 2%;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	color: #000;
	font-family: monospace;
}

.author {
	color: #12b2b9;
	font-weight: bolder;
}

footer {
	background: #fcfcfc;
	background: -moz-linear-gradient(top, #fcfcfc 0%, #efefef 37%, #dfdfdf 57%, #f4f4f4 100%);
	background: -webkit-linear-gradient(top, #fcfcfc 0%, #efefef 37%, #dfdfdf 57%, #f4f4f4 100%);
	background: linear-gradient(to bottom, #fcfcfc 0%, #efefef 37%, #dfdfdf 57%, #f4f4f4 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f4f4f4', GradientType=0);
}

.to-top {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30.5px 30px 30.5px;
	border-color: transparent transparent #00897b transparent;
	display: none;
	position: fixed;
	bottom: 2%;
	right: 1%;
	cursor: pointer;
}
