*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding: 0;border: 0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size: inherit;font-weight: 400;}

h5 {
	font-size: 24px;
	line-height: 28px;
	color: #000;
	font-weight: 400;

}

body {
	font-size: 15px;
	color: #303030;
	font-family: Verdana;
	line-height: 22px;
	letter-spacing: .3px;
}
input {
	background: #337ab7;
	color: #fff;
	height: 34px;
   padding: 6px 12px;
	line-height: 1.3;
	font-size: 13px;
	margin-bottom: 5px;
	border: 1px solid #2e6da4;
	transition: all 0.3s ease-in-out;
}
input:focus {
	background-image: none;
	background-color: #337AB7;
	box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
	border-color: #286090;
	outline: none;
}
input:focus::placeholder {
	color: transparent;
}
textarea:focus::placeholder {
	color: transparent;
}
textarea {
	background: #337ab7;
	color: #fff;
	height: 34px;
   padding: 6px 12px;
	line-height: 1.3;
	font-size: 13px;
	border: 1px solid #2e6da4;
	transition: all 0.3s ease-in-out;
}
textarea:focus {
	background-image: none;
	background-color: #337AB7;
	box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
	border-color: #286090;
	outline: none;
}
::placeholder {
	color: #fff;
	transition: all 0.3s ease-in-out;
}
.wrapper {
	min-height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
._container {
	max-width: 1170px;
	margin: 0 auto;
	text-align: center;
}
.title {
	font-family: "Roboto", sans-serif;
	font-size: 28px;
}
.subtitle {
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
}
.text {
	font-family: Verdana;
	font-size: 15px;
	line-height: 22px;
}
.button {
	background-color: #337ab7;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-family: Roboto, sans-serif;
	font-weight: 400;
	line-height: 35px;
	padding: 10px 22px;
	letter-spacing: 0.7px;
}
@media (max-width: 768px) {
	.title {
		font-size: 22px;
	}
}
/*-------------------HEADER----------------------*/
.header {
	background-color: #337AB7;
}
.header__container {
	display: flex;
	height: 80px;
	justify-content: space-between;
	align-items: center;
	color: #D9EFFF;
	font-size: 17px;	
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.2px;
	padding: 10px 16px;
}
.header__logo {
}
.header__logo img {
	max-width: 190px;
}
.header__list {
	list-style: none;
	display: flex;
}
.header__list li {
	padding: 10px 16px;
}
.header__dropdown {
	display: inline-flex;
	position: relative;
	align-items: center;
}
.header__dropdown > .header__link {
	margin-right: 8px;
}
.dropdown {

}

.header__triangle {
}
.dropdown__menu {
	position: absolute;
	margin-left: -18px;
	z-index: 10000;
	left: 0;
	top: 100%;
	width: 320px;
	min-width: 160px;
	background-color: #fff;
	font-size: 14px;
	box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
.dropdown__menu li {
	padding: 0px 16px;
}
.header__dropdown > button:focus .dropdown__menu  {
	opacity: 1;
}
.dropdown__angle {
	font-size: 10px;
	color: #337AB7;
}
.dropdown__link {
	display: block;
	transition: color 0.4s ease-in-out;
	font-family: Verdana;
	color: #337AB7;
	font-weight: 400;
	padding: 6px 0;
	font-size: 15px;
	text-transform: none;
	border-bottom: 1px solid #dcdcdc;
}
.dropdown__link:hover {
	color: #000;
}
.dropdown__menu > li:first-child {
	padding-top: 4px;
}
.dropdown__menu > li:last-child {
	padding-bottom: 4px;
}
.dropdown__menu > li:last-child > .dropdown__link{
	border-bottom-color: transparent;
}
.header__link {
	color: inherit;
	transition: color 0.4s ease-in-out;
}
.header__link:hover {
	color: #fff;
	text-decoration: underline;
}
.fas {
}
.fa-caret-down {
}
.header__triangle {
	font-size: 12px;
}
.navbar__burger {
	background-color: inherit;
	color: #fff;
	display: none;
}
.burger__logo {
	border-radius: 5px;
	padding: 5px 12px;
	border: 1px solid #000;
	font-size: 25px;
}
@media (min-width: 320px) {
	.header__list {
		display: none;
	}
	.navbar__burger {
		display: block;
	}
}
@media (min-width: 768px) {
	.header__list {
		display: flex;
	}
	.navbar__burger {
		display: none;
	}
}
@media (max-width: 1024px) {
	.header__list li {
		padding: 8px 8px;
	}
	.header__container {
		font-size: 15px;
	}
}
@media (max-width: 1024px) {
	.header__logo img {
		max-width: 170px;
	}
	.header__container {
		height: 70px;
	}
}
/*--------------------MAIN----------------------*/
.page {
	flex: 1 0 auto;
}
.page__start {
	background-color: #2D6B9F;
	color: #fff;
}
.start {
}
.start__container {
	display: flex;
	padding: 55px 20px;
	position: relative;
}
._container {
}
.start__first {
	width: 66.666%;
	margin-bottom: 20px;
}
.start__title {
	text-transform: uppercase;
	margin-bottom: 40px;
	letter-spacing: 1px;
}
.start__list {
	display: flex;
	flex-direction: column;
	text-align: left;
	margin-bottom: 10px;
}
.start__list li {
	display: inline-flex;
	font-size: 18px;
	padding: 8px 0;
}
.start__list li:last-child {
	font-size: 22px;
	font-weight: 500;
	padding: 10px 0;
}
.far {
}
.fa-thumbs-up,
.fa-hand-point-right {
	margin-right: 10px;
}
.fa-hand-point-right {
	font-size: 20px;
}
.start__text {
	font-family: "Roboto", sans-serif;
	letter-spacing: 0.4px;
}
.start__bottom-text {
	font-family: Verdana;
	font-size: 17px;
	text-align: left;
	padding: 0 16px;
}
.start__second {
	width: 33.333%;
	position: absolute;
	top: 55px;
	right: 0;
}
.start__carousel {
	position: relative;
}
.carousel__nav {
	display: flex;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	top: 520px;
	padding: 10px 0;
}
.carousel__indicator {
	border-radius: 50%;
	width: 12px;
	height: 12px;
	background: #BDE1FF;
	margin: 0 8px;
}
.carousel__indicator.current-slide {
	background: #337AB7;
}
.carousel__inner {
	overflow: hidden;
	position: relative;
	width: 100%;
	box-shadow: 0px 3px 8px 1px rgb(84 84 84 / 50%);
	height: 510px;
	background: #BDE1FF;
}
.carousel__border {
	width: 100%;
	position: absolute;
	z-index: 100;
}
.carousel__border img {
	width: 100%;
	height: 100%;
}
.carousel__track {
	position: absolute;
	list-style: none;
	top: 0;
	transition: transform 600ms ease-in-out;
}
.carousel__slide {
	position: relative;
	top: 0;
	bottom: 0;
	width: 389px;
	margin-right: -389px;
}
.carousel__slide:nth-child(2) {
	top: -480px;
	
}
.carousel__slide:nth-child(3) {
	top: -960px;
}
.carousel__img {
	width: 100%;
	background: #fff;
}
.carousel__img img {
	width: 100%;
	height: 100%;
	padding: 84px;
}
.carousel__caption {
	color: #337AB7;
	text-align: center;
	width: 330px;
	margin: 0 auto;
	font-weight: 700;
	z-index: 101;
	transition: all .3s;
	line-height: 30px;
	text-transform: uppercase;
}
.carousel__caption h5 {
	font-size: 20px;
	text-align: center;
}
.carousel__caption h5 b {
	font-size: 30px;
	color: #337AB7;
	font-weight: 300;
	font-family: Impact, sans-serif;
	letter-spacing: 1px;
}
@media (max-width: 1200px) {
	.start__second {
		width: 250px;
		right: 70px;
	}
	.carousel__slide {
		width: 250px;
	}
	.carousel__img img {
		padding: 60px;
	}
	.carousel__caption {
		width: 80%;
	}
	.carousel__slide:nth-child(3) {
		top: -770px;
	}
	.carousel__slide:nth-child(2) {
		top: -370px;
	}
}
@media (max-width: 1024px) {
	.start__first {
		width: 100%;
	}
	.start__second {
		display: none;
	}
}
@media (max-width: 768px) {
	.start__title {
		margin-bottom: 28px;
	}
	.start__list li {
		font-size: 16px;
		padding: 6px 0;
	}
	.start__list li:last-child {
		font-size: 20px;
		padding: 8px 0;
	}
	.start__bottom-text {
		font-size: 15px;
		padding: 0 14px;
	}
}
/*------------------FEATURES-------------------*/
.features {
}
.page__features {
	border-bottom: 2px solid #D2D2D2;
}

.features__container {
	text-align: left;
}
._container {
}
.features__body {
	display: flex;
	margin-top: -50px;
}
.features__block {
	position: relative;
	text-align: center;
	width: 33.333%;
	padding: 0 10px;
	margin-bottom: 50px;
	padding: 0 20px;
}
.features__icon {
	margin: 0 auto;	
  	background-color: #337AB7;
  	height: 104px;
	width: 104px;
	border-radius: 100%;
	border: 4px solid #FFF;
	transition: background-color 0.5s, transform 0.5s;
	margin-bottom: 6px;
}
.features__icon i { 
	color: #fff;
	display: flex;
	text-align: center;
	font-size: 48px;	
	height: 100%;
	justify-content: center;
	align-items: center;
}
.far {
}
.fa-comments {
}
.features__subtitle {
	display: inline-block;
	float: center;
	position: relative;
	padding: 6px;
	margin-bottom: 6px;
	text-align: center;
	color: #337AB7;
	font-weight: 600;
	transition: color 0.5s;
	text-transform: uppercase;
}
.features__subtitle::before {
	position: absolute;
   top: 100%;
   right: 0;
   width: 100%;
   height: 2px;
   background: #337AB7;
   content: '';
   opacity: 0;
   transition: opacity 0.5s, transform 0.5s;
   transform: translateY(6px);
}
.features__block:hover .features__subtitle::before {
	opacity: 1;
	transform: translateY(0px);
}
.features__block:hover .features__subtitle {
	color: #000;
}
.features__block:hover .features__icon {
	background-color: #3A3A3A;
	transform: rotate(20deg);
}
.subtitle {
}
.features__text {
	text-align: left;
}
.text {
}
.fa-money-bill-alt {
}
@media (max-width: 1024px) {
	.features__block {
		width: 50%;
		margin-bottom: 50px;
	}
}
@media (max-width: 768px) {
	.features__block {
		margin-bottom: 30px;
	}
}
/*------------------CATALOGUE-------------------*/
.page__catalogue {
	margin: 50px 0;
}
.catalogue {
}
.catalogue__container {
	padding: 20px;
}
._container {
}
.catalogue__body {
}
.catalogue__header {
}
.catalogue__title {
	position: relative;
	margin-bottom: 50px;
}
.catalogue__title::before {
	background: url(../img/circle.png) no-repeat center center;
   height: 12px;
   width: 90px;
   position: absolute;
   left: 0px;
   right: 0px;
   content: "";
   margin: 0 auto;
	z-index: 1;
   display: inline-block;
   bottom: -25px;
}
.catalogue__title::after {
	background: #d4d4d4;
    height: 1px;
    width: 300px;
    position: absolute;
    left: 0px;
    right: 0px;
    content: "";
    display: inline-block;
    margin: 0 auto;
    bottom: -20px;
}
.catalogue__text {
	margin-bottom: 40px;
}
.catalogue__main {
	display: flex;
	margin-bottom: 35px;
}
.catalogue__package {
	width: 33.333%;
	margin: 0 15px;
}
.package__inner {
	padding: 30px 20px;
	border: 1px solid #d4d4d4;
	box-shadow: 0px 3px 8px 1px rgb(84 84 84 / 50%);
}
.package__inner:hover .package__icon {
	color: #000;
}
.package__inner:hover .package__button { 
	color: #fff;
	background: #286090;
   border: 3px solid #286090;
}
.package {
}
.package__title {
	color: #357BB8;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 22px;
}
.subtitle {
}
.package__icon {
	font-size: 48px;
	color: #8F8F8F;
	margin-bottom: 10px;
	transition: color, 0.3s;
}
.far {
}
.fa-address-card {
}
.package__price {
}
.package__price_from {
	font-size: 20px;
	position: relative;
	top: -15px;
}
.package__price_big {
	color: #357BB8;
	font-size: 40px;
	font-family: Impact, sans-serif;
	letter-spacing: 1px;
	font-weight: 300;
	line-height: 40px;
}
.package__price_small {
	color: #357BB8;
	padding-left: 3px;
	font-size: 36px;
	font-family: Impact, sans-serif;
	letter-spacing: 1px;
	font-weight: 300;
	line-height: 40px;
}
.fa-ruble-sign {
	font-size: 24px;
	color: #5f5f5f;
}
.package__list {
	margin-top: 20px;
	margin-bottom: 20px;
}
.package__list li{
	display: flex;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	align-items: center;
	text-align: left;
	padding: 8px 0;
}
.package__list li:last-child {
	border-bottom: none;
}
.fa-check {
	color: #337AB7;
	margin-right: 10px;
	font-weight: 700;
}
.package__text {
}
.text {
}
.package__button {
	padding-top: 8px;
	padding-right: 20px;
   padding-left: 20px;
	padding-bottom: 8px;
   color: #337AB7;
   border: 3px solid #BFE2FF;
   transition: ease-in-out 0.3s;
}
.fa-sitemap {
}
.fa-shopping-cart {
}
.catalogue__button {
	transition: background-color 0.3s ease-in-out;
}
.catalogue__button:hover {
	background-color: #286090;
}
@media (max-width: 1024px) {
	.package__text {
		font-size: 12px;
	}
}
@media (max-width: 768px) {
	.catalogue__package {
		width: 100%;
		margin-bottom: 30px;
	}
	.catalogue__package:last-child {
		margin-bottom: 0;
	}
	.catalogue__main {
		flex-wrap: wrap;
	}
}
/*------------------PORTFOLIO-------------------*/
.page__portfolio {
	background-color: #337AB7;
	text-align: center;
	padding: 55px 0;
}
.portfolio {
}
.portfolio__container {
	
}
.portfolio__img {
	width: 100%;
	height: 100%;
	position: relative;
}
.portfolio__img img {
	width: 100%;
	max-height: 381px;
}
._container {
}
.portfolio__body {
}
.portfolio__title {
	color: #fff;
	position: relative;
	margin-bottom: 50px;
}
.portfolio__title:before {
	background: url(../img/circle2.png) no-repeat !important;
	height: 12px;
    width: 90px;
    position: absolute;
    left: 0px;
    right: 0px;
    content: "";
    margin: 0 auto;
    z-index: 1;
    display: inline-block;
    bottom: -25px;
}
.portfolio__title:after {
	background: rgba(255,255,255,0.3);
	height: 1px	;
	width: 300px;
	position: absolute;
	left: 0px;
	right: 0px;
	content: "";
	display: inline-block;
	margin: 0 auto;
	bottom: -20px;
}
.title {
}
.portfolio__list {
	display: flex;
	justify-content: center;
	padding: 0 30px;
	margin-bottom: 20px;
}
.portfolio__list li {
	position: relative;
	margin: 10px;
	box-shadow: 0 3px 8px rgb(0 0 0 / 20%), 0 8px 12px rgb(0 0 0 / 20%);
}
.portfolio__hide {
	position: absolute;
	transform: scale(0);
	opacity: 0;
	display: flex;
	flex-direction: column;
	background-color: #337AB7;
	color: #fff;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: all 0.2s linear;
	padding: 35px 15px;
}
.portfolio__list li:hover .portfolio__hide {
	transform: scale(1);
	opacity: 1;
}
.hide {
}
.hide__title {
	position: relative;
	margin-bottom: 70px;
	font-size: 25px;
}
.hide__title::before {
	background: url(../img/circle2.png) no-repeat center center;
	height: 12px;
    width: 90px;
    position: absolute;
    left: 0px;
    right: 0px;
    content: "";
    margin: 0 auto;
    z-index: 1;
    display: inline-block;
    bottom: -25px;
}
.hide__title::after {
	background: #fff;
    width: 200px;
	 height: 1px;
    position: absolute;
    left: 0px;
    right: 0px;
    content: "";
    display: inline-block;
    margin: 0 auto;
    bottom: -20px;
}
.hide__icon {
	font-size: 28px;
	align-self: center;
    line-height: 60px;
    color: #fff;
    margin: 0 6px;
    display: inline-block;
    vertical-align: top;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    top: -28px;
    position: relative;
    transition: all 0.2s ease-in-out;
}
.hide__icon:hover {
	background-color: #fff;
	color: #337AB7;
}
.hide__text {
	margin-top: -12px;
	font-size: 13px;
	flex: 1 1 auto;
}
.hide__button {
	font-size: 13px;
    color: #fff;
    margin-top: 5px;
	 max-width: 60%;
	 align-self: center;
    vertical-align: top;
    padding: 8px 12px;
	 line-height: 20px;
    border: 1px solid #fff;
    text-transform: uppercase;
    font-family: verdana;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.hide__button:hover {
	background-color: #fff;
	color: #337AB7;
}
.button {
}
.portfolio__button {
	border: 1px solid #2e6da4;
	transition: all 0.2s ease-in-out;
}
.portfolio__button:hover {
	background-color: #2e6da4;
}
@media (max-width: 1800px) {
	.portfolio__list li:nth-child(6) {
		display: none;
	}
}
@media (max-width: 1560px) {
	.portfolio__list li:nth-child(5) {
		display: none;
	}
}
@media (max-width: 1200px) {
	.portfolio__list li:nth-child(4) {
		display: none;
	}
}
@media (max-width: 940px) {
	.portfolio__list li:nth-child(6) {
		display: block;
	}
	.portfolio__list li:nth-child(5) {
		display: block;
	}
	.portfolio__list li:nth-child(4) {
		display: block;
	}
	.portfolio__list {	
		flex-wrap: wrap;	
		padding: 0 10px;
	}
	.portfolio__list li {
		width: 45%;
	}
	.portfolio__hide {
		padding: 25px 8px;
	}
	.hide__title {
		font-size: 20px;
	}
}
@media (max-width: 610px) {
	.portfolio__list li {
		width: 70%;
	}
	.portfolio__list img {
		max-height: 100%;
	}
}
/*------------------REVISION-------------------*/
.page__revision {
	padding: 50px 20px;
	border-bottom: 2px solid #D2D2D2;
}
.revision {
}
.revision__container {
}
.revision__body {
}
.revision__title {
	position: relative;
	margin-bottom: 50px;
}
.revision__title::before {
	background: url(../img/circle.png) no-repeat center center;
    height: 12px;
    width: 90px;
    position: absolute;
    left: 0px;
    right: 0px;
    content: "";
    margin: 0 auto;
    z-index: 1;
    display: inline-block;
    bottom: -25px;
}
.revision__title::after {
	background: #d4d4d4;
    height: 1px;
    width: 300px;
    position: absolute;
    left: 0px;
    right: 0px;
    content: "";
    display: inline-block;
    margin: 0 auto;
    bottom: -20px;
}
.title {
}
.revision-first__text-block {
	margin-bottom: 20px;
}
.revision__text {
	margin-bottom: 30px;
}
.revision-first__text {
	margin-bottom: 10px;
}
.revision__main {
	display: flex;
	text-align: left;
	justify-content: center;
}
.revision__first {
	width: 65%;
	margin-right: 40px;
}
.revision__text {
}
.revision-first__button-block {
	display: flex;
	justify-content: center;

}
.revision-first__button {
	padding: 5px 20px;
	transition: all 0.2s ease-in-out;	
}
.revision-first__button:hover {
	background-color: #286090;	
}
.button {
}
.revision__second {
	width: 30%;
	box-shadow: 0px 3px 8px 1px rgb(84 84 84 / 50%);
	padding: 20px;
	transition: all 0.2s ease-in-out;
}
.revision__second:hover {
	box-shadow: 0px 3px 8px 1px rgb(84 84 84 / 70%);
}
.revision-second__title {
	position: relative;
	line-height: 22px;
   font-size: 20px;
	border-bottom: 1px solid #dcdbd7;
	margin-bottom: 20px;
	padding-bottom: 20px;
	color: #000;
}
.revision-second__title::before {
	background-color: #337AB7;
    border-radius: 500px;
    bottom: -5px;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    width: 10px;
}
.revision-second__title::after {
	border-bottom: 2px solid #337AB7;
    bottom: -1px;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    width: 65px;
}
.revision-second__list {
}
.revision-second__list li {
	display: flex;
	position: relative;
}
.revision-second__list li:hover .revision-second__icon {
	color: #000;
}
.revision-second__list li:hover .revision-second__text {
	color: #337AB7;
}
.revision-second__icon {
	position: absolute;
	top: 8.5px;
	font-size: 14px;
	line-height: 14px;
	color: #337AB7;
}
.revision-second__text {
	margin-left: 15px;
	font-size: 18px;
	letter-spacing: 0.3px;
	font-family: 'Roboto', sans-serif;
	padding: 4px 0 3px 0;
	color: #515151;
}
@media (max-width: 1280px) {
	.revision__first {
		width: 55%;
	}
	.revision__second {
		width: 25%;
	}
}
@media (max-width: 860px) {
	.page__revision {
		padding: 50px 40px;
	}
	.revision__main {
		flex-direction: column;
		align-items: center;
	}
	.revision__first {
		width: 100%;
		margin: 0 0 30px;
	}
	.revision__second {
		width: 100%;
	}
}
@media (max-width: 860px) {
	.page__revision {
		padding: 50px 40px;
	}
	.revision__main {
		flex-direction: column;
		align-items: center;
	}
	.revision__first {
		width: 100%;
		margin: 0 0 30px;
	}
	.revision__second {
		width: 100%;
	}
	.revision__title {
		margin-bottom: 40px;
	}
	.revision__text {
		margin-bottom: 20px;
	}
	.revision-first__button {
		text-align: center;
	}
}
/*------------------BLOG-------------------*/
.page__blog {
	padding: 50px 20px;
}
.blog {
}
.blog__container {
}
._container {
}
.blog__body {
	position: relative;
}
.blog__title {
	position: relative;
	margin-bottom: 50px;
}
.title {
}
.title_after::after {
	 background: #d4d4d4;
    height: 1px;
    width: 300px;
    position: absolute;
    left: 0px;
    right: 0px;
    content: "";
    display: inline-block;
    margin: 0 auto;
    bottom: -20px;
}
.title_before::before {
	background: url(../img/circle.png) no-repeat center center;
    height: 12px;
    width: 90px;
    position: absolute;
    left: 0px;
    right: 0px;
    content: "";
    margin: 0 auto;
    z-index: 1;
    display: inline-block;
    bottom: -25px;
}
.blog__text {
	margin-bottom: 30px;
}
.text {
}
.blog__main {
	display: flex;
}
.blog__first {
	width: 30%;
	text-align: left;
	box-shadow: 0px 3px 8px 1px rgb(84 84 84 / 50%);
	padding: 20px;
	transition: all 0.2s ease-in-out;
	max-height: 670px;
}
.blog__first:hover {
	box-shadow: 0px 3px 8px 1px rgb(84 84 84 / 70%);
}
.blog-first__title {
	display: inline-block;
	position: relative;
	line-height: 22px;
   font-size: 20px;
	border-bottom: 1px solid #dcdbd7;
	margin-bottom: 20px;
	padding-bottom: 20px;
	color: #000;
}
.blog-first__title::before {
	background-color: #337AB7;
    border-radius: 500px;
    bottom: -5px;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    width: 10px;
}
.blog-first__title::after {
	border-bottom: 2px solid #337AB7;
    bottom: -1px;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    width: 65px;
}

.blog-first__list {
}
.blog-first__item_small {
	display: flex;
}
.blog-first__list a {
	display: flex;
	position: relative;
}
.blog-first__list li:hover .blog-first__icon {
	color: #000;
}
.blog-first__list li:hover .blog-first__text {
	color: #337AB7;
}
.blog-first__icon {
	position: absolute;
	top: 8.5px;
	font-size: 14px;
	line-height: 14px;
	color: #337AB7;
}
.fas {
}
.fa-angle-right {
}
.blog-first__text {
	margin-left: 15px;
	font-size: 18px;
	letter-spacing: 0.3px;
	font-family: 'Roboto', sans-serif;
	padding: 4px 0 3px 0;
	color: #515151;
}
.blog-first__sublist {
	padding-left: 20px;
}
.blog-first__sublist li {
	display: flex;
	
}
.blog-first__sublist a {
	
}
.blog-first__sublist li:hover .sublist__icon {
	color: #000;
}
.blog-first__sublist li:hover .sublist__text {
	color: #337AB7;
}
.sublist__icon {
	position: absolute;
	top: 5px;
	font-size: 11px;
	line-height: 14px;
	color: #337AB7;
}
.sublist__text {
	margin-left: 10px;
	font-size: 15px;
	letter-spacing: 0.2px;
	font-family: Verdana;
	color: #515151;
}
.blog__second {
	width: 70%;
	padding: 0 20px;
}
.blog-second__block {
	width: 47%;
	text-align: left;
	margin-bottom: 20px;
	margin-right: 20px;
}
.blog-second__main {
	display: flex;
	flex-wrap: wrap;
}
.blog-second__img {

}
.blog-second__img img {
	max-height: 144px;
	width: 100%;
}
.blog-second__title {
	font-size: 20px;
	line-height: 22px;
	padding-bottom: 10px;
	color: #337AB7;
	transition: color 0.3s ease-in-out;
}
.blog-second__title:hover {
	color: #000;
}
.title {
}
.blog-second__text {
	padding-bottom: 10px;
}
.blog-second__date {
	display: flex;
}
.date__icon {
	color: #337AB7;
	margin-right: 10px;
}
.date__text {
	font-size: 13px;
}
.blog-second__button {
	padding: 10px 20px;
	transition: all 0.2s ease-in-out;	
}
.blog-second__button:hover {
	background-color: #286090;	
}
.blog-second__text-block {
	padding: 20px 30px 0px;
}
@media (max-width: 1200px) {
	.blog-second__block {
		width: 100%;
	}
	.blog__main {
		justify-content: center;
	}
	.blog__first {
		width: 40%;
	}
	.blog__second {
		width: 50%;
	}
	.blog-second__text-block {
		padding-left: 0;
	}
	.blog-second__button {
		right: 210px;
	}
}
@media (max-width: 768px) {
	.blog__main {
		flex-direction: column;
	}
	.blog__first {
		width: 100%;
		margin-bottom: 30px;
	}
	.blog__second {
		width: 100%;
	}
	.blog-second__main {
		align-content: center;
	}
	.blog-second__img img {
		max-height: 260px;
	}
	.blog-second__button {
		right: 250px;
	}
}
/*------------------CONTACT-------------------*/
.page__contact {
	background-color: #2D6B9F;
	color: #fff;
	padding: 50px 20px;
}
.contact {
}
.contact__container {
}
._container {
}
.contact__body {
	display: flex;
	justify-content: space-between;
}
.contact__first {
	width: 45%;
	text-align: left;
}
.contact-first__title {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 10px;
}
.title {
}
.contact__form {
	display: flex;
	flex-direction: column;
}
.form {
}
.form__name-mail {
	display: flex;
	justify-content: space-between;
}
.form__name {
	width: 49%;
}
.form__mail {
	width: 49%;
}
.form__subject input {
	width: 100%;
}
.form__message textarea {
	width: 100%;
	height: 106px;
}
.contact__button {
	padding: 0;
	font-size: 14px;
	transition: all 0.3s ease-in-out;
	border: 1px solid transparent;
}
.contact__button:hover {
	background-color: #286090;
   border: 1px solid #204d74;
}
.button {
}
.contact__second  {
	width: 35%;

}
.contact-second__title {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 10px;
	text-align: left;
}
.contact-second__list {
	margin-bottom: 10px;
}
.contact-second__list li {
	display: flex;
}
.contact-second__icon {
	font-size: 17px;
	margin-right: 10px;
}
.fab {
}
.fa-vk {
}
.contact-second__link {
	font-size: 11px;
	font-weight: 700;
}
.contact-second__link a {
	font-size: 13px;
	color: #BFE2FF;
	transition: all 0.3s ease-in-out;
}
.contact-second__link a:hover {
	color: #fff;
}
.fa-telegram {
}
.fa-skype {
}
.contact-second__text {
	text-align: left;
	font-size: 13px;
}
.contact-second__text a {
	font-weight: 700;
	font-size: 15px;
	color: #BFE2FF;
	transition: all 0.3s ease-in-out;
}
.contact-second__text a:hover {
	color: #fff;
}
.text {
}
@media (max-width: 768px) {
	.contact__body {
		flex-direction: column;
	}
	.contact__form {
		margin-bottom: 20px;
	}
	.contact__first {
		width: 100%;
	}
	.contact__second {
		width: 100%;
	}
}
/*------------------FOOTER-------------------*/
.footer {
	font-size: 13px;
	text-align: center;
	color: #000;
	padding: 14px 0;
}
/*------------------POPUP-------------------*/
.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -80%);
	opacity: 0;
	background-color: rgb(223, 225, 233);
	box-shadow: 0px 5px 13px 8px rgba(235, 237, 238, 0.15);
	border-radius: 5px;
	border: 20px solid #337AB7;
	z-index: 100000;
	padding: 2.5em 1.5em 0.5em 1.5em;	
	width: 300px;
	max-width: 100%;
	text-align: center;
	transition: transform 0.52s ease-in-out, opacity 0.6s ease;
	pointer-events: none;
}
.popup.active {
	pointer-events: auto;
	opacity: 1;
	transform: translate(-50%, -50%);
}
.popup__body {
}
.popup__content {
}
.popup__close-button {
	position: absolute;
	left: 80%;
	top: 0%;
	background-color: inherit;
	color: rgb(32, 32, 32);
	font-size: 50px;
	font-weight: 300;
	cursor: pointer;
}
.popup__title {
}
._title {
}
.popup__list {
}
.popup__link {
	text-transform: uppercase;
	border-radius: 5px;
	display: block;
	font-family: Roboto, sans-serif;
	font-size: 17.6px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.85em;
	padding: 0.75em 0;
}
.popup__link:target {
	text-decoration: underline;
	text-decoration-color: #000;
}
.popup__link:hover {
	text-decoration: underline;
	text-decoration-color: #000;
}
.popup__link a {
	color: rgb(51, 51, 51);
}
#overlay {
	position: fixed;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(46, 49, 65, 0.8);
	z-index: 100;
	pointer-events: none;
}
#overlay.active {
	opacity: 1;
	pointer-events: all;
}