@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    src: local("Montserrat Regular"), local("Montserrat-Regular"), url(../fonts/montserrat-v14-latin_cyrillic-ext_cyrillic-regular.woff2) format("woff2"), url(../fonts/montserrat-v14-latin_cyrillic-ext_cyrillic-regular.woff) format("woff")
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    src: local("Montserrat Medium"), local("Montserrat-Medium"), url(../fonts/montserrat-v14-latin_cyrillic-ext_cyrillic-500.woff2) format("woff2"), url(../fonts/montserrat-v14-latin_cyrillic-ext_cyrillic-500.woff) format("woff")
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    src: local("Montserrat Bold"), local("Montserrat-Bold"), url(../fonts/montserrat-v14-latin_cyrillic-ext_cyrillic-700.woff2) format("woff2"), url(../fonts/montserrat-v14-latin_cyrillic-ext_cyrillic-700.woff) format("woff")
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 800;
    src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"), url(../fonts/montserrat-v14-latin_cyrillic-ext_cyrillic-800.woff2) format("woff2"), url(../fonts/montserrat-v14-latin_cyrillic-ext_cyrillic-800.woff) format("woff")
}

@font-face {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 900;
    src: local("Montserrat Black"), local("Montserrat-Black"), url(../fonts/montserrat-v14-latin_cyrillic-ext_cyrillic-900.woff2) format("woff2"), url(../fonts/montserrat-v14-latin_cyrillic-ext_cyrillic-900.woff) format("woff")
}

.mobile-phone {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    z-index: 100;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
}

.mobile-phone img {
    width: 60px;
    height: 60px;
    left: -1px;
  top: -1px;
  position: absolute;
}

@media (max-width: 500px){
.mobile-phone {
    display: block;
}
}

body {
    margin: 0;
    background-color: #F7F7F7;
    font-family: 'Montserrat';
}

.width-block {
    position: relative;
    max-width: 1165px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}

header {
    width: 100%;
    height: 60px;
}

@media (max-width: 500px){
header {
    height: 60px;
}
}


header .line1 {
    height: 26px;
    background-color: #EDEDED;
    display: flex;
    align-items: center;
    text-align: right;
}

@media (max-width: 500px){
header .line1 {
    display: none;
}
}

header .line1 .phone {
    width: 114px;
    height: 16px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    color: #000000;
    margin-left: auto;
    margin-right: 36px;
}

header .line1 .phone .icon {
    margin-right: 5px;
}

header .line2 {
    height: 60px;
    background-color: #00A0E3;
}

header .line2 .title-block {
    display: flex;
    height: 60px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (max-width: 500px){
header .line2 {
    height: 60px;
}

header .line2 .title-block {
    height: 60px;
    align-items: end;
}    
}

header .line2 .title-block .logo {
    display: flex;
    align-items: center;
}

header .line2 .title-block .logo img {
    width: 146px;
    height: 43px;
}

header .line2 .title-block .center-block {
    margin-left: auto;
    margin-right: auto;
}

header .line2 .title-block .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 40px;
    border-radius: 20px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    margin-left: auto;
    background-image: linear-gradient(89.52deg, #FC50AF -0.09%, #AF48BC 100%);
    box-shadow: 0px 2px 8px rgba(208, 3, 113, 0.38);
    border-radius: 52px;
    animation: rotateGradient 2s linear infinite;
    cursor: pointer;
}

header .line2 .title-block .button:hover {
    animation: none;
}

@keyframes rotateGradient {
    0% {
        background-image: linear-gradient(89.52deg, #FC50AF -0.09%, #AF48BC 100%);
    }
    10% {
        background-image: linear-gradient(89.52deg, #AF48BC 0%, #FC50AF 10%, #AF48BC 100%);
    }
    20% {
        background-image: linear-gradient(89.52deg, #AF48BC 0%, #FC50AF 20%, #AF48BC 100%);
    }
    30% {
        background-image: linear-gradient(89.52deg, #AF48BC 0%, #FC50AF 30%, #AF48BC 100%);
    }
    40% {
        background-image: linear-gradient(89.52deg, #AF48BC 0%, #FC50AF 40%, #AF48BC 100%);
    }
    50% {
        background-image: linear-gradient(89.52deg, #AF48BC 0%, #FC50AF 50%, #AF48BC 100%);
    }
    60% {
        background-image: linear-gradient(89.52deg, #AF48BC 0%, #FC50AF 60%, #AF48BC 100%);
    }
    70% {
        background-image: linear-gradient(89.52deg, #AF48BC 0%, #FC50AF 70%, #AF48BC 100%);
    }
    80% {
        background-image: linear-gradient(89.52deg, #AF48BC 0%, #FC50AF 80%, #AF48BC 100%);
    }
    90% {
        background-image: linear-gradient(89.52deg, #AF48BC 0%, #FC50AF 90%, #AF48BC 100%);
    }
    100% {
        background-image: linear-gradient(89.52deg, #AF48BC, #FC50AF);
    }
}

section {
    position: relative;
    max-width: 1145px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    display: block;
    align-items: center;
    padding: 0 10px;
}

@media (max-width: 1024px){
section {
padding: 0 10px;
margin-top: 30px;
}    
}

.top-block-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: 34px;
    line-height: 41px;
    display: block;
    align-items: center;
    text-align: center;
    color: #E5097F;
    margin-bottom: 15px;
}

@media (max-width: 1024px){
.top-block-title {
font-family: 'Montserrat';
font-style: normal;
font-weight: 800;
font-size: 24px;
line-height: 29px;
display: flex;
/*text-align: left;*/
color: #E5097F;
}
}

.top-block-container {
    display: flex;
}

@media (max-width: 1024px){
.top-block-container {
    display: block;
}
}

.top-block-container .top-block-gradient {
    position: absolute;
    top: 60px;
    right: 320px;
    width: 83px;
    height: 83px;
}

.top-block-container .top-block-gradient img {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 105px;
    height: 105px;
}

.top-block-container .left-container {
    width: 65%;
    border-radius: 12px;
    border: 1px solid #000;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    overflow: hidden;
}

@media (max-width: 1024px){
.top-block-container .left-container {
    width: 65%;
    border-radius: 12px;
    border: 1px solid #000;
        margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    overflow: hidden;
}
}

@media (max-width: 550px){
.top-block-container .left-container {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #000;
        margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    overflow: hidden;
}
}

.top-block-container .left-container .foto-small {
display: none;
}

.top-block-container .left-container .foto-large {
display: block;
}

@media (max-width: 700px){
.top-block-container .left-container .foto-small {
display: block;
}   
.top-block-container .left-container .foto-large {
display: none;
}   
}

.top-block-container .left-container .foto-large img, .top-block-container .left-container .foto-small img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    min-width: 650px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.top-block-container .left-container .foto-small img {
    min-width: 370px!important;
}

.top-block-container .left-container .foto img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
/*    min-width: 650px;
    left: 50%;
    transform: translateX(-50%);*/
    position: relative;
}


@media (max-width: 700px){
.top-block-container .left-container .foto img {
/*    left: 50%;
    transform: translateX(-53%);*/
}
}

.top-block-container .left-container .text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    display: block;
    align-items: center;
    text-align: center;
    color: #00A0E3;
    padding: 15px 15px 15px 15px;
}

@media (max-width: 1024px){
.top-block-container .left-container .text {
font-family: 'Montserrat';
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 20px;
color: #00A0E3;
text-align: center;
    padding: 15px 20px 15px 20px;
}    
}

.top-block-container .right-container {
    width: 33%;
    margin-left: 2%;
    margin-right: 0;
    position: relative;
    display: block;
    border: 1px solid #000;
    border-radius: 12px;
    padding: 60px 40px 60px 40px;
    background-color: rgba(250,250,250,0.4);
}

@media (max-width: 1024px){
.top-block-container .right-container {
    width: 327px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 40px 40px 40px;
}
}

@media (max-width: 550px){
.top-block-container .right-container {
    width: 100%;
}    
}

.top-block-container .right-container .top-image {
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    right: -47px;
    top: -46px;
}

@media (max-width: 1024px){
.top-block-container .right-container .top-image {
    display: none;
}    
}

.top-block-container .right-container .top-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #000000;
    margin-bottom: 20px;
}

.top-block-container .right-container .list-block {

}

.top-block-container .right-container .list-block .point {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
/*    background-image: url('../images/circle.svg');
    background-repeat: no-repeat;*/
    height: 37px;
    display: flex;
    align-items: center;
    padding-left: 53px;
    margin: 15px 0;
}

.top-block-container .right-container .list-block .point .smile {
    font-size: 36px;
    position: absolute;
  left: 40px;
}

.top-block-container .right-container .button {
    width: 241px;
    height: 47px;
    filter: drop-shadow(0px 4px 10px #9FE0FB);
    background-color: rgba(0, 160, 227, 1);
    border-radius: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    cursor: pointer;
    animation: rotateGradientBlue 2s linear infinite;
}

@keyframes rotateGradientBlue {
    0% {
        background-image: linear-gradient(89.52deg, #43C7FE -0.09%, #00A0E3 100%);
    }
    10% {
        background-image: linear-gradient(89.52deg, #00A0E3 0%, #43C7FE 10%, #00A0E3 100%);
    }
    20% {
        background-image: linear-gradient(89.52deg, #00A0E3 0%, #43C7FE 20%, #00A0E3 100%);
    }
    30% {
        background-image: linear-gradient(89.52deg, #00A0E3 0%, #43C7FE 30%, #00A0E3 100%);
    }
    40% {
        background-image: linear-gradient(89.52deg, #00A0E3 0%, #43C7FE 40%, #00A0E3 100%);
    }
    50% {
        background-image: linear-gradient(89.52deg, #00A0E3 0%, #43C7FE 50%, #00A0E3 100%);
    }
    60% {
        background-image: linear-gradient(89.52deg, #00A0E3 0%, #43C7FE 60%, #00A0E3 100%);
    }
    70% {
        background-image: linear-gradient(89.52deg, #00A0E3 0%, #43C7FE 70%, #00A0E3 100%);
    }
    80% {
        background-image: linear-gradient(89.52deg, #00A0E3 0%, #43C7FE 80%, #00A0E3 100%);
    }
    90% {
        background-image: linear-gradient(89.52deg, #00A0E3 0%, #43C7FE 90%, #00A0E3 100%);
    }
    100% {
        background-image: linear-gradient(89.52deg, #00A0E3, #43C7FE);
    }
}




.line100 {
    display: block;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
}

@media (max-width: 750px){
.line100 {
    display: none;
}
}


.line100 img {
    width: 100%;
}

.title2 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #E5097F;
    margin-bottom: 25px;
    margin-top: 0;
}

@media (max-width: 1024px){
.title2 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #E5097F;
    margin-bottom: 25px;
    margin-top: 50px;
}    
}

.birthday-blocks {
    display: flex;
    width: 100%;
    max-width: 1000px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.birthday-blocks .block {
    width: 483px;
    background: #FFFFFF;
    border: 0px solid #000000;
    border-radius: 30px 30px 30px 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

@media (max-width: 550px){
.birthday-blocks .block {
    width: 100%;
}    
}


.birthday-blocks .block .image {
    border-radius: 30px 30px 0px 0px;
    overflow: hidden;
}

.birthday-blocks .block .text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    padding: 12px 30px 15px 30px;
    min-height: 74px;
    margin-top: -4px;
    border-top: 0px solid #000000;
    border-right: 1px solid #000000;
    border-left: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-radius: 0px 0px 30px 30px;
}

.download-button {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    width: 230px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: #E9429B;
    border-radius: 22px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    cursor: pointer;
        animation: rotateGradient 2s linear infinite;
}

.bonus-blocks {
    display: flex;
    width: 100%;
    max-width: 1145px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

@media (max-width: 1150px){
.bonus-blocks {
    max-width: 850px;
}
}

.bonus-blocks .block {
    width: 360px;
    background: #FFFFFF;
    border: 0px solid #000000;
    border-radius: 30px 30px 30px 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.bonus-blocks .block .image {
    border-radius: 30px 30px 0px 0px;
    overflow: hidden;
}

.bonus-blocks .block .text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 10px 30px 15px 30px;
    min-height: 68px;
    margin-top: -4px;
    border-top: 0px solid #000000;
    border-right: 1px solid #000000;
    border-left: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-radius: 0px 0px 30px 30px;    
}

.bonus2-blocks {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1145px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

@media (max-width: 1150px){
.bonus2-blocks {
    max-width: 850px;
}
}

.bonus2-blocks .block {
    max-width: 360px;
    width: 100%;
    background: #FFFFFF;
    border: 0px solid #000000;
    border-radius: 30px 30px 30px 30px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    border: 1px solid #000000;
}

.bonus2-blocks .block .image {
    border-radius: 30px 30px 0px 0px;
    overflow: hidden;
    margin: -1px -1px 0px -1px;
    width: calc(100% + 2px);
  z-index: 99;
  position: relative;
  margin-left: -1px;
  margin-top: -1px;
  margin-right: -1px;
}

.bonus2-blocks .block .text {
    flex: 1; 
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    max-height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #000000;
    padding: 10px 30px 15px 30px;
    min-height: 68px;
    margin-top: -4px;
    border-radius: 0px 0px 30px 30px;    
}

.bonus2-blocks .block .text div {
min-width: 100%;
}



.calculate-block-cover {
    position: relative;
    box-sizing: border-box;
    max-width: 471px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
}

.calculate-block-cover .circles {
    position: absolute;
    top: 30px;
    left: -95px;
}

.calculate-block {
    position: relative;
    box-sizing: border-box;
    width: 471px;
    background: rgba(243, 242, 240, 0.7);
    border: 1px solid #000000;
    border-radius: 12px;
    opacity: 1;
    filter: blur(0px);
    padding: 40px;
}

@media (max-width: 550px){
.calculate-block {
    width: 100%;
        box-sizing: border-box;
}
}


.calculate-block .top-image {
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    right: -47px;
    top: -46px;
}

@media (max-width: 1024px){
.calculate-block .top-image {
    display: none;
}    
}

.calculate-block .title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #E5097F;
}

.calculate-block form {

}

.calculate-block form label {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #A4A4A4;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
}

.calculate-block form #quantity {
    width: 100%;
    height: 7px;
    border-radius: 5px;
}

.calculate-block form #quantity::-webkit-slider-thumb, .calculate-block form #quantity::-moz-range-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #E5097F;
    cursor: ew-resize;
    box-shadow: 0 0 2px 0 #E5097F;
    transition: background .3s ease-in-out;
}

.calculate-block form #quantity::-webkit-slider-runnable-track, .calculate-block form #quantity::-moz-range-track  {
    -webkit-appearance: none;
    border: 1px solid rgba(0,0,0,0);
    height: 1px;
    background-color: #E5097F;
}

.calculate-block form .form-quantity {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    padding-left: 11px;
    padding-bottom: 20px;
    padding-top: 5px;
}

.calculate-block form #datepicker {
    position: relative;
    width: 100%;
    height: 40px;
    background: #E5097F;
    border-radius: 38px;
    display: flex;
    align-items: center;
}

.calculate-block form #datepicker .datepicker__btn {
    width: 100%;
    height: 10px;
    background-color: rgba(0,0,0,0);
    border: 0px;
}

.calculate-block form #datepicker .datepicker__btn::after {
    content: '';
    display: block;
    width: 20px;
    height: 10px;
    background-image: url(../images/Vector1.svg);
    top: 50%;
    pointer-events: none;
    right: 0;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
}

.calculate-block form #datepicker #datepicker-main {
    box-sizing: border-box;
    position: relative;
    width: 220px;
    height: 40px;
    background: #FFFFFF;
    border: 2px solid #E5097F;
    border-radius: 38px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    color: #A4A4A4;
    text-align: center;
    outline: none;
}

.calculate-block form .form-input-name {
    box-sizing: border-box;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #A4A4A4;
    margin-top: 20px;
    margin-bottom: 20px;
}

.calculate-block form .name {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #A4A4A4;
    border-radius: 10px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    align-items: center;
    color: #000;
    padding-left: 20px;
}

.calculate-block form .phone {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #A4A4A4;
    border-radius: 10px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    align-items: center;
    color: #000;
    padding-left: 20px;
}

.calculate-block form .submit {
    position: relative;
    width: 186px;
    height: 40px;
    background: #E5097F;
    border-radius: 52px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    border: none;
    display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
      animation: rotateGradient 2s linear infinite;
}

.faq-block {

}

.faq-block .faq-section {
    position: relative;
    max-width: 920px;
    width: 100%;
    min-height: 64px;
    background: #F3F2F0;
    opacity: 0.7;
    border: 1px solid #000000;
    filter: blur(0.5px);
    border-radius: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8px;
    padding: 20px 60px 20px 20px;
}

.faq-block .faq-section .open-icon {
    position: absolute;
    width: 38px;
    height: 38px;
    right: 18px;
    top: 10px;
}

.faq-block .faq-section .title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #00A0E3;
}

.faq-block .faq-section .text {
    position: relative;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin-top: 20px;
    height: auto;
    max-height: 150px;
}

.close-block {
    margin-top: 0;
    /*max-height: 0;*/
}

.close-block .icon {
    background-color: #fff!important;
}

.show .icon {
    background-color: #00A0E3!important;
}

.show .icon svg path {
    stroke: #fff!important;
}


.blue {
    color: #00A0E3!important;
}

.accordion-block {
    display: block;
    position: relative;
    background: #FFFFFF;
    max-width: 920px;
    width: 100%;
    min-height: 50px;
    background: rgba(243, 242, 240, 0.7);
    border: 1px solid #000000;
    border-radius: 15px;
    padding-right: 130px;
    padding-left: 21px;
    margin: 0px auto 10px auto;
    height: 0;
    overflow: hidden;
    height: auto;
}

@media (max-width: 550px) {
    .accordion-block {
        padding-right: 21px;
    }
}

.accordion-block .icon {
    position: absolute;
    width: 38px;
    height: 38px;
    top: 5px;
    right: 20px;
    padding: 0;
    border-radius: 19px;
    background-color: #fff;
    transform: rotate(0deg);
    transition-property: background-color, transform;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    z-index: 40;
}

.accordion-block .icon:hover {
    background-color: rgba(0, 160, 227, 1)!important;
}

.accordion-block .icon:hover svg path {
    stroke: white;
    transition: stroke 0.5s;
}

.accordion-block .icon svg path {
    stroke: black;
    transition: stroke 0.5s;
}

.accordion .show .icon {
    background-color: #8c64c9;
    transform: rotate(180deg);
    transition-property: background-color, transform;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
}

.accordion .show .icon svg path {
    stroke: white;
    transition: stroke 0.5s;
}

.accordion-block .title {
    display: flex;
    align-items: center;
    min-height: 50px;
    height: auto;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #00A0E3;
    z-index: 33;
    position: relative;
    padding-right: 0;
}

@media (max-width: 550px) {
    .accordion-block .title {
        padding-right: 50px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.accordion-block .text {
    line-height: 20px;
    position: relative;
    display: block;
    padding-bottom: 35px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;

    height: auto;
}

.close-block .text {
    height: 0;
    padding-bottom: 0;
}

.accordion .show .text {
    position: relative;
    margin-top: 0%!important;
    transition-property: margin-top;
    transition-timing-function: linear;
    transition-duration: 0.5s;
}

.accordion .close-block .text {
    position: relative;
    margin-top: -100%!important;
    transition-property: margin-top;
    transition-timing-function: linear;
    transition-duration: 0.5s;
}


.datepicker__btn, .datepicker__btn::after {
    position: relative!important;
}

.blue-button {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    width: 230px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(0, 160, 227, 1);
    border-radius: 22px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.pinata {
    box-sizing: border-box;
    position: relative;
    max-width: 920px;
    width: 100%;
    height: auto;
    background: rgba(243, 242, 240, 0.7);
    border: 1px solid #000000;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
}

.pinata .image-cap {

}

.pinata .title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #E5097F;
    margin-top: 70px;
    padding: 0 10px;
}

@media (max-width: 850px){
.pinata .title {
    margin-top: 35px;
    padding: 0 10px;
}
}

.pinata .image-cap {
    position: absolute;
    display: block;
    width: 85px;
    height: 85px;
    left: -46px;
    top: -47px;
}

@media (max-width: 1024px){
.pinata .image-cap {
    display: none;
}
}

.pinata .pinata-flex-block {
    position: relative;
    display: flex;
}

@media (max-width: 850px){
.pinata .pinata-flex-block {
    display: block;
}    
}

.pinata .pinata-flex-block .images-block {
    display: block;
    max-width: 406px;
    width: 100%;
    height: 400px;
    margin-left: auto;
    margin-right: 0;
    position: relative;
}

@media (max-width: 850px){
.pinata .pinata-flex-block .images-block {
    margin-left: auto;
    margin-right: auto;
}    
}

.pinata .pinata-flex-block .images-block .image1 {
    position: absolute;
    top: 0px;
    left: 0px;
}

.pinata .pinata-flex-block .images-block .image1 img {
width: 205px;
}

.pinata .pinata-flex-block .images-block .image2 {
    position: absolute;
    top: 40px;
    right: 0px;
}

.pinata .pinata-flex-block .images-block .image2 img {
width: 270px;
}

.pinata .pinata-flex-block .images-block .image3 {
    position: absolute;
    top: 200px;
    left: 30px;
}

.pinata .pinata-flex-block .images-block .image3 img {
width: 241px;
}

@media (max-width: 500px){
.pinata .pinata-flex-block .images-block .image1 img {
width: 190px;
}
.pinata .pinata-flex-block .images-block .image2 img {
width: 240px;
}
.pinata .pinata-flex-block .images-block .image3 img {
width: 210px;
}    
}

.pinata .pinata-flex-block .form-block {
    position: relative;
    width: 362px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

@media (max-width: 850px){
.pinata .pinata-flex-block .form-block {
    margin-top: 20px;
}    
}

@media (max-width: 420px){
.pinata .pinata-flex-block .form-block {
    width: 95%;
}    
}

.pinata .pinata-flex-block .form-block .text {
    position: relative;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    text-align: left;
}

@media (max-width: 800px){
.pinata .pinata-flex-block .form-block .text {
text-align: center;
}
}

.pinata .pinata-flex-block .form-block .input-name {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #A4A4A4;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pinata .pinata-flex-block .form-block .input {
box-sizing: border-box;
position: relative;
width: 362px;
max-width: 362px;
height: 40px;
background: #FFFFFF;
border: 1px solid #A4A4A4;
border-radius: 10px;
padding-left: 20px;
}

@media (max-width: 420px){
.pinata .pinata-flex-block .form-block .input {
box-sizing: border-box;
position: relative;
width: 100%;
max-width: 362px;
height: 40px;
background: #FFFFFF;
border: 1px solid #A4A4A4;
border-radius: 10px;
padding-left: 20px;
}    
}

.pinata .pinata-flex-block .form-block .submit-button {
position: relative;
width: 207px;
height: 40px;
background: #E5097F;
border-radius: 52px;
font-family: 'Montserrat';
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 17px;
text-align: center;
color: #FFFFFF;
display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 50px;
  cursor: pointer;
      animation: rotateGradient 2s linear infinite;
}

.map {
box-sizing: border-box;
position: relative;
max-width: 1145px;
width: 100%;
border: 1px solid #000000;
margin-left: auto;
  margin-right: auto;
}

footer {
position: relative;
width: 100%;
background: #FFFFFF;
margin-top: 35px;
}

footer .footer-block {
    display: flex;
    max-width: 1165px;
width: 100%;
padding: 10px 10px 10px 10px;
margin-left: auto;
margin-right: auto;
}

@media (max-width: 800px){
footer .footer-block {
    display: block;
    padding: 10px 70px 30px 70px;
}   
}

footer .footer-block .left {
    width: 50%;
    padding-top: 10px;
}

footer .footer-block .left .footer-logo {
    margin-bottom: 10px;
    text-align: left;
}

footer .footer-block .left .footer-social {
    text-align: left;
}

footer .footer-block .left .footer-social a {
    margin-left: 0;
    margin-right: 10px;
}

footer .footer-block .right {
    width: 50%;
    margin-top: 0px;
    padding-top: 20px;
}

@media (max-width: 800px){
footer .footer-block .left {
    width: 100%;
}
footer .footer-block .left .footer-logo {
    margin-bottom: 10px;
    text-align: center;
}
footer .footer-block .left .footer-social {
    text-align: center;
}
footer .footer-block .left .footer-social a {
    margin-left: 5px;
    margin-right: 5px;
}
footer .footer-block .right {
    width: 100%;
    margin-top: 10px;
}
}


footer .footer-block .right .phone {
font-family: 'Montserrat';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 20px;
text-align: right;
margin-bottom: 25px;
color: #000000;
position: relative;
}

footer .footer-block .right .phone span {
position: relative;
left: -9px;
top: 6px;
}

footer .footer-block .right .address {
font-family: 'Montserrat';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 20px;
text-align: right;
margin-bottom: 20px;
color: #000000;
}

footer .footer-block .right .park {
font-family: 'Montserrat';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 20px;
text-align: right;
margin-bottom: 12px;
color: #000000;
}

@media (max-width: 800px){
footer .footer-block .right .phone {
text-align: center;
}

footer .footer-block .right .address {
text-align: center;
}

footer .footer-block .right .park {
text-align: center;
}    
}

.home-gallery {
max-width: 100%!important;
padding: 0!important;
}

.get-advice-popup-cover {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 101;
}

.view-popup {
    display: block!important;
}

.get-advice-popup-cover .get-advice-popup {
    box-sizing: border-box;
position: absolute;
width: 335px;
/*height: 362px;*/
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
background: rgba(243, 242, 240, 0.9);
border: 1px solid #000000;
border-radius: 12px;
    padding: 40px 20px 40px 20px;
}

.get-advice-popup-cover .get-advice-popup .close-popup {
    position: absolute;
    right: 20px;
    top: 20px;
}

.get-advice-popup-cover .get-advice-popup .title {
font-family: 'Montserrat';
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 29px;
text-align: center;
letter-spacing: 0.02em;
color: #E5097F;
}

.get-advice-popup-cover .get-advice-popup .get-advice-input-name {
font-family: 'Montserrat';
font-style: normal;
font-weight: 500;
font-size: 12px;
line-height: 15px;
color: #A4A4A4;
margin: 10px 0 10px 0;
}

.get-advice-popup-cover .get-advice-popup .get-advice-input {
box-sizing: border-box;
width: 294px;
height: 40px;
background: #FFFFFF;
border: 1px solid #A4A4A4;
border-radius: 10px;
padding-left: 20px;
}

.error-input {
border: 1px solid #ff0000!important;
}

.get-advice-popup-cover .get-advice-popup .get-advice-button {
width: 186px;
height: 40px;
background: #E5097F;
border-radius: 52px;
display: flex;
align-items: center;
justify-content: center;
  color: #fff;
  margin: 25px auto;
  cursor: pointer;
}
/*
.flatpickr-day.today {
  border-color: #E5097F!important;
  background: #E5097F!important;
  color: #fff;
}
*/
.flatpickr-day:hover {
  border-color: #E5097F!important;
  background: #E5097F!important;
  color: #fff;
}

.flatpickr-day.selected {
  border-color: #E5097F!important;
  background: #E5097F!important;
  color: #fff!important;
}

.home-image-list-block {
    display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1145px;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  padding: 0 10px;
}

@media (max-width: 800px){
.home-image-list-block {
padding: 0px 0px!important;
}
}

.home-image-list-block .title2 {
    
}

.home-image-list-block .home-image-list {
    
}

.home-image-list-block .home-image-list .image {
    margin-bottom: 18px;
}

.home-image-list-block .home-image-list .image:last-child {
    margin-bottom: 0px;
}

.home-image-list-block .home-image-list .image img {
    
}

.title12 {
    margin-bottom: 8px;
}

.city-input-block {
    position: relative;
}

.hide-city-list {
    height: 0!important;
    opacity: 0!important;
}

.city-list {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  padding: 10px 0 10px 0px;
  background: #fff;
  white-space: normal;
  border-radius: 0px 0px 10px 10px;
  white-space: normal;
  width: 100%;
  margin-top: -8px;
  border-width: 0px 1px 1px 1px;
  border-color: #a4a4a4;
  border-style: solid;
  z-index: 9;
  height: 170px;
  overflow-y: auto;
  opacity: 1;
  transition: height .3s ease-in-out;
}

.city-item {
    display: block;
    width: 100%;
    padding: 5px 20px 5px 20px;
    cursor: pointer;
}

form input {
    color: #000;
}
