/* ===== 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: rgb(32, 144, 210);
	--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%; background: #f3f5ff;}
table tr {border: 1px solid #ddd;}
table th, table td {padding: 1rem;text-align: center;border-right: 1px solid #ccc;}
table th {color:#fff;background: var(--main-color);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.3em;}

.input-wrapper input, .input-wrapper textarea {
	display:block;
	font-size: 1.8rem;
	font-weight: normal;
	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: normal;
	display:inline-flex;
	padding:1.3em 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;
}

.show-hidden-block span:last-child, .show-hidden-block.active span:first-child  {display:none;}
.show-hidden-block.active span:last-child {display:block;}

/* Icons */
.icon {display:block;}

.arrow-icon {
	width: 1rem;
	height: 4rem;
	color:#fff;
}
.sm-arrow-icon {
    width: 4rem;
    height: 2.6rem;
    color: var(--main-color);
}
.icon-phone, .icon-location, .icon-envelope {
    width: 2.5rem;
    height: 2.5rem;
    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(23px, 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 */
}

/* 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;
}

/* Overlay for image */
.img--overlay {
	position: relative;
}
.img--overlay::before {
	content:'';
	display:block;
	position: absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background: rgba(0,0,0,0.3);
}

/* 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 .container {
	max-width: 100%;
	padding: 0 5rem;
}
.header {
	padding: 2rem 0;
	background: #fff;
}
.logo {
	display: block;
	width: 20rem;
}
.logo img {
	width: 100%;
}
.contact__item__icon {
	flex:none;
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 50%;
	border:1px solid var(--main-color);
	margin-right:1rem;
}
.contact__item {
    font-size: 2rem;
    font-weight: bold;
}
.hero {
	overflow: hidden;
	padding: 20rem 0 15rem;
	background:url(../images/main.webp) no-repeat center center / cover;
}
.hero::before {
	content:'';
	position: absolute;
	top:0;
	left:0;
	height:100%;
	width: 50%;
	background: linear-gradient(90deg, rgba(24,183,155,0.8), rgba(11,108,187,0.8));
}
.decor__patern {
    position: absolute;
    width: 110rem;
    height: 110rem;
    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.15;
    z-index: 0;
}
.main__subtitle {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.7em;
}
.main__title {
    display: block;
    font-size: 10rem;
    line-height: 1.2;
    margin-bottom: 0.2em;
	color: #fff;
}
.main__title span:first-child {
	font-size: 4rem;
}
.stroke--text {
    color:#fff;
	text-shadow: 3px 3px 5px #585858;
    margin-left: 2em;
}
.hero__content p {
	font-size: 2.4rem;
	width: 60%;
	color:#fff;
}
.fs__adv {
	font-size: 2.8rem;
}
.fs__adv::before {
	content:'';
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: rgb(255,241,69);
	margin-right:1rem;
}
.fs__adv:nth-child(2) {
	margin-left:5rem;
}
.fs__adv:last-child {
	margin-left:10rem;
}
.menu li {
	margin: 0 1em;
}
.menu li a {
	text-transform: uppercase;
	color: var(--main-color);
}
.menu li a:hover {
	color:gray;
}
.lang {
	margin-right:5rem;
}
.lang li {
	margin:0 0.5em;
}
.lang li a {
	font-size: 2rem;
	font-weight: bold;
	color:var(--main-color);
}
.lang li a.current {
	color:silver;
	pointer-events: none;
}
.decor__title {
    display: block;
    top: 0;
    -webkit-text-stroke: 1px var(--main-color);
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 5vw;
    opacity: 0.3;
}
.decor__title.left {
	left: 20px;
}
.decor__title.right {
	right: 20px;
}
.section-1 .img__area {
    height: 100%;
}
.section-1 .img__area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}
.about__content {
    padding: 5rem 0 5rem 5rem;
}
.about::before {
    content: '';
    width: 30%;
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--main-color);
    left: 0;
    position: absolute;
}
.about__title {
    top: 50%;
    transform: translateY(-50%);
    left: 4rem;
    display: block;
    z-index: 1;
}
.section-1::before {
    content: '';
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f1f1f1;
    position: absolute;
}
.advantages__title {
	display: block;
	color: var(--main-color);
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
.advantages__card__descr {
	margin-top:1.5rem;
}
.advant__img:last-child {
    bottom: -8rem;
    left: 0;
    border: 0.5rem solid #fff;
}
.advant__img.img--overlay::before {
	background: var(--main-color);
	opacity: 0.5;
}
.advant__img img {
    aspect-ratio: 1.2;
    object-fit: cover;
    width: 100%;
}
.section-2 {
	background: #f1f1f1;
	overflow: hidden;
}
.section-2 .decor__patern, .contact__section .decor__patern {
    background: linear-gradient(90deg, #fff, var(--main-color) 30%, transparent 30%, transparent 100%);
	background-size: 6px;
}
.service__wrap {
	gap: 4rem 3rem;
}
.action__content__icon {
    margin-right: 2rem;
    border-radius: 50%;
    width: 10rem;
    height: 10rem;
    flex: none;
    border: 1px solid #fff;
    padding: 3px;
}
.chat-icon {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 93%;
    height: 93%;
}
.chat-icon img {
    width: 50%;
}
.action__section {
    padding: 7rem 0;
	background: linear-gradient(90deg, rgba(24, 183, 155, 1), rgba(11, 108, 187, 1));
}
.action__section p {
	color:#fff;
}
.tabs {
    box-shadow: 3px 3px 30px #dfdfdf;
}
.tab__btn {
    display: flex;
    justify-content: flex-end;
    padding: 1.7rem 2rem;
    text-align: right;
    font-weight: bold;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
    overflow: hidden;
}
.tab__btn.active::after {
    transform: none;
}
.tab__btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0.5rem;
    background: var(--main-color);
    transform: translateY(-100%);
}
.tab__btn:hover::after {
	transform: translateY(0);
	transition: all 0.25s;
}
.mobile__tab__btn.active {
    color: #fff;
    background: var(--main-color);
}
.mobile__tab__btn {
    display: flex;
    justify-content: center;
    font-size: 15px;
    text-align: center;
    padding: 1.5rem 1rem;
    font-weight: bold;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.price__card {
	box-shadow: 2px 2px 10px #cdcdcd;
	padding:1rem;
	background: #fff;
	height: 100%;
}
.price__card__descript {
	padding:1rem 0;
}
.price__card__title {
	font-size: 2rem;
	display: block;
}
.testimonials__row {
    padding: max(7vw, 50px) 0;
}
.testimonials__bg {
	height: 100%;
	top:0;
	left:0;
}
.testimonials__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.testimonials__content {
    padding: 5rem;
    border-radius: 20px;
    background: #fff;
    box-shadow: 10px 10px 30px silver;
}
.testimonials__bg::before {
	content:'';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(32, 144, 210, 0.3);
}
.contact__body .contact__item__text {
	font-weight: 300;
	font-size: 3rem;
}
.contact__section {
	overflow: hidden;
}
.map__area {
	height: 45rem;
}
.footer__bottom {
    padding: 2rem 0;
	background: linear-gradient(90deg, rgba(24, 183, 155, 1), rgba(11, 108, 187, 1));
}
.copyright {
    display: block;
    text-align: center;
    font-size: 1.4rem;
	color:#fff;
}
.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;
}
.mobile-menu__content .contact__item {
	text-align: center;
	font-size: 15px;
	display: block;
}