@charset "utf-8";
@import "../node_modules/fontawesome/css/all.min.css";
@import "../node_modules/slick-carousel/slick/slick.css";
@import "../node_modules/magnific-popup/dist/magnific-popup.css";
@import "callback-btn.css";
@import "callback-modal.css";
@import "typography.css";

/* Класс для увеличения картинки */

.zoom-img {}


/* Класс для галлереи */

.gallery {}


/* Класс для формы */

.form-submit-toggle {}


/* Класс для кнопки заказать звонок */

.callback-toggle {}


/******** Magnific-Popup *********/

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}


/******* Image Cover ********/

.img-cover {
    background-size: cover;
    background-position: center;
}

.img-cover_inited>img {
    visibility: hidden;
}


/**********************************/

* {
    box-sizing: border-box;
}

body,
html {
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1;
    color: #000000;
    background: #F2F3F0;
}

main {
    max-width: 1920px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 1300px;
}

.wrapMain {
    display: flex;
    justify-content: flex-start;
}

.homepage .wrapMain {
    display: none;
}

.insidepage .main {
    top: -200px;
    position: relative;
    z-index: 10;
}

.all_cnt {
    overflow: hidden;
}

.all_cnt img {
    max-width: 100%;
}

.flexSA {
    display: flex;
    justify-content: space-around;
}

.flexSB {
    display: flex;
    justify-content: space-between;
}

.flexCenter {
    display: flex;
    justify-content: center;
}

.flexAI {
    display: flex;
    align-items: center;
}

.flexW {
    display: flex;
    flex-wrap: wrap;
}

.flexColumn {
    display: flex;
    flex-direction: column;
}

.flexStart {
    display: flex;
    justify-content: flex-start;
}

.flexAiStart {
    display: flex;
    align-items: flex-start;
}

.flexAiEnd {
    display: flex;
    align-items: flex-end;
}

.flexEnd {
    display: flex;
    justify-content: flex-end;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}


/* header */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: .4s;
}

header.fixed {
    background: #f2f3f0;
}

header .wrapHead {
    padding: 15px 0;
}

.logo a {
    font-family: "Arista-Pro", sans-serif;
    font-weight: 300;
    font-size: 34px;
    line-height: 41px;
    color: #5E5048;
    text-decoration: none;
}

.logo a span {
    font-family: "Arista-Pro", sans-serif;
    font-weight: 700;
}

header .wrapLogoAndMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px #5E5048;
    width: calc(100% - 205px);
}

header .menuTop ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .menuTop ul li {
    margin-right: 45px;
    position: relative;
    cursor: pointer;
    padding: 15px 0;
}

header .menuTop ul li:last-child {
    margin-right: 0;
}

header .menuTop ul li span,
header .menuTop ul li a {
    font-size: 14px;
    line-height: 16px;
    color: #000;
    text-decoration: none;
}

header .menuTop ul li>ul {
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    background: #8daaa6;
    padding: 20px;
    width: 250px;
}

header .menuTop ul li>ul li {
    border-top: solid 1px #000;
    width: 100%;
}

header .menuTop ul li>ul li:last-child {
    border-bottom: solid 1px #000;
}

header .menuTop ul li:hover>ul {
    display: block;
}

header .timeWork {
    display: flex;
    justify-content: space-between;
}

header .timeWork .wraptime {
    font-size: 14px;
    line-height: 16px;
    margin-right: 15px;
}

header .timeWork .wraptime:last-child {
    margin-right: 0;
}

header .timeWork .wraptime span {
    font-weight: bold;
}

header .contactTop {
    display: flex;
    flex-direction: column;
}

header .contactTop .topLineCT .iconCT a {
    margin-right: 5px;
}

header .contactTop .topLineCT a {
    font-size: 14px;
    line-height: 16px;
    color: #000;
    text-decoration: none;
}

header .contactTop .bottomLineCT {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

header .contactTop .bottomLineCT a {
    font-size: 20px;
    line-height: 24px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

header .contactTop .buttonCallMeCT {
    font-size: 12px;
    line-height: 14px;
    color: #000;
    background: rgba(94, 90, 78, .2);
    border: solid 1px rgba(0, 0, 0, .3);
    border-radius: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    padding: 3px;
    width: 155px;
}

header .contactTop .buttonCallMeCT::before {
    content: url("../images/icon/phoneB.webp");
    opacity: .3;
    margin-right: 10px;
    height: 24px;
}


/* end header */

.bannerTop {
    position: relative;
    margin-bottom: 200px;
}

.insidepage .bannerTop {
    margin-bottom: 0;
}

.bannerTop>img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: none;
}

.bannerTop .topSlider {
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 160px;
    display: flex;
    height: 650px;
}

.insidepage .bannerTop .topSlider {
    display: none;
}

.bannerTop .textTS .descriptionTS {
    width: 470px;
}


/* topSlider */

.wrapItemTS {
    transition: .4s;
    opacity: 1;
}

.wrapItemTS:not(.slick-center) {
    transform: scale(.8);
    transition-delay: 0s;
    filter: blur(8px);
}

.wrapItemTS.slick-center {
    transform: scale(1);
    z-index: 100;
    position: relative;
}

.itemTS {
    flex-direction: column;
    display: flex;
}

.wrapItemTS:not(.slick-center) .itemTS .textTS {
    transition-delay: 0s;
}

.itemTS .textTS {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.4);
    align-items: center;
    padding: 45px 0 120px;
    border: solid 1px #fff;
    border-radius: 30px;
    opacity: 0;
    transition: .4s;
    width: 620px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition-delay: 0.7s;
}

.itemTS .textTS .itemsB-arrow {
    position: absolute;
    z-index: 5;
}

.wrapItemTS.slick-center .itemTS .textTS {
    opacity: 1;
}

.itemTS .textTS .titleTS {
    font-size: 30px;
    font-weight: bold;
    line-height: 36px;
}

.itemTS .textTS .descriptionTitleTS {
    font-size: 25px;
    line-height: 30px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 35px;
}

.itemTS .textTS .descriptionTS {
    font-size: 22px;
    line-height: 26px;
}

.itemTS .wImg {
    margin: 0 -40px;
    z-index: 5;
    position: relative;
    top: -100px;
    transition: .4s;
    display: flex;
    align-items: flex-end;
    height: 300px;
}

.wrapItemTS:not(.slick-center) .itemTS .wImg {
    margin-top: -150px;
}

.itemsTS-arrow {
    position: absolute;
    top: calc(50% - 150px);
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    width: 670px;
    display: flex;
    justify-content: space-between;
}

.itemsTS-arrow .btn {
    height: 50px;
    width: 50px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}


/* end topSlider */


/* bannersMenu */

.bannersMenu {
    margin-bottom: 80px;
}

.bannersMenu .itemsBM {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 75px;
    grid-row-gap: 65px;
}

.bannersMenu .itemBM {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.bannersMenu .itemBM::before {
    height: calc(100% - 20px);
    width: calc(100% - 20px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    border: solid 1px #fff;
    display: block;
    position: absolute;
    border-radius: 15px;
    opacity: 0;
    transition: .2s;
    z-index: 10;
}

.bannersMenu .itemBM:hover::before {
    opacity: 1;
}

.bannersMenu .itemBM .wImg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannersMenu .itemBM .wImg img {
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    transition: .2s;
}

.bannersMenu .itemBM:hover .wImg img {
    filter: brightness(50%) blur(5px);
}

.bannersMenu .itemBM .textBM {
    position: absolute;
    left: 0;
    top: 0;
    padding: 35px;
    height: 100%;
    width: 100%;
    Pointer-events: none;
    opacity: 0;
    transition: .2s;
}

.bannersMenu .itemBM:hover .textBM {
    opacity: 1;
}

.bannersMenu .itemBM .textBM .titleBM {
    font-size: 30px;
    line-height: 36px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
}

.bannersMenu .itemBM .textBM .descriptionBM {
    font-size: 24px;
    line-height: 28px;
    color: #fff;
}


/* end bannersMenu */


/* preim */

.preim {
    background: url("../images/bgPreim.webp") no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.preim::before {
    position: absolute;
    top: -245px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    height: 300px;
    width: 2000px;
    content: "";
    background: #F2F3F0;
}

.preim::after {
    position: absolute;
    bottom: -245px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    height: 300px;
    width: 2000px;
    content: "";
    background: #F2F3F0;
}

.preim .wrapP {
    padding: 150px 0;
}

.preim .titleP {
    margin-bottom: 80px;
    color: #fff;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    font-weight: bold;
}

.preim .itemsP {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
}

.preim .itemP {
    padding: 30px;
    border: solid 1px #fff;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    background: inherit;
    overflow: hidden;
}

.preim .itemP::before {
    content: "";
    position: absolute;
    background: inherit;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 2000px rgba(243, 237, 237, 0.5);
    filter: blur(10px);
    margin: -20px;
}

.preim .itemP .wImg {
    text-align: center;
    margin-bottom: 45px;
    height: 90px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.preim .itemP .wImg img {
    transition: .3s;
}

.preim .itemP:hover .wImg img {
    transform: translateY(-20px) scale(1.2);
}

.preim .itemP .titleItemP {
    font-size: 24px;
    line-height: 28px;
    color: #fff;
}


/* end preim */


/* aboutCompany */

.aboutCompany {
    margin-bottom: 80px;
}

.aboutCompany .wrapAC {
    background: url("../images/bgAC.webp") no-repeat center right, #fff;
    border-radius: 65px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 10px 5px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 10px 5px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 10px 5px rgba(34, 60, 80, 0.2);
    padding: 60px;
}

.aboutCompany .titleAC {
    font-size: 40px;
    line-height: 48px;
    color: #000;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: left;
}

.aboutCompany .textAC {
    width: 535px;
    font-size: 24px;
    line-height: 28px;
    color: #000;
}

.aboutCompany .textAC .itemsAC {
    margin-top: 20px;
}

.aboutCompany .textAC .itemAC {
    margin-bottom: 25px;
}

.aboutCompany .textAC .itemAC .wImg {
    margin-right: 20px;
    width: 40px;
    display: flex;
    justify-content: flex-start;
}

.aboutCompany .textAC .buttonAC a {
    width: 480px;
    height: 70px;
    border-radius: 35px;
    background: #8DAAA6;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    display: flex;
    border: solid 1px #8DAAA6;
    transition: .4s;
}

.aboutCompany .textAC .buttonAC a:hover {
    background: none;
    border: solid 1px #000;
    color: #000;
}


/* end aboutCompany */


/* map */

.map {
    position: relative;
}

.map::before {
    content: "";
    background: rgb(242, 243, 240);
    background: linear-gradient(0deg, rgba(242, 243, 240, 0) 0%, rgba(242, 243, 240, 1) 100%);
    height: 400px;
    width: 100%;
    z-index: 5;
    top: 0;
    left: 0;
    position: absolute;
    Pointer-events: none;
}

.map .textMap {
    right: calc((100% - 1240px) / 2);
    z-index: 10;
    bottom: 170px;
    width: 585px;
    height: 660px;
    background: #fff;
    border-radius: 65px;
    -webkit-box-shadow: 0px 0px 10px 5px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 10px 5px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 10px 5px rgba(34, 60, 80, 0.2);
    padding: 60px 30px;
    position: absolute;
}

.map .textMap::before {
    content: url("../images/beforeTextMap.webp");
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -130px;
}

.map .textMap .titleMap {
    font-family: "Arista-Pro", sans-serif;
    font-weight: 300;
    font-size: 34px;
    line-height: 41px;
    color: #8DAAA6;
    text-decoration: none;
    text-align: center;
    margin-bottom: 30px;
}

.map .textMap .titleMap span {
    font-family: "Arista-Pro", sans-serif;
    font-weight: 700;
}

.map .textMap .itemM {
    margin-bottom: 30px;
}

.map .textMap .itemM .wImg {
    width: 30px;
    margin-right: 25px;
}

.map .textMap .itemM .textItemM {
    font-size: 24px;
    line-height: 28px;
    color: #000;
}

.map .textMap .itemM.mTime span,
.map .textMap .itemM.mPhone,
.map .textMap .itemM.mMail a {
    font-style: italic;
    text-decoration: none;
    color: #000;
}

.map .textMap .itemM.mPhone a {
    font-size: 24px;
    line-height: 28px;
    color: #000;
    text-decoration: none;
    font-style: normal;
}

[class*="ymaps-2"][class*="-ground-pane"] {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    /* Firefox 3.5+ */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+ & Safari 6+ */
}


/* end map */


/* staticForm */

.staticForm {
    background: url("../images/bgStaticForm.webp") no-repeat center center;
    background-size: cover;
    padding: 80px 0;
}

.staticForm .wrapSF {
    border-radius: 30px;
    overflow: hidden;
}

.staticForm .leftSF {
    background: #fff;
    width: 50%;
    padding: 40px 0 40px 95px;
}

.staticForm .leftSF .descriptionSF2,
.staticForm .leftSF .descriptionSF {
    font-size: 24px;
    line-height: 28px;
    color: #000;
}

.staticForm .leftSF .phoneSF a {
    font-size: 38px;
    line-height: 46px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.staticForm .rightSF {
    background: #8DAAA6;
    width: 50%;
    padding: 40px;
}

.staticForm .rightSF form {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.staticForm .rightSF form input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: solid 1px #000;
    margin-bottom: 25px;
    height: 40px;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    padding-left: 30px;
    font-style: italic;
}

.staticForm .rightSF form .name {
    background: url("../images/icon/peopleW.webp") no-repeat center left;
}

.staticForm .rightSF form .phone {
    background: url("../images/icon/phoneW.webp") no-repeat center left;
}

.staticForm .rightSF form .message {
    background: url("../images/icon/mailW.webp") no-repeat center left;
}

.staticForm .rightSF form .wrapLabel {
    position: relative;
    padding-left: 35px;
    margin-bottom: 30px;
}

.staticForm .rightSF form .wrapLabel::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    height: 20px;
    width: 20px;
    border: solid 1px #fff;
    background: none;
}

.staticForm .rightSF form .wrapLabel input {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
}

.staticForm .rightSF form .wrapLabel label {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
}

#check1:checked+label::after {
    position: absolute;
    left: 3px;
    top: calc(50% - 10px);
    text-align: center;
    content: "\2713";
    font-family: "ProximaNova-Bold";
    font-size: 24px;
    color: #fff;
}

.staticForm .rightSF form button {
    width: 100%;
    border: solid 1px #fff;
    height: 70px;
    font-size: 24px;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    background: none;
    color: #fff;
    transition: .4s;
    cursor: pointer;
}

.staticForm .rightSF form button:hover {
    color: #8DAAA6;
    background: #fff;
}


/* end staticForm */


/* footer */

footer .wrapFooter {
    padding: 30px 0 25px;
    background: #8DAAA6;
}

footer .itemsFooter {
    display: grid;
    grid-template-columns: 190px 320px 230px 1fr;
}

footer .menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .menu a {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

footer .timeWork {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

footer .logo a {
    font-family: "Arista-Pro", sans-serif;
    font-weight: 300;
    font-size: 34px;
    line-height: 41px;
    color: #fff;
    text-decoration: none;
}

footer .logo a span {
    font-family: "Arista-Pro", sans-serif;
    font-weight: 700;
}

footer .contact {
    text-align: right;
}

footer .contact a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    line-height: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

footer .contact .wrapIconF {
    display: flex;
    justify-content: flex-end;
}

footer .contact .wrapIconF img {
    margin-right: 5px;
}

footer .contact .callMe {
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}

footer .copyring {
    background: #88A39F;
    padding: 20px 0;
}

footer .copyring {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 14px;
}

footer .copyring a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 14px;
    text-decoration: none;
}


/* end footer */


/* внутренние страницы */


/* левая колонка */

.left {
    background: #fff;
    padding: 60px 35px;
    border-radius: 0 0 30px 30px;
    width: 265px;
    margin-right: 30px;
}

.left .logo {
    text-align: center;
    margin-bottom: 55px;
}

.left .logo a {
    font-family: "Arista-Pro", sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 36px;
    color: #8DAAA6;
    text-decoration: none;
}

.left .logo a span {
    font-family: "Arista-Pro", sans-serif;
    font-weight: 700;
}

.left .leftMenu {
    margin-bottom: 85px;
}

.left .leftMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left .leftMenu ul li {
    border-top: solid 1px #D5D7CC;
    padding: 15px 0;
}

.left .leftMenu ul li:last-child {
    border-bottom: solid 1px #D5D7CC;
}

.left .leftMenu ul li a {
    font-size: 22px;
    line-height: 26px;
    color: #000;
    text-decoration: none;
}

.left .description {
    font-size: 22px;
    line-height: 26px;
    font-style: italic;
}

.left .description a {
    font-weight: bold;
    font-style: normal;
    color: #000;
    text-decoration: none;
}

.left .description .wIconLeft {
    margin-top: 25px;
}


/* конец левая колонка */

.blockCenter {
    width: 100%;
    background: #fff;
    padding: 40px 65px 60px;
    border-radius: 0 0 30px 30px;
}

.blockCenter {
    font-size: 22px;
    line-height: 26px;
    color: #000;
}

.blockCenter .itemsPP {
    display: grid;
    grid-template-columns: 55px 1fr 1fr;
    margin-bottom: 65px;
}

.itemsPP .valuePP,
.itemsPP .wImgPP,
.itemsPP .namePP {
    border-bottom: solid 1px #D5D7CC;
    align-items: center;
    display: flex;
}

.itemsPP .wImgPP {
    height: 55px;
}

.itemsPP .valuePP {
    justify-content: flex-end;
}

.buttonsAndImg {
    display: flex;
    justify-content: space-between;
}

.buttonsAndImg .priceAndButton {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    width: 320px;
    height: 160px;
}

.buttonsAndImg .priceAndButton .priceProd {
    color: #8DAAA6;
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    text-transform: uppercase;
}

.buttonsAndImg .priceAndButton .buyProd {
    width: 100%;
    border: solid 1px #000;
    height: 70px;
    font-size: 24px;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    background: none;
    color: #000;
    transition: .4s;
    cursor: pointer;
}

.buttonsAndImg .priceAndButton .buyProd:hover {
    background: #8DAAA6;
    color: #fff;
    border: solid 1px #fff;
}

.buttonsAndImg .wImg {
    position: relative;
    width: calc(100% - 320px);
}

.buttonsAndImg .wImg img {
    position: absolute;
    right: 0;
    top: 0;
}


/* конец внутренние страницы */


/* прелоадер */

#lb_widget-root {
    display: none;
}

.wrapLoad {
    width: 100vw;
    height: 100vh;
    background: #fff;
    position: fixed;
    z-index: 1000000;
}

.preloader {
    /* size */
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    animation: rotatePreloader 2s infinite ease-in;
}

@keyframes rotatePreloader {
    0% {
        transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
    }
}

.preloader div {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.preloader div:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0%;
    width: 10%;
    height: 10%;
    background-color: #5E5048;
    transform: translateX(-50%);
    border-radius: 50%;
}

.preloader div:nth-child(1) {
    transform: rotateZ(0deg);
    animation: rotateCircle1 2s infinite linear;
    z-index: 9;
}

@keyframes rotateCircle1 {
    0% {
        opacity: 0;
    }
    0% {
        opacity: 1;
        transform: rotateZ(36deg);
    }
    7% {
        transform: rotateZ(0deg);
    }
    57% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(2) {
    transform: rotateZ(36deg);
    animation: rotateCircle2 2s infinite linear;
    z-index: 8;
}

@keyframes rotateCircle2 {
    5% {
        opacity: 0;
    }
    5.0001% {
        opacity: 1;
        transform: rotateZ(0deg);
    }
    12% {
        transform: rotateZ(-36deg);
    }
    62% {
        transform: rotateZ(-36deg);
    }
    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(3) {
    transform: rotateZ(72deg);
    animation: rotateCircle3 2s infinite linear;
    z-index: 7;
}

@keyframes rotateCircle3 {
    10% {
        opacity: 0;
    }
    10.0002% {
        opacity: 1;
        transform: rotateZ(-36deg);
    }
    17% {
        transform: rotateZ(-72deg);
    }
    67% {
        transform: rotateZ(-72deg);
    }
    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(4) {
    transform: rotateZ(108deg);
    animation: rotateCircle4 2s infinite linear;
    z-index: 6;
}

@keyframes rotateCircle4 {
    15% {
        opacity: 0;
    }
    15.0003% {
        opacity: 1;
        transform: rotateZ(-72deg);
    }
    22% {
        transform: rotateZ(-108deg);
    }
    72% {
        transform: rotateZ(-108deg);
    }
    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(5) {
    transform: rotateZ(144deg);
    animation: rotateCircle5 2s infinite linear;
    z-index: 5;
}

@keyframes rotateCircle5 {
    20% {
        opacity: 0;
    }
    20.0004% {
        opacity: 1;
        transform: rotateZ(-108deg);
    }
    27% {
        transform: rotateZ(-144deg);
    }
    77% {
        transform: rotateZ(-144deg);
    }
    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(6) {
    transform: rotateZ(180deg);
    animation: rotateCircle6 2s infinite linear;
    z-index: 4;
}

@keyframes rotateCircle6 {
    25% {
        opacity: 0;
    }
    25.0005% {
        opacity: 1;
        transform: rotateZ(-144deg);
    }
    32% {
        transform: rotateZ(-180deg);
    }
    82% {
        transform: rotateZ(-180deg);
    }
    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(7) {
    transform: rotateZ(216deg);
    animation: rotateCircle7 2s infinite linear;
    z-index: 3;
}

@keyframes rotateCircle7 {
    30% {
        opacity: 0;
    }
    30.0006% {
        opacity: 1;
        transform: rotateZ(-180deg);
    }
    37% {
        transform: rotateZ(-216deg);
    }
    87% {
        transform: rotateZ(-216deg);
    }
    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(8) {
    transform: rotateZ(252deg);
    animation: rotateCircle8 2s infinite linear;
    z-index: 2;
}

@keyframes rotateCircle8 {
    35% {
        opacity: 0;
    }
    35.0007% {
        opacity: 1;
        transform: rotateZ(-216deg);
    }
    42% {
        transform: rotateZ(-252deg);
    }
    92% {
        transform: rotateZ(-252deg);
    }
    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(9) {
    transform: rotateZ(288deg);
    animation: rotateCircle9 2s infinite linear;
    z-index: 1;
}

@keyframes rotateCircle9 {
    40% {
        opacity: 0;
    }
    40.0008% {
        opacity: 1;
        transform: rotateZ(-252deg);
    }
    47% {
        transform: rotateZ(-288deg);
    }
    97% {
        transform: rotateZ(-288deg);
    }
    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}

.preloader div:nth-child(10) {
    transform: rotateZ(324deg);
    animation: rotateCircle10 2s infinite linear;
    z-index: 0;
}

@keyframes rotateCircle10 {
    45% {
        opacity: 0;
    }
    45.0009% {
        opacity: 1;
        transform: rotateZ(-288deg);
    }
    52% {
        transform: rotateZ(-324deg);
    }
    102% {
        transform: rotateZ(-324deg);
    }
    100% {
        transform: rotateZ(-324deg);
        opacity: 1;
    }
}


/* прелоадер */


/* контенер */

@media screen and (min-width:576px) {
    .container {
        max-width: 540px;
    }
}

@media screen and (min-width:768px) {
    .container {
        max-width: 720px;
    }
}

@media screen and (min-width:992px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1270px;
    }
}


/* Пагинация */

.pagination>ul {
    margin-top: 15px;
    display: flex;
    list-style: none;
    margin-bottom: 5px;
}

.pagination>ul li {
    margin-right: 20px;
}

.pagination>ul li a {
    text-decoration: none;
    font-weight: 600;
}

.grecaptcha-badge {
    display: none;
}

.imgIn {
    margin-top: 210px;
}

.imgIn img {
    max-height: 300px;
    width: auto;
}