* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body-container {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;

}

@font-face {
    font-family: Tavolga;
    src: url('../fonts/Tavolga.ttf');
}

@font-face {
    font-family: GilroyRegular;
    src: url('../fonts/gilroy-regular.ttf');
}

@font-face {
    font-family: GilroyMedium;
    src: url('../fonts/gilroy-medium.ttf');
}

@font-face {
    font-family: GilroyBold;
    src: url('../fonts/gilroy-bold.ttf');
}

@font-face {
    font-family: GilroyExtraBold;
    src: url('../fonts/gilroy-extrabold.ttf');
}

.container {
    max-width: 1920px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.header__container {
    background-color: #eba8b1;
}

.header {
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 116px 1fr 157px;
    padding: 36px 15px 26px 15px;
    max-width: 1170px;
    margin: 0 auto;
}

.header-logo {
    width: 116px;
}

.header__menu {
    display: block;
    justify-self: center;
}

.header__menu-list {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
}

.header__menu-item {
    border-bottom: 2px solid transparent;
    transition: all 0.5s ease;
}
ul {
    list-style: none;
}
a {
    text-decoration: none !important;
}
.header__menu-link {
    display: block;
    font-size: 14px;
    font-family: GilroyMedium, sans-serif;
    color: rgb(119, 11, 29);
    margin-bottom: 3px;

}

.header__menu-item:hover {
    border-bottom: 2px solid rgb(130, 19, 40);
    transform: scale(1.1);
}

.burger {
    display: none;
}

.close {
    display: none;
}

.phone {
    display: block;
    font-size: 16px;
    font-family: GilroyBold, sans-serif;
    color: rgb(255, 255, 255);
}

.main-pink__container {
    background-color: #eba8b1;
}

.main-pink {
    max-width: 1170px;
    padding: 126px 15px 0 15px;
    display: grid;
    grid-template-columns: fit-content(585px) 1fr;
    grid-column-gap: 12px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.main-pink h1 {
    font-family: Tavolga, sans-serif;
    font-size: 55px;
    color: rgb(255, 255, 255);
    line-height: 1.091;
    margin-bottom: 60px;
    grid-column: 1;
    grid-row: 1;
}

.main-pink-info-text {
    font-family: Tavolga, sans-serif;
    font-size: 18px;
    color: rgb(255, 255, 255);
    line-height: 1.389;
    margin-bottom: 80px;
    max-width: 350px;
    grid-column: 1;
    grid-row: 2;
}

.button {
    display: block;
    background: linear-gradient(90deg, rgb(113, 8, 30) 0%, rgb(215, 72, 92) 100%);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-family: GilroyBold, sans-serif;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all .3s ease;
}

.button:hover {
    box-shadow: 0 5px 9px 1px rgba(130, 19, 40, 0.5);
}

.button-main-pink {
    width: 240px;
    height: 60px;
    grid-column: 1;
    grid-row: 3;
    margin-bottom: 108px;
}

.main-pink-image {
    z-index: 1;
    width: 529px;
    height: 529px;
    grid-column: 2;
    grid-row: 1 / 4;
    overflow: hidden;

}

.main-pink-image img {
    width: 100%;
    object-fit: cover;

}

.circle-anime {
    display: block;
    width: 300px;
    height: 300px;
    z-index: 0;
    border-radius: 50%;
    border: 5px solid rgb(130, 19, 40);
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    justify-self: center;
    animation: blink1 3s ease-out infinite;
    position: relative;
    overflow: hidden;
}

.circle-anime-first {
    animation-delay: -0.2s;
}

.circle-anime-second {
    animation-delay: 0.6s;
}

.circle-anime:hover {
    border: 1px solid rgb(175, 148, 58);
}

@keyframes blink {
    from {
        width: 80%;
        height: 80%;
        opacity: 0.3;
    }
    to {
        width: 120%;
        height: 120%;
        opacity: 0;
    }
}

@keyframes blink1 {
    from {
        transform: scale(0.8);
        opacity: 0.3;
    }
    to {
        transform: scale(1.8);
        opacity: 0;
    }
}

.second-white__container {
    position: relative;
    z-index: 1;
    background-color: #ffefef;
}

.second-white {
    max-width: 1170px;
    padding: 120px 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 12px;
    grid-template-rows: repeat(3, min-content);
    justify-self: center;
    justify-content: center;
    z-index: -1;
}

.second-white-title {
    grid-column: 1;
    grid-row: 1;
    font-size: 45px;
    font-family: Tavolga, sans-serif;
    color: rgb(51, 25, 7);
    line-height: 1.222;
    margin-bottom: 60px;
}

.second-white__info {
    grid-column: 1;
    grid-row: 2;
    z-index: 1;
    font-size: 18px;
    font-family: GilroyRegular, sans-serif;
    color: rgb(51, 25, 7);
    line-height: 1.556;
    max-width: 470px;
}

.second-white-image {
    grid-column: 2;
    grid-row: span 2;
    z-index: 0;
    justify-self: end;
    align-self: end;
    width: 520px;
    /*position: relative;
    left: 100px;
    top: -150px;*/
}

.second-white-image img {
    width: 100%;
}

.second-white-items {
    margin-top: 88px;
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}

.second-white-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-wrap: wrap;
}

.digit-circle {
    margin-bottom: 13px;

    border-radius: 50%;
    background-color: rgb(130, 19, 40);
    width: 70px;
    height: 70px;
    display: flex;
    position: relative;
    justify-content: center;
    transition: all .3s ease;
}

.digit-circle span {
    font-size: 60px;
    font-family: GilroyExtraBold, sans-serif;
    color: rgb(255, 255, 255);
    position: absolute;
    top: 10px;
}

.second-white-item:hover .digit-circle span {
    color: rgb(130, 19, 40);
}

.second-white-item:hover .digit-circle {
    background-color: rgb(235, 168, 177);
    cursor: pointer;
}

.digit-title {
    font-family: GilroyExtraBold, sans-serif;
    font-size: 20px;
    color: rgb(51, 25, 7);
    margin-bottom: 20px;
}

.digit-text {
    font-family: GilroyMedium, sans-serif;
    font-size: 15px;
    color: rgb(51, 25, 7);
    line-height: 1.333;
    max-width: 225px;
}

.main-pink-2 {
    padding: 120px 15px;
    max-width: 1120px;
    margin: 0 auto;

}
.responsive {
    padding-left: 5px;
}
.main-pink-2-title {
    font-size: 45px;
    font-family: Tavolga, sans-serif;
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 80px;
}


.main-pink-2-item {

    display: block;
    margin-top: 65px;
    position: relative;
}

.main-pink-2-item:hover .main-pink-2-item-image {
    transform: scale(1.1);
}

.main-pink-2-item-image {
    position: absolute;
    max-width: 200px;
    top: -59px;
    left: 33px;
    transition: 300ms all ease-in-out;
}
.main-pink-2-item-image img{
    width: 100%;
}
.main-pink-2-item-border-white {
    padding: 109px 20px 27px 20px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 20px;
    width: 259px;
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.slick-slider {
    display: flex;
    justify-content: center;
}

.slick-prev, .slick-next {
    top: 60%;
}
.main-pink-2-item-text {
    font-size: 18px;
    font-family: Tavolga, sans-serif;
    color: rgb(255, 255, 255);
    margin-bottom: 26px;
}

.main-pink-2-item-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
}

.main-pink-2-item-cell {
    grid-column: 1;
    font-size: 15px;
    font-family: GilroyRegular, sans-serif;
    color: rgb(255, 255, 255);
}

.button-main-pink-2 {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 130px;
    height: 50px;
    font-size: 16px;
}

.fourth-white {
    position: relative;
    padding: 98px 15px 77px 15px;
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    overflow: hidden;
}

.fourth-white-title {
    grid-column: 2;
    font-size: 45px;
    font-family: Tavolga, sans-serif;
    color: rgb(51, 25, 7);
    margin-bottom: 41px;
}

.fourth-white__info {
    grid-column: 2;
    font-size: 18px;
    font-family: GilroyRegular, sans-serif;
    color: rgb(51, 25, 7);
    line-height: 1.556;
    max-width: 400px;
    margin-bottom: 23px;
}

.error-input {
    margin-bottom: 15px;
    color: transparent;
    display: block;
}

.choice-title {
    margin-bottom: 21px;
    font-size: 18px;
    font-family: GilroyBold, sans-serif;
    color: rgb(18, 10, 6);
}

.choice-grid {
    display: grid;
}

.hidden {
    display: flex;

}

.choice-input {
    grid-column: 1;
    border: 1px solid rgb(130, 19, 40);
    border-radius: 30px;
    width: 293px;
    height: 59px;
    padding-left: 25px;
    margin-bottom: 15px;
}

.choice-input::placeholder, .choice-input {
    font-size: 15px;
    font-family: GilroyBold, sans-serif;
    color: rgb(118, 12, 34);
    background-color: #FFFFFF;
}

.needs-validation {
    border: 1px solid rgb(248, 7, 81);
    display: block;
}

.was-validated {
    border: 1px solid rgb(28, 148, 9);
}

.fourth-white-button {
    grid-column: 1;
    border-radius: 30px;
    width: 295px;
    height: 61px;
    margin-top: 5px;
}

.fourth-white-image {
    position: relative;
    grid-column: 1;
    grid-row: 1 / 9;
    align-self: end;
    justify-self: center;
    width: 408px;
    overflow: hidden;
}

.fourth-white-image img {
    width: 100%;
}

.strawberry-float-one {
    grid-column: 1;
    grid-row: 2;
    position: absolute;
    left: 10px;
    top: -10px;
    animation: move-up-down 3s ease-in-out infinite;
    animation-delay: -0.4s;
}

.strawberry-float-two {
    grid-column: 2;
    grid-row: 3;
    position: absolute;
    right: 0;
    animation: move-up-down 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes move-up-down {
    from {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50px);
    }
    to {
        transform: translateY(0);
    }
}

.footer__container {
    background-color: #c0707c;
}

.footer {
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 168px 1fr 157px;
    padding: 73px 15px 62px 15px;
    max-width: 1170px;
    margin: 0 auto;
}


.footer .header-logo {
    grid-column: 1;
    grid-row: 1;
}

.footer__info-rights {
    grid-column: 1;
    grid-row: 2;
    font-size: 12px;
    font-family: GilroyRegular, sans-serif;
    color: rgb(227, 172, 180);
}

.footer__info-instagram {
    display: grid;
    grid-column: 2;
    grid-row: span 2;
    gap: 15px;
    justify-self: center;
}

svg {
    grid-row: 1;
    width: 35px;
    height: 35px;
    justify-self: center;
}

.instagram {
    grid-row: 2;
    font-size: 16px;
    font-family: GilroyBold, sans-serif;
    color: rgb(255, 255, 255);
}

.footer .phone {
    grid-column: 3;
    grid-row: span 2;
}

.presents {
    z-index: 5;
    display: grid;
    grid-template-areas: "img img";
    grid-template-columns: min-content min-content;
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 1300ms all ease-in-out;
}

.presents:hover {
    display: grid;
    align-items: center;
    gap: 24px;
    grid-template-areas: "message img";
    grid-template-columns: min-content min-content;

}

.present-info {
    display: none;
    text-align: center;
    align-items: center;
    position: relative;
    border: 2px solid rgb(119, 10, 29);
    border-radius: 10px;
    background-color: rgb(254, 239, 238);
    width: 168px;
    height: 60px;
    font-size: 15px;
    font-family: GilroyMedium, sans-serif;
    color: rgb(119, 10, 29);
    line-height: 1.333;
    grid-area: message;
   animation: up-down 3s ease ;
}
@keyframes up-down {
    from {
        transform: translateY(50px) scale(0.8);
    }

    to {
        transform: translateY(0);
    }
}

.present-info::after {
    content: '';
    position: absolute;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgb(119, 10, 29);
    right: -18px;
    bottom: calc(50% - 6px);
    left: auto;
    z-index: 1;
    transform: rotate(-90deg);
    width: 0;
    height: 0;
}

.present-info::before {
    content: '';
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgb(254, 239, 238);
    right: 0;
    bottom: calc(50% - 5px);
    left: 159px;
    z-index: 20;
    transform: rotate(-90deg);
    width: 0;
    height: 0;
}

.present-image {
    grid-area: img;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #ef6767, #770a1d);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    object-fit: cover;
    transition: box-shadow 0.8s;
}

.present-image:hover {
    box-shadow: 0 0 12.6px 2.4px rgba(130, 19, 40, 0.5);
}

.presents:hover .present-info {
    display: flex;
    translate: 5px;
}

.order-small {
    position: relative;
}
.error-input {
    position: absolute;
    top: 80%;
    left: 5%;
    margin-top: 10px;
}
.error-input2 {
    position: absolute;
    top: 78%;
    left: 5%;
}
.error-input3 {
    position: absolute;
    top: 65%;
    left: 5%;
}
/*loading.io/css*/
.loader {
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    display: none;
}

.lds-roller,
.lds-roller div,
.lds-roller div:after {
    box-sizing: border-box;
}
.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}
.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7.2px;
    height: 7.2px;
    border-radius: 50%;
    background: blanchedalmond;
    margin: -3.6px 0 0 -3.6px;
}
.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
    top: 62.62742px;
    left: 62.62742px;
}
.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
    top: 67.71281px;
    left: 56px;
}
.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
    top: 70.90963px;
    left: 48.28221px;
}
.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}
.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
    top: 70.90963px;
    left: 31.71779px;
}
.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
    top: 67.71281px;
    left: 24px;
}
.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
    top: 62.62742px;
    left: 17.37258px;
}
.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12.28719px;
}
@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; // Yeah, yeah everybody write about it
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
}