/**
 * Сетка
 */


/* Основной блок */
.layout {
    background-color: #eee;
}

.page {
	background-color: #fff;
    box-shadow: 0 0 15px #adadad;
	margin: 0 auto;
	max-width: 1230px;
	position: relative;
}


/* Шапка */
.site-header {
	border-bottom: 5px solid #1d3557;
    margin-bottom: 40px;
}


/* Основной контент */
.layout-container {
    margin-bottom: 40px;
    position: relative;
}


/* Контент */
.layout-content {
}


/* Отображение контента без сайдбара */
.layout-container.layout-no-sidebar .layout-content {
    width: 100%;
}


/* Сайдбар */
.layout-sidebar {
	margin-top: 40px;
}


/* Подвал */
.layout-footer {
    background-color: #1d3557;
    color: rgba(29, 53, 87);
}

.layout-footer a {
    color: rgba(255,255,255,0.5);
}

.layout-footer a:hover,
.layout-footer a:focus {
    color: #fff;
    text-decoration: none;
}

/* Footer Top Area */
.footer-top-area {
	border-bottom: 1px dotted rgba(255,255,255,0.2);
	padding: 40px 0;
}

.footer-block {
    margin-bottom: 40px;
}

.footer-block:last-child {
    margin-bottom: 0;
}

.layout-footer-block-title,
.layout-footer-links-title {
    color: #fff;
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	margin-bottom: 15px;
}

.layout-footer-block-text {
	line-height: 1.75;
}

.layout-footer-links-nav .ls-nav-item {
	border-bottom: 1px dotted rgba(255,255,255,0.15);
	padding: 10px 0;
}

.layout-footer-links-nav .ls-nav-item:first-child {
	padding-top: 0;
}

/* Footer Bottom Area */
.footer-bottom-area {
    text-align: center;
	padding: 15px 0;
}

.layout-footer-copyright {
	line-height: 26px;
}

.layout-footer-social {
	margin-top: 10px;
}

.social-links {
	display: inline-block;
}

.social-links a {
	font-size: 14px;
    padding: 0 8px;
}


/**
 * Media Queries
 */

/**
 * >= 768px
 */

@media screen and (min-width: 768px) {
    .footer-bottom-area {
        text-align: left;
    }

    .layout-footer-social {
        text-align: right;
    	margin-top: 0;
    }
}


/**
 * >= 992px
 */

@media screen and (min-width: 992px) {
    .layout-sidebar {
    	margin-top: 0;
    }

    .footer-block {
        margin-bottom: 0;
    }
}
