html{
    box-sizing: border-box;
    height: 100%;
    scroll-behavior: smooth;
}
*,
*::before,
*::after{
    box-sizing: inherit;
}

body {
    min-height: 100vh;
    height: 100%;
    overflow-x: hidden;
    min-width: 320px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
}
.content{
	min-height: 100%;
	display: flex;
	flex-direction: column;
}
.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 10px;
}
.container-min {
    max-width: 1380px;
    margin: 0 auto;
}

.main{
    flex:  1 0 auto;
    flex-grow: 1;
}
/* .header{
	// position: sticky;
	margin: 0 auto;
	top: 0;
    // position: fixed;
    // top: 0;
	// left:0;
	// right:0;
} */
.on{
    display: inline-block !important;
}
.footer{
    flex: 0 0 auto;
}
.wrapper{
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.btn{
    border-radius: 80px;
    padding: 10px 18px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    max-width: 177px;
    width: 100%;
    border: none;
    height: 41px;
    display: flex;
    justify-content: center;
    margin: auto 0;
    background: var(--Gradine-small, linear-gradient(81deg, #E264B0 0%, #8F51A5 41.02%, #2A3A98 91.23%), #C4C4C4);
}

.on-flex{
    display: flex !important;
}

.rotate-arr{
    transform: rotate(-180deg);
}




.dropdown{
    position: relative;
    cursor: pointer;
}
.dropdown-btn{
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    width: 223px; 
    border-radius: 80px;
   border: 1px solid  #8F51A5;
/* background-image: linear-gradient(81deg, #E264B0 0%, #8F51A5 41.02%, #2A3A98 91.23%); */

    text-align: left;
    outline: none;
    cursor: pointer;
    padding: 8px 8px 8px 16px;
    appearance: none;

 
}
.dropdown-arr{
    position: absolute;
    right: 15px;
    top: 12px;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    cursor: pointer;
    pointer-events: none;
}

.dropdown__list {
    position: absolute;
    background-color: white;
    padding: 16px !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    display: none;
    width: 100%;
z-index: 9999999999;
}
.dropdown__list-item {
    color: #575757;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    /* transition: all .3s; */
}
.dropdown__list-item:hover{
    background-image: linear-gradient(81deg, #E264B0 0%, #8F51A5 41.02%, #2A3A98 91.23%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-box-decoration-break: clone;
}

.dropdown__input-hidden{
    display: none;
}




.header__burger{
    display: none;
z-index: 77777;
    position: relative;
    width: 24px;
    height: 24px;
}
.header__burger span{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    background-color: #1F1F1F;
    top: 50%;
    transform: translateY(-50%);
}
.header__burger::before{
    position: absolute;
    background-color: #1F1F1F;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    top: 0;
}
.header__burger::after{
    position: absolute;
    background-color: #1F1F1F;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
}

.header__burger.header__burger--active span{
    transform: scale(0);
    background-color: #333;
}
.header__burger.header__burger--active::before{
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
    background-color: #333;
}
.header__burger.header__burger--active::after{
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
    background-color: #333;
} 

.burger-content {

        /* display: none !important; */
    transform: translateY(-3000px);
    display: flex;
    flex-direction: column;
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    gap: 31px;
    padding: 40px 0 72px;
   height: 39vh;
   z-index: 999999999;
}

.burger-content--active{
    transform: translateY(100px) !important;
}

.burger-content__menu {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.burger-content__menu-item {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}
.burger-content__btn{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
}


.stars{
    margin-right: 10px !important;
    display: flex;
    align-items: center;
}