html {
    scroll-behavior: smooth;
}
body {
    display: flex;
    width: 100%;
    max-width: 1440px;
    padding: 20px 0px 40px 0px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    background: #E1D4C9;
    font-family: 'Inter', sans-serif;
}
.lock {
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    body {
        max-width: 768px;
    }
}
@media screen and (max-width: 380px) {
    body {
        max-width: 380px;
    }
 }
.header {
    display: flex;
    padding: 0px 40px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .header {
        max-width: 768px;
    }
 }
@media screen and (max-width: 380px) {
    .header {
        max-width: 380px;
        padding: 0px 16px;
    }
 }
.header a {
    width: 100px;
    height: 60px;
}
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-inline-start: 0;
}
.link {
    color: #403F3D;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding-bottom: 4px;
}
.link::after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    display: block;
    height: 2px;
    background: #403F3D;
    width: 0;
    transition: 0.7s;
    transform: translateX(-50%);
    opacity: 0;
}
li {
    list-style: none;
}
.menu_link img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}
.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 44px;
    height: 44px;
    border-radius: 100px;
    border: 1px solid #665F55;
    z-index: 5;
    position: relative;
    cursor: pointer;
}
.hamburger_line {
    border-bottom: 2px solid #403F3D;
    border-radius: 1.5px;
    width: 18px;
    transition: all .3s ease;
}
.hamburger.active .hamburger_line:first-child {
    transform: translateY(5px) rotate(45deg);
}
.hamburger.active .hamburger_line:last-child {
    transform: translateY(-5px) rotate(-45deg);
}
.open {
    display: none;
}
@media screen and (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 100%;
        background-color: #E1D4C9;
        z-index: 4;
        overflow: auto;
        display: flex;
        flex-direction: column;
        gap: 100px;
        transition: all .3s;
    }
    .open {
        display: flex;
        padding-top: 40px;
    }
    .open img{
        width: 40px;
        height: 40px;
        margin-left: 16px;
    }
    .header a {
        width: 100%;
    }
    .nav.active {
        right: 0;
        transition: all .3s;
    }
    .logo {
        z-index: 5;
    }
    .menu {
        padding-top: 160px;
        margin-top: 0;
        flex-direction: column;
        gap: 60px;
        margin-bottom: 0;
    }
    .link {
        font-size: 32px;
        font-weight: 600;
        line-height: 125%;
    }
    .hamburger {
        display: flex;
    }
    .menu_link {
        display: none;
    }
}
.main {
    display: flex;
    padding: 0px 40px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 100px;
    margin-top: 20px;
    max-width: 1360px;
}
.hero {
    border-radius: 40px;
    background-position: 50% 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    padding: 100px;
    position: relative;
    overflow: hidden;
    height: auto;
}
@media screen and (max-width: 768px) {
    .main {
        max-width: 688px;
    }
    .hero {
        padding: 100px 60px;
    }
 }
 @media screen and (max-width: 699px) {
    .main {
        padding: 0px 24px;
    }
    .hero {
        padding: 40px 16px;
    }
}
@media screen and (max-width: 380px) {
    .main {
        max-width: 348px;
        padding: 0px 16px;
    }
    .hero {
        padding: 60px 16px;
    }
}
.video {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    object-fit: cover;
}
.container {
    position: relative;
    gap: 40px;
    width: 530px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 444px;
}
.big_enjoy {
    color: #B0907A;
    font-size: 72px;
    font-style: italic;
    font-weight: 600;
    line-height: 105%;
}
.enjoy_title {
    color: #E1D4C9;
    font-size: 72px;
    font-weight: 600;
    line-height: 105%;
    margin: 0;
}
.enjoy_text {
    color: #E1D4C9;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
.enjoy_btn {
    width: 200px;
    padding: 20px 78px;
    border-radius: 100px;
    background: #E1D4C9;
    border: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.enjoy_btn span {
    color: #403F3D;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    position: relative;
    transition: transform 0.7s ease;
    display: inline-block;
}
.enjoy_btn::after {
    content: url("assets/coffee-cup.svg");
	position: absolute;
	margin: auto;
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: 0.7s;
}
@media screen and (max-width: 768px) {
    .enjoy_btn::after {
        opacity: 1;
    }
    .enjoy_btn {
        padding: 20px 78px 20px 67px;
    }
    .enjoy_btn span {
        text-align: left;
        margin-right: 8px;
    }
}
@media screen and (max-width: 699px) {
    .container {
        align-self: stretch;
        height: 100%;
        width: 100%;
    }
    .big_enjoy {
        font-size: 11vw;
    }
    .enjoy_title {
        font-size: 11vw;
    }
}
@media screen and (max-width: 380px) {
    .container {
        align-self: stretch;
        height: 100%;
        width: 100%;
    }
    .big_enjoy {
        font-size: 42px;
    }
    .enjoy_title {
        font-size: 42px;
        line-height: 115%;
    }
    .enjoy_btn::after {
        opacity: 1;
    }
    .enjoy_btn {
        padding: 20px 78px 20px 67px;
    }
    .enjoy_btn span {
        text-align: left;
        margin-right: 8px;
    }
}
.big_favorite {
    color: #B0907A;
    font-size: 60px;
    font-style: italic;
    font-weight: 600;
    line-height: 125%;
}
.favorite_title {
    color: #403F3D;
    text-align: center;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    margin: 0;
}
.favorite_coffee {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 40px;
}
@media screen and (max-width: 699px) {
    .favorite_title {
        font-size: 11vw;
    }
    .big_favorite {
        font-size: 11vw;
    }
}
@media screen and (max-width: 380px) {
    .favorite_title {
        font-size: 32px;
    }
    .big_favorite {
        font-size: 32px;
    }
}
.slider {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.slider_body {
    display: flex;
    width: 480px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.slider_body img {
    max-width: 480px;
    max-height: 480px;
    width: 100%;
    height: 100%;
}
.slider_wrapper {
    display: flex;
    flex-direction: row;
    max-width: 480px;
    max-height: 640px;
    overflow: hidden;
}
.slider_line {
    max-height: 640px;
    max-width: 1440px;
    display: flex;
    flex-direction: row;
    position: relative;
    left: 0;
    transition: all ease 1s;
}
.slider_next button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    border: 1px solid #665F55;
    background: #E1D4C9;
    transition: all 0.7s ease;
    cursor: pointer;
}
.slider_prev button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    border: 1px solid #665F55;
    background: #E1D4C9;
    transition: all 0.7s ease;
    cursor: pointer;
}
.slider_main {
    display: flex;
    gap: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.slider_title {
    color: #403F3D;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 125%;
    margin: 0;
}
.slider_text {
    color: #403F3D;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
.slider_price {
    color: #403F3D;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 125%;
    margin: 0;
}
.line {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}
.line_pic {
    height: 4px;
    background: #C1B6AD;
    border-radius: 100px;
    width: 40px;
    position: relative;
}
.active_slider {
    background: #C1B6AD;
    position: relative;
}
.active_slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #665F55;
    animation: change 7s;
    animation-play-state: running;
}
.active_slider.paused::before {
    animation-play-state: paused;
}
@keyframes change {
    0% {
      width: 0%;
    }
    100% {
      width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .slider_body {
        width: 100%;
    }
    .slider_line > .slider_body {
        flex-shrink: 0;
    }
}
@media screen and (max-width: 500px) {
    .slider_next {
        display: none;
    } 
    .slider_prev {
        display: none;
    } 
}
@media screen and (max-width: 380px) {
    .slider {
        width: 348px;
    }
    .slider_next {
        display: none;
    } 
    .slider_prev {
        display: none;
    } 
    .slider_body {
        width: 348px;
    }
}
.about {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    max-width: 1360px;
    width: 100%;
}
.big_about {
    color: #B0907A;
    font-size: 60px;
    font-style: italic;
    font-weight: 600;
    line-height: 125%;
}
.about_title {
    color: #403F3D;
    font-size: 60px;
    font-weight: 600;
    line-height: 125%;
    margin: 0;
}
.about_pic {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-content: center;
}
.column1_1, .column2_2 {
    max-width: 660px;
    width: 100%;
    height: 590px;
    border-radius: 20px;
    display:flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.column1_2, .column2_1 {
    width: 660px;
    height: 430px;
    border-radius: 20px;
    display:flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.column2_2 {
    margin-top: -160px;
}
.column1_1 img {
    display: block;
    transition: 1s;
}
.column1_2 img {
    display: block;
    transition: 1s;
}
.column2_1 img {
    display: block;
    transition: 1s;
}
.column2_2 img {
    display: block;
    transition: 1s;
}
@media screen and (max-width: 1439px) {
    .column2_2 {
        margin-top: 0;
    }
}
@media screen and (max-width: 768px) {
    .hide {
        display: none;
    }
    .column2_2 {
        margin-top: 0;
    }
    .column1_1, .column2_2 {
        max-width: 688px;
        width: 100%;
    }
}
@media screen and (max-width: 699px) {
    .big_about {
        font-size: 11vw;
    }
    .about_title  {
        font-size: 11vw;
    }
}
@media screen and (max-width: 380px) {
    .hide {
        display: none;
    }
    .big_about {
        font-size: 32px;
    }
    .about_title {
        font-size: 32px;
    }
    .column2_2 {
        margin-top: 0;
    }
    .column1_1, .column2_2 {
        width: 348px;
    }
}
.mobile_app {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
    align-self: stretch;
}
.mobile_description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}
.big_mobile {
    color: #B0907A;
    font-size: 60px;
    font-style: italic;
    font-weight: 600;
    line-height: 125%;
}
.mobile_title {
    color: #403F3D;
    font-size: 60px;
    font-weight: 600;
    line-height: 125%;
    margin: 0;
}
.mobile_text {
    color: #403F3D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}
.mobile_pic {
    max-width: 630px;
    max-height: 630px;
    width: 100%;
    height: 100%;
}
.mobile_pic img {
    max-width: 630px;
    max-height: 630px;
    width: 100%;
    height: 100%;
}
.mobile_button {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.App_Google {
    width: 159px;
    padding: 12px 20px;
    border-radius: 100px;
    gap: 8px;
    border: 1px solid #665F55;
    background: #E1D4C9;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: background-color 0.7s ease;
    cursor: pointer;
}
.App_Google svg {
    transition: fill 0.7s ease;
}
.App_Google_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.big_button {
    color: #403F3D;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    margin: 0;
}
.button_text {
    color: #403F3D;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    line-height: 140%;
    margin: 0;
}
@media screen and (max-width: 1250px) {
    .mobile_app {
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    .mobile_app {
        flex-direction: column;
    }
}
@media screen and (max-width: 699px) {
    .big_mobile {
        font-size: 11vw;
    }
    .mobile_title  {
        font-size: 11vw;
    }
}
@media screen and (max-width: 380px) {
    .mobile_app {
        flex-direction: column;
        gap: 40px;
    }
    .big_mobile {
        font-size: 32px;
    }
    .mobile_title {
        font-size: 32px;
    }
    .mobile_button {
        flex-direction: column;
    }
    .mobile_pic {
        width: 348px;
        height: 348px;
    }
    .mobile_pic img {
        width: 348px;
        height: 348px;
    }
}
.contacts {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    max-width: 1360px;
    padding: 100px;
    gap: 100px;
    border-radius: 40px;
    background: #665F55;
    flex-wrap: wrap;
}
.contacts_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 530px;
    width: 100%;
}
.big_contacts {
    color: #B0907A;
    font-size: 60px;
    font-style: italic;
    font-weight: 600;
    line-height: 125%;
    margin: 0;
}
.cotacts_title {
    color: #E1D4C9;
    font-size: 60px;
    font-weight: 600;
    line-height: 125%;
    margin: 0;
}
.contacts_button {
    display: flex;
    align-items: center;
    gap: 12px;
}
.contacts_button img {
    width: 24px;
    height: 24px;
}
.contacts_button button {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #C1B6AD;
    background: #665F55;
    transition: background-color 0.6s ease;
    cursor: pointer;
}
.location {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}
.Contact_us {
    color: #E1D4C9;
    font-size: 24px;
    font-weight: 600;
    line-height: 125%;
    margin: 0;
}
.all_location {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}
.loc a{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
}
.loc {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}
.loc a {
    text-decoration: none;
}
.loc a span {
    margin: auto;
}
.loc img {
    width: 20px;
    height: 20px;
}
.loc::after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    display: block;
    height: 2px;
    background: #E1D4C9;
    width: 0;
    transition: 0.7s;
    transform: translateX(-50%);
    opacity: 0;
}
.loc_text {
    color: #E1D4C9;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    margin: 0;
}
.loc_w {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;

}
.loc_w img {
        width: 20px;
        height: 20px;
}
@media screen and (max-width: 768px) {
    .contacts {
        flex-direction: column;
        padding: 100px 60px;
        align-items: flex-start;
    }
}
@media screen and (max-width: 699px) {
    .contacts {
        flex-direction: column;
        padding: 80px 16px;
        align-items: flex-start;
        gap: 40px;
    }
    .big_contacts {
        font-size: 11vw;
    }
    .cotacts_title  {
        font-size: 11vw;
    }
}
@media screen and (max-width: 380px) {
    .contacts {
        flex-direction: column;
        padding: 60px 16px;
        align-items: flex-start;
        gap: 40px;
    }
    .big_contacts {
        font-size: 32px;
    }
    .cotacts_title {
        font-size: 32px;
    }
    .contacts_text {
        width: 100%;
    }
}
@media (hover: hover) and (pointer: fine) {
    .link:hover:after {
        width: 100%;
        opacity: 1;
    }
    .slider_next button:hover {
        background-color: #665F55;
        border: 1px solid #665F55;
    }
    .slider_prev button:hover {
        background-color: #665F55;
        border: 1px solid #665F55;
    }
    .enjoy_btn:hover span {
        transform: translateX(-25%);
    }
    .enjoy_btn:hover:after {
        opacity: 1;
    }
    .column1_1 img:hover {
        transform: scale(0.9);
    }
    .column1_2 img:hover {
        transform: scale(0.9);
    }
    .column2_1 img:hover {
        transform: scale(0.9);
    }
    .column2_2 img:hover {
        transform: scale(0.9);
    }
    .slider_next button:hover svg {
        stroke: #E1D4C9;
    }
    .slider_prev button:hover svg {
        stroke: #E1D4C9;
    }
    .App_Google:hover {
        background-color: #665F55;
    }
    .App_Google:hover p {
        color: #E1D4C9;
    }
    .App_Google:hover svg {
        fill: #E1D4C9;
    }
    .contacts_button button:hover {
        background-color: #E1D4C9;
    }
    .contacts_button button:hover svg {
        stroke: #403F3D;
    }
    .loc:hover:after {
        width: 100%;
        opacity: 1;
    }
}