/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
    font-family: "Mulish", sans-serif;
    box-sizing: border-box;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
/* Это пример для юзания шрифта Mulish */
/* .mulish-<uniquifier> {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }
   */

/* Links */
button {
    transition: all .5s;
}
button:hover {
    transition: all .5s ;
    background-color: rgba(138, 138, 138, 0.322);
}
a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}



address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}


.container {
    
    width: 1308px;

    max-width: 80vw;
    margin-inline: auto; 
}






html {
    max-width: 100vw;
    overflow-x: hidden;
}
body{    
    max-width: 100vw;
    overflow-x: hidden;
}
section {
    max-width: 100vw;
    overflow-x: hidden;   
}

h1, .popular__p{
    color: rgb(12, 16, 29);
    font-size: 72px; 
    font-weight: 900  ;
    line-height: 100%;
    letter-spacing: -6%;
}



/* header */

header {
  
    width: 1308px;

    max-width: 80vw;
    margin-inline: auto; 

    position: relative;
    margin-top: 15px;
    justify-items: center;
    justify-content: center;  
    display: flex;
    flex-direction: row;
}
.header__logo {
    margin-top: 10px;
    margin-left: auto;
    height: min-content;
    cursor: pointer;
}
.button__menu {
    font-family: "Mulish";
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 30px 10px 30px;
    box-sizing: border-box;
    border: 1px solid rgb(12, 16, 29);

    color: rgb(12, 16, 29);
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0%;
}

.header__contacts {
	display: flex;
	align-items: center;
	margin-left: auto;
}

.header__phone {
	font-size: 20px;
	font-weight: 800;
	color: #000;
}

.button__application {
    font-family: "Mulish";
    margin-left: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 30px 10px 30px;
    background: #E5F7E7;
    
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0%;
}

.button__application span  {
	color: #7BB489;
}

.whatsapp {
	display: flex;
}

a.button__whatsapp_green {
	
	background: #E5F7E7;
}

a.button__whatsapp_green span {
	color: #7BB489;
}

a.button__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
}

.program a.button__whatsapp.button-sign_up,.menu-item a.button__whatsapp.button-sign_up {
	width: 100%;
}

.card a.button__whatsapp.button-sign_up {
	width: 80%;
	gap: 0;
	margin-top: 15px;
	margin-bottom: 40px;
}



a.button__whatsapp svg {
	flex: 0 0 24px;
}

a.button__whatsapp span {
	margin-left: 7px;
}

.card__phone {
	margin-top: 40px;
	width: 80%;
	display: flex;
	justify-content: center;
}

.card__phone a {
	font-size: 30px;
	color: #000;
	font-weight: 800;
}

@media screen and (max-width: 1100px) {
	.header__contacts {
		margin-left: 0;
		margin-top: 100px;
		width: 100%;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	
	.header__contacts .button__application {
		position: static;
		width: 100%;
		margin-top: 10px;
		margin-left: 0;
	} 
}

@media screen and (max-width: 480px) {
	.card a.button__whatsapp.button-sign_up, .card__phone {
		width: 100%;
	}
	
	.card__phone a {
		font-size: 24px;
	}
}
/* header menu */

.header_menu {
    font-family: "Mulish";
    margin-top: -1200px;
    position: absolute;
    height: 1065px;
    width: 211px;
    display: none;
    left: 0;
    box-sizing: border-box;
    border: 1px solid rgb(12, 16, 29);
    background-color: #fff;
    z-index: 10;
    overflow: hidden;
    animation: fadein .3s ease;


    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0%;
}
@keyframes fadein {
    from { 
        margin-top: -1200px;
     }
    to { 
        margin-top: 0px;
         }
}
.menuTransition {
    display: block;
    margin-top: 0;
    animation: fadein .8s;
}
.header_menu__content {
    position: relative;
    display: flex;
    flex-direction: column;
}
.menu_svg {
    margin-left: 15px;
    margin-top: 15px;
}
.menu_items {
    display: flex;
    flex-direction: column;
    padding: 25px 0px 25px 30px;
    row-gap: 15px;
}
.menu_item {
    cursor: pointer;
}
.menu_number_everytime {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
}
.menu_sale {
    display: flex;
    flex-direction: column;
    
    background-image: url("https://s3-alpha-sig.figma.com/img/9eed/b694/739b4fa3d7f9a0ae62629884f99db96b?Expires=1717372800&Key-Pair-Id=APKAQ4GOSFWCVNEHN3O4&Signature=J1n7OEHmHQrw-NO2OI-8d7qdTLaUuvikpP1MWuK34Hqp6TG4kW9YbSPz2TJnj~FHL~ZjThsKqPMnBYndQ8602hiYPruV71tod42mCc2AN0sX5QykQIgdLUXBtSPILUbHgF-avNHIPvvIzElRRNuKhxvtY8c0NkkKLRLS3LOI6l3C~FkhUHCe6vHnlp9SsW~GJcDcLZdsCzFgiIi~gYvoXakKg96jAXmrSht9Ea4GKtTpMDbY3MahelOT2qDcohkbWZJ9EtV4nK2Ny3LYkWqYeosfCiWu1HXjjqnemXydCqaJlsC9JzPsXJ~77sqeHvff7LG7S95miSAmdzV5wLK1lA__") !important;
    background-position: -80px;
    background-size: 200%;
    background-repeat: no-repeat;
    height: 600px;
    width: 209px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 25px;
    color: #fff;

}
.menu_sale_p {
    font-size: 26px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0%;

    font-family: "Mulish";
}
.menu_sale__button {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 30px 10px 30px;
    box-sizing: border-box;
    border: 1px solid rgb(255, 255, 255);
    font-family: "Mulish";
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0%;
}

/* section popular */

.section__popular {
    margin-top: 30px;
    margin-bottom: 80px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 25px 20px;
    justify-content: center;
}
.popular__girls{
    grid-row: span 2;
}
.popular__programs{
    height: 288px;
    overflow: hidden;
    grid-column: auto;
}
.popular__costs{
    height: 288px;
    overflow: hidden;
    grid-column: auto;
}

.popular__p {
    position: absolute;
    color: #fff;
    text-shadow: 1px 1px 1px #453f3f;
    margin-left: 30px;
    margin-top: 10px;

    font-family: "Mulish";
}


/* section girls */

.section__girls {
    display: flex;
    flex-direction: column;

}

.girls_cards {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0px 10px;
    grid-auto-flow: row;    
}
.girls_card {
    display: flex;
    flex-direction: column;
}
.card_textCon{
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.card_name{
    color: rgb(12, 16, 29);
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0%;
}
.button__sign{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 20px 10px 20px;    
    box-sizing: border-box;
    border: 1px solid rgb(12, 16, 29);
		color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0%;
}
.checkAll_p {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
}

/* section promo */

.section__promo {
    margin-top: 80px;
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 0px 10px; 
}
.promo__item {
    display: flex;
    width: 642px;
    max-width: 45vw;
    height: 350px;
    overflow: hidden;
}
.promo__p {
    margin-top: 20px;
    margin-left: 30px;
    position: absolute;
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0%;
    width: 600px;
    max-width: 40vw;
    color: #fff;
    text-shadow: 1px 1px 1px #453f3f;
}

/* section programs */

.section__programs {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
}
.programs_cards {
    margin-top: 35px;
    display: grid; 
    grid-auto-columns: 1fr; 
    grid-template-columns: 1fr 1fr; 
    gap: 35px 10px; 
}
.program_card-p {
    margin-left: 20px;
    margin-top: 15px;
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0%;
    width: 600px;
    }

.program_card {
    overflow: hidden;
    max-width: 45vw;
}
.button__program_card {
    margin-left: 20px;
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 7px 30px 10px 30px;    
    box-sizing: border-box;
    border: 1px solid rgb(12, 16, 29);
	color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0%;
}


/* section advantages */
.section__advantages {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
}
.advantages_cards {
    margin-top: 35px;
    display: grid; 
    grid-auto-columns: 1fr; 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr 1fr; 
    gap: 35px 10px; 
}
.advantages_card-p {
    margin-left: 20px;
    margin-top: 15px;
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0%;
    max-width: 600px;
}
.advantages_card_img {
    display: flex;
    height: 300px;
    overflow: hidden;

        justify-content: center;
        align-items: center;
        justify-items: center;
}
.advantages_card {
    height: 355px;
    overflow: hidden;
}

/* section interier */
.section__interier {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}
.interior_con {
    display: flex; 
    overflow: hidden; 
    width: 1308px; 
    height: 450px; 
    max-width: 90vw; 
    align-items: center;
}

/* section reviews */

.section__reviews {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
}
.reviews__img {
    margin-top: 35px;
}
.icon {
    border-radius: 100%;
}

/* section contacts */
.section__contacts {
    margin-top: 80px;
    display: flex;
    flex-direction: column;

}
.contacts__main_info {
    margin-top: 35px;
    display: grid;
    grid-auto-columns: 1fr; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 0px 80px; 
    justify-content: center;
    align-items: center;
    justify-items: center;
}
.main_info-block {
    display: flex;
    flex-direction: column;
}
.info-block_title {
    font-size: 36px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0%;
	color: #000;
}
.info-block_span {
    margin-left: 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
}
.info-block_adress {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
}
.contacts__img {
    margin-top: 35px;
}
.contacts__text_under {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;

    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;


}
.under__title {
    margin-bottom: 20px;
}
.under__items {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}



/* foooter */

footer {
    margin-top: 80px;
    display: flex;
}
.warning__18yo {
    margin-bottom: 30px;

    display: flex;
    align-items: center;
    gap: 40px;
}

.warning__18yo__text {
    font-family: "Mulish";
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
  

}
.mb_only {
    display: none;
}




/* pop up */


._pop_up_menu {
    top: 20vh;
	width: 100vw;
    display: none;
    justify-content: center;
    justify-items: center;
	
	font-family: "Mulish", sans-serif;
  height: 100%;
  position: fixed;

  z-index: 999;
    

}



._pop_up_menu__wrapper {
    height: 40vh;
    
    min-height: 450px;
    width: 50vw;
    margin-inline: auto;
    max-width: 500px;
	padding: 20px 40px;

	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: white;
	border: solid .5px #453f3f;
	border-radius: 20px;
	

	overflow: hidden;
}

._pop_up_menu__h1 {
	color:black;
	font-family: "Mulish", sans-serif;
	font-weight: 500;
	font-size: 140%;
	text-align: center;
}

._pop_up_menu__p {
    margin-block: 20px;

	font-family: "Mulish", sans-serif;
	font-weight: 400;
	font-size: 130%;
	text-align: center;
	color:black;
}

._pop_up_menu__inputs {
	display: flex;
	flex-direction: column;
	gap: 10px 0px;
}

._pop_up_menu__buttons {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 0px 10px;
}

.radio_button__pop_up {
	width: 100%;
}

.send_button__pop_up {
    margin-top: 20px;
	width: 100%;
    height: 50px;
    border-radius: 30px;
	background-color: #463EE7;
	color:white;
	font-family: "Mulish", sans-serif;

	border: none;
	outline: none;
}

.input-name__pop_up_menu {
    margin-top: 20px;
	padding: 10px;
	border: 1px #00000090 solid;
    
    
}

.input-phone__pop_up_menu {
    margin-top: 10px;
	padding: 10px;
	border: 1px #00000090 solid;
   

}
.close_pop {
    position: absolute;
    right: 10px;
    top: 10px;
}







/* slider */











/* SCREENS */

@media screen and (max-width: 1700px) {
    .container {
        max-width: 90vw;
    }
    .section__popular {
        /* display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center; */
        margin-inline: auto;
        max-width: 90vw;
    }
    .popular__girls, .popular__costs, .popular__programs {
        display: flex;
        justify-content: center;
    }
    .girls_cards {
        margin-top: 35px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0px 10px;
        grid-auto-flow: row;   
        
        
        row-gap: 35px;
    }
    .card_textCon {
        margin-top: 30px;
        padding: 0;
        width: 420px;
    }
    /* .popular__girls_img {
        max-width: 45vw;
    } */


    .program_card-p {
        margin-left: 0;
    }
    .button__program_card {
        margin-left: 0;
    }
    .advantages_card-p {
        margin-left: 0;
        font-size: 28px;
    }
}





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


    .promo__item {
        max-width: 90vw;
    }
    .program_card {
        max-width: 90vw;
    }
    .promo__p {
        max-width: 70vw;
    }
    ._pop_up_menu {
		width: 100%;
		height: 50%;
	}

	._pop_up_menu__wrapper {
		width: 90vw;
		padding: 20px;
    
	}
    .interior_con {
        height: 300px;
        width: 350px;
    }
    .interior_img {
        width: 900px;
        height: auto;
        margin-left: -200px;
    }
    h1 {
        font-size: 36px;
        font-weight: 700;
        line-height: 110%;
        letter-spacing: 0%;
    }
    .container {
        width: 350px;
        max-width: 90vw;

        margin-inline: auto;
    }
    .button__see_all__mb {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 7px 30px 10px 30px;    
        box-sizing: border-box;
        border: 1px solid rgb(12, 16, 29);
        
        margin-top: 35px;
        font-size: 18px;
        font-weight: 600;
        line-height: 140%;
        letter-spacing: 0%;
    }


    
    .popular__girls, .popular__costs, .popular__programs {
        display: flex;
        justify-content: center;
    }
    .popular__girls_img {
        width: 90vw;
        max-width: 350px;
        height: 300px;
    }
    .popular__costs_img, .popular__programs_img {
        width: 350px;
        max-width: 90vw;
    }



    /* header */
    header {
     
        width: 350px;

    max-width: 80vw;
    margin-inline: auto; 
 
        display: flex;
        height: 120px;
    }
    .header_menu {
        margin-inline: auto;
        width: 390px;
        max-width: 90vw;
        margin-left: -4vw;
        height: 844px;
        font-weight: 800;
        font-size: 36px;
    }
    .button__menu {
        position: absolute;
        right: 0;
        margin-top: 10px;
    }
    .button__application {
        position: absolute;
        margin-top: 72px;
        width: 350px;
        max-width: 80vw;
    }
    .header__logo {
        position: absolute;
        left: 0;
        margin-top: 20px;
    }
    .menu_items {
        margin-top: 80px;
        padding: 20px 20px;
    }
    .menu_item {
        border-bottom: solid 1px #0C101D1A;
    }
    .border_none {
        border-bottom: none;
    }
    .menu_svg {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    /* section popular */
    .section__popular {
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
    }
    .popular__girls {
        display: flex;
        position: relative;

    }
    .popular__p {
        font-size: 36px;
        font-weight: 700;
        line-height: 110%;
        letter-spacing: 0%;
        width: 250px;
        margin-left: -30px;
        text-align: left;
    }

    /* section girls */

    .button__sign {
        width: 90vw;
        max-width: 350px;
    }
    .section__girls {
        margin-top: 50px;
    }
    .girls_cards {
        display: flex;
        flex-direction: column;
        row-gap: 35px;
    }
    .girl_card {
        width: 300px;
        
        
    }
    .card_img_wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-items: center;
        padding: auto;
        
    }
    .card_img {
        margin: auto;
        width: 350px;
        height: 400px;
    }
    .card_textCon {
        padding: 0;
        row-gap: 15px;
        display: flex;
        flex-direction: column;
    }
    .card_name {
        font-size: 26px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: 0%;
    }

    /* section promo */
    .section__promo {
        display: flex;
        flex-direction: column;
        row-gap: 35px;
    }
    .promo__p {
        font-size: 26px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: 0%;
        width: 320px;
    }
    .promo__item {
        height: 200px;
    }
    .promo_img {
        display: flex;
        width: 350px;
        height: 200px;
        overflow: hidden;
        justify-content: center;
        align-items: center;
        justify-items: center;
    }
    


    /* section programs */
    .programs_cards {
        display: flex;
        flex-direction: column;
    }

    .program_card-p {
        font-size: 26px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: 0%;
        margin-left: 0;
    }
    .button__program_card {
        margin-left: 0;
        width: 100%;
    }

    /* section advantages */
    .advantages_cards {
        display: flex;
        flex-direction: column;
    }
    .advantages_card-p {
        font-size: 26px;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: 0%;
        margin-left: 0;
    }

    /* section contacts */
    .contacts__main_info {
        display: flex;
        flex-direction: column;
    }
    .contacts__main_info{
        row-gap:  35px;
        justify-content: left;
        justify-items: left;
        align-items: start;
    }
    .main_info-block {
        justify-content: left;
        justify-items: left;
    }    
    .info-block_title {
        font-size: 26px;
        text-align: left;
    }



    .pc_only {
        display: none;
    }
    .mb_only {
        display: flex;
    }
}
span.menu_number a {
    color: #000000;
}

.content-block {
	margin-top: 40px;
	font-family: "Mulish";
}

.content-block h2 {
	margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    line-height: 31.2px;
}

.content-block h3 {
	font-size: 23px;
	font-weight: 700;
	margin-bottom: 20px;
}

.content-block h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.content-block h5 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

.content-block p {
	margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
}

.content-block ul, .content-block ol {
	margin-bottom: 20px;
}

.content-block ul li {
	font-size: 18px;
}

.content-block ul li:before {
	display: inline-block;
	content: '—';
	margin-right: 7px;
}

.content-block ol {
	margin-left: 20px;
}

.content-block li {
	margin-bottom: 10px;
}

.content-block img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}