@font-face {
    font-family: 'Geologica';
    src: url('../font/Geologica-Medium.eot');
    src: local('../font/Geologica Medium'), local('../font/Geologica-Medium'),
        url('../font/Geologica-Medium.eot?#iefix') format('embedded-opentype'),
        url('../font/Geologica-Medium.woff2') format('woff2'),
        url('../font/Geologica-Medium.woff') format('woff'),
        url('../font/Geologica-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url('../font/Geologica-Light.eot');
    src: local('../font/Geologica Light'), local('../font/Geologica-Light'),
        url('../font/Geologica-Light.eot?#iefix') format('embedded-opentype'),
        url('../font/Geologica-Light.woff2') format('woff2'),
        url('../font/Geologica-Light.woff') format('woff'),
        url('../font/Geologica-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url('../font/Geologica-ExtraLight.eot');
    src: local('../font/Geologica ExtraLight'), local('../font/Geologica-ExtraLight'),
        url('../font/Geologica-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../font/Geologica-ExtraLight.woff2') format('woff2'),
        url('../font/Geologica-ExtraLight.woff') format('woff'),
        url('../font/Geologica-ExtraLight.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Geologica';
    src: url('../font/Geologica-Regular.eot');
    src: local('../font/Geologica Regular'), local('../font/Geologica-Regular'),
        url('../font/Geologica-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/Geologica-Regular.woff2') format('woff2'),
        url('../font/Geologica-Regular.woff') format('woff'),
        url('../font/Geologica-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
  --color_white:#FFFFFF;
  --color_dark:#40444f;
  --color_gray:#f8fafd;
  --color_alert:#EBF7FF;
  /* --color_blue:#2DBEEC; */
  --color_blue:#114cbc;
 /*  --color_blue2:#0692e5; */
 --color_blue2: #0A38A8;
  --transition100: 100ms ease-in-out;
  --transition300: 300ms ease-in-out;
  
  --placeholder_color: #818181;
  --red: #9C341F;
}
* {padding: 0;	margin: 0; -webkit-tap-highlight-color:transparent;}
*, *:before, *:after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:focus, :active, a:focus, a:active {outline: none;}
input, button, textarea, select {
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
}
button{
	border:none;
	outline:none;
	transition-duration: 0.2s;
}
body {
    font-family: 'Geologica';
    font-size: 16px;
    line-height: 115%;
    font-weight: 300;
    color: var(--color_dark);
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{
	font-weight:400;
	line-height:120%;
}
h1,h2,h3,.h1,.h2,.h3{
	color:var(--color_blue);
}
h2{
	font-size:20px;
}
h3{
	font-size:18px;
}
.modal {
    box-shadow: 0px 0px 27px 0px rgba(162, 162, 162, 0.85);
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    z-index: 2;
    width: 0px;
    overflow: hidden;
    padding: 0px;
    opacity: 0;
    transition: opacity 1s;
    box-sizing: border-box;
	border-radius: 12px;
}
.modal.active {
    opacity: 1;
    width: 100%;
    max-width: 500px;
    min-width: 320px;
    padding: 20px;
}
.karkas{
	display:flex;
	flex-direction:column;
	height: 100vh;
}
footer .footer,
header .header{
	display:flex;
	align-items:center;
	justify-content:space-between;
}
header{
	border-bottom: 1px solid #E2E3E8;
}
header .header{
	padding:10px 0;
}
.header-right,.header-right .icon-container{
	display:flex;
	align-items:center;
	gap:10px;
}
footer{
	background: #12141d;
    /* color: #a1b7bf; */
	 color:#fff;
    padding: 20px 0;
    font-size: 14px;
    line-height: 16px;
	margin-top: auto;
}
.header__logo img{
	max-width:300px;
}


.header__title h1{
	font-size: 16px;
    text-align: center;
}

.request__form input[type="text"] {
    min-height: 50px;
    font-size: 16px;
    width: 100%;
}

.footer-text{
	text-align:center;
}
.green__btn{
    display: inline-block;
	height:50px;
	padding:0 30px;
    text-shadow: .1rem .1rem 0 #70a22c;
    background:#7AC438;
    color: #fff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
	box-shadow: inset 0 -0.2rem 0 #70a22c;
    cursor:pointer;
}
.green__btn:hover{
	background:#7eb631;
}
ul{
	list-style-type:none;
}

.request__form {
    display: flex;
    flex-flow: column;
    gap: 20px;
    align-items: stretch;
    flex-direction: column;
}
.comment{
	display: flex;
    background: linear-gradient(128deg, var(--color_blue2), var(--color_blue));
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .15);
    padding: 40px;
    border-radius: 10px;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}
.comment h4{
	font-size:30px;
}


.default__btn,.white__btn {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    height: 50px;
    padding: 0 30px;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition-duration: 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    cursor: pointer;
}
.default__btn{
	 background: var(--color_blue);
    color: #fff;
}
.white__btn {
	background: #fff;
	color:var(--color_dark);
}
.default__btn:hover{
	    background: var(--color_blue2);
		transition-duration: 0.2s;
}
.white__btn:hover{
	background: var(--color_gray);
	transition-duration: 0.2s;
}

input[type="text"] {
    padding: 0 20px;
    border-radius: 10px;
    border: 1px solid #E2E3E8;
    height: 50px;
    transition-duration: 0.2s;
	font-family: 'Geologica';
	font-weight:100;
}
textarea{
	padding: 20px 20px 10px 20px;
    border-radius: 10px;
    border: 1px solid #E2E3E8;
    height: 120px;
    width: 100%;
    transition: 0.2s;
	font-family: 'Geologica';
	font-weight:100;
}
input[type="text"],textarea{
	font-size: 16px;
}
.icon-container a{
	text-decoration:none;
}
.bottom-all{
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	    gap: 40px;
}
.main,.main .content{
	display:flex;
	flex-direction:column;
	gap:40px;
}
.main{
	margin-top:40px;
	margin-bottom:40px;
}
.tabs__content{
	padding: 30px;
    border: 1px solid #E2E3E8;
	margin-top: -1px;
	border-radius: 0 16px 16px 16px;
}

.tabs__header-link,
.tabs__nav{
	display: flex;
    align-items: center;
    height: 50px;
    font-size:18px;
}
.tabs__nav{
	gap:3px;
}
.tabs__header-link{
	gap:10px;
}
.tabs__content-item:not(.active){
	display:none;
}
.tabs__header-link{
	border-radius: 10px 10px 0 0;
    border: 1px solid #E2E3E8;
    padding: 0 20px;
	cursor: pointer;
	text-wrap-mode: nowrap;
}
.tabs__item:not(.active) a{
	background:var(--color_gray);
	opacity: 1;
	color:var(--placeholder_color);
}
.tabs__item-title{
	margin-bottom:20px;
}
.tabs__item-list{
	display:flex;
	flex-direction:column;
	gap:20px;
	margin-bottom: 20px;
}
.tabs__item-list li{
    display: flex;
    align-items: center;
	gap: 20px;
	font-weight: 400;
}
.agreement{
	display:flex;
	gap:10px;
}
.request__form .login__link,
.request__form .agreement a{
	text-decoration:none;
	color: var(--color_blue);
}


.agreement input {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
}
.agreement input:checked:after{
	content: '';
    position: absolute;
    left: calc(50% - 5px);
    top: calc(50% - 5px);
    width: 10px;
	min-width: 10px;
    border-radius: 2px;
    height: 10px;
	background:var(--color_blue);
}
.agreement input:before{
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    min-width: 18px;
    height: 18px;
    border: 1px solid var(--color_blue);
    border-radius: 2px;
    background-color: #fff;
}
textarea:hover, textarea:focus, input[type="text"]:hover, input[type="text"]:focus {
   /*  background: var(--color_gray); */
   background:#fff;
    transition-duration: 0.2s;
}
.form__header-main{
	display: flex;
    gap: 10px;
    align-items: center;
}
.request.outfitted,.request.are__closed{
	display:flex;
	align-items:center;
	gap: 5px;
}
.form__header-top{
	color: var(--color_blue);
}
.request-number{
	background: var(--color_blue);
    display: inline-flex;
    color: #fff;
    height: 24px;
    min-width: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
}
.tabs{
	position:sticky;
	top:0;
}
.form__header{
	display:flex;
	gap: 10px;
    justify-content: flex-end;
    align-items: center;
	padding: 12px 0;
}
.modal h4{
	 font-size: 30px;
	 margin-bottom: 10px;
}
.modal__closed:after, .modal__closed:before {
    content: '';
    display: block;
    width: 140%;
    left: -20%;
    position: absolute;
    top: 50%;
    height: 2px;
    background: #E2E3E8;
}
.modal__closed:before {
    transform: translateY(-50%) rotate(-45deg);
}
.modal__closed:after {
    transform: translateY(-50%) rotate(45deg);
}
.modal__closed{
	position: absolute;
    top: 30px;
    right: 20px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    cursor: pointer;
    box-sizing: content-box;
    background: transparent;
}
.tabs__item-text span{
	display:flex;
	flex-direction:column;
	gap: 10px;
}
.tabs__item-text span b{
	color: var(--color_blue);
	font-weight: 100;
}
.tabs__item-title span{
	display:flex;
	font-size: 16px;
	color: var(--placeholder_color);
    margin-top: 10px;
    font-weight: 100;
}
.bottom-right{
	background: var(--color_gray);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-direction: column;
}
.bottom-right .form{
	width: 100%;
}
.form-head{
	color: var(--color_blue);
    font-weight: 500;
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 30px;
    text-align: center;
}
.alert{
	background: var(--color_alert);
    padding: 20px;
    border-radius: 16px;
    position: relative;
}
.alert span{
	position: absolute;
    right: 5px;
    top: 5px;
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.tabs__item-text svg{
	min-width:40px;
}
@media (min-width: 992px) {
	.bottom-right{
		min-height:777px;
	}
	.footer-copy{
		text-align:right;
	}
	.header-right{
		justify-content:flex-end;
	}
	.footer-copy,
	.header-right,
	.footer-logo{
		min-width:300px;
	}
}
@media (max-width: 992px) {
	.bottom-all{
	    grid-template-columns: repeat(1, 1fr);
	}
	footer .footer, header .header{
		flex-direction:column;
		gap: 15px;
        text-align: center;
	}
	.bottom-right,
	.tabs__content{
		padding:30px  15px;
	}
	.tabs__header-link{
		        padding: 0 10px;
        font-size: 14px;
	}
	.request__form{
		gap:8px;
	}
	.bottom-all{
		gap:20px;
	}
	h2 {
		font-size: 18px;
	}
}
.tabs__item.active .tabs__header-link{
	border-bottom-color:#fff;
}
.error-field {
    border: 1px solid #e74c3c !important;
    outline: none;
}

.field-error {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 8px;
    line-height: 1.3;
}