@font-face {
    font-family: 'Rubik';
    src: url(../fonts/Rubik-Light.ttf) format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: 'Rubik';
    src: url(../fonts/Rubik-Regular.ttf) format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Rubik';
    src: url(../fonts/Rubik-Medium.ttf) format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Rubik';
    src: url(../fonts/Rubik-Bold.ttf) format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Rubik';
    src: url(../fonts/Rubik-Black.ttf) format('truetype');
    font-weight: 900;
}

:root {
    --colorMain: #324B97;
    --colorSecond: #CCE92F;
}

body {
    color: var(--colorMain);
    font-size: 16px;
    font-family: "Rubik";
    font-weight: 400;
    background: url(../images/bgBodyAll.jpg);
    line-height: 1.2;
}

body p {
    margin-top: 0;
    margin-bottom: 10px;
}

.h1,
h1 {
    font-family: Rubik;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.titleBlock {
    margin-bottom: 30px;
}

.titleBlock .h1,
.titleBlock h1 {
    margin-bottom: 0;
}

.titleBlock .txtH1 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
}

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

.wrapLabel {
    position: relative;
    margin-bottom: 0;
}

.wrapLabel span {
    font-weight: 300;
    padding-left: 25px;
    font-size: 14px;
    display: block;
    position: relative;
    opacity: 0.7;
}

.wrapLabel span a {
    color: var(--colorMain);
}

.wrapLabel span:before {
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    content: '';
    border: 1px solid var(--colorMain);
    border-radius: 2px;
}

.wrapLabel span:after {
    position: absolute;
    width: 8px;
    height: 8px;
    left: 4px;
    top: calc(50% - 4px);
    content: '';
    background: var(--colorMain);
    border-radius: 2px;
    opacity: 0;
}

.wrapLabel input:checked+span:after {
    opacity: 1;
}

.wrapLabel input {
    width: 10px !important;
    height: 10px !important;
    left: 0 !important;
    top: 0 !important;
    position: absolute !important;
    opacity: 0 !important;
}

.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;
}

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

.imgBtn {
    line-height: 0;
}

svg {
    line-height: 0;
    height: auto;
}

svg * {
    transition: all 0.4s;
}

.btnStyle1 {
    font-weight: 500;
    cursor: pointer;
    color: var(--colorMain);
    display: flex;
    height: 48px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 44px;
    border: 1px solid var(--colorMain);
    background: var(--colorSecond);
    transition: all 0.4s;
}

.btnStyle1:hover svg circle {
    fill: var(--colorSecond);
}

.btnStyle1:hover svg path {
    fill: var(--colorMain);
}

.btnStyle1:hover {
    background: var(--colorMain);
    color: var(--colorSecond);
}

.btnStyle2 {
    font-weight: 500;
    cursor: pointer;
    color: var(--colorSecond);
    display: flex;
    height: 48px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 44px;
    border: 1px solid var(--colorMain);
    background: var(--colorMain);
    transition: all 0.4s;
}

.btnStyle2:hover svg circle {
    fill: var(--colorMain);
}

.btnStyle2:hover svg path {
    fill: var(--colorSecond);
}

.btnStyle2:hover {
    background: var(--colorSecond);
    color: var(--colorMain);
}


/* --- Media styles --- */


/*header*/

.wrapTopHeader {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 40px 0 30px;
    align-items: center;
}

.wrapTopHeader .wrapLogo img {
    width: 80px;
}

.wrapLogo {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    align-items: center;
    color: var(--colorMain);
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
}

.wrapLogo .txtBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wrapLogo .name {
    font-size: 19px;
    font-weight: 500;
}

header .infoWrap {
    display: flex;
    justify-content: center;
    gap: 15px;
}

header .navBlock {
    padding-left: 30px;
    background: url(../images/navIcon.svg) no-repeat left top;
    line-height: 1.5;
}

header .phonesBlock {
    padding-left: 30px;
    background: url(../images/phoneIcon.svg) no-repeat left top;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

header .phonesBlock a {
    color: var(--colorMain);
}

header .socBlock {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-left: 1px solid rgba(50, 75, 151, 0.4);
    border-right: 1px solid rgba(50, 75, 151, 0.4);
    gap: 10px;
}

.mainBlock ul {
    display: flex;
    justify-content: space-between;
    border-radius: 35px;
    background: var(--colorSecond);
    /*    overflow: hidden;*/
}

.mainBlock ul li:first-child {
    border-radius: 50px 0 0 50px;
}

.mainBlock ul li:last-child {
    border-radius: 0 50px 50px 0;
}

.mainBlock ul li {
    flex: auto;
    position: relative;
}

.mainBlock ul a {
    color: #324B97;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 0px 0px 24px rgba(0, 0, 0, 0.11);
    padding: 9px;
    text-decoration: none;
    height: 100%;
    border-radius: 30px;
}

.mainBlock ul a:hover,
.mainBlock ul li.active>a {
    text-decoration: none;
    background: #fff;
}

.mainBlock ul ul a {
    border-radius: 0;
    text-align: left;
    justify-content: flex-start;
    white-space: nowrap;
}

header {
    margin-bottom: 30px;
    position: relative;
    z-index: 50;
}


/*End header */


/*topSliderBlock*/

.topSliderBlock {
    margin-bottom: 50px;
}

.topSlider img {
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.topSlider .slick-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.topSlider .slick-dots li {
    padding: 0;
    margin: 0;
}

.topSlider .slick-dots button {
    font-size: 0;
    border: none;
    height: 2px;
    width: 30px;
    background: #C2C2C2;
    padding: 0;
    margin: 0;
}

.topSlider .slick-dots .slick-active button {
    background: var(--colorSecond);
}

.topSlider .slick-dots button:before {
    display: none;
}

.topSlider .slick-dots li {
    width: auto;
    height: auto;
}


/*End topSliderBlock*/


/*blockAfterTop*/

.blockAfterTop {
    margin-bottom: 30px;
}

.wrapAB {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.btn_slabovid,
.btn_obichn {
    display: flex;
    height: 48px;
    padding: 14px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 44px;
    border: 1px solid var(--colorMain);
    background: #FFF;
    font-weight: 500;
    color: var(--colorMain);
    transition: all 0.4s;
    text-decoration: none;
}

.btn_slabovid:hover,
.btn_obichn:hover {
    color: #fff;
    text-decoration: none;
    background: var(--colorMain);
}

.btn_slabovid:hover svg *,
.btn_obichn:hover svg * {
    stroke: #fff;
}

.gosuslBtn {
    display: flex;
    padding: 15px;
    align-items: flex-start;
    gap: 25px;
    border-radius: 12px;
    background: #FFF;
}


/*End blockAfterTop*/


/*tilesBlock*/

.tilesBlock {
    margin-bottom: 60px;
}

.wrapTilesCamp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.nucTilesCamp {
    position: relative;
    height: 300px;
    border-radius: 14px 60px 0px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    justify-content: space-between;
    padding: 30px;
    color: var(--colorMain);
    z-index: 1;
    transition: all 0.8s;
    background-position: 100%;
    background-size: 120%;
}

.nucTilesCamp:hover {
    text-decoration: none;
    color: var(--colorMain);
}

.nucTilesCamp .name {
    font-size: 25px;
    font-weight: 500;
    max-width: 275px;
    line-height: 1;
}

.nucTilesCamp .price {
    border-radius: 20px;
    background: var(--colorMain);
    display: flex;
    padding: 6px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
}

.nucTilesCamp .price span {
    opacity: 0.6;
    font-size: 14px;
}

.nucTilesCamp .imgW {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
}

.nucTilesCamp .imgW img {
    height: 100%;
    width: auto;
}

.nucTilesCamp .btnMore img,
.nucTilesCamp .btnMore svg {
    transition: all 0.4s;
    max-width: 50%;
}

.nucTilesCamp .btnMore {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 85px;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--colorMain);
    border-radius: 50%;
}

.nucTilesCamp .btnMore:before {
    z-index: -1;
    position: absolute;
    right: -2px;
    bottom: -2px;
    background: url(../images/decArr45.svg) no-repeat right bottom/contain;
    content: '';
    width: 122px;
    height: 121px;
    line-height: 0;
}

.nucTilesCamp:hover .btnMore img,
.nucTilesCamp:hover .btnMore svg {
    transform: rotate(45deg);
}

.nucTilesCamp:hover {
    background-position: 20%;
}

.nucTilesCamp.color1 {
    background-image: linear-gradient(111deg, #FFDBDB 0.76%, #F25757 53.66%, #FECDB2 105.62%);
}

.nucTilesCamp.color2 {
    background-image: linear-gradient(105deg, #EFD4FF 1.15%, #B851F8 45.95%, #D084FF 86.94%), linear-gradient(111deg, #FFF4F4 0.76%, #F25757 53.66%, #FECDB2 105.62%);
}

.nucTilesCamp.color3 {
    background-image: linear-gradient(105deg, #E4F4FF -0.8%, #AADBFF 18.5%, #0094FF 53.74%, #D2E4FF 83.1%);
}

.nucTilesCamp.color4 {
    background-image: linear-gradient(104deg, #F2FFCD -10.16%, #7DC607 37.63%, #F2FFCD 100%);
}

.nucTilesCamp.color5 {
    background-image: linear-gradient(104deg, #DBF2FF 0%, #53C1FF 53.21%, #C6F1FF 99%);
}

.nucTilesCamp.color6 {
    background-image: linear-gradient(78deg, #CAEFFF 0.38%, #FBFDFF 50.1%, #CBEFFF 88.58%);
}

.nucTilesCamp.color7 {
    background: #fff;
}

.nucTilesCamp.color8 {
    background-image: linear-gradient(145deg, #EAF5FF 3.31%, #C6D1E5 28.93%, #154295 70.62%, #1D3174 90.16%);
}


/*End tilesBlock*/


/*scheduleBlock*/

.checkIn {
    padding-top: 30px;
}

.scheduleBlock {
    margin-bottom: 90px;
}

.tabsSchedule {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin-bottom: 20px;
}

.nucSchedule {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 14px;
    background: #FFF;
    padding-top: 52px;
    justify-content: flex-end;
    box-shadow: 0px 4px 6.5px 0px rgba(0, 0, 0, 0.11) inset;
    position: relative;
    margin-top: 52px;
    cursor: pointer;
    transition: all 0.4s;
}

.nucSchedule:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.11) inset;
}

.nucSchedule .imgW {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #E3F8FF;
    top: 0;
    transform: translateY(-50%);
    background: #FFF;
    position: absolute;
    box-shadow: 0px 4px 6.5px 0px rgba(0, 0, 0, 0.11) inset;
}

.nucSchedule .txtBlock {
    width: 100%;
    padding: 25px 20px 20px;
    opacity: 0.8;
    transition: all 0.4s;
}

.nucSchedule .name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.nucSchedule .txt span {
    font-weight: 500;
}

.nucSchedule:hover .txtBlock,
.nucSchedule.active .txtBlock {
    opacity: 1;
}

.nucSchedule.active.color1,
.nucSchedule.active.color2,
.nucSchedule.active.color3,
.nucSchedule.active.color4,
.nucSchedule.active.color5,
.nucSchedule.active.color6 {
    box-shadow: 0px 50px 14px 0px rgba(0, 0, 0, 0.00), 0px 32px 13px 0px rgba(0, 0, 0, 0.01), 0px 18px 11px 0px rgba(0, 0, 0, 0.05), 0px 8px 8px 0px rgba(0, 0, 0, 0.09), 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
}

.nucSchedule.active.color1 .imgW,
.nucSchedule.active.color2 .imgW,
.nucSchedule.active.color3 .imgW,
.nucSchedule.active.color4 .imgW,
.nucSchedule.active.color5 .imgW,
.nucSchedule.active.color6 .imgW {
    box-shadow: none;
}

.nucSchedule.active.color1,
.nucSchedule.active.color1 .imgW,
.nucContentSchedule.color1 {
    background: linear-gradient(114deg, #FFF4F4 0.54%, #FF8484 50.19%, #FFBDA8 81.93%);
}

.nucSchedule.active.color2,
.nucSchedule.active.color2 .imgW,
.nucContentSchedule.color2 {
    background: linear-gradient(105deg, #F5E4FF 1.15%, #B851F8 45.95%, #D084FF 86.94%);
}

.nucSchedule.active.color3,
.nucSchedule.active.color3 .imgW,
.nucContentSchedule.color3 {
    background: linear-gradient(104deg, #F2FFCD -10.16%, #7DC607 37.63%, #F2FFCD 100%);
}

.nucSchedule.active.color4,
.nucSchedule.active.color4 .imgW,
.nucContentSchedule.color4 {
    background: linear-gradient(105deg, #FCFEFF -0.8%, #AADBFF 18.5%, #0094FF 53.74%, #ECF4FF 83.1%);
}

.nucSchedule.active.color5,
.nucSchedule.active.color5 .imgW,
.nucContentSchedule.color5 {
    background: linear-gradient(78deg, #D4F2FF 0.38%, #FBFDFF 50.1%, #D3F2FF 88.58%);
}

.nucSchedule.active.color6,
.nucSchedule.active.color6 .imgW,
.nucContentSchedule.color6 {
    background: linear-gradient(104deg, #E8F7FF 0%, #53C1FF 53.21%, #CCF3FF 99%);
    ;
}

.nucSchedule.active .txtBlock {
    opacity: 1;
}

.nucContentSchedule {
    display: none;
    border-radius: 16px;
    box-shadow: 0px 50px 14px 0px rgba(0, 0, 0, 0.00), 0px 32px 13px 0px rgba(0, 0, 0, 0.01), 0px 18px 11px 0px rgba(0, 0, 0, 0.05), 0px 8px 8px 0px rgba(0, 0, 0, 0.09), 0px 2px 4px 0px rgba(0, 0, 0, 0.10);
    padding: 18px 55px;
}

.nucContentSchedule.active {
    display: block;
}

.wrapSheduleInfo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.nucScheduleInfo {
    border-radius: 15px;
    background: #FFF;
    display: flex;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.nucScheduleInfo .name {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding-block: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--colorMain);
}

.nucScheduleInfo .topInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.nucScheduleInfo .txt {
    border-radius: 36px;
    border: 1px solid #324B97;
    opacity: 0.6;
    display: flex;
    padding: 5px 10px;
    gap: 10px;
}

.nucScheduleInfo .days {
    opacity: 0.6;
}

.nucScheduleInfo .dates {
    font-size: 18px;
    font-weight: 600;
}

.nucScheduleInfo .freeSeats {
    border-radius: 15px;
    border: 1px solid #CBE82F;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin: 20px 0;
}

.nucScheduleInfo.noSeats {
    color: #6D6D6D;
}

.nucScheduleInfo.noSeats .freeSeats {
    border: 1px solid #6D6D6D;
}

.nucScheduleInfo.noSeats .btnStyle1 {
    filter: grayscale(100%);
}


/*End scheduleBlock*/


/*whyWeBlock*/

.whyWeBlock {
    padding-bottom: 90px;
    background: url(../images/whyWeBlockBg.svg) no-repeat center bottom;
}

.wrapWW {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.nucWW.averageNuc {
    width: 400px;
}

.nucWW.imgFull {
    width: 200px;
}

.nucWW.bigNuc {
    width: 600px;
}

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

.nucWW .txtBlock {
    position: absolute;
    z-index: 1;
}

.nucWW.imgFull img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nucWW.rightTxt .txtBlock {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.nucWW.leftTxt .txtBlock {
    position: absolute;
    top: 30px;
    left: 20px;
    width: 325px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nucWW.botTxt .txtBlock {
    bottom: 30px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nucWW .preTag {
    border-radius: 20px;
    border: 1px solid #324B97;
    background: rgba(255, 255, 255, 0.50);
    padding: 6px 10px;
    margin-bottom: 10px;
}

.nucWW .txt {
    font-size: 20px;
    line-height: 1.2;
}

.nucWW .txtBlock:before {
    position: absolute;
    content: '';
    z-index: -1;
}

.nucWW:nth-child(1) .txtBlock:before {
    border-radius: 515px;
    background: #E6FF4F;
    filter: blur(31.100000381469727px);
    width: 515px;
    height: 329px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.nucWW:nth-child(3) .txtBlock:before {
    border-radius: 515px;
    background: #A6FFA5;
    filter: blur(31.100000381469727px);
    width: 515px;
    height: 466.49px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(34.592deg);
}

.nucWW:nth-child(4) .txtBlock:before {
    border-radius: 654px;
    background: #9CFFE7;
    filter: blur(31.100000381469727px);
    width: 654px;
    height: 362.575px;
    right: 28%;
    top: 50%;
    transform: translate(50%, -50%) rotate(67.05deg);
}

.nucWW:nth-child(5) .txtBlock:before {
    border-radius: 482px;
    background: #E7B2FF;
    filter: blur(46.599998474121094px);
    width: 482px;
    height: 396px;
    left: 35%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(67.05deg);
}

.nucWW:nth-child(7) .txtBlock:before {
    border-radius: 630.299px;
    background: #FFCBCB;
    filter: blur(46.599998474121094px);
    width: 630.299px;
    height: 395.711px;
    left: 5%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(19.633deg);
}

.nucWW:nth-child(9) .txtBlock:before {
    border-radius: 630.299px;
    background: #C3D1FF;
    filter: blur(36.6px);
    width: 630.299px;
    height: 456.192px;
    right: 33%;
    top: 50%;
    transform: translate(50%, -50%) rotate(48.61deg);
}


/*End whyWeBlock*/


/*formBlock*/

.formBlock {
    background: url(../images/formBlockBg.jpg) no-repeat center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 125px;
    height: 800px;
}

.formWrap {
    width: 650px;
    padding: 30px;
    gap: 10px;
    border-radius: 15px;
    background: var(--colorSecond);
}

.formWrap .name {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.formWrap .txt {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
}

.formWrap form {
    margin-top: 20px;
}

.formWrap .wrapInputs {
    display: grid;
    justify-content: space-between;
    grid-gap: 10px;
    grid-template-columns: repeat(3, calc((100% / 3) - 7px));
}

.formWrap input {
    flex: 1;
    border-radius: 43px;
    border: 1px solid rgba(50, 75, 151, 0.4);
    height: 48px;
    background: none;
    margin-bottom: 10px;
    max-width: 100%;
    padding: 0 12px;
}

.formWrap textarea {
    border-radius: 25px;
    border: 1px solid rgba(50, 75, 151, 0.4);
    height: 100px;
    width: 100%;
    resize: none;
    background: none;
    padding: 15px 12px;
}

.formWrap .sendLine {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

.formWrap .sendLine button {
    width: 273px;
    flex: none;
}


/*End formBlock*/


/*footer*/

footer {
    position: relative;
    background: url(../images/bgFooter.png) no-repeat right bottom/cover, #324B97;
    padding-top: 180px;
    color: var(--colorSecond);
    padding-bottom: 60px;
    font-size: 20px;
    margin-top: 200px;
}

footer a {
    color: var(--colorSecond);
}

footer a:hover {
    color: var(--colorSecond);
}


/*mapBlock*/

.mapBlock {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.mapBlock .mapWrap {
    border-radius: 15px;
    overflow: hidden;
    line-height: 0;
}


/*End mapBlock*/

.bigMailLine {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(204, 233, 47, 0.6);
}

.bigMailLine a {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
}

.botFooter {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.botFooter ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.botFooter .phonesBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.botFooter .socBlock {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.botFooter .socBlock a {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}

.botFooter .socBlock a:hover {
    text-decoration: underline;
}


/*End footer*/


/*modalF*/

.modalF.callback-modal {
    width: 100%;
    max-width: 650px;
    background: none;
    border-radius: 0;
    display: flex;
    padding: 0;
}


/*End modalF*/

@media screen and (max-width:1600px) {
    /* body{
        background: url(../images/leftBody.jpg) no-repeat calc(50% - 300px) top,url(../images/rightBody.jpg) no-repeat calc(50% + 500px) top,#E1F8FF;
    }*/
}

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

@media screen and (max-width:1299px) {
    .mainBlock ul a {
        font-size: 15px;
        padding: 8px 5px;
    }
    .wrapLogo {
        font-size: 14px;
    }
    .wrapLogo .name {
        font-size: 16px;
    }
    .wrapTopHeader {
        gap: 10px;
    }
    header .infoWrap {
        gap: 10px;
    }
    header .socBlock {
        padding: 0 10px;
    }
    .topSliderBlock {
        margin-bottom: 15px;
    }
    .nucSchedule .name {
        font-size: 18px;
    }
    .nucScheduleInfo .dates {
        font-size: 16px;
    }
    .nucContentSchedule {
        padding: 18px 25px;
    }
    .nucWW.averageNuc {
        width: 360px;
    }
    .nucWW.bigNuc {
        width: 540px;
    }
}

@media screen and (max-width:1199px) {
    .wrapTopHeader {
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .wrapLogo {
        justify-content: center;
        width: 100%;
    }
    .nucTilesCamp .btnMore {
        width: 50px;
        height: 50px;
    }
    .nucTilesCamp .btnMore::before {
        width: 80px;
        height: 80px;
    }
    .nucTilesCamp {
        height: 190px;
    }
    .nucTilesCamp .name {
        font-size: 20px;
    }
    .nucTilesCamp {
        padding: 15px;
    }
    .h1,
    h1 {
        font-size: 26px;
    }
    .tabsSchedule {
        grid-template-columns: repeat(2, 1fr);
    }
    .wrapSheduleInfo {
        grid-template-columns: repeat(3, 1fr);
    }
    .botFooter .socBlock a {
        font-size: 22px;
    }
    .formBlock {
        height: 620px;
    }
    .nucWW.imgFull {
        display: none;
    }
    /*.nucWW.averageNuc {
    width: 280px;
  }*/
    .logoLine {
        width: 100%;
    }
}

@media screen and (min-width:991px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    header,
    header * {
        transition: all 0.4s;
    }
    header.fixMini .wrapTopHeader {
        padding: 10px 0;
    }
    header.fixMini {
        background: #E1F8FF;
        border-bottom: 1px solid var(--colorMain);
        padding-bottom: 10px;
    }
    .wrapper {
        padding-top: 260px;
    }
    .mainBlock ul ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        border-radius: 0;
    }
    .mainBlock ul li:hover>ul {
        display: block;
    }
}

@media screen and (min-width:1199px) {
    .wrapper {
        padding-top: 210px;
    }
}

#closeMain {
    display: none;
}

@media screen and (max-width:991px) {
    .wrapLogo {
        width: auto;
    }
    .logoLine {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        border-bottom: 1px solid var(--colorMain);
        background: #E1F8FF;
    }
    .wrapper {
        padding-top: 75px;
    }
    .mainMobWrap {
        display: block;
    }
    #mainOpen {
        display: flex;
        padding: 8px 5px;
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: var(--colorSecond);
        border: 1px solid var(--colorMain);
    }
    #closeMain {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    .mainMobWrap .line {
        background: var(--colorMain);
        height: 2px;
        border-radius: 2px;
        width: 100%;
    }
    .botFooter ul {
        display: none;
    }
    .mainBlock {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--colorSecond);
        padding: 50px 0 100px;
        display: none;
        z-index: 1000;
    }
    .activeMain {
        overflow: hidden;
    }
    .activeMain .mainBlock {
        display: block;
    }
    .mainBlock ul {
        display: block;
    }
    .mainBlock>ul {
        overflow: auto;
        max-height: 100%;
    }
    .mainBlock>ul>li>a {
        font-size: 18px;
    }
    .mainBlock ul ul a {
        padding: 5px;
    }
    .titleBlock .txtH1 {
        font-size: 16px;
    }
    .wrapSheduleInfo {
        grid-template-columns: repeat(2, 1fr);
    }
    .scheduleBlock,
    .tilesBlock {
        margin-bottom: 50px;
    }
    .whyWeBlock {
        padding-bottom: 50px;
    }
    .wrapTopHeader {
        padding-bottom: 0;
    }
    .nucWW.averageNuc,
    .nucWW.bigNuc {
        width: calc(50% - 10px);
    }
    .mainBlock ul ul a {
        white-space: normal;
    }
    .mainBlock ul {
        border-radius: 0;
    }
}

@media screen and (max-width:767px) {
    .nucWW>img {
        display: none;
    }
    .nucWW.rightTxt .txtBlock,
    .nucWW.leftTxt .txtBlock,
    .nucWW .txtBlock {
        position: static;
        width: 100%;
    }
    .nucWW .txtBlock br {
        display: none;
    }
    .whyWeBlock {
        background: none;
    }
    .nucWW:nth-child(n) .txtBlock:before {
        width: 2000px;
        height: 2000px;
    }
    .formWrap .txt br {
        display: none;
    }
    .wrapLogo {
        font-size: 10px;
    }
    header .navBlock,
    header .phonesBlock {
        padding-left: 0;
        background: none;
    }
    .wrapLogo .name {
        font-size: 11px;
    }
    .wrapLogo .imgF {
        width: 50px;
    }
    header .infoWrap {
        gap: 15px;
        justify-content: space-between;
        width: 100%;
        font-size: 14px;
    }
    header .socBlock {
        border: none;
        padding: 0;
    }
    .btnStyle1 {
        height: 42px;
        padding: 0 10px;
        gap: 5px;
    }
    .wrapAB {
        flex-direction: column;
    }
    .gosuslBtn img {
        max-width: 49%;
    }
    .h1,
    h1 {
        font-size: 24px;
    }
    .wrapTilesCamp {
        grid-template-columns: repeat(1, 1fr);
    }
    .nucTilesCamp .price {
        gap: 5px;
    }
    .titleBlock .txtH1 {
        line-height: 1.1;
    }
    .tabsSchedule {
        display: flex;
        justify-content: flex-start;
        gap: 15px;
        flex-wrap: nowrap;
        padding-bottom: 15px;
        overflow: auto;
        padding-left: 15px;
    }
    .wrapSheduleInfo {
        grid-template-columns: repeat(1, 1fr);
    }
    .nucSchedule {
        width: 250px;
        flex: none;
    }
    .nucTilesCamp .imgW {
        height: 83%;
    }
    .nucWW.averageNuc,
    .nucWW.bigNuc {
        width: 100%;
        padding: 15px;
    }
    .nucWW .txt {
        font-size: 16px;
    }
    .nucWW.rightTxt .txtBlock {
        top: 10px;
    }
    .nucWW.leftTxt .txtBlock {
        top: 10px;
    }
    .botFooter {
        flex-direction: column;
    }
    .bigMailLine {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .bigMailLine a {
        font-size: 20px;
    }
    .botFooter .socBlock a {
        font-size: 18px;
    }
    footer {
        padding-bottom: 30px;
        font-size: 18px;
    }
    .modalF .formWrap {
        width: 100%;
        max-width: 100%;
    }
    .formWrap {
        max-width: 90%;
        padding: 20px 15px;
    }
    .formWrap .name {
        font-size: 22px;
    }
    .formWrap .txt {
        font-size: 16px;
    }
    .formWrap .wrapInputs {
        display: block;
    }
    .formWrap .wrapInputs input {
        width: 100%;
    }
    .formWrap .sendLine {
        flex-direction: column;
    }
    .formBlock {
        height: auto;
        padding: 20px 0 140px;
    }
    .nucWW img {
        width: 100%;
    }
}

@media screen and (max-width:675px) {}

@media screen and (max-width:640px) {}

@media screen and (max-width:600px) {}

@media screen and (max-width:485px) {}

@media screen and (max-width:425px) {}

@media screen and (max-width:400px) {}

@media screen and (max-width:370px) {}