/*font-family: 'Open Sans', sans-serif;*/

*,
*:before,
*:after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

p {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

/*CONTAINER
===================*/
.container {
	width: 100%;
	max-width: 1155px;
	margin: 0 auto;

	padding: 0 5px;
}

/*SECTION
===================*/
.section {
	padding: 80px 0;
}

/*SECTION__HEADER
===================*/
.section__header {
	text-transform: uppercase;
	line-height: 1.2;

	position: relative;
}

.section__text {
	color: #859aa1;
	font-size: 18px;
}

.section__title {
	color: #556b72;
	font-size: 30px;
	font-weight: 800;
}

/*SECTION--DOMAINS
===================*/
.section--domains {
	background-color: #e7f4f8;
	padding: 40px 0 70px 0;
}

.section__text--before:before {
	content: "";
	width: 21px;
	height: 2px;
	background-color: #fb6b45;

	position: absolute;
	top: -10px;
	left: 0;
	z-index: 1;
}

/*SECTION--FEATUREAS
===================*/
.section--features {
	background-color: #fffbde;
}

/*SECTION
===================*/
.section--offers,
.section--hosting,
.section--news,
.section--support,
.section--newsletter {
	background-color: #e7f4f8;
}

/*BTN
===================*/
.btn {
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
	border: 0;

	padding: 15px 0;
	display: inline-block;

	background-color: #ff8261;

	transition: background .2s linear;
}

.btn:hover {
	background-color: #b5644e;
}

/*INTRO
===================*/
.intro {
	padding-top: 30px;
}

.intro__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.intro__logo {
	display: flex;
	align-items: center;
}

.intro__header {
	color: #000;
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	margin-left: 10px;
}

/*INTRO__CONTENT
===================*/
.intro__content {
	display: flex;
	border-top: 1px solid #e1e9f2;
	border-bottom: 1px solid #e1e9f2;
}

.intro__menu {
	font-size: 14px;

	margin-top: 15px;
	margin-bottom: 15px;
}

.intro__text {
	color: #484e57;
}

.intro__link {
	color: #9ba4b0;
	margin-right: 15px;
	padding-right: 15px;
}

.intro__link:last-child {
	margin-right: 0;
	padding-right: 0;
}

.intro__link:not(:last-child) {
	border-right: 1px solid #e1e9f2;
}

/*MENU
===================*/
.menu__nav {
	display: flex;
	text-transform: uppercase;
	background-color: #ff8261;
	justify-content: space-between;
	
	margin-top: 35px;
}

.nav__link {
	width: 100%;
	color: #fff;
	font-size: 13px;
	text-align: center;
	
	padding: 25px 0 23px 0;

	transition: background .2s linear;
}

.active {
	background-color: #52cbf8;
	color: #000;
}

.nav__link:hover {
	background-color: #52cbf8;
}

.nav__link--media {
	display: none;
	color: #000;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}

/*BURGER
===================*/
.burger {
	display: none;

	background: 0;
	font-size: 0;
	cursor: pointer;

	position: relative;
}

.burger__menu {
	font-size: 0;
	border: 0;
	outline: 0;

	width: 35px;
	height: 3px;
	background-color: #000;

	position: absolute;
	top: 20px;
	left: 10px;
	z-index: 1;
}

.burger__menu:after,
.burger__menu:before {
	content: "";
	width: 100%;
	height: 100%;

	background-color: #000;

	position: absolute;
	left: 0;
	z-index: 2;
}

.burger__menu:after {
	top: 10px;
}

.burger__menu:before {
	bottom: 10px;
}


/*HEADER
===================*/
.header {
	height: 100%;

	background-image: url("../image/bg/bg__header.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	padding: 40px 0;

	display: flex;
	align-items: center;
}

.header__wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	text-align: center;

	max-width: 100%;
    position: relative;
    margin: auto;
    height: 300px;
    margin-bottom: 15px;
}

.header__wrap .header__item {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 2s;
}
@-webkit-keyframes fade {
    from {
        opacity: .1
    }
    to {
        opacity: 1
    }
}
@keyframes fade {
    from {
        opacity: .1
    }
    to {
        opacity: 1
    }
}

.header__content {
	color: #fff;
	text-transform: uppercase;

	margin-top: 20px;
}

.header__title {
	font-size: 40px;
	font-weight: 800;
}

.header__text {
	font-size: 20px;
	font-weight: 300;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 0;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.header__wrap .prev {
	left: 0;
}

.header__wrap .next {
	right: 0;
}

.header__wrap .prev:hover,
.header__wrap .next:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.header-dots {
    text-align: center;
}

.header-dots_item{
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: rgba(248, 127, 96, 0.8);;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.slider__active,
.header-dots_item:hover {
    background-color: #5278db;
}


/*HEADER__TOP
===================*/
.header__top {
	height: 30vh;

	background-image: url("../image/bg/bg__header.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	display: flex;
	align-items: center;
}

.header__top--content {
	color: #fff;
	text-transform: uppercase;
}

.header__top--title {
	font-size: 40px;
	font-weight: 800;
}

.header__top--text {
	font-size: 20px;
	font-weight: 300;
}


/*DOMAINS
===================*/
.domains {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.domain__form {
	width: 100%;
	max-width: 980px;
}

.domains__form__input {
	color: #000;
	height: 45px;
	margin-right: 10px;
	padding: 0 20px;
	outline: 0;
	border: 1px solid #dfeef3;
}

.domain__form--name::placeholder {
	color: #b3bac5;
	font-size: 13.5px;
	font-weight: 300;
}

.domain__form--name {
	width: 430px;
}

.domain__form--year {
	width: 160px;
	color: #b3bac5;
	font-size: 13.5px;
	font-weight: 300;
}

.domain__form--com {
	width: 160px;
	color: #b3bac5;
	font-size: 13.5px;
	font-weight: 300;
}

.btn__domains {
	padding-right: 65px;
	padding-left: 65px;
}

/*BENEFITS
===================*/
.benefits {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

	padding-top: 30px;
}

.benefits__item {
	width: 100%;
	max-width: 345px;
	padding-left: 95px;

	position: relative;
}

.benefits__item--margin {
	margin-bottom: 60px;
}

.benefits__icon {
	position: absolute;
	top: 0;
	left: 0;
}

.benefist__title {
	font-size: 16px;
	font-weight: 800;
}

.benefist__text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
}

/*NOW
===================*/
.now {
	display: flex;
	justify-content: space-between;
}

.now__item {
	flex-grow: 1;
}

.now__inner {
	display: inline-block;
	background-color: #fff;

	margin-top: 30px;
	padding: 15px;
}

.now__discont--wrap {
	display: flex;
	align-items: center;
}

.now__discont {
	border: 2px solid #fffbde;
	padding: 8px 10px;
	line-height: 1;

	text-transform: uppercase;
}

.now__discont--box {
	color: #97947f;
	font-size: 14px;
	font-weight: 800;
}

.now__discont--number {
	color: #ff8261;
	font-size: 48px;
	font-weight: 800;

	padding-right: 15px;
}

.now__discont--off {
	color: #52cbf8;
	font-size: 48px;
	font-weight: 800;

	padding-right: 10px;
}

.now--discont {
	font-size: 13px;
}

.now--discont--subtext {
	color: #97947f;
}

.ow__discont--text {
	color: #4c515b;
}

/*FEATUREAS
===================*/
.featureas {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;

	margin-top: 30px;
}

.featureas__text {
	color: #696556;
	font-size: 13.5px;
	margin-bottom: 20px;
}

.featureas__text:before {
	content: "\f105";
	font-family: 'icomoon' !important;
	padding-right: 20px;
	font-weight: 800;
}

.featureas__text:last-child {
	margin-bottom: 0;
}

.btn--featureas {
	padding-right: 45px;
	padding-left: 45px;
}

/*HOSTING
===================*/
.hosting {
	display: flex;
	justify-content: space-between;

	margin-top: 28px;
}

.hosting__item {
	width: 100%;
	max-width: 260px;
}

.hostinglist {
	border: 1px solid #e1eff4;
	text-align: center;

	padding: 28px 35px 23px 35px;
}

.hostinglist--hosting {
	background-color: #fff;
}

.hosting__cena {
	color: #556b72;
	text-transform: uppercase;
	line-height: 1.1;

	margin-bottom: 23px;
}

.hosting__number {
	font-size: 50px;
	font-weight: 800;
}

.hosting__number span {
	font-weight: 300;
}

.hosting__text {
	font-size: 14px;
	font-weight: 600;
}

.hosting__title {
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	background-color: #52cbf8;
	padding: 15px 5px;
	margin-bottom: 35px;
}

.hosting__info--text {
	color: #8d9198;
	font-size: 14px;
	border-bottom: 1px solid #e1eff4;

	padding: 13px 0; 
}

.hosting__info--text:last-child {
	border-bottom: 0;
}

.btn--hosting {
	padding-right: 28px;
	padding-left: 28px;

	margin-top: 20px;
}

/*DETAILS
===================*/
.details {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
}

.details__img {
	width: 100%;
	height: auto;
}

.details__content {
	width: 100%;
	max-width: 530px;
	color:#a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.7;
}

.details__text {
	margin-top: 20px;
	border: 1px solid #dbeaee;
	padding: 30px 30px;

	position: relative;
}

.details__text:before {
	content: "\f10e";
	font-family: 'icomoon' !important;
	font-size: 20px;

	position: absolute;
	top: -15px;
	left: 15px;
	z-index: 1;
}

/*OFFERS
===================*/
.offers {
	display: flex;
	justify-content: space-between;

	margin-top: 30px;
}

.offers__img {
	margin-right: 30px;
}

.offers__content {
	display: flex;
}

.offers__content--title {
	color: #556b72;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;

	margin-bottom: 12px;
}

.offers__content--text,
.offers__content--list {
	color: #a0a9b6;
	font-size: 13.5px;
}

.offers__content--text {
	margin-bottom: 22px;
	line-height: 1.5;
}

.offers__content--list--text {
	margin-bottom: 16px;
}

.offers__content--list--text:before {
	content: "\f105";
	font-family: 'icomoon' !important;

	padding-right: 15px;
	font-weight: 800;
}

.btn--offers {
	padding-right: 32px;
	padding-left: 32px;
}

/*TEAM
===================*/
.team {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

	margin-top: 40px;
}

.team__item {
	position: relative;

	margin-bottom: 30px;
}

.team__item:hover .team__img img {
	opacity: .1;
}

.team__item:hover .team__header {
	opacity: 1;
}

.team__img {
	background: linear-gradient(to bottom, #f38181, #fce38a);
}

.team__img img {
	width: 100%;
	height: auto;
	display: block;

	transition: opacity .3s linear;
}

.team__header {
	width: 100%;
	max-width: 260px;

	display: flex;
	justify-content: space-around;
	align-items: flex-end;

	text-transform: uppercase;

	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;

	opacity: 0;

	transform: translateY(-50%);
	transition: opacity .3s linear;
}

.team__name {
	color: #556b72;
	font-size: 14px;
	font-weight: 800;
}

.team__prof {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	text-transform: capitalize;
}

.team__social {
	display: flex;
}

.team__icon {
	border: 1px solid #d8e6ea;
	margin-left: 7px;
	width: 30px;
	height: 28px;
	text-align: center;
	line-height: 25px;
}

.team__icon:first-child {
	margin-left: 0;
}

.team__social--icon {
	color: #319596;
}

/*STEPS
===================*/
.steps {
	display: flex;
	justify-content: space-between;

	margin-top: 35px;
}

.steps__item {
	flex: 0 1 345px;
}

.steps__content {
	display: flex;
}

.steps__number {
	color: #fff;
	font-size: 30px;
	font-weight: 800;
	background-color: #fb6b45;
	display: inline-block;
	line-height: 1;
	padding: 19px 28px;

	margin-right: 30px;
}

.steps__title {
	color: #556b72;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;

	margin-top: 16px;
	margin-bottom: 16px;
}

.steps__text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.6;
}

/*SERVICES
===================*/
.services {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;

	margin-top: 40px;
}

.services__item {
	flex: 0 1 340px;

	margin-bottom: 50px;
}

.services__icon {
	margin-bottom: 30px;
}

.services__title {
	color: #556b72;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 800;

	margin-bottom: 25px;
}

.services__text {
	color: #a0a9b6;
	font-size: 13.5px;
	line-height: 1.7;
}

/*NEWS
===================*/
.news {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.featured {
	margin-top: 30px;
}

.featured__wrap {
	display: flex;
}

.featuread__item:not(:last-child) {
	margin-bottom: 40px;
}

.featured__img {
	display: block;
	width: 100%;
	height: auto;
}

.featured__content {
	width: 100%;
	max-width: 430px;
	margin-left: 30px;
}

.featured__title {
	color: #556b72;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;

	margin-bottom: 15px;
}

.featured__text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.8;
}

/*LATEST
===================*/
.latest {
	margin-top: 30px;
}

.latest__wrap {
	display: flex;
}

.latest__item:not(:last-child) {
	margin-bottom: 95px;
}

.latest__border {
	width: 100px;
	height: 100px;
	background-color: #fb6b45;
	border-radius: 50%;

	display: flex;
	justify-content: center;
	align-items: center;
}

.latest__date {
	color: #fff;
	border: 2px dotted #fff;
	border-radius: 50%;
	padding: 20px;

	text-align: center;
}

.latest__content {
	width: 100%;
	max-width: 230px;

	margin-left: 20px;
}

.latest__title {
	color: #556b72;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;

	margin-bottom: 15px;
}

.latest__text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.8;
}

/*CLIENTS
===================*/
.clients {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-top: 30px;
}

.clients__img {
	border-radius: 50%;
}

.clients__content {
	width: 100%;
	max-width: 950px;

	margin-left: 15px;
}

.clients__text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.8;

	margin-bottom: 20px;
}

.clients__name {
	color: #556b72;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 14px;
}

.clients__name span {
	display: block;
	font-weight: 300;
}

/*COLUMNC
===================*/
.column {
	display: flex;
	justify-content: space-between;

	margin-top: 37px;
}

.column__price {
	text-align: center;
	border: 1px solid #e1eff4;
	padding: 40px 60px;
}

.column__price {
	color: #556b72;
	text-transform: uppercase;
}

.column__price--cena {
	font-size: 50px;
	font-weight: 800;
	line-height: 1;
}

.column__price--cena span {
	font-weight: 300;
}

.column__price--text {
	font-weight: 600;
	margin-bottom: 24px;
}

.column__price--title {
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	background-color: #52cbf8;
	padding: 12px 40px;
	letter-spacing: 1.4px;
	margin-bottom: 52px;
}

.columns__price--info {
	text-transform: capitalize;
}

.columns__info--text {
	color: #8d9198;
	font-size: 14px;
	font-weight: 300;
	border-bottom: 1px solid #f0f4f7;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.columns__info--text:last-child {
	border-bottom: none;
}

.btn--column {
	padding-left: 30px;
	padding-right: 30px;
	margin-top: 25px;
}

/*REGISTR
===================*/
.registr {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.registr__title {
	color: #556b72;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	margin-top: 65px;
	margin-bottom: 20px;

	position: relative;
}

.registr__title:before {
	content: "";
	width: 20px;
	height: 1px;
	background-color: #fb6b45;

	position: absolute;
	top: -5px;
	left: 0;
	z-index: 1;
}

.registr__img img {
	display: block;
}

/*DOMAIN
===================*/
.domain {
	width: 555px;
	border: 1px solid #d4e8ee;

	padding: 7px 0;
	margin-left: 10px;
}

.domain__content {
	display: flex;
	justify-content: space-around;

	padding: 5px 0;
}

.domain__content:first-child {
	border-bottom: 1px solid #d4e8ee;
}

.domain__item {
	color: #556b72;
	text-align: center;
}

.domain__text {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.domain__cena {
	font-size: 30px;
	font-weight: 800;
}

.domain__cena span {
	font-weight: 300;
}

/*DOMAINS__BUY
===================*/
.domains__buy {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.domains__buy--content {
	width: 100%;
	max-width: 560px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #d5e7ed;

	margin-bottom: 5px;
}

.domains__buy--text {
	color: #8d9198;
	font-size: 14px;
	font-weight: 300;
}

.btn__buy {
	color: #fff;
	font-size: 13.5px;
	font-weight: 300;
	background-color: #ff8261;
	padding: 10px 27px;
	display: inline-block;

	margin-bottom: 5px;

	transition: background .2s linear;
}

.btn__buy:hover {
	background-color: #b5644e;
}

/*FAQ
===================*/
.faq {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

	margin-top: 30px;

	border-bottom: 1px solid #d3e5eb;
}

.faq__item {
	margin-bottom: 40px;
}

.faq__icon {
	width: 65px;
	height: 67px;
	color: #fff;
	font-size: 30px;
	font-weight: 800;
	text-transform: uppercase;
	text-align: center;
	padding-top: 10px;
	background-color: #ff8261;

	margin-right: 30px;
}

.faq__content {
	display: flex;

	width: 100%;
	max-width: 540px;
}

.faq__title {
	color: #556b72;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	margin-top: 15px;
	margin-bottom: 15px;
}

.faq__text {
	color: #a0a9b6;
	font-size: 13.5px;
	line-height: 1.6;
}

.btn--faq {
	width: 100%;
	max-width: 380px;
	text-align: center;
	margin: 60px auto 0;
}

/*FORM
===================*/
.form__questions {
	margin-top: 30px;
}

.form__input,
.form__textarea {
	display: block;
	height: 55px;
	padding: 0 20px;
	border: 1px solid #d3e5eb;
	position: relative;

	outline: 0;
}

.form__input,
.form__textarea::placeholder {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
}

.form__input {
	width: 100%;
	margin-bottom: 10px;
}

.form--text {
	width: 100%;
	max-width: 555px;
	display: inline-block;
}

.form--text:first-child {
	margin-right: 30px;
}

.form__textarea {
	width: 100%;
	height: 195px;
	padding-top: 20px;
	resize: none;
}

.btn__form {
	border: 0;
	padding-right: 50px;
	padding-left: 50px;
	letter-spacing: 1.7px;
	margin-top: 20px;
}

/*SUPPORT__SEARCH
===================*/
.support__search {
	margin-top: 30px;
}

.support__input {
	width: 100%;
	max-width: 975px;
	height: 55px;
	padding: 0 10px 0 50px;

	outline: 0;
	border: 1px solid #d3e5eb;
	position: relative;

	background-image: url(../image/icon/search__icon.png);
	background-repeat: no-repeat;
	background-position: 15px;
}

.support__input::placeholder {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
}

.btn--support {
	padding-right: 50px;
	padding-left: 50px;
}

/*SUPPORT
===================*/
.support {
	display: flex;
	justify-content: space-between;
}

.support__item {
	flex: 0 1 340px;
}

.support__title {
	color: #556b72;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;

	position: relative;
}

.support__title:after {
	content: "";
	width: 20px;
	height: 1px;
	background-color: #fb6b45;

	position: absolute;
	top: -10px;
	left: 0;
	z-index: 1;
}

.support__text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	margin-bottom: 25px;
}

.support__content--text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	margin-bottom: 15px;
	padding-left: 20px;

	position: relative;
}

.support__content--text:before {
	content: "\f105";
	font-family: 'icomoon';
	color: #fb6b45;
	font-weight: 600;

	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;

	transform: translateY(-50%);
}

.btn--support {
	padding-right: 30px;
	padding-left: 30px;
}

.support__content {
	display: flex;
	margin-bottom: 25px;
}

.support__content:last-child {
	margin-bottom: 0;
}

.support__content-text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.6;
	margin-left: 15px;
}

/*FAQ__SUPPORT
===================*/
.faq__support {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

	margin-top: 30px;
}

/*CONTACTS
===================*/
.contacts {
	display: flex;
	justify-content: space-between;
}

.contacts__item {
	width: 100%;
	max-width: 500px;
}

.contacts__content {
	width: 100%;
	max-width: 480px;
}

.contacts__text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.6;
	margin-top: 25px;
}

.contacts__inner {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}

.contacts__adress {
	width: 100%;
	max-width: 200px;
}

.contacts__adress--title {
	color: #556b72;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 20px;

	position: relative;
}

.contacts__adress--title:after {
	content: "";
	width: 20px;
	height: 2px;
	background-color: #fb6b45;

	position: absolute;
	top: -8px;
	left: 0;
	z-index: 1;
}

.contacts__adress--phone {
	margin-top: 25px;
}

.contacts__adress__social {
	margin-top: 50px;
}

.contacts__adress--text,
.contacts__phone {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	line-height: 1.8;
}

.contacts__form {
	width: 100%;
	max-width: 570px;
}

.contacts__adress--item {
	display: inline-block;
}

.contacts__social--icon {
	color: #a0a9b6;
	font-size: 20px;
	margin-right: 10px;

	transition: all .2s linear;
}

.contacts__social--icon:hover {
	color: #fb6b45;
}

.contacts__form--inner {
	width: 100%;
	max-width: 560px;

	margin-top: 20px;

	position: relative;
}

.contacts__input {
	display: block;
	width: 100%;
	height: 45px;
	padding: 15px 20px;
	margin-top: 10px;
}

.contacts__textarea {
	resize: none;
	width: 100%;
	height: 180px;
	margin-top: 10px;
	padding: 15px 20px;
}

.contacts__input,
.contacts__textarea {
	outline: none;
	border: 1px solid #dfecf0;
	font-size: 13.5px;;
}

.btn--contacts {
	padding-left: 30px;
	padding-right: 30px;
	margin-top: 5px;
}

.btn--contacts {
	position: absolute;
	right: 0;
}

.maps iframe{
	border: 0;
	height: 50vh;
	margin-top: 30px;
}

/*BLOG
===================*/
.blog {
	margin-top: 25px;
}

.blog__item {
	margin-bottom: 30px;
}

.blog__item:last-child {
	margin-bottom: 0;
}

.blog__img {
	width: 100%;
	height: auto;
}

.blog__title {
	color: #556b72;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	margin-top: 40px;
}

.blog__date {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	margin-top: 10px;
}

.blog__text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
	margin-top: 30px;
}

.btn--blog {
	padding-right: 30px;
	padding-left: 30px;
	margin-top: 35px;
}

/*BLOG__INFO
===================*/
.blog__info {
	display: flex;
	flex-wrap: wrap;

	margin-top: 50px;

	border-bottom: 1px solid #d6e8ee;
	border-top: 1px solid #d6e8ee;
}

.blog__info--item {
	border-right: 1px solid #d6e8ee;
	padding: 20px 20px;
}

.blog__info--item:last-child {
	border-right: 0;
}

.blog__info--item:first-child {
	padding-left: 0;
}

.blog__info--text {
	color: #a0a9b6;
	font-size: 13.5px;
	font-weight: 300;
}

.blog__info--icon {
	color: #fff;
	font-size: 12.5px;
	font-weight: 300;
	width: 28px;
	height: 28px;
	background-color: #ff8261;
	padding: 8px 10px;
	border-radius: 50%;
	margin-right: 7px;

	position: relative;
}

.blog__info--like:before {
	content: "\f08a";
	font-family: 'icomoon';
}

.blog__info--share:before {
	content: "\f1e0";
	font-family: 'icomoon';
}

.blog__social--icon {
	color: #a0a9b6;
	margin-right: 10px;

	transition: color .2s linear;
}

.blog__social--icon:hover {
	color: #ff8261;
}













































/*NEWSLETTER
===================*/
.newsletter {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.newsletter__form {
	width: 100%;
	max-width: 920px;

	margin-left: 10px;
}

.newsletter__input {
	color: #000;
	width: 80%;
	height: 50px;
	padding: 20px;
	outline: none;
	border: 0;
}

.newsletter__input::placeholder {
	color: #a0a9b6;
	font-size: 13px;
	font-weight: 300;
}

.newsletter--btn {
	padding-right: 40px;
	padding-left: 40px;
}

/*FOOTER
===================*/
.footer {
	background-color: #4c515b;
	padding: 95px 0 90px 0;
}

.footer__wrap {
	display: flex;
	justify-content: space-between;
}

.footer__logo {
	display: flex;
	align-items: center;
}

.footer__header {
	color: #fff;
}

.footer__copy {
	color: #909aad;
	font-size: 14px;
	font-weight: 300;
	margin-left: 58px;
}

.footer__title {
	color: #fff;
	font-weight: 800;
	font-size: 14px;
	text-transform: uppercase;

	margin-bottom: 25px;
}

.footer__menu {
	display: flex;
}

.footer__menu--item:not(:last-child) {
	margin-right: 70px;
}

.footer__link {
	display: block;
	color: #909aad;
	font-size: 14px;
	font-weight: 300;
	padding-bottom: 15px;
}

.footer__adress {
	max-width: 206px;
	font-size: 14px;
}

.footer__adress,
.footer__phone {
	color: #909aad;
	line-height: 1.8;
}

.footer__adress span {
	color: #e7f4f8;
	font-style: normal;
	margin-bottom: 40px;
}

.footer__social {
	display: flex;
}

.footer__social--item {
	margin-right: 25px;
}

.footer__social--item:last-child {
	margin-right: 0;
}

.footer__social--icon {
	color: #909aad;
	font-size: 24px;

	transition: all .2s ease;
}

.footer__social--icon:hover {
	color: #fff;
}

/*MEDIA*/
/*MEDIA 1150px
====================*/
@media (max-width: 1150px) {

	.form--text {
		max-width: none;
	}

	.form--text:first-child {
		margin-right: 0;
	}
}

/*MEDIA 1140px
====================*/
@media (max-width: 1140px) {

	.domains__buy--content {
		max-width: 530px;
	}
}

/*MEDIA 1120px
====================*/
@media (max-width: 1120px) {

	.domains {
		flex-wrap: wrap;
	}

	.domains__form__input {
		margin-right: 0;
	}

	.domain__form {
		max-width: none;
	}

	.domain__form--name {
		width: 100%;
	}

	.domain__form--year {
		width: 50%;
	}

	.domain__form--com {
		width: 49%;
	}

	.btn__domains {
		width: 100%;
	}
}

/*MEDIA 1110px
====================*/
@media (max-width: 1110px) {

	.column__price {
		padding: 40px 30px;
	}
	
	.support__input {
		max-width: 100%;
	}

	.btn--support {
		width: 100%;
		text-align: center;
	}
}

/*MEDIA 1100px
====================*/
@media (max-width: 1100px) {

	.details {
		justify-content: center;
	}

	.details__content {
		max-width: 100%;
		margin-top: 10px;
	}
}

/*MEDIA 1090px
====================*/
@media (max-width: 1090px) {

	.faq__content {
		max-width: 500px;
	}

	.newsletter__input {
		width: 100%;
	}

	.newsletter--btn {
		width: 100%;
	}
}

/*MEDIA 1080px
====================*/
@media (max-width: 1080px) {

	.hosting__item {
		max-width: 230px;
	}

	.news {
		display: block;
	}

	.news__item:last-child {
		margin-top: 20px;
	}

	.featured__wrap {
		justify-content: center;
		flex-wrap: wrap;
	}

	.featured__content {
		margin-left: 15px;
	}

	.latest {
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
	}

	.domains__buy--content {
		max-width: 500px;
	}
}

/*MEDIA 1050px
====================*/
@media (max-width: 1050px) {

	.nav__link {
	    padding: 24px 10px 23px 10px;
	}

	.benefits {
		justify-content: space-around;
	}

	.offers__content {
		flex-wrap: wrap;
	}
}

/*MEDIA 1030px
====================*/
@media (max-width: 1030px) {

	.offers__content {
		justify-content: center;
	}

	.offers__content--item {
		text-align: center;
	}

	.steps__item {
		flex: 0 1 290px;
	}

	.services__item {
		flex: 0 1 50%;
		margin-bottom: 25px;
	}

	.domains__buy--content {
		max-width: 470px;
	}

	.faq__content {
		max-width: 460px;
	}
}

/*MEDIA 970px
====================*/
@media (max-width: 970px) {

	.domains__buy--content {
		max-width: 460px;
	}

	.support {
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.support__item:last-child {
		margin-top: 30px;
	}
}

/*MEDIA 930px
====================*/
@media (max-width: 930px) {

	.section {
		padding: 40px 0;
	}

	.section__header {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.section__text--before:before {
		left: 50%;
		transform: translateX(-50%);
	}

	.section--domains {
	    padding: 20px 0 40px 0;
	}

	.domains {
		display: block;
	}

	.now {
		flex-direction: column;
		align-items: center;
	}

	.now__inner {
		margin-bottom: 30px;
	}

	.featureas__item {
		margin-right: 40px;
	}

	.featureas__item:last-child {
		margin-right: 0;
	}

	.hosting {
		flex-wrap: wrap;
	}

	.hosting__item {
		max-width: 48%;
	}

	.hostinglist {
		margin-bottom: 20px;
	}

	.column {
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.column__price:last-child {
		margin-top: 20px;
	}

	.registr {
		flex-wrap: wrap;
		justify-content: center;
	}

	.registr__title {
		text-align: center;
		margin-top: 30px;
	}

	.registr__title:before {
		left: 36%;
	}

	.registr__img {
		margin-bottom: 10px;
	}

	.registr__img img {
		width: 100%;
		height: auto;
	}

	.domain {
		margin-left: 0;
	}

	.domains__buy {
		justify-content: center;
	}

	.domains__buy--content {
		max-width: 500px;
	}

	.faq__content {
		max-width: 440px;
	}

	.contacts {
		flex-wrap: wrap;
		justify-content: center;
	}

	.contacts__form {
		margin-top: 20px;
	}

	.newsletter {
		flex-wrap: wrap;
		justify-content: center;
	}

	.newsletter__form {
		margin-left: 0;
		margin-top: 10px;
	}
}

/*MEDIA 890px
====================*/
@media (max-width: 890px) {

	.steps {
		flex-wrap: wrap;
		justify-content: space-around;
		align-items: center;
	}

	.steps__item {
		flex: 0 1 345px;
	}

	.steps__item:last-child {
		margin-top: 20px;
	}

	.faq {
		justify-content: center;
	}

	.faq__content {
		max-width: 100%;
	}
}

/*MEDIA 870px
====================*/
@media (max-width: 870px) {

	.clients {
		flex-wrap: wrap;
		justify-content: center;
	}

	.clients__img {
		width: 100%;
		height: auto;
	}

	.clients__content {
		margin-left: 0;
		margin-top: 10px;
	}

	.footer {
	    padding: 40px 0 50px 0;
	}

	.footer__wrap {
		flex-wrap: wrap;
	}

	.footer__item {
		width: 50%;
		text-align: center;
	}

	.footer__logo {
		justify-content: center;
	}

	.footer__copy {
		margin-left: 0;
	}

	.footer__menu {
		justify-content: center;
	}

	.footer__adress {
		max-width: none;
	}

	.footer__social {
		justify-content: center;
	}
} 

/*MEDIA 720px
====================*/
@media (max-width: 720px) {

	.menu {
		display: none;
	}

	.menu__nav {
		display: flex;
		flex-direction: column;
	}

	.nav__link {
	    padding: 12px 10px 12px 10px;
	}

	.menu__show {
		display: block;
	}

	.burger {
		display: block;
		margin-bottom: 50px;
	}

	.featuread__item:not(:last-child) {
		margin-bottom: 0;
	}

	.featured__content {
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

/*MEDIA 700px
====================*/
@media (max-width: 700px) {

	.benefits__item {
		margin-bottom: 30px;
	}

	.benefits__item:last-child {
		margin-bottom: 0;
	}

	.benefits__item--margin {
		margin-bottom: 30px;
	}

	.steps__item {
		flex: 0 0 100%;

		margin-bottom: 10px;
	}

	.steps__item:last-child {
		margin-top: 0;
	}

	.steps__title {
		margin: 0;
	}

	.featured__content {
		margin-left: 0;
	}
}

/*MEDIA 690px
====================*/
@media (max-width: 690px) {

	.support__item {
		margin-bottom: 20px;
	}

	.support__item:last-child {
		margin-top: 0;
	}
}

/*MEDIA 640px
====================*/
@media (max-width: 640px) {

	.featureas__item  {
		margin-right: 10px;
	}

	.offers {
		flex-wrap: wrap;
	}

	.offers__img {
		width: 100%;
		height: auto;
		margin-right: 0;
	}

	.offers__item {
		margin-bottom: 15px;
	}

	.offers__item:last-child {
		margin-bottom: 0;
	}
}

/*MEDIA 620px
====================*/
@media (max-width: 620px) {

	.steps__item {
		flex: 0 0 100%;
	}

	.steps__item:last-child {
		margin-top: 0;
	}

	.steps__content {
		margin-bottom: 10px;
	}

	.steps__content:last-child {
		margin-bottom: 0;
	}

	.steps__title {
		margin: 0;
	}
}

/*MEDIA 590px
====================*/
@media (max-width: 590px) {

	.header__title {
		font-size: 25px;
	}

	.header__text {
		font-size: 15px;
	}

	.section__text {
		font-size: 14px;
	}

	.section__title {
		font-size: 25px;
	}

	.now__discont--number {
		font-size: 35px
	}

	.now__discont--off {
		font-size: 35px;
	}

	.featureas {
		flex-direction: column;
		align-items: center;
	}

	.featureas__item {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.featureas__item:last-child {
		margin-bottom: 0;
	}
}

/*MEDIA 530px
====================*/
@media (max-width: 520px) {

	.team {
		justify-content: center;
	}

	.team__item:last-child {
		margin-bottom: 0;
	}

}

/*MEDIA 520px
====================*/
@media (max-width: 520px) {

	.intro__wrap {
		flex-direction: column;
	}

	.intro__logo  {
		padding-bottom: 10px;
	}

	.now__inner {
		margin: 15px 0 20px 0;
	}

	.hosting__item {
		max-width: 100%;
	}

	.footer {
		padding: 10px 0 0 0;
	}

	.footer__wrap {
		display: block;
	}

	.footer__item {
		width: 100%;
		padding-bottom: 30px;
	}

	.footer__title {
		margin-bottom: 15px;
	}

	.services__item {
		flex: 0 1 100%;
		margin-bottom: 10px;
	}

	.services__icon  {
		margin-bottom: 10px;
	}

	.services__title {
		margin-bottom: 10px;
	}

	.domain__cena {
		font-size: 21px;
	}
}

/*MEDIA 470px
====================*/
@media (max-width: 470px) {

	.blog__info {
		justify-content: space-around;
	}

	.blog__info--item {
		border-right: 0;
	}
}

/*MEDIA 430px
====================*/
@media (max-width: 430px) {

	.domain__form--year {
		width: 100%;
	}

	.domain__form--com {
		width: 100%;
	}

	.latest__wrap {
		flex-direction: column;
		align-items: center;
	}

	.latest__item:not(:last-child) {
		margin-bottom: 20px;
	}

	.latest__content {
		max-width: none;
		margin-left: 0;
	}

	.contacts__inner {
		flex-direction: column;
		align-items: center;
	}

	.contacts__adress__social {
		margin-top: 25px;
	}

	.contacts__adress--email {
		margin-top: 25px;
	}
}

/*MEDIA 370px
====================*/
@media (max-width: 370px) {

	.intro__content {
		display: none;
	}
}