/*
Theme Name: Mumbai
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--light-blue: #DDEAF1;
	--blue: #095573;
	--green: #03A66A;
	--turquoise: #0396A6;
}
body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	margin: auto;
	padding: 100px 0 0;
	width: 100%;
}
* {
	outline: none;
	box-sizing: border-box;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
a, .link {
	text-decoration: underline;
	color: var(--blue);
	cursor: pointer;
}
textarea,
select, 
input[type="date"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="password"] {
	width: 100%;
	margin: 0 0 10px;
	padding: 12px 18px;
	border-radius: 15px;
	border: solid 1px #aaa;
	background: #fff;
	font-weight: 400;
	font-size: 16px;
}
input[type="checkbox"] {
	transform: scale(1.3, 1.3);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
h1 {
	font-size: 48px;
	font-weight: 400;
	line-height: 130%;
	color: var(--blue);
	text-transform: uppercase;
	margin: 30px 0 30px;
}
h2, .h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 110%;
	color: var(--blue);
	text-transform: uppercase;
	margin: 30px 0 30px;
}
h3, .h3 {
	font-size: 32px;
	font-weight: 500;
	line-height: 110%;
	color: var(--blue);
	margin: 30px 0 30px;
}
@media screen and (max-width:  950px){
	h1 {
		font-size: 30px;
		margin: 15px 0 15px;
	}
	h2, .h2 {
		font-size: 24px;
		margin: 15px 0 15px;
	}
}
b, strong {
	font-weight: 600;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
ins {
	text-decoration: none;
}
p {
	margin: 20px 0;
}
.clearfix {
	clear: both;
}
.left {
	text-align: left;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.hidden {
	display: none !important;
}
.nowrap {
	white-space: nowrap;
}
.overflow {
	max-width: 100%;
	overflow-x: auto;
}
.relative {
	position: relative;
}

.alignleft {
	float: left;
	max-width: 45%;
	margin: 0 20px 20px 0;
}
.alignright {
	float: right;
	max-width: 45%;
	margin: 0 0 20px 20px;
}
.aligncenter {
	display: block;
	margin: auto;
}
@media (max-width: 950px){
	.alignleft,
	.alignright {
		float: none;
		max-width: 100%;
		margin: 0 0 20px 0;
	}
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.flex-2 > * {
	width: 49%;
}
.flex-3 > * {
	width: 32%;
}
.flex-4 > * {
	width: 24%;
}
@media screen and (min-width: 950px){
	.mobile-only {
		display: none !important;
	}
}
@media screen and (max-width: 950px){
	.desktop-only {
		display: none !important;
	}
	.flex-2 > *,
	.flex-3 > *,
	.flex-4 > * {
		width: 100%;
	}
}
.flex-top {
	align-items: flex-start;
}
.flex-left {
	justify-content: flex-start;
}
.flex-right {
	justify-content: flex-end;
}
.flex-center {
	justify-content: center;
}
.flex-stretch {
	align-items: stretch;
}
.flex-nowrap {
	flex-wrap: nowrap;
}

.inline {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px 10px 0;
}

.table {
	display: table;
	width: 100%;
}
.table tr,
.table > * {
	display: table-row;
}
.table tr td,
.table > * > * {
	display: table-cell;
	vertical-align: top;
	padding: 6px;
	text-align: left;
}
@media screen and (max-width:  600px){
	.table {
		display: block;
	}
	.table tr,
	.table > * {
		display: block;
	}
	.table tr td,
	.table > * > * {
		display: block;
	}	
}

.container {
	width: 100%;
	max-width: 1328px;
	margin: auto;
	padding: 0 20px;
}

input[type="submit"],
.button {
	font-size: 16px;
	font-weight: 700;
	display: inline-block;
	background: var(--turquoise);
	padding: 12px 20px;
	border-radius: 25px;
	border: none;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}
input[type="submit"]:hover,
.button:hover {
	background: #fff;
	color: var(--blue);
}

header {
	background: #fff;
	padding: 30px 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	box-shadow: 1px 13px 8px 0px rgba(34, 60, 80, 0.2);
}
header .menu {
	width: 75%;
}
header .menu a {
	display: inline-block;
	margin: 0 40px;
	text-decoration: none;
	text-transform: uppercase;
}
header .menu a:hover {
	color: #000;
}
header .phone {
	margin: 0 0 0 10%;
	width: 300px;
	text-align: right;
}
header .phone a {
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
}
@media screen and (max-width: 950px){
	header .menu-btn {
		font-size: 32px;
		color: #095573;
		cursor: pointer;
	}
	header .menu {
		display: none;
		padding: 20px;
		width: 100%;
		margin: 0;
	}
	header .menu.opened {
		display: block;
	}
	header .menu a {
		display: block;
		width: 100%;
		margin: 20px 0;
	}
	header .phone {
		margin: 0;
		width: 100%;
	}
}

.bread-crumbs a {
	text-decoration: none;
}
.bread-crumbs ul {
	margin: 20px 0;
	padding: 0;
}
.bread-crumbs ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline-block;
	font-size: 16px;
	color: var(--blue);
}
.bread-crumbs ul li:not(:last-child):after {
	margin: 0;
	padding: 0 8px;
	display: inline-block;
	content: "/";
}
.bread-crumbs ul li:last-child {
	cursor: text;
	pointer-events: none;
}

.home-first {
	background-color: #737373;
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 100px 30px 20px;
	text-align: center;
	margin: -30px 0 80px;
}
.home-first h1 {
	color: #fff;
	font-weight: 700;
}
.home-first ul {
	padding: 0;
}
.home-first ul li {
	display: inline-block;
	border-radius: 40px;
	background: #fff;
	font-size: 20px;
	font-weight: 500;
	color: var(--blue);
	padding: 16px 36px;
	margin-bottom: 15px;
}
.home-first a {
	display: inline-block;
	background: var(--turquoise);
	color: #fff;
	font-weight: 700;
	margin: 60px 0 10px;
	padding: 13px 25px 12px;
	border-radius: 25px;
	text-transform: uppercase;
	text-decoration: none;
}
.home-first a:hover {
	background: #fff;
	color: var(--turquoise);
}
@media screen and (max-width: 950px){
	.home-first {
		padding: 16px 16px;
	}
	.home-first h1 {
		font-size: 25px;
	}
	.home-first ul li {
		font-size: 14px;
		padding: 10px 10px 9px;
		margin-bottom: 6px;
	}
}

.section-content .text {
	padding: 40px;
	background: var(--light-blue);
	border-radius: 25px;
}
.section-content .text h1,
.section-content .text h2 {
	margin-top: 0;
}
@media screen and (min-width: 950px){
	.section-content .text {
		padding: 30px;
	}
	.section-content .advantages .item {
		position: relative;
		height: 255px;
		margin-top: 25px;
	}
	.section-content .advantages .item h3 {
		position: absolute;
		top: 20px;
		left: 40px;
		right: 40px;
		text-transform: uppercase;
	}
	.section-content .advantages .item p {
		position: absolute;
		bottom: 20px;
		left: 40px;
		right: 40px;
	}
}
@media screen and (max-width: 950px){
	.section-content .advantages .item {
		margin-top: 20px;
		padding: 10px 30px;
	}
	.section-content .advantages .item h3 {
		font-size: 24px;
	}
}

.section-content2 {
	margin: 10px auto;
}
.section-content2 h2 {
	font-size: 32px;
	color: var(--green);
	margin: 10px 0;
}
.section-content2 h3 {
	font-size: 24px;
	color: #000;
	margin: 10px 0 30px;
}
.section-content2 img {
	width: 100%;
	max-width: 440px;
}
.section-content2 .text {
	max-width: calc(100% - 470px);
}
@media screen and (max-width: 950px){
	.section-content2 {
		margin-bottom: 100px;
	}
	.section-content2 h2 {
		font-size: 26px;
	}
	.section-content2 h3 {
		font-size: 20px;
	}
	.section-content2 .text {
		max-width: 100%;
	}
}

.section-cases .item {
	padding: 30px;
	background: var(--light-blue);
	border-radius: 25px;
	width: 655px;
	margin: 15px 15px 0 0;
	font-size: 14px;
}
.section-cases .item h3 {
	font-size: 24px;
	font-weight: 500;
	text-transform: uppercase;
	color: #000;
	margin: 0;
}
.section-cases .arrow {
	display: inline-block;
	width: 60px;
	height: 60px;
	margin: 0 10px;
	background-size: contain;
	background-repeat: no-repeat;
	padding: 0 10px 10px 0;
}
.section-cases .arrow-prev {
	background-image: url(images/arrow_prev.svg);
}
.section-cases .arrow-next {
	background-image: url(images/arrow_next.svg);
}
.section-cases .arrow-prev:hover {
	background-image: url(images/arrow_prev_on.svg);
}
.section-cases .arrow-next:hover {
	background-image: url(images/arrow_next_on.svg);
}
@media screen and (max-width: 950px){
	.section-cases .item h3 {
		font-size: 20px;
		font-weight: 500;
		text-transform: uppercase;
		color: #000;
		margin: 0;
	}
	.section-cases .item {
		margin-right: 0;
	}
}

.section-contact {
	margin: 40px auto;
}
.section-contact a {
	border: solid 2px var(--turquoise);
	border-radius: 40px;
	padding: 10px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	margin-bottom:10px;
}
.section-contact a:hover {
	background: var(--turquoise);
	color: #fff;
}
.section-contact .contact-whatsapp:before {
	content: url(images/icon_whatsapp.svg);
	margin-right: 10px;
}
.section-contact .contact-telegram:before {
	content: url(images/icon_telegram.svg);
	margin-right: 10px;
}
.section-contact .contact-whatsapp:hover:before {
	content: url(images/icon_whatsapp_on.svg);
}
.section-contact .contact-telegram:hover:before {
	content: url(images/icon_telegram_on.svg);
}
@media screen and (max-width: 950px){
}

.section-faq {
	margin: 100px auto;
}
.section-faq .item {
	margin-bottom: 10px;
}
.section-faq .item .h3 {
	padding: 25px 60px 25px 30px;
	background: var(--light-blue);
	border-radius: 25px;
	font-size: 18px;
	font-weight: 400;
	color: #000;
	margin: 0;
	position: relative;
	cursor: pointer;
}
.section-faq .item .h3:after {
	content: url(images/icon_plus.svg);
	position: absolute;
	right: 20px;
	top: 5px;
	bottom: 5px;
	height: 60px;
	margin: auto;
}
.section-faq .item .h3.opened:after {
	content: url(images/icon_minus.svg);
}
.section-faq .item .text {
	padding: 10px 30px;
	display: none;
}
@media screen and (max-width: 950px){
	.section-faq .item .h3 {
		padding: 25px 60px 25px 20px;
	}
	.section-faq .item .h3:after {
		right: 10px;
	}
}

.contact-block .container {
	margin: 100px auto;
	background: var(--turquoise);
	border-radius: 25px;
	color: #fff;
	padding: 50px 20px;
}
.contact-block .container .column1 {
	max-width: 500px;
	margin: 0 50px;
}
.contact-block .container .column2 {
	max-width: 500px;
	margin: 0 20px;
	padding: 0 50px;
}
.contact-block .container h2 {
	color: #fff;
	margin: 0;
}
.contact-block .container p {
	text-align: left;
	margin: 10px 0;
	color: #fff;
}
.contact-block .button {
	background: #fff;
	color: var(--blue);
}
.contact-block .button:hover {
	background: var(--blue);
	color: #fff;
}
@media screen and (max-width: 950px){
	.contact-block {
		padding: 0 20px;
	}
	.contact-block .container {
		padding: 40px 10px;
	}
	.contact-block .container .column1 {
		width: 100%;
		margin: 0 20px 20px;
	}
	.contact-block .container .column2 {
		width: 100%;
		margin: 0 20px;
		padding: 0;
	}
}

footer {
	background: #00161E;
	color: #fff;
	padding: 40px 0;
}
footer .h3 {
	font-size: 20px;
	color: #fff;
}
footer .column2 a {
	color: #fff;
}
footer .column2 .phone a {
	display: inline-block;
	font-weight: 700;
	font-size: 24px;
	text-decoration: none;
	color: #fff;
	margin: 10px 0 30px;
}
footer .column3 {
	width: 400px;
}
footer .column3 a {
	display: inline-block;
	width: 168px;
	height: 51px;
	margin: 5px;
	background-size: contain;
	background-repeat: no-repeat;
	padding: 0 10px 10px 0;
}
footer .column3 a.button-whatsapp {
	background-image: url(images/button_whatsapp.svg);
}
footer .column3 a.button-telegram {
	background-image: url(images/button_telegram.svg);
}
footer .column3 a.button-yandex {
	background-image: url(images/button_yandex.svg);
}
footer .column3 a.button-whatsapp:hover {
	background-image: url(images/button_whatsapp_on.svg);
}
footer .column3 a.button-telegram:hover {
	background-image: url(images/button_telegram_on.svg);
}
footer .column3 a.button-yandex:hover {
	background-image: url(images/button_yandex_on.svg);
}
footer .copyright {
	margin: 40px auto 0;
}
footer .copyright p {
	text-align: center;
}
@media screen and (max-width: 950px){
	footer .column1,
	footer .column2,
	footer .column3 {
		width: 100%;
		text-align: center;
		margin-bottom: 40px;
	}
	footer .copyright {
		margin: 0;
	}
}

.custom-checkbox {
	margin: 15px 0;
}
.custom-checkbox input {
	display: none;
}
.custom-checkbox .checkbox {
	width: 25px;
	height: 25px;
	background-image: url(images/checkbox_off.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 10px;
}
.custom-checkbox.error-block .checkbox {
	background-image: url(images/checkbox_error.svg);
}
.custom-checkbox .text {
	width: calc(100% - 80px);
}
.custom-checkbox input:checked ~ .checkbox {
	background-image: url(images/checkbox_on.svg);

}
.custom-checkbox .custom-checkbox-alt {
	width: 90%;
	text-align: left;
}
@media screen and (max-width: 950px){
	.custom-checkbox .custom-checkbox-alt {
		width: 80%;
	}
}

.modal-mask {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 190;
	width: 100%;
	background: rgba(21, 22, 22, 0.7);
	display: none;
}
.modal-mask > div {
	position: absolute;
	top: 100px;
	right: 0;
	left: 0;
	z-index: 200;
	margin: auto;
	width: 90%;
	max-width: 600px;
	height: auto;
	background: #fff;
	border-radius: 25px;
	text-align: center;
	padding: 30px;
	box-shadow: 0px 0px 15px 10px rgba(0,0,0,.5);
}
.modal-mask > div .close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 200;
	cursor: pointer;
	color: #fff;
}
.modal-mask > div h2 {
	margin: 0;
}
.modal-mask > div p {
	margin: 25px 0 10px;
	text-align: left;
}
@media screen and (max-width: 700px){
	.modal-mask > div form .form-fields div {
		width: 100%;
	}
}

.error-input {
	border: solid red !important;
}

.cookie-notice {
	position: fixed;
	bottom: 0;
	z-index: 150;
	width: 100%;
	background: var(--light-blue);
	padding: 20px;
	font-weight: 500;
	font-size: 16px;
	box-shadow: 1px -5px 8px 0px rgba(34, 60, 80, 0.2);
}

.fly-button {
	position: fixed;
	bottom: 50px;
	right: 20px;
	z-index: 200;
	background-image: url(images/phone.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 60px;
	height: 60px;
	display: none;
}
@media screen and (max-width: 950px){
	.fly-button {
		display: block;
	}
}

.time-wrap {
	position: relative;
	margin-bottom: 15px;
	text-align: left;
}
.time-wrap input {
	margin:0;
}
.time-wrap > div {
	background: #fff;
	position: absolute;
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
	left: 0;
	top: 40px;
	z-index: 11;
	box-shadow: 1px 2px 8px 4px rgba(34, 60, 80, 0.2);
	display: none;
}
.time-wrap > div div {
	padding: 10px 20px;
	cursor: pointer;
}
.time-wrap > div div:hover {
	background: var(--light-blue);
}
.time-wrap span {
	background-image: url(images/icon-clock.svg);
	position: absolute;
	width: 24px;
	height: 24px;
	right: 15px;
	z-index: 10;
	top: 0;
	bottom: 0;
	margin: auto;
	cursor: pointer;
}