/*-------------------reset----------------------*/
html, body, div, span, h1, h2, h3, h4, h5, h6, p,
a, em, img, small, strike, sub, sup,
b, u, i, center,
dl, dt, dd, ol, ul, li,
form, label, table, caption, tr, th, td,
article, figure, figcaption, footer, header,
menu, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* { 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*-------------------reset end----------------------*/

/*-------------------global presets end----------------------*/
body {
    /* font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "slnt" 0; */

    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    /* font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal; */
}

.no_scroll {
    overflow: hidden;
}

.wrap_h2 {
    display: flex;
    justify-content: center;
    position: relative;
}
.wrap_h2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #414666;
    left: 0;
    top: calc(50% - 1px);
}
h2,
.h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    padding: 0 20px;
    background: white;
    position: relative;
    text-transform: uppercase;
    color: #414666;
}
@media only screen and (min-width:767px) {
    .wrap_h2 {
        justify-content: flex-start;
    }
    h2,
    .h2 {
        margin-left: 50px;
        font-size: 36px;
    }
}
@media only screen and (min-width:960px) {
    h2,
    .h2 {
        margin-left: 180px;
    }
}

.wrap {
    width:100%;
    max-width:1340px;
    margin-left:auto;
    margin-right:auto;
}

/*-------------------global presets end----------------------*/


/*-------------------header----------------------*/
header .wrap {
    padding: 15px;
    display: flex;
    justify-content: space-between;
}
header .wrap .logo {
    display: flex;
    align-items: center;
}
header .wrap .logo a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
}
header .wrap .logo a img {
    width: 54px;
    margin-right: 10px;
}
header .wrap nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header .wrap nav .menu_icon div {
    width: 30px;
    height: 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header .wrap nav .menu_icon div span {
    background: #414666;
    width: 100%;
    height: 3px;
    border-radius: 3px;
}
header .wrap nav .menu_ul {
    display: none;
}
header .wrap nav.open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #345DAF;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .wrap nav.open .menu_icon {
    display: none;
}
header .wrap nav.open .menu_close {
    position: absolute;
    content: "";
    width: 30px;
    height: 21px;
    top: 32px;
    right: 15px;
    /* background: red; */
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header .wrap nav.open .menu_close > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
header .wrap nav.open .menu_close > div span {
    background: white;
    display: inline-block;
    width: 100%;
    height: 3px;
    border-radius: 3px;
}
header .wrap nav.open .menu_close > div span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
header .wrap nav.open .menu_close > div span:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg);
}
header .wrap nav.open .menu_ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
header .wrap nav .menu_ul li a {
    font-size: 22px;
    /* font-weight: 500; */
}
header .wrap nav.open .menu_ul li a {
    color: white;
    text-decoration: none;
}
header .wrap .contacts {
    display: flex;
    display: none;
}
header .wrap .contacts .wrap_tel {
    text-align: right;
}
header .wrap .contacts .wrap_tel .tel {
    /* font-size: 18px; */
    line-height: 1.4;
    font-weight: 700;
    color: #345DAF;
    text-decoration: none;
}
header .wrap .contacts .wrap_tel .tel:hover {
    /* color: #345DAF; */
    text-decoration: underline;
}
header .wrap .contacts .backcall {
    padding: 10px 20px;
    background: #FCFF27;
    color: black;
    text-decoration: none;
    border: 1px solid #414666;
    border-radius: 3px;
    display: none;
    transition: 0.3s;
    cursor: pointer;
}
header .wrap .contacts .backcall:hover {
    /* background: #B4FF27; */
    box-shadow: 3px 3px 5px lightgray;
}
@media only screen and (min-width:767px) {
    header .wrap nav .menu_icon {
        display: none;
    }
    header .wrap nav .menu_ul {
        display: flex;
        gap: 30px;
    }
    header .wrap nav .menu_ul li a {
        text-decoration: none;
        color: black;
        font-size: 22px;
        text-transform: uppercase;
        font-weight: 600;
        transition: 0.2s;
    }
    header .wrap nav .menu_ul li a:hover {
        color: #345DAF;
    }
}
@media only screen and (min-width:960px) {
    header .wrap .contacts {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
}
@media only screen and (min-width:1100px) {
    header .wrap .contacts .backcall {
        display: block;
        margin-right: 20px;
    }
}
/*-------------------header end----------------------*/

/*-------------------main----------------------*/
.main {
    background: linear-gradient(to right,rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url(../img/bg_main2_.jpg) center center no-repeat;
    background-size: cover;
}
.main .wrap {
    padding: 60px 15px 60px 40px;
}
.main .wrap .area {
    font-size: 18px;
    color: #FCFF27;
}
.main .wrap h1 {
    margin-top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: white;
    max-width: 500px;
    line-height: 1.3;
}
.main .wrap h1 span {
    display: inline-block;
    background: #FCFF27;
    color: black;
    padding: 0 10px 3px;
    line-height: 1.2;
    border-radius: 3px;
}
.main .wrap ul {
    margin-top: 30px;
    list-style: disc;
    padding-left: 20px;
}
.main .wrap ul li {
    color: white;
    margin-bottom: 10px;
}
.main .wrap ul li:last-child {
    margin-bottom: 0;
}
.main .wrap ul li::marker {
    color: #FCFF27;
}
.main .wrap .consult {
    border: 1px solid #FCFF27;
    padding: 11px 30px;
    text-decoration: none;
    color: white;
    display: inline-block;
    margin-top: 40px;
    border-radius: 3px;
    transition: 0.3s;
}
.main .wrap .consult:hover {
    background: #FCFF27;
    color: black;
}
@media only screen and (min-width:767px) {
    .main .wrap {
        padding: 130px 64px;
    }
    .main .wrap .area {
        font-size: 28px;
    }
    .main .wrap h1 {
        margin-top: 30px;
        font-size: 50px;
        max-width: 800px;
    }
    .main .wrap h1 span {
        padding: 0 20px 7px;
    }
    .main .wrap ul li {
        font-size: 18px;
    }
    .main .wrap .consult {
        font-size: 18px;
        margin-top: 60px;
    }
}
/*-------------------main end----------------------*/

/*-------------------zakaz----------------------*/
.zakaz {
    background: #eee;
}
.zakaz .wrap {
    padding: 60px 15px 45px;
}
.zakaz .wrap .h2 {
    background: #eee;
}
.zakaz .wrap .wrap_content {
    margin-top: 45px;
}
.zakaz .wrap .wrap_content .item {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
}
.zakaz .wrap .wrap_content .item:last-child {
    margin-bottom: 0;
}
.zakaz .wrap .wrap_content .item h3 a {
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: black;
}
.zakaz .wrap .wrap_content .item h3 a:hover {
    color: #345DAF;
}
.zakaz .wrap .wrap_content .item .img {
    margin-top: 20px;
}
.zakaz .wrap .wrap_content .item .img.three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}
.zakaz .wrap .wrap_content .item .img a {
    transition: 0.3s;
}
.zakaz .wrap .wrap_content .item .img.three a {
    display: inline-block;
    aspect-ratio: 1/1;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.zakaz .wrap .wrap_content .item .img a:hover {
    box-shadow: 3px 3px 5px lightgray;
}
.zakaz .wrap .wrap_content .item .img a img {
    width: 100%;
    height: auto;
    display: block;
}
.zakaz .wrap .wrap_content .item .arrow {
    text-align: center;
    margin-top: 30px;
}
.zakaz .wrap .wrap_content .item .arrow a {
    display: inline-block;
    width: 101px;
    height: 16px;
    background: url(../img/icon_arrow.svg) no-repeat;
    background-size: contain;
    transition: 0.3s;
}
.zakaz .wrap .wrap_content .item .arrow a:hover {
    background: url(../img/icon_arrow_color.svg) no-repeat;
    background-size: contain;
}
@media only screen and (min-width:767px) {
    .zakaz .wrap {
        padding: 90px 15px;
    }
    .zakaz .wrap .wrap_content {
        margin-top: 60px;
    }
}
@media only screen and (min-width:960px) {
    .zakaz .wrap .wrap_content .item {
        display: grid;
        grid-template-columns: 80% 20%;
        grid-template-areas: 
        "h3 h3"
        "img arrow";
        padding: 40px 60px 60px;
    }
    .zakaz .wrap .wrap_content .item h3 {
        grid-area: h3;
    }
    .zakaz .wrap .wrap_content .item .img {
        grid-area: img;
    }
    .zakaz .wrap .wrap_content .item .arrow {
        grid-area: arrow;
        margin-top: 0;
    }
    .zakaz .wrap .wrap_content .item .arrow {
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/*-------------------zakaz end----------------------*/

/*-------------------zakaz item_in----------------------*/
.zakaz .wrap .wrap_content .item_in {
    background: white;
    margin-bottom: 30px;
}
.zakaz .wrap .wrap_content .item_in:last-child {
    margin-bottom: 0;
}
.zakaz .wrap .wrap_content .item_in .wrap_h3 {
    padding: 30px 30px 10px;
    text-align: center;
}
.zakaz .wrap .wrap_content .item_in .wrap_h3 h3 {
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
}
.zakaz .wrap .wrap_content .item_in .img {
    margin-top: 20px;
}
.zakaz .wrap .wrap_content .item_in .img img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.zakaz .wrap .wrap_content .item_in .in {
    text-align: center;
    margin-top: 25px;
    font-size: 18px;
}
.zakaz .wrap .wrap_content .item_in .wrap_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 20px 15px 10px;
}
/* .zakaz .wrap .wrap_content .item_in .wrap_links a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #FCFF27;
    background: rgba(252, 255, 39, 0.15);
    color: black;
    text-decoration: none;
    transition: 0.3s;
}
.zakaz .wrap .wrap_content .item_in .wrap_links a:hover {
    background: #FCFF27;
} */
.zakaz .wrap .wrap_content .item_in .wrap_links a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 3px;
    border: 1px solid #345DAF;
    background: rgba(52, 93, 175, 0.15);
    color: black;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}
.zakaz .wrap .wrap_content .item_in .wrap_links a:hover {
    background: #345DAF;
    color: white;
}

.zakaz .wrap .wrap_content .item_in .sub_item {
    padding: 45px 15px;
    border-bottom: 1px solid lightgray;
}
.zakaz .wrap .wrap_content .item_in .sub_item:last-child {
    /* padding: 45px 15px 0; */
    border-bottom: none;
}
.zakaz .wrap .wrap_content .item_in .sub_item h4 {
    padding-left: 50px;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}
.zakaz .wrap .wrap_content .item_in .sub_item h4.single {
    text-align: center;
    padding-left: 0;
}
.zakaz .wrap .wrap_content .item_in .sub_item h4.left {
    text-align: center;
    padding-left: 0;
}
.zakaz .wrap .wrap_content .item_in .sub_item h4 span {
    position: absolute;
    content: "";
    top: -6px;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FCFF27;
    display: flex;
    justify-content: center;
    align-items: center;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .img {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .img img {
    max-height: 320px;
    object-fit: contain;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .desc {
    padding-top: 15px;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .desc .parameters {
    font-weight: 700;
    margin: 30px 0 10px;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .desc table {
    width: 100%;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .desc table tr:nth-child(even) {
    background: #f5f5f5;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .desc table tr td {
    padding: 7px 10px;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .desc table tr td:nth-child(1) {
    width: 60%;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .desc table tr td:nth-child(2) {
    width: 40%;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .desc table tr td span {
    font-weight: 700;
}
.zakaz .wrap .wrap_content .item_in .sub_item .sub_content .desc hr {
    margin: 20px 0;
    background: #414666;
    border: none;
    height: 1px;
}
@media only screen and (min-width:767px) {
    .zakaz .wrap .wrap_content .item_in {
        padding: 30px;
    }
    .zakaz .wrap .wrap_content .item_in .wrap_h3 {
        padding: 0;
    }
    .zakaz .wrap .wrap_content .item_in .in {
        margin-top: 35px;
        font-size:20px;
    }
    .zakaz .wrap .wrap_content .item_in .wrap_links {
        padding: 30px 15px;
    }

    .zakaz .wrap .wrap_content .item_in .sub_item h4.single {
        text-align: left;
        padding-left: calc(45% + 30px);
    }
    .zakaz .wrap .wrap_content .item_in .sub_item h4.left {
        text-align: left;
        /* padding-left: calc(45% + 30px); */
    }
    .zakaz .wrap .wrap_content .item_in .sub_item .sub_content {
        display: flex;
        gap: 50px;
        padding-top: 30px;
    }
    .zakaz .wrap .wrap_content .item_in .sub_item .sub_content .img {
        width: 45%;
        padding-left: 50px;
        margin-top: 0;
    }
    .zakaz .wrap .wrap_content .item_in .sub_item .sub_content .img > div {
        aspect-ratio: 1/1;
        width: 100%;
        max-width: 320px;
    }
    .zakaz .wrap .wrap_content .item_in .sub_item .sub_content .img > div img {
        object-fit: contain;
    }
    .zakaz .wrap .wrap_content .item_in .sub_item .sub_content .desc {
        width: 55%;
        padding-top: 0;
    }
    .zakaz .wrap .wrap_content .item_in .sub_item {
        padding: 30px 15px;
        border-bottom: 1px solid lightgray;
    }
    .zakaz .wrap .wrap_content .item_in .sub_item:last-child {
        padding-bottom: 0;
    }
}
@media only screen and (min-width:960px) {
    .zakaz .wrap .wrap_content .item_in {
        padding: 40px 60px 60px;
    }
    .zakaz .wrap .wrap_content .item_in h3 {
        grid-area: h3;
    }
    .zakaz .wrap .wrap_content .item_in .img {
        grid-area: img;
    }
    .zakaz .wrap .wrap_content .item_in .arrow {
        grid-area: arrow;
        margin-top: 0;
    }
    .zakaz .wrap .wrap_content .item_in .arrow {
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/*-------------------zakaz item_in end----------------------*/

/*-------------------links----------------------*/
.links .wrap {
    padding: 60px 15px;
}
.links .wrap > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    /* max-width: 860px; */
    margin: 0 auto;
}
.links .wrap > div a {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #345DAF;
    text-decoration: none;
    color: black;
    background: rgba(52, 93, 175, 0.15);
    border-radius: 3px;
    transition: 0.25s;
}
.links .wrap > div a:hover {
    background: #345DAF;
    color: white;
}
@media only screen and (min-width:767px) {
    .links .wrap {
        padding: 90px 0;
    }
    .links .wrap > div {
        /* gap: 30px; */
    }
    .links .wrap > div a {
        font-size: 20px;
        /* padding: 12px 30px; */
    }
}

/*-------------------links end----------------------*/

/*-------------------uslugi----------------------*/
.uslugi {
    background: #eee;
    z-index: -1;
}
.uslugi .wrap {
    padding: 45px 0 0;
}
.uslugi .wrap .h2 {
    background: #eee;
}
.uslugi .wrap .wrap_content {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 45px;
}
.uslugi .wrap .wrap_content figure {
    width: 100%;
    padding: 30px;
    color: white;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}
.uslugi .wrap .wrap_content figure .bg {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    transition: 0.5s;
}
.uslugi .wrap .wrap_content figure:hover .bg {
    transform: scale(1.03);
}

.uslugi .wrap .wrap_content figure h3 {
    text-transform: uppercase;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1.3;
    font-weight: 500;
    z-index: 1;
    position: relative;
}
.uslugi .wrap .wrap_content figure ul {
    padding-left: 30px;
    list-style: disc;
    margin-top: 10px;
}
.uslugi .wrap .wrap_content figure ul li {
    line-height: 1.3;
}
.uslugi .wrap .wrap_content figure ul li::marker {
    color: #FCFF27;
}
@media only screen and (min-width:767px) {
    .uslugi .wrap {
        padding: 60px 0;
    }
    .uslugi .wrap .wrap_content {
        margin-top: 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: min-content;
    }
    .uslugi .wrap .wrap_content figure {
        aspect-ratio: 1/1;
    }
    .uslugi .wrap .wrap_content figure h3 {
        font-size: 18px;
    }
}
@media only screen and (min-width:960px) {
    .uslugi .wrap .wrap_content {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: 
        "g1 g2 g3"
        "g4 g5 g6"
        "g11 g7 g8"
        "g9 g9 g10";
    }
    .uslugi .wrap .wrap_content figure:nth-child(1) {
        grid-area: g1;
    }
    .uslugi .wrap .wrap_content figure:nth-child(2) {
        grid-area: g2;
    }
    .uslugi .wrap .wrap_content figure:nth-child(3) {
        grid-area: g3;
    }
    .uslugi .wrap .wrap_content figure:nth-child(4) {
        grid-area: g4;
        /* aspect-ratio: 1/2; */
    }
    .uslugi .wrap .wrap_content figure:nth-child(5) {
        grid-area: g5;
    }
    .uslugi .wrap .wrap_content figure:nth-child(6) {
        grid-area: g6;
    }
    .uslugi .wrap .wrap_content figure:nth-child(7) {
        grid-area: g7;
    }
    .uslugi .wrap .wrap_content figure:nth-child(8) {
        grid-area: g8;
    }
    .uslugi .wrap .wrap_content figure:nth-child(9) {
        grid-area: g9;
        aspect-ratio: 2/1;
    }
    .uslugi .wrap .wrap_content figure:nth-child(10) {
        grid-area: g10;
    }
    .uslugi .wrap .wrap_content figure:nth-child(11) {
        grid-area: g11;
    }
}
/*-------------------uslugi end----------------------*/

/*-------------------raschet----------------------*/
.raschet {
    background: #345DAF;
    color: white;
}
.raschet .wrap {
    padding: 60px 15px;
}
.raschet .wrap .left {
    text-align: center;
}
.raschet .wrap .left .capt {
    font-size: 28px;
    font-weight: 700;
}
.raschet .wrap .left .desc {
    max-width: 470px;
    margin: 10px auto 0;
}
.raschet .wrap .right {
    margin-top: 35px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.raschet .wrap .right form {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.raschet .wrap .right form input {
    width: 280px;
    height: 40px;
    border-radius: 3px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    border: none;
    padding: 0 15px;
}
.raschet .wrap .right form button {
    width: 280px;
    height: 40px;
    border-radius: 3px;
    margin-top: 15px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    border: 1px solid #FCFF27;
    background: none;
    color: white;
    transition: 0.2s;
    cursor: pointer;
}
.raschet .wrap .right form button:hover {
    background: #FCFF27;
    color: black;
}
@media only screen and (min-width:767px) {
    .raschet .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 60px 15px;
    }
    .raschet .wrap .left {
        text-align: left;
        padding-left: 30px;
    }
    .raschet .wrap .left .capt {
        font-size: 36px;
    }
    .raschet .wrap .left .desc {
        margin: 20px 0 0;
        font-size: 18px;
    }
    .raschet .wrap .right {
        margin-top: 0;
    }
}
@media only screen and (min-width:960px) {
    .raschet .wrap {
        padding: 60px 15px;
    }
    .raschet .wrap .left {
        padding-left: 90px;
    }
}
@media only screen and (min-width:1100px) {
    .raschet .wrap .right form {
        flex-direction: row;
        align-items: center;
    }
    .raschet .wrap .right form button {
        margin-top: 0;
        margin-left: 15px;
        width: unset;
        padding: 0 30px;
    }
}
/*-------------------raschet end----------------------*/

/*-------------------about----------------------*/
.about .wrap {
    padding: 60px 15px 60px;
}
.about .wrap .wrap_content {
    margin-top: 30px;
    display: flex;
    flex-direction: column-reverse;
}
.about .wrap .wrap_content .left {
    margin-top: 20px;
}
.about .wrap .wrap_content .left p {
    line-height: 1.3;
}
.about .wrap .wrap_content .right .img {
    aspect-ratio: 1.8/1;
    max-width: 500px;
    margin: 0 auto;
}
@media only screen and (min-width:767px) {
    .about .wrap {
        padding: 90px 15px;
    }
    .about .wrap .wrap_content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }
    .about .wrap .wrap_content .left {
        margin-top: 0;
        padding-left: 30px;
    }
    .about .wrap .wrap_content .left p {
        font-size: 18px;
    }
}
@media only screen and (min-width:960px) {
    .about .wrap .wrap_content .left {
        padding-left: 90px;
    }
}
/*-------------------about end----------------------*/

/*-------------------footer----------------------*/
footer {
    background: #1B2E77;
    color: white;
    text-align: center;
}
footer .wrap {
    padding: 30px 15px;
}
footer .wrap .logo {
    display: flex;
    justify-content: center;
}
footer .wrap .logo a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    color: white;
}
footer .wrap .logo a img {
    width: 54px;
    margin-right: 10px;
}

footer .wrap .center {
    margin-top: 30px;
}
footer .wrap .center a {
    color: white;
    text-decoration: none;
}
footer .wrap .center a:hover {
    text-decoration: underline;
}

footer .wrap .f_menu {
    margin-top: 45px;
}
footer .wrap .f_menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
footer .wrap .f_menu ul li a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s;
}
footer .wrap .f_menu ul li a:hover {
    color: #FCFF27;
}

footer .wrap .contacts {
    margin-top: 45px;
    display: flex;
    justify-content: center;
}
footer .wrap .contacts .wrap_tel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
footer .wrap .contacts .tel {
    line-height: 1.8;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}
footer .wrap .contacts .tel:hover {
    color: #FCFF27;
}
@media only screen and (min-width:767px) {
    footer .wrap {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 30px 15px;
    }
    footer .wrap .logo {
        justify-content: flex-start;
        text-align: left;
    }

    footer .wrap .center {
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    footer .wrap .f_menu {
        margin-top: 0;
    }
    

    footer .wrap .contacts {
        margin-top: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    footer .wrap .contacts .tel {
        line-height: 1.4;
    }
}
@media only screen and (min-width:960px) {
    footer .wrap .f_menu {
        display: flex;
        align-items: center;
    }
    footer .wrap .f_menu ul {
        flex-direction: row;
        gap: 30px;
    }
    footer .wrap .f_menu ul li a {
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 500;
    }
}
/*-------------------footer end----------------------*/

/*-------------------kontakty----------------------*/
.kontakty {
    background: #eee;
}
.kontakty .wrap {
    padding: 45px 15px 0;
}
.kontakty .wrap .h2 {
    background: #eee;
}
.kontakty .wrap .wrap_content {
    margin-top: 45px;
    padding: 30px 15px;
    background: white;
}
.kontakty .wrap .wrap_content .capt {
    font-size: 20px;
    font-weight: 700;
    /* text-transform: uppercase; */
}
.kontakty .wrap .wrap_content .content {
    width: 100%;
    max-width: 700px;
    margin: 30px auto 0;
}
.kontakty .wrap .wrap_content .content .item .left {
    font-weight: 700;
    padding-bottom: 10px;
}
.kontakty .wrap .wrap_content .content .item .right {
    padding-bottom: 20px;
    padding-left: 30px;
}
.kontakty .wrap .wrap_content .content .item .right a {
    text-decoration: none;
    color: black;
}
.kontakty .wrap .wrap_content .content .item .right a:hover {
    color: #345DAF;
}
@media only screen and (min-width:767px) {
    .kontakty .wrap {
        padding: 60px 15px 0;
    }
    .kontakty .wrap .wrap_content {
        margin-top: 60px;
        text-align: center;
        padding: 40px 15px;
    }
    .kontakty .wrap .wrap_content .capt {
        font-size: 28px;
    }
    .kontakty .wrap .wrap_content .content {
        margin: 40px auto 0;
    }
    .kontakty .wrap .wrap_content .content .item {
        display: flex;
        gap: 20px;
        text-align: left;
    }
    .kontakty .wrap .wrap_content .content .item .left {
        width: 100%;
        max-width: 200px;
        padding-bottom: 25px;
    }
    .kontakty .wrap .wrap_content .content .item .right {
        width: 100%;
        max-width: 500px;
        padding-bottom: 25px;
    }
}
/*-------------------kontakty end----------------------*/

/*-------------------map----------------------*/
.map {
    background: #eee;
}
.map .wrap {
    padding: 0 15px;
}
/*-------------------map end----------------------*/

/*-------------------os----------------------*/
.os {
    background: #eee;
}
.os .wrap {
    background: #eee;
    padding: 0 15px 45px;
}
.os .wrap .content {
    padding: 30px 15px;
    background: white;
}
.os .wrap .content .capt {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}
.os .wrap .content .right {
    margin-top: 20px;
}
.os .wrap .content .right form {
    width: 100%;
    max-width: 360px;
}
.os .wrap .content .right form input {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid lightgray;
    padding: 0 15px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
.os .wrap .content .right form textarea {
    width: 100%;
    height: 140px;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid lightgray;
    padding: 15px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
.os .wrap .content .right form button {
    width: 100%;
    max-width: 360px;
    height: 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    background: #FCFF27;
    border-radius: 3px;
    border: 1px solid #414666;
    transition: 0.3s;
    cursor: pointer;
    -webkit-appearance: none; 
    color:black !important ;
}
.os .wrap .content .right form button:hover {
    box-shadow: 3px 3px 5px lightgray;
}
@media only screen and (min-width:767px) {
    .os .wrap {
        padding: 0 15px 60px;
    }
    .os .wrap .content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 60px 15px;
    }
    .os .wrap .content .left {
        padding-left: 90px;
    }
    .os .wrap .content .left .text {
        max-width: 300px;
    }
    .os .wrap .content .right {
        margin-top: 0;
    }
}
/*-------------------os end----------------------*/

/*-------------------popup----------------------*/
.popup {
    background: #345DAF;
    border: 1px solid #345DAF;
    border-radius: 3px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    color: white;
    position: relative;
    transition: all ease .5s;
    overflow: hidden;
    /* padding: 74px 0 98px; */
    /* padding: 74px 0 118px; */
    padding: 45px 30px;
}
.popup .mfp-close {
    display: none;
}
.popup .close {
    color: #f9f9f9;
    position: absolute;
    width: 22px;
    height: 22px;
    top: 15px;
    right: 15px;
    transition: 0.3s;
}
.popup .close::before {
    position: absolute;
    content: "";
    width: 130%;
    height: 2px;
    top: 10px;
    left: -3px;
    background: #F9F9F9;
    transform: rotate(45deg);
    transition: 0.2s;
}
.popup .close::after {
    position: absolute;
    content: "";
    width: 130%;
    height: 2px;
    bottom: 10px;
    left: -3px;
    background: #F9F9F9;
    transform: rotate(-45deg);
    transition: 0.2s;
}
.popup .close:hover::before {
    background: #FCFF27;
}
.popup .close:hover::after {
    background: #FCFF27;
}
.popup form {
    display: flex;
    flex-direction: column;
}
.popup form .capt {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.popup form input {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid lightgray;
    padding: 0 15px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
.popup form textarea {
    width: 100%;
    height: 140px;
    margin-bottom: 20px;
    border-radius: 3px;
    border: 1px solid lightgray;
    padding: 15px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
.popup form button {
    width: 100%;
    max-width: 360px;
    height: 40px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    background: #FCFF27;
    border: 1px solid #FCFF27;
    border-radius: 3px;
    border: 1px solid #414666;
    transition: 0.2s;
    cursor: pointer;
    -webkit-appearance: none; 
    color:black !important ;
}
.popup form button:hover {
    box-shadow: 3px 3px 5px black;
}
/*-------------------popup end----------------------*/


#modal_ok {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: hidden;
    background: rgba(11, 11, 11, 0.86);
    /* display: flex; */
    justify-content: center;
    align-items: center;
}
#modal_ok.show {
    display: flex;
}

#modal_ok .popup {
    text-align: center;
    padding: 35px 30px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
#modal_ok .popup .capt {
    font-size: 18px;
}
#modal_ok button {
    margin-top: 30px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    background: #FCFF27;
    border: 1px solid #FCFF27;
    border-radius: 3px;
    border: 1px solid #414666;
    transition: 0.2s;
    padding: 10px 30px;
    cursor: pointer;
    -webkit-appearance: none; 
    color:black !important ;
}
#modal_ok button:hover {
    box-shadow: 3px 3px 5px black;
}