/* ===== IMPORTED STYLE ===== */

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat/Montserrat-ExtraLight.woff') format('woff');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat/Montserrat-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat/Montserrat-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat/Montserrat-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
/* ===== IMPORTED STYLE END ===== */

/* ===== RESET STYLE ===== */
* {box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; margin:0; padding:0;}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, cite, code, img, strong, sub, sup, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tr, th, td, article, aside, canvas, figure, figcaption, footer, header, main, menu, nav, section, audio, video  {
	font: inherit; border: 0px currentColor; border-image: none; vertical-align: baseline; font-size-adjust: inherit; font-stretch: inherit;}
article, aside, figcaption, figure, footer, header, menu, nav, section, body, main, section, picture {display: block;}
sub, sup {font-size:75%; line-height:0; position:relative;} sup {top: -0.5em;} sub {bottom: -0.25em;}
ol[class], ul[class], ol li[class], ul li[class] {list-style:none;}
blockquote {quotes: none; } blockquote::before, blockquote::after {content:none;}
table {border-collapse:collapse; border-spacing:0;}
a {text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color: transparent;outline:none!important;}
a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {text-decoration: none;outline: none;}
body {-webkit-text-size-adjust:none;-webkit-overflow-scrolling: touch;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: 100%;	}
input, button, select {border:none;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;}
select::ms-expand {display:none;}
input::-ms-clear {display:none;}
img {display:block; max-width:100%;}
/* ===== RESET STYLE END ===== */

/* ===== Theme default ===== */
:root {
	--black: #000;
	--white: #fff;
	--main-color: #17bfe3;
	--main-font:'Montserrat';
}
html {font-size:10px;height:100%;}
body {
    background: #fff;
    font-weight: 300;
	font-family: var(--main-font);
	font-size: 1.8rem;
    letter-spacing: 0.1px;
    line-height: 1.5;
    overflow-x: hidden;
	color: var(--black);
    height:100%;
}
.page-wrapper {display:flex;flex-direction: column;justify-content: space-between;height:100%;}

svg {width:100%;height:100%;display:block;}

input, textarea {width:100%;border:1px solid transparent;outline:none;resize:none;display:block;}
input:-webkit-autofill {transition: all 5000s ease-in-out 0s;}
/* Убираем стрелочки в input type="number"
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {-webkit-appearance: none;}
input[type='number'], input[type="number"]:hover, input[type="number"]:focus {appearance: none;-moz-appearance: textfield;}
*/
a {position:relative;color:inherit;transition:0.25s;}
a:hover {transition:0.25s;}

b, strong {font-weight:bold;}
p:not(:last-child) {margin-bottom: 1em;}
ul:not([class]) li, ol:not([class]) li {margin-bottom: 1em;}
ul:not([class]),
ol:not([class]) {padding-left: 20px;margin-bottom: 20px;}

p a:hover, ul:not([class]) li a:hover, ol:not([class]) li a:hover {text-decoration: none;}
p a, ul:not([class]) li a, ol:not([class]) li a {color: red;text-decoration: underline;}

table {width: 100%;}
table tr {border: 1px solid #ddd;}
table th, table td {padding: 1rem;text-align: center;border-right: 1px solid #ccc;}
table th {text-transform: uppercase;background: rgba(0, 0, 0, 0.12);font-weight: bold;}

/* Flexbox */
.flex {display: flex;}
.inline-flex {display: inline-flex;}
.flex-wrap {flex-wrap: wrap;}
.flex-column {flex-direction: column;}
.align-center {align-items: center}
.align-end {align-items: flex-end;}
.align-start {align-items: flex-start;}
.justify-center {justify-content: center;}
.justify-end {justify-content: flex-end;}
.justify-start {justify-content: flex-start;}
.justify-between {justify-content: space-between;}
/* // Flexbox */

/* CSS Grid */
.grid {display:grid;}
.col-2 {grid-template-columns: repeat(2, 1fr);}
.col-3 {grid-template-columns: repeat(3, 1fr);}
.col-4 {grid-template-columns: repeat(4, 1fr);}
.col-5 {grid-template-columns: repeat(5, 1fr);}
.col-6 {grid-template-columns: repeat(6, 1fr);}
.grid-col-1 {grid-column: span 1;}
.grid-row-1 {grid-row: span 1;}
.grid-col-2 {grid-column: span 2;}
.grid-row-2 {grid-row: span 2;}
.grid-col-3 {grid-column: span 3;}
.grid-row-3 {grid-row: span 3;}
.grid-col-4 {grid-column: span 4;}
.grid-row-4 {grid-row: span 4;}
.grid-col-5 {grid-column: span 5;}
.grid-row-5 {grid-row: span 5;}

.gap-1 {gap:1rem;}
.gap-2 {gap:2rem;}
.gap-3 {gap:3rem;}
.gap-4 {gap:4rem;}
.gap-5 {gap:5rem;}
/* // CSS Grid */

.container {
	width: 100%;
	max-width:1480px;
	margin:0 auto;
	padding:0 20px;
	position:relative;
}

.red {border:1px solid red;}
.blue {border:1px solid blue;}
.green {border:1px solid green;}

.mobile-btn {display:none;}
.noscroll {overflow: hidden;}
.mobile-menu__content {display:none;}

.text--uppercase {text-transform:uppercase;}
.text--center {text-align:center;}
.text--left {text-align:left;}
.text--right {text-align:right;}
.text--black {color:var(--black);}
.text--white {color:var(--white);}
.text--colored {color:var(--main-color);}
.text--bold {font-weight: bold;}
.bg--main-color {background: var(--main-color);}
.resp--img img {width: 100%;height:100%;object-fit: cover;}

.position-relative {position: relative;}
.position-absolute {position: absolute;}

.sm-show, .svg-library {display:none;}

.section {padding:max(7vw, 40px) 0;}
.section-title {margin-bottom:1.2em;}

.input-wrapper input, .input-wrapper textarea {
	display:block;
	font-size: 1.8rem;
	font-weight: 300;
	font-family: var(--main-font);
	color:var(--black);
	background: #e7e7e7;
	height:5rem;
	padding:0 1em;
}
.input-wrapper textarea {
	height: 10rem;
	padding: 1em;
}
.input-wrapper input::placeholder, .input-wrapper textarea::placeholder {
	font-size: 1.6rem;
	color:var(--black);
	font-family: var(--main-font);
	font-weight: normal;
}

.w-5 {width:5%;}
.w-10 {width:10%;}
.w-15 {width:15%;}
.w-20 {width:20%;}
.w-25 {width:25%;}
.w-30 {width:30%;}
.w-33 {width:33.33%;}
.w-35 {width:35%;}
.w-40 {width:40%;}
.w-45 {width:45%;}
.w-50 {width:50%;}
.w-55 {width:55%;}
.w-60 {width:60%;}
.w-65 {width:65%;}
.w-70 {width:70%;}
.w-75 {width:75%;}
.w-80 {width:80%;}
.w-85 {width:85%;}
.w-90 {width:90%;}
.w-95 {width:95%;}
.w-100 {width:100%;}

.pt-0 {padding-top:0;}
.pt-1 {padding-top:1rem;}
.pt-2 {padding-top:2rem;}
.pt-3 {padding-top:3rem;}
.pt-4 {padding-top:4rem;}
.pt-5 {padding-top:5rem;}
.pb-0 {padding-bottom:0;}
.pb-1 {padding-bottom:1rem;}
.pb-2 {padding-bottom:2rem;}
.pb-3 {padding-bottom:3rem;}
.pb-4 {padding-bottom:4rem;}
.pb-5 {padding-bottom:5rem;}

.mt-0 {margin-top:0;}
.mt-1 {margin-top:1rem;}
.mt-2 {margin-top:2rem;}
.mt-3 {margin-top:3rem;}
.mt-4 {margin-top:4rem;}
.mt-5 {margin-top:5rem;}
.mb-0 {margin-bottom:0;}
.mb-1 {margin-bottom:1rem;}
.mb-2 {margin-bottom:2rem;}
.mb-3 {margin-bottom:3rem;}
.mb-4 {margin-bottom:4rem;}
.mb-5 {margin-bottom:5rem;}

/* Buttons */
.btn {
	font-family: var(--main-font);
	font-size: 1.8rem;
	font-weight: 300;
	display:inline-flex;
	padding:1em 3em;
	background: var(--main-color);
	position:relative;
	text-align:center;
	transition: all 0.25s;
	justify-content: center;
	align-items: center;
	border:1px solid var(--main-color);
	text-transform: uppercase;
	cursor:pointer;
	color:#fff;
}
.btn:hover {
	background: transparent;
	transition: all 0.25s;
	color:var(--main-color);
}

/* Icons */
.icon {display:block;}
.icon-location, .icon-phone {
	width: 2rem;
	height: 2rem;
	color:var(--main-color);
	margin-right:1rem;
	flex: none;
}
.arrow-icon {
	width: 4rem;
	height:2.6rem;
	color:var(--main-color);
}

/* Titles */
.h1,.h2,.h3,.h4,.h5,.h6, h1,h2,h3,h4,h5,h6 {display:block;}
.h1, h1 {
	line-height: 1;
	font-size: clamp(30px, 2.7vw, 52px); /* 5.2rem */
}
.h2, h2 {
	line-height: 1.2;
	font-size: clamp(25px, 2.4vw, 46px); /* 4.6rem */
}
.h3, h3 {
	line-height: 1.3;
	font-size: clamp(20px, 1.8vw, 30px); /* 3rem */
}
.h4, h4 {
	line-height: 1.3;
	font-size: clamp(18px, 1.6vw, 25px); /* 2.5rem */
}

/* Custom default style */
.flex-wrapper {margin: 0 -1rem;}
.flex-wrapper .item {padding:0 1rem;}
.f-col-2 .item {flex:0 0 50%;max-width:50%;}
.f-col-3 .item {flex:0 0 33.33%;max-width:33.33%;}
.f-col-4 .item {flex:0 0 25%;max-width:25%;}
.f-col-5 .item {flex:0 0 20%;max-width:20%;}

/* Marker list */
.marker--list li {
	display: flex;
	align-items: flex-start;
}
.marker--list li::before {
	content:'';
	display: block;
	min-width: 5px;
	height:5px;
	background: var(--main-color);
	border-radius: 50%;
	margin:1rem 1rem 0 0;
}

/* Popup  */
.popup-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(49, 49, 49, 0.62);
	z-index: 5;
	display: none;
}
.popup-window, .thanks-window {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	visibility: hidden;
	z-index: 110;
	transition: all .3s;
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	width: 35em;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.popup-window.active {
	transform: translate(-50%, -50%) scale(1);
	visibility: visible;
}
.close-popup {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	display: block;
	overflow: visible;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}
.close-popup::before, .close-popup::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 1px;
	display: block;
	width: 20px;
	height: 1px;
	border-bottom: 1px solid #000;
	transform: rotate(45deg);
}
.close-popup::after {
	left: 0;
	transform: rotate(-45deg);
}

/* Tabs */
.js--tab.active  {
    color:var(--main-color);
}
.js--tab {
	cursor: pointer;
}
.tab_content {
	display: none;
}
.tab_content.active {
	display: block;
}

/* Thanks window */
.thanks-window {
	z-index: 120;
}
.thanks-window.active {
	transform: translate(-50%, -50%) scale(1);
	visibility: visible;
}
.thanks-window__title {
	margin-bottom:0.3em;
}
.thanks-window p {
	text-align: center;
}

/* ===== Custom Styles =====*/
.header {
	top:0;
	left:0;
	z-index: 1;
}
.header__top {
	background: #fff;
	padding: 1rem 0;
}
.header__contact {
	font-size: 1.4rem;
}
.mobile-menu__content .header__contact {
    font-size: 16px;
	justify-content: center;
	margin-bottom:10px;
	text-align: center;
}
.header__bottom__content {
	padding: 2.5rem 0;
}
.logo {
	font-size: 5rem;
	font-weight: bold;
	color:#fff;
	text-shadow: 2px 1px 0 #071836;
}
.decor__patern {
    position: absolute;
    width: 70rem;
    height: 70rem;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-radius: 5rem;
    background: linear-gradient(90deg, #fff, #dfdfdf 30%, transparent 30%, transparent 100%);
    background-size: 6px;
    opacity: 0.1;
    z-index: 0;
}
.fs__screen {
	padding: 18rem 0 15rem;
	background: #ebeef3;
	overflow: hidden;
}
.fs__screen::before {
	content:'';
	position: absolute;
	top:0;
	left:0;
	height: 100%;
	width: 35%;
	background: #071836;
}
.fs__content {
	padding: 11rem 5rem;
	background:linear-gradient(90deg, rgba(255,255,255,1), transparent), url(../images/main.webp) no-repeat center center / cover;
}
.main__title {
	font-size: 10rem;
}
.fs__content p {
	width: 40%;
}
.menu li {
	position: relative;
	margin:0 1em;
	text-transform:uppercase;
}
.menu li:last-child {
	margin:0 0 0 1em;
}
.menu li a {
	display:block;
}
.menu li a:hover {
	color: var(--main-color);
}
.decor__brand {
	display: block;
	font-size: 17rem;
	bottom: 0;
	right: 20px;
	color:#071836;
	opacity: 0.1;
	line-height: 1;
}
.process__card {
	padding: 4rem;
	background: #071836;
	height: 100%;
	overflow: hidden;
}
.process__img img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}
.proccess__num {
	font-weight: bold;
	font-size: 10rem;
	line-height: 1;
	color:#fff;
	opacity: 0.1;
}
.process__card__icon {
	top:10%;
	right:-5rem;
	width: 13rem;
	opacity: 0.2;
}
.process__card__icon img {
	width: 100%;
}
.process__card__head {
	height: 100%;
}
.process__card__head {
	padding: 4rem 0;
}
.big__phone {
	font-size: 5rem;
}
.about {
	background: #ebeef3;
}
.about__content {
	padding: 9rem 0;
}
.about__img {
	top:0;
	left:0;
	height: 100%;
}
.about__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.action {
	padding: 8rem 0;
	background: #071836;
	overflow: hidden;
}
.action p {
	color:#fff;
}
.action__icon {
	width: 8rem;
	margin-right:2rem;
}
.action__icon img {
	width: 100%;
}

.tabs {
	box-shadow: 3px 3px 30px #dfdfdf;
	position: sticky;
    top: 5rem;
}
.tab__btn {
	display: flex;
	justify-content: flex-end;
	padding: 1.4em 2.5em;
	text-align: right;
	font-weight: bold;
	border-bottom: 1px solid #dfdfdf;
	position: relative;
	overflow: hidden;
}
.tab__btn::after, .tab__btn.active::after {
	content: '';
	display: block;
	position: absolute;
	top:0;
	right:0;
	height: 100%;
	width: 0.5rem;
	background: var(--main-color);
	transform: translateY(-100%);
}
.tab__btn.active::after {
	transform: none;
}
.tab__btn:hover::after {
	transform: translateY(0);
	transition: all 0.25s;
}
.mobile__tab__btn {
	display: flex;
	justify-content: center;
	font-size: 15px;
	text-align: center;
	padding:1em 0;
	font-weight: bold;
	width: 100%;
	border-bottom: 1px solid #ddd;
}
.mobile__tab__btn.active {
	color:#fff;
	background: var(--main-color);
}
.price__section {
	background: #ebeef3;
}
.contact__item {
	font-size: 3rem;
	margin-bottom:0.5em;
	text-align: center;
	position: relative;
	padding-bottom: 0.5em;
}
.contact__item::after {
	content:'';
	position: absolute;
	bottom:0;
	left:50%;
	transform: translateX(-50%);
	height: 1px;
	width: 20%;
	background: var(--main-color);
}
.contact__section {
	background: url(../images/bg/2.avif) no-repeat center center / cover;
}
.contact__block {
	padding: 4rem;
	background: rgba(255,255,255,0.7);
	margin:0 auto;
}
.contact__block .icon-location, .contact__block .icon-phone {
	width: 4rem;
	height: 4rem;
}
.contact__block .icon {
	position: absolute;
	width: 13rem;
	height:13rem;
	opacity: 0.2;
}
.contact__block .icon-phone {
	top:2rem;
	left:2rem;
}
.contact__block .icon-location {
	bottom:2rem;
	right:2rem;
}
.footer {
	padding: 3rem 0;
	background: #071836;
}
.copyright {
	text-align: center;
	display: block;
	color:#fff;
	font-size:1.4rem
}
.copyright a {
	text-decoration: underline;
}
.copyright a:hover {
	text-decoration: none;
}
.page-up {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: #2DA7CD url(../images/icons/arrow-top.svg) no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 1;
    display: none;
    cursor: pointer;
}
.decor__title {
	top:0;
	right:20px;
	font-size: 8rem;
	color:#071836;
	opacity: 0.1;
	text-transform: uppercase;
	font-weight: bold;
}

.picture__text img, .picture__table img {
	width: 100%;
}
.picture__text.mobile {
	display: none;
}


/* ===== Custom Styles END =====*/