/*!
Theme Name: Аудит
Theme URI: http://underscores.me/
Author: RefatIs
Author URI: https://kwork.ru/user/refatis
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: audit
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Аудит is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu.woff2') format('woff2'),
        url('fonts/Ubuntu.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Bold.woff2') format('woff2'),
        url('fonts/Ubuntu-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Medium.woff2') format('woff2'),
        url('fonts/Ubuntu-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Light.woff2') format('woff2'),
        url('fonts/Ubuntu-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/*@font-face {
    font-family: 'Ubuntu Condensed';
    src: url('fonts/UbuntuCondensed-Regular.woff2') format('woff2'),
        url('fonts/UbuntuCondensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-Italic.woff2') format('woff2'),
        url('fonts/Ubuntu-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-BoldItalic.woff2') format('woff2'),
        url('fonts/Ubuntu-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-MediumItalic.woff2') format('woff2'),
        url('fonts/Ubuntu-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('fonts/Ubuntu-LightItalic.woff2') format('woff2'),
        url('fonts/Ubuntu-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}*/



:root {
	--light-blue: #71ADE3;
	--lighter-blue: #E1EDF9;
	--lightest-blue: #F0F7FD;
	--blue: #13387F;
	--white: #FFFFFF;
	--black: #000000;
}
*, *:before, *:after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html {
	font-family: 'Ubuntu', sans-serif;
	overflow-x: clip;
	line-height: 1.5;
}
body {
	overflow-x: clip;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
ol {
	list-style: none;
}

.menu-toggle {
	background-color: transparent;	
	outline: none;
	border: none;
	background-size: cover;
	aspect-ratio: 1/1;
	width: 34px;
}
.icon-menu {
	background-image: url(images/menu.webp);
}
.icon-close {
	background-image: url(images/close.webp);
}

.container {
	width: 100%;
	max-width: 1430px;
	margin: 0 auto;
	padding: 0 15px;
}
.container--wide {
	max-width: 100vw;
}
.section-title {
	text-align: center;
	font-size: 40px;
	text-transform: uppercase;
	margin-bottom: 50px;
	font-weight: 500;
	color: var(--light-blue);
}
.section-subtitle {
	text-align: center;
	font-size: 28px;
	font-weight: 300;
	text-transform: uppercase;
}
.text-light {
	font-weight: 300;
}
.text-bold {
	font-weight: 700;
}
.text-center {
	text-align: center;
}
.btn {
	background: var(--light-blue);
	color: var(--white);
	text-transform: lowercase;
	text-decoration: none;
	display: inline-block;
	padding: 15px 30px;
	transition: all 0.3s ease;
	border: none;
	outline: none;
	font-size: 40px;
	text-align: center;
}
.btn:hover {
	background: var(--blue);
}

.header {
	padding: 30px 0;
	color: var(--blue);
}
.header a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}
.header a:hover {
	color: var(--black);
	text-decoration: underline;
}
.header-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__logo img {
	width: 160px;
}
.header__menu ul {
	list-style: none;
	display: flex;
	gap: 50px;
	font-size: 20px;
}
.header__menu a {
	text-transform: uppercase;
	font-size: 20px;
	border-bottom: 2px solid transparent;
}
.header__menu a:hover {
	text-decoration: none;
	border-bottom: 2px solid var(--black);
}
.header__menu .sub-menu {
	position: absolute;
	flex-direction: column;
	background: var(--lighter-blue);
	padding: 12px 20px;
	transform: translate(-20px, 40px);
	transition: all 0.3s ease;
	gap: 10px;
	opacity: 0;
	pointer-events: none;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, .2);
}
.header__menu .sub-menu a {
	font-size: 0.8em;
	text-transform: capitalize;
}
.header__menu li:hover .sub-menu {
	transform: translate(-20px, 0px);
	opacity: 1;
	pointer-events: all;
}
.header__menu li:has(.sub-menu) > a {
	pointer-events: none;
}
.menu-toggle {
}
.mmenu {
	display: none;
}
.main-navigation {
}
.header__info {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.header__phone {
	font-size: 28px;
	font-weight: 700;
}
.header__email {
	font-size: 20px;
	font-weight: 600;
}


.hero {
	background-image: var(--hero-bg);
	background-position: center;
	background-size: cover;
}
.hero-top {
	background: url(images/hero-bar.webp);
	background-position: right;
	background-size: cover;
	height: 200px;
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 20px;
}
.hero-top__content {
	line-height: 1.6;
}
.hero-top__title {
	font-size: 48px;
	text-transform: uppercase;
}
.hero-top__subtitle {
	font-size: 32px;
	text-transform: uppercase;
}
.hero-content {
	min-height: 300px;
	display: flex;
	align-items: center;
	padding: 30px 0;
}
.main-page .hero-content {
	align-items: flex-end;
}
.hc-text {
	text-transform: uppercase;
	color: var(--blue);
	font-size: 28px;
	font-weight: 500;
}
.hc-type2 {
	min-height: 370px;
}
.hero-content__columns {
	display: grid;
	grid-template-columns: 10fr 17fr;
	grid-gap: 25px 60px;
	align-items: end;
}
.hc-price {
	font-size: 62px;
	color: var(--blue);
	margin-bottom: 60px;
}
.hc-type3 .hc-price {
	margin-bottom: 25px;
}

.lighter-blue-section {
	background: var(--lighter-blue);
	color: var(--blue);
	padding: 80px 0 60px;
	font-size: 20px;
	line-height: 1.25;
}
.lighter-blue-section p:not(:last-of-type) {
	margin-bottom: 2em;
}
.lighter-blue-section a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}
.lighter-blue-section a:hover {
	color: var(--black);
}
.clients {
	padding: 80px 0;
	text-align: center;
	color: var(--blue);
}
.clients-title {
}
.clients-text {
	margin-bottom: 40px;
}
.logos-title {
	font-size: 17px;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 25px;
}

@keyframes clientsAnim {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.clients__logotypes {
  --gap: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  pointer-events: none;
  position: relative;
}
.clients__image {
	max-width: 300px;
}
@media (min-width: 768px) {
  .clients__logotypes {
    grid-area: logotypes;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .clients__logotypes {
    --gap: 2.4rem;
  }
}

.clients__logotypes-group {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: var(--gap);
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.clients__logotypes-group:nth-child(even) .clients__logotypes-anim {
  animation-direction: reverse;
}

.clients__logotypes-anim {
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
  align-items: center;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  animation: clientsAnim 30s infinite linear;
  will-change: transform;
}

.contacts-section {
	font-size: 24px;
}

.services-menu:not(:last-child) {
	margin-bottom: 35px;
}
.services-menu ul,
.info-menu ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.info-menu ul {
	justify-content: center;
	gap: 20px 60px;
}
.services-menu ul a,
.info-menu ul span {
	text-transform: uppercase;
	font-size: 24px;
	text-decoration: none;
	color: var(--light-blue);
	cursor: pointer;
}
.services-menu li.current-menu-item a,
.info-menu ul span.active {
	font-weight: 700;
	color: var(--blue);
}
.infotab-content {
	display: none;
}
.infotab-content.active {
	display: block;
}

.tabs-section {
	padding: 40px 0;
}
.tabs-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.tab {
	display: grid;
	grid-template-columns: 1fr;
}
.tab-title {
	text-align: center;
	width: 100%;
	max-width: 900px;
	background: var(--lighter-blue);
	color: var(--light-blue);
	font-size: 28px;
	padding: 15px 20px;
	justify-self: center;
	cursor: pointer;
	transition: all 0.3s ease;
}
.tab-title:hover {
	color: var(--blue);
}
.arrow-down {
	width: 30px;
	height: 15px;
	margin-left: 0.2em;
	background: url(images/arrow.svg);
	display: inline-block;
	transition: all 0.3s ease;
}
.tab.open .tab-title {
	color: var(--blue);
}
.tab.open .arrow-down {
	transform: scale(-1);
}
.tab-content {
	transition: all 0.25s ease;
	max-height: 0;
	overflow: clip;
	font-size: 20px;
	color: var(--blue);
}
.tab-content > * {
	margin-bottom: 0.6em;
}
.tab-content ul {
	padding-left: 2em;
	list-style: disc;
}
.tab-content ul li {
	margin-bottom: 0.5em;
}
.tab-content ul li ul {
	list-style: none;
	margin-top: 0.5em;
}

.service-content {
	padding: 60px 0;
	font-size: 20px;
	line-height: 1.25;
	color: var(--blue);
}
.service-content * {
	margin-bottom: 0.6em;
}
.service-content li ul,
.service-content li ol {
	padding-left: 2em;
	margin-top: 0.5em;
}
.service-content .table * {
    margin-bottom: 0;
}
.table {
}
.table-row {
	display: grid;
	position: relative;
}
.table-2 > .table-row {
	grid-template-columns: repeat(2, 1fr);
}
.table-3 > .table-row {
	grid-template-columns: repeat(3, 1fr);
}
.table-head {
	font-weight: 700;
}
.table-lightest-blue:before,
.table-light-blue:before {
	content: "";
	display: block;
	position: absolute;
	left: -100vw;
	right: -100vw;
	top: 0;
	bottom: 0;
	background: var(--lightest-blue);
	z-index: -1;
}
.table-light-blue:before {
	background: var(--lighter-blue);
}
.table-cell {
	padding: 1em 0;
}
.table-cell:not(:last-of-type) {
	border-right: 1px solid var(--blue);
	padding-right: 1em;
}
.table-cell:not(:first-of-type) {
	padding-left: 1em;
}
.table-cell .table-cell {
	border-right: none;
	padding-top: 0px;
	padding-bottom: 0px;
}
.table-cell ul {
	padding-left: 2em;
	display: flex;
	flex-direction: column;
	gap: 0.4em;
}

.error-page .lighter-blue-section {
	padding: 40px 0 60px;
}
.error-page .section-title {
	margin-bottom: 0;
}
.error-section {
}
.error-404 {
	font-weight: 700;
	font-size: 20vw;
	text-align: center;
	color: var(--light-blue);
}

.footer {
	background: var(--light-blue);
	color: var(--blue);
	padding: 30px 0;
	line-height: 1.6;
	font-size: 20px;
}
.footer a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}
.footer a:hover {
	text-decoration: underline;
}
.footer-grid {
	display: grid;
	grid-gap: 15px;
	grid-template-areas:
		"s p a"
		"s m a";
}
.footer__schedule {
	grid-area: s;
}
.footer__phone {
	grid-area: p;
	text-align: center;
}
.footer__phone a {
	color: var(--white);
	font-size: 38px;
	line-height: 1.2;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}
.footer__menu {
	grid-area: m;
	align-self: end;
}
.footer__menu ul {
	display: flex;
	gap: 60px;
	list-style: none;
	justify-content: center;
}
.footer__menu .sub-menu {
	display: none;
}
.footer__menu ul a {
	color: var(--white);
	text-decoration: none;
	font-size: 20px;
	text-transform: uppercase;
	border-bottom: 2px solid transparent;
}
.footer__menu a:hover,
.footer__phone a:hover {
	text-decoration: none;
	border-bottom: 2px solid var(--white);
}
.footer__address {
	grid-area: a;
	text-align: right;
	color: var(--blue);
}


@media screen and (max-width: 1540px) {
	.hero-top {
		height: 180px;
	}
}
@media screen and (max-width: 1440px) {
	.hero-top {
		height: 160px;
	}
	.hero-top__title {
	    font-size: 40px;
	}
	.hero-top__subtitle {
	    font-size: 28px;
	}
	.hc-text {
	    font-size: 26px;
	}
	.section-subtitle {
	    font-size: 24px;
	}
	.hc-price {
	    font-size: 48px;
	    margin-bottom: 1em;
	}
	.btn {
		font-size: 32px;
	}
}
@media screen and (max-width: 1240px) {
	.hero-top {
		height: 140px;
	}
	.hero-top__title {
	    font-size: 34px;
	}
	.hero-top__subtitle {
	    font-size: 24px;
	}
	.hc-text {
	    font-size: 24px;
	}
	.lighter-blue-section {
		font-size: 18px;
	}
	.footer {
		font-size: 18px;
	}
	.footer__menu ul {
	    gap: 40px;
	}
	.footer__menu ul a {
		font-size: 18px;
	}
	.services-menu ul {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		justify-items: center;
	}
}
@media screen and (max-width: 1024px) {
	.header {
	    padding: 20px 0;
	}
	.header__logo img {
	    width: 140px;
	}
	.header__menu ul {
		gap: 30px;
	}
	.header__menu a {
		font-size: 18px;
	}
	.header__phone {
	    font-size: 24px;
	}
	.header__email {
	    font-size: 17px;
	}
	.hero-content {
	    min-height: 260px;
	}
	.hero-top {
		height: 110px;
	}
	.hero-top__title {
	    font-size: 30px;
	}
	.hero-top__subtitle {
	    font-size: 20px;
	}
	.hc-text {
	    font-size: 20px;
	}
	.lighter-blue-section {
		padding: 60px 0 40px;
		font-size: 16px;
	}
	.clients {
	    padding: 40px 0 60px;
	}
	.section-title {
	    font-size: 32px;
	    margin-bottom: 1em;
	}
	.section-subtitle {
        font-size: 20px;
    }
	.footer {
		font-size: 16px;
	}
	.footer__menu ul {
	    gap: 20px;
	}
	.footer__menu ul a {
		font-size: 16px;
	}
	.footer__phone a {
		font-size: 32px;
	}
	.btn {
        font-size: 28px;
    }
    .hc-type2 .hero-content__columns {
    	grid-template-columns: 1fr;
    }
    .hc-price {
        font-size: 42px;
    }
	.service-content {
		font-size: 18px;
	}
}
@media screen and (max-width: 840px) {
	.header__menu ul {
		gap: 20px;
	}
	.header__menu a {
		font-size: 16px;
	}
	.header__phone {
	    font-size: 22px;
	}
	.header__email {
	    font-size: 16px;
	}
	.hero-top {
		height: 110px;
	}
	.hero-top__title {
	    font-size: 26px;
	}
	.hero-top__subtitle {
	    font-size: 18px;
	}
	.hc-text {
	    font-size: 18px;
	}
	.lighter-blue-section {
		font-size: 18px;
	}
	.section-subtitle {
        font-size: 18px;
    }
	.footer {
		font-size: 16px;
	}
	.footer__menu ul {
	    gap: 20px;
	}
	.footer__menu ul a {
		font-size: 16px;
	}
	.tab-content {
		font-size: 18px;
	}
}
@media screen and (max-width: 768px) {
	.hero-top {
		height: 100px;
		padding-bottom: 10px;
	}
	.hero-content {
        min-height: 200px;
    }
	.hero-top__title {
	    font-size: 22px;
	}
	.hero-top__subtitle {
	    font-size: 16px;
	}
	.footer-grid {
	    grid-template-areas:         
	    	"p p"        
	    	"s a";
	}
	.footer__menu {
		display: none;
	}
	main.audit .table-2 > .table-row {
		grid-template-columns: 5fr 2fr;
	}
	.service-content {
		font-size: 16px;
	}
	.service-content .table {
        font-size: 14px;
    }
	.tab-title {
		font-size: 24px;
	}
	.services-menu ul a, .info-menu ul span {
		font-size: 20px;
	}
	.hc-type3 .hero-content__columns {
		grid-template-columns: 1fr 1fr;
		align-items: start;
		grid-gap: 25px;
	}
}
@media screen and (max-width: 720px) {
	.header {
		position: sticky;
		top: 0;
		width: 100vw;
		background: var(--white);
		z-index: 50;
	}
	.mmenu {
		display: block;
	}
	.header-grid {
		gap: 20px;
	}
	.header__menu {
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		width: 240px;
		max-width: 90vw;
		padding: 20px;
		display: flex;
		gap: 20px;
		flex-direction: column;
		background: var(--lighter-blue);
		transition: all 0.3s ease;
		transform: translateX(100%);
		z-index: 100;
	}
	.header__menu.open {
		transform: translateX(0);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	}
	.header__menu ul {
		flex-direction: column;
		text-align: center;
		gap: 0;
	}
	.header__menu ul {
		flex-direction: column;
		text-align: center;
		gap: 0;
	}
	.header__menu li a {
		padding: 0.4em 0;
		display: inline-block;
	}
	.header__menu li:not(:last-child) {
		border-bottom: 1px solid var(--white);
	}
	.header__menu .sub-menu {
		position: relative;
		background: transparent;
		padding: 0px 12px;
		transform: unset;
		gap: 0;
		opacity: 1;
		box-shadow: unset;
		pointer-events: all;
		max-height: 0px;
		overflow: clip;
	}
	.header__menu li:hover .sub-menu {
		transform: unset;
		max-height: 200px;
	}
	.header__menu .sub-menu li {
		border-bottom: none;
	}
	.header__menu .sub-menu li a {
		padding: 0;
	}
	.menu-toggle.icon-close {
		align-self: flex-end;
	}
	.header__info {
		margin-left: auto;
	}
	.hero {
		background-image: none;
	}
	.hero-top {
		position: relative;
		background-color: var(--light-blue);
		color: var(--blue);
		height: auto;
		padding-bottom: 0;
	}
	.hero-top:before,
	.hero-top:after {
		content: "";
		height: 160px;
		width: 100vw;
		top: 0;
		background-size: cover;
		background-position: center;
		display: block;
		position: relative;
	}
	.hero-top:before {
		background-image: var(--hero-bg);
		z-index: 1;
	}
	.hero-top:after {
		position: absolute;
		background-image: url(images/hero-bar-m.webp);
		z-index: 2;
	}
	.hero-top__content {
		text-align: center;
		padding: 20px 0;
	}
	.hero-content {
		min-height: auto;
	}
	.hc-text {
		text-align: center;
	}
	.hc-type3 .hc-text {
		text-align: left;
	}
	.hc-type3 .hc-price {
	    margin-bottom: 10px;
	}
	.lighter-blue-section {
        font-size: 16px;
        padding: 40px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 16px;
    }
    .hc-type2 .hc-column {
    	text-align: center;
    }
    .hc-price {
        font-size: 38px;
        margin-bottom: 0.5em;
    }
    .services-menu ul a, .info-menu ul span {
        font-size: 18px;
    }
    .table-cell {
	    padding: 0.8em 0;
	}
	.table-cell:not(:last-of-type) {
	    padding-right: 0.5em;
	}
	.table-cell:not(:first-of-type) {
	    padding-left: 0.5em;
	}
	.accounting .table-3 > .table-row {
	    grid-template-columns: 2fr 3fr 2fr;
	}
	.tab-content {
		font-size: 16px;
	}
}
@media screen and (max-width: 620px) {
	.hc-type3 .hc-price {
        font-size: 32px;
    }
	.hc-type3 .hc-text {
        font-size: 16px;
    }
    .section-title {
        font-size: 24px;
    }
}
@media screen and (max-width: 480px) {
	.header__logo img {
        width: 120px;
    }
    .header__phone {
        font-size: 16px;
    }
    .header__email {
        font-size: 12px;
    }
    .hero-top:before, 
    .hero-top:after {
    	height: 120px;
    }
	.footer-grid {
        grid-template-areas:
           	"p"        
           	"s"        
           	"a";
    }
    .footer__schedule,
    .footer__address {
    	text-align: center;
    }
    .services-menu ul, 
    .info-menu ul {
        grid-gap: 20px 10px;
    }
    .services-menu ul a, .info-menu ul span {
        font-size: 14px;
    }
	.accounting .table-cell {
	    font-size: 12px;
	}
	.btn {
        font-size: 24px;
    }
	.hc-text {
        font-size: 14px;
    }
	.hc-price {
        font-size: 28px;
    }
	.hc-type3 .hc-price {
        font-size: 20px;
    }
	.hc-type3 .hc-text {
        font-size: 10px;
    }
    .service-content {
    	padding: 30px 0 40px;
    	font-size: 14px;
    }
    .tabs-list {
	    gap: 20px;
	}
    .tab-title {
        font-size: 20px;
    }
	.service-content .table {
        font-size: 12px;
    }
    .section-title {
        font-size: 20px;
    }
    .footer {
        font-size: 14px;
    }
    .footer__phone a {
        font-size: 24px;
    }
    .header {
    	padding: 15px 0;
    }
    .header__logo img {
        width: 110px;
    }
    .lighter-blue-section {
        font-size: 14px;
    }
    .tab-content {
        font-size: 14px;
    }
}
@media screen and (max-width: 425px) {
    .service-content {
        font-size: 12px;
    }
	.accounting .table-cell {
        font-size: 10px;
    }
}
@media screen and (max-width: 360px) {
	.header__logo img {
        width: 100px;
    }
    .header__phone {
        font-size: 14px;
    }
    .header__email {
        font-size: 10px;
    }
	.accounting .table-cell {
        font-size: 9px;
    }
}