body {
    box-sizing: border-box;
    font-family: Suissy, sans-serif;
    font-weight: 300;
}

/*---------------------------*/
/*------HEADER (Начало)------*/
/*---------------------------*/
/*.header {
    background: #fff;
    height: 97px;
}*/

/*.menu {
    position: absolute;
    width: 100%;
    z-index: 9999;
}

.menu--active {
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.15), 10px 10px 35px rgba(0, 0, 0, 0.1);
}
.fixed-menu {
    background: #F5F9FF;
    position: fixed !important;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.15), 10px 10px 35px rgba(0, 0, 0, 0.1);
}

.menu-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1160px;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0 20px 0;
    z-index: 999;
}

.menu__logo {
    display: flex;
    align-items: center
}

.logo-blog {
    margin-left: 3px;
    margin-top: 6px;
}

.menu__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-list__item {
    position: relative;
}
.menu-list__item:not(:last-child) {
    margin-right: 10px;
    padding: 10px;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 28px;
    left: 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    background: #F5F9FF;
    padding: 10px;
}

.menu-list__item:hover>.sub-menu {
    display: block;
}
.sub-menu>.menu-list__item {
    margin: 0 0 5px 0;
    padding: 0;
}
.sub-menu>.menu-list__item:last-child {
    margin: 0;
}


.menu-list__link, .menu__link {
    position: relative;
    font-size: 14px;
    text-decoration: none;
    color: #1B2A30;
    transition: .3s all;
}

.menu-list__link::after, .menu__link::after {
    content: '';
    position: absolute;
    width: 105%;
    height: 1px;
    background: #0084D4;
    transform-origin: center center;
    transform: scale(0);
    bottom: -1px;
    left: -1.5px;
    transition: .3s all;
}

.menu-list__link:hover, .menu__link:hover {
    color: #0084D4;
}

.menu-list__link:hover::after, .menu__link:hover::after {
    transform: scale(1);
}

.menu-list__link.drop-down, .menu__link.drop-down {
    padding-right: 5px;
}

.menu-list__link.drop-down::before, .menu__link.drop-down::before {
    content: '▼';
    font-size: 6px;
    line-height: 18px;
    position: absolute;
    bottom: -1px;
    right: -7px;
    width: 6px;
    height: 18px;
}

.blue {
    background: #0084D4;
    border-radius: 4px;
    padding: 12px 10px 11px 10px;
    color: #fff !important;
}

.green {
    background: linear-gradient(to bottom, #10b584, #00a474);
    border-radius: 4px;
    padding: 12px 10px 11px 10px;
    color: #fff;
}

.menu-list__item:nth-child(6) {
    width: 130px;
}
.sub-menu>.menu-list__item:nth-child(6) {
    width: initial;
}
.menu-list__item:nth-child(6) a {
    color: #1B2A30;
    position: relative;
}


.mob-menu-icon {
    width: 24px;
    height: 20px;
    display: none;
}

.mob-menu {
    padding: 20px 40px 40px;
    position: absolute;
    top: -500px;
    left: 0;
    z-index: 500;
    display: none;
    background: linear-gradient(0deg, #F5F9FF, #F5F9FF);
    transition: .3s all;
}

.active {
    top: 78px;
}

.mob-menu-icon > span {
    display: block;
    width: 100%;
    height: 4px;
    background: #1B2A30;
}

.mob-menu-icon--active > span{
    background: #0084D4;
}

.mob__active {
    top: 78px;
}

.mob-menu-icon > span:not(:last-child) {
    width: 100%;
    height: 4px;
    margin-bottom: 4px;
}

.mob-menu__item a {
    text-decoration: none;
    color: #1B2A30;
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.mob-menu__item:not(:last-child) {
    margin-bottom: 20px;
}

.mob-menu__item:last-child {
    margin-top: 35px;
}*/
/*--------------------------*/
/*------HEADER (Конец)------*/
/*--------------------------*/
.not-found {
    position: relative;
    padding: 30px 0 0 0;
}

.not-found::before{
    content: '';
    position: absolute;
    top: 0;
    height: 63%;
    z-index: -2;
    background: linear-gradient(0deg, #F5F9FF, #F5F9FF);
    width: 100%;
}

.wrap {
    max-width: 1217px;
    margin: 0 auto;
    text-align: center;
}

hgroup {
    text-align: center;
    margin: 50px 0 30px 0;
}

.not-found__title {
    color: #1B2A30;
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.not-found__subtitle {
    color: #858585;
    font-size: 32px;
}

.not-found__picture {
    position: relative;
    font-size: 630px;
    color: #EAF4FF;
    font-weight: 600;
    z-index: -1;
}

.not-found__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.btn {
    background: #0084D4;
    border-radius: 4px;
    padding: 10px 22px;
    font-size: 18px;
    border: none;
    color: #fff;
    transition: .3s all;
}

.not-found__btn {
    text-decoration: none;
    position: relative;
    top: -50px;
}

.btn:hover {
    opacity: .8;
}

/*---------------------------*/
/*------Footer (Начало)------*/
/*---------------------------*/
.hide {
    display: none;
}

.accordion {
    display: none;
}

.footer-wrap {
    max-width: 1160px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    padding: 64px 0 0 0;
}

.footer__column {
    max-width: 265px;
    margin-bottom: 50px;
    padding: 0 4px;
}

/*.footer__column:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}*/

.footer-link {
    color: #858585;
    text-decoration: none;
    transition: .3s all;
    line-height: 19px;
}

.footer-title-black {
    color: #1B2A30;
    font-weight: 700;
}

.footer-title-item {
    display: block;
    margin-bottom: 20px;
}

.footer__column > ul > li:not(:last-child) {
    margin-bottom: 16px;
}

.brands {
    display: flex;
    justify-content: space-between;
}

.socials__logo {
    margin-bottom: 16px;
}

.socials__description {
    color: #858585;
    margin-bottom: 20px;
    /*max-width: 160px;*/
    line-height: 150%;
}

.socials__contacts-list {
    margin-bottom: 20px;
    line-height: 150%;
}

.socials__contacts-link {
    color: #858585;
    text-decoration: none; 
}

.socials-link:not(:last-child) {
    margin-right: 9px;
}

.price__list {
    margin-bottom: 52px;
}

.partnership {
    margin-bottom: 52px;
}

.about-us {
    margin-bottom: 52px;
}

.policy {
    max-width: 200px;
    line-height: 22px;
}

.integration {
    line-height: 22px;
}

/*.price-title {
    margin-bottom: 12px;
}*/

/*.partnership-title {
    margin-bottom: 9px;
}*/

/*.support-title {
    margin-bottom: 15px;
}*/

/*.footer__column:nth-child(3),
.footer__column:nth-child(4) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}*/

.language {
    color: #858585;;
}

.footer__language {
    display: flex;
    justify-content: space-between;
}

.border-top {
    border-top: 2px solid #F6F6F9;
    padding: 20px 30px 104px 30px;
}

.dark {
    color: #1B2A30;
}

.footer-link:hover {
    color: #1B2A30;
}
/*---------------------------*/
/*------Footer (Конец)------*/
/*---------------------------*/

@media screen and (max-width: 1230px) {
    .not-found__picture {
        font-size: 550px;
    }
    .not-found__image {
        width: 480px;
    }
}

@media screen and (max-width: 1080px) {
    .not-found__picture {
        font-size: 480px;
    }
    .not-found__image {
        width: 430px;
    }
}

@media screen and (max-width: 950px) {
    .not-found__picture {
        font-size: 350px;
    }
    .not-found__image {
        width: 380px;
    }
    .btn {
        top: 50px;
    }
    .not-found::before {
        height: 67%;
    }
}

@media screen and (max-width: 690px) {
    .not-found__title {
        font-size: 35px;
    }
    .not-found__subtitle {
        font-size: 28px;
    }
    .not-found__picture {
        font-size: 200px;
    }
    .not-found__image {
        width: 150px;
    }
    .btn {
        top: -10px;
    }
    .not-found::before {
        height: 73%;
    }
}

@media screen and (max-width: 450px) {
    .not-found__title {
        font-size: 28px;
    }
    .not-found__subtitle {
        font-size: 22px;
    }
    .not-found__picture {
        font-size: 150px;
    }
    .not-found__image {
        width: 110px;
    }
    .btn {
        top: 0px;
        font-size: 15px;
    }
    .not-found::before {
        height: 73%;
    }
}

@media screen and (max-width: 1170px) {
    .breadcrumbs-wrap {
        margin: 0 30px 32px 30px;
    }
}


/*@media screen and (max-width: 950px) {
    .articles-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        grid-gap: 40px;
    }

    .article {
        padding-bottom: 0;
    }
    
    .article--2 {
        grid-area: auto;
    }
    
    .article--3 {
        grid-area: auto;
    }
    
    .article--4 {
        grid-area: auto;
    }
    
    .article--5 {
        grid-area: auto;
    }
    
    .article--6 {
        grid-area: auto;
    }
    
    .article--7 {
        grid-area: auto;
    }
    
    .article--8 {
        grid-area: auto;
    }
    
    .article--9 {
        grid-area: auto;
    }
    .article__description {
        padding: 0 13px 30px 13px;
    }
    .show-more {
        width: 100%;
    }
}*/

@media screen and (max-width: 880px) {

    .green {
        padding: 12px 22px 11px 22px;
    }
}

@media screen and (max-width: 1180px) {
    .aside {
        display: none;
    }
    .articles-wrap {
        margin: 0 30px;
    }
    .sort {
        margin: 0 30px 32px 0;
    }
}

@media screen and (max-width: 1200px) {
    .protection-wrap,
    .about-servers-wrapper {
        margin: 0 30px 49px 30px;
    }
    .border-top {
        border: none;
    }
    .about-wrap {
        margin: 0 30px;
    }
    .about__title {
        padding-top: 42px;
    }
	.cookie {
		width: 800px;
	}
}

@media screen and (max-width: 850px) {
	.cookie {
		flex-direction: column;
		width: 500px;
	}
	.cookie-btn {
		margin-top: 10px;
	}
}

@media screen and (max-width: 767px) {
    .mobilehide {
        display: none;
    }
    .about__title {
        font-size: 32px;
        line-height: 114.14%;
    }
    .about__text {
        font-size: 16px;
        line-height: 20px;
    }

    /*.footer__column:not(:first-child) {
        display: none;
    }*/
    .footer__column {
        margin: 0 auto;
        text-align: center;
    }
    .footer-wrap {
        padding: 20px 30px 35px 30px;
        flex-direction: column;
    }
    .accordion {
        width: 100%;
        margin: 0 auto 50px auto;
        display: block;
    }
    .accordion__icon {
        width: 20px;
        height: 20px;
    }
    .accordion__item {
        border-bottom: 1px solid #f5f5f5;
    }
    .accordion__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        font-weight: 700;
        padding: 30px 0;
    }
    .accordion__content {
        font-size: 18px;
        margin-left: 30px;
    }
    .accordion__content > ul {
        margin-bottom: 15px;
    }
    .accordion__content > ul > li:not(:last-child) {
        margin-bottom: 20px;
    }
    .mob-flex-direction {
        flex-direction: row;
    }
    .socials__icons {
        margin-bottom: 37px;
    }
}

@media screen and (max-width: 550px) {	
	.cookie {
		width: 300px;
	}
}

@media screen and (max-width: 450px) {
    .iphones-image {
        display: none;
    }
    .mob-iphones-image {
        display: block;
        width: 100%;
    }
    .form-mailing__iphones {
        position: relative;
        z-index: 2;
    }
    .form-mailing__iphones::before {
        content: '';
        position: absolute;
        width: 100vw;
        height: 60px;
        background: #fff;
        top: -6;
        left: 0;
        z-index: -1;
    }
}
