* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
}

:root {
    --red: #cc0000;
    --brown: #330000;
    --orange: #ff6700;
}

@font-face {
    font-family: AmsiProNarw-Ultra;
    src: url(../fonts/AmsiProNarw-Ultra.otf);
}

@font-face {
    font-family: AmsiProNarw-UltraItalic;
    src: url(../fonts/AmsiProNarw-UltraItalic.otf);
}

@font-face {
    font-family: AmsiPro-Ultra;
    src: url(../fonts/AmsiPro-Ultra.otf);
}

@font-face {
    font-family: AmsiProNarw-BoldItalic;
    src: url(../fonts/AmsiProNarw-BoldItalic.otf);
}

@font-face {
    font-family: AmsiProCond-UltraItalic;
    src: url(../fonts/AmsiProCond-UltraItalic.otf);
}

@font-face {
    font-family: AmsiProCond-Regular;
    src: url(../fonts/AmsiProCond-Regular.otf);
}

@font-face {
    font-family: AmsiProCond-Light;
    src: url(../fonts/AmsiProCond-Light.otf);
}

@font-face {
    font-family: AmsiProNarw-LightItalic;
    src: url(../fonts/AmsiProNarw-LightItalic.otf);
}

@font-face {
    font-family: AmsiProNarw-UltraItalic;
    src: url(../fonts/AmsiProNarw-UltraItalic.otf);
}

@font-face {
    font-family: AmsiProNarw-LightItalic;
    src: url(../fonts/AmsiProNarw-LightItalic.otf);
}

body {
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    -drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: 0.25s;
    font-size: clamp(0.875rem, 0.7824rem + 0.4938vw, 1.375rem);

}

button {
    cursor: pointer;
}
.footer-box ul li a button,
i {
    transition: 0.25s;
}

section {
    width: 100%;
    padding: 10%;
}

h1,
h2 {
    color: var(--gray);
    font-size: 60px;
    line-height: 1;
}

h3 {
    font-size: 25px;
}

p {
    color: white;
    font-size: clamp(0.875rem, 0.7824rem + 0.4938vw, 1.375rem);
    margin: 10px 0;
}

span {
}

@keyframes background_animation {
    from {
        background-size: 0%;
    }
    to {
        background-size: 400%;
    }
}

@media (max-width: 996px) {
    section {
        padding: 20% 10%;
    }
    h1,
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 20px;
    }
    p,
    ol,
    ul,
    a {
        font-size: 14px;
    }
}

header {
    width: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

header .header-mobile {
    display: none;
}

header .header-desktop {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.header-desktop .header-first-line {
    background: var(--red);
    display: flex;
    padding: 10px;
    justify-content: space-around;
    align-items: center;
}

.header-desktop .header-first-line .language {
    display: flex;
    gap: 10px;
}

.header-desktop .header-first-line span {
    color: white;
}

.header-desktop .header-first-line a {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.header-desktop .header-first-line a:hover {
    color: var(--brown);
}

.header-desktop .header-second-line {
    display: grid;
    gap: 20px;
    align-items: center;
    justify-items: center;
    grid-template-columns: 20% 50% 30%;
}

.header-desktop .header-second-line .logo-ctn a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-desktop .header-second-line .logo-ctn img {
    width: 60%;
}

.header-desktop .header-second-line .menu-navbar ul {
    list-style: none;
    gap: 20px;
    display: flex;
}

.header-desktop .header-second-line .menu-navbar ul li a {
    color: white;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
}

.header-desktop .header-second-line .menu-navbar ul li a:hover {
    color: var(--red);
}

.header-desktop .header-second-line .menu-navbar ul li a:hover::before {
    width: 100%;
}

.header-desktop .header-second-line .menu-navbar ul li a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    transition: width 0.3s ease-in-out;
    background: var(--red);
    border-radius: 20px;
}

.header-desktop .header-second-line .btn-order-now a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--red);
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.header-desktop .header-second-line .btn-order-now a:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--brown);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.header-desktop .header-second-line .btn-order-now a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.header-desktop .header-second-line .btn-order-now a span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    font-weight: 700;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.header-desktop .header-second-line .btn-order-now a:hover span {
    color: white;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 996px) {
    header .header-desktop {
        display: none;
    }
    header .header-mobile {
        display: block;
    }

    .header-mobile .header-first-line {
        background: var(--red);
        display: flex;
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }

    .header-mobile .header-first-line a {
        color: white;
        font-size: 14px;
        text-align: center;
    }

    .header-mobile .header-second-line {
        padding: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .header-mobile .header-second-line a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
    }

    .header-mobile .header-second-line .menu-navbar {
        position: fixed;
        width: 80%;
        height: 100vh;
        flex-direction: column;
        background: white;
        left: 0;
        top: 0;
        transform: translateX(-150%);
        z-index: 99;
        gap: 30px;
        padding: 5%;
        display: flex;
        transition: all 0.4s ease;
    }

    .toggle_active .header-second-line .menu-navbar {
        transform: translateX(0%);
    }

    .header-mobile .header-second-line .menu-navbar ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .header-mobile .header-second-line .menu-navbar ul li {
        text-align: center;
    }

    .header-mobile .header-second-line .menu-navbar ul li a {
        color: var(--brown);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        font-weight: 500;
        font-size: 20px;
    }

    .header-mobile .header-second-line .menu-navbar .btn-close {
        width: 30px;
        height: 30px;
        align-self: flex-end;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .header-mobile .header-second-line .menu-navbar .btn-close button {
        border: none;
        background: none;
    }

    .header-mobile .header-second-line .menu-navbar .btn-close i {
        color: var(--red);
        font-size: 30px;
    }

    .header-mobile .header-second-line .btn-order-now {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-mobile .header-second-line .btn-order-now a {
        position: relative;
        display: flex;
        width: 80%;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        background: var(--red);
        box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        border: none;
    }

    .header-mobile .header-second-line .btn-order-now a:after {
        content: " ";
        width: 0%;
        height: 100%;
        background: var(--brown);
        position: absolute;
        transition: all 0.4s ease-in-out;
        right: 0;
    }

    .header-mobile .header-second-line .btn-order-now a:hover::after {
        right: auto;
        left: 0;
        width: 100%;
    }

    .header-mobile .header-second-line .btn-order-now a span {
        text-align: center;
        text-decoration: none;
        width: 100%;
        padding: 10px 15px;
        color: #fff;
        font-size: 1.125em;
        font-weight: 700;
        z-index: 20;
        transition: all 0.3s ease-in-out;
    }

    .header-mobile .header-second-line .btn-order-now a:hover span {
        color: white;
        animation: scaleUp 0.3s ease-in-out;
    }

    @keyframes scaleUp {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(0.95);
        }

        100% {
            transform: scale(1);
        }
    }

    .header-mobile .header-second-line .language {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-mobile .header-second-line .language a {
        color: var(--brown);
        font-weight: 600;
        width: 100%;
    }

    .header-mobile .header-second-line .language span {
        color: var(--brown);
    }

    .header-mobile .header-second-line .menu-btn {
        width: 30px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 10%;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .header-mobile .header-second-line .menu-btn hr {
        width: 100%;
        border: none;
        height: 3px;
        border-radius: 20px;
        background: var(--red);
        transition: all 0.4s ease;
    }

    .header-mobile .mobile_blur {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #00000060;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 1;
        visibility: hidden;
        z-index: 95;
        transition: 0.25s;
    }
    .toggle_active .mobile_blur {
        opacity: 1;
        visibility: visible;
    }
}

/** footer **/

footer {
    padding: 5% 5% 0 5%;
}

footer .footer-ctn {
    display: flex;
    background: #bc1919;
    flex-direction: column;
    border-radius: 70% 70% 50px 50px;
}

footer .footer-ctn .img-ctn  {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

footer .footer-ctn .img-ctn img  {
    width: 90%;
    
}

.footer-ctn .column-ctn {
    padding: 0 20px 5px 20px;
    display: grid;
    gap: 30px;
    align-items: start;
    justify-content: center;
    grid-template-columns: repeat(4,1fr);
    justify-items: center;
}

.footer-ctn .column-ctn .img-ctn img {
    transform: scale(1);
}

.footer-ctn .column-ctn a {
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-ctn .column-ctn a:hover {
    color: var(--brown);
}

.footer-ctn .column-ctn h2 {
    color: white;
    font-size: 28;
    font-weight: 500;
}

.footer-ctn .column-ctn ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-ctn .column-ctn .logo-ctn {
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.footer-ctn .column-ctn .logo-ctn a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-ctn .column-ctn .logo-ctn img {
    width: 60%;
}

.footer-ctn .column-ctn .opening-hours h3 {
    color: white;
}

.footer-ctn .column-ctn .opening-hours ul p {
    color: white;
}


.footer-ctn .column-ctn .contact-ctn {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.footer-ctn .column-ctn .contact-ctn h3 {
    color: white;
}

.footer-ctn .column-ctn .quick-links h3 {
    color: white;
}

.footer-ctn .column-ctn .follow-us {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-ctn .column-ctn .follow-us .second-row-ctn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-ctn .column-ctn .follow-us .second-row-ctn a{
    transition: all .25s ease;
}

.footer-ctn .column-ctn .follow-us .second-row-ctn i {
    font-size: 25px;
}

.footer-ctn .column-ctn .follow-us h3 {
    color: white;
}

.footer-ctn .column-ctn .follow-us .icon-ctn {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.footer-ctn .column-ctn .follow-us .icon-ctn i {
    font-size: 30px;
    color: white;
}

.footer-ctn .column-ctn .follow-us .terms-privacy-ctn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-ctn .column-ctn .follow-us .terms-privacy-ctn a {
    font-size: 12px;
}

.footer-ctn .column-ctn .follow-us .icon-ctn i:hover {
    color: var(--brown);
}

footer .author-rights p {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--brown);
    font-weight: 600;
}

footer .author-rights a {
    color: var(--brown);
    font-size: 12px;
    font-weight: 600;
}

footer .author-rights a:hover {
    color: var(--red);
}

@media (max-width: 996px) {
    footer .footer-ctn {
        border-radius: 200px 200px 50px 50px;
    }

    .footer-ctn .column-ctn ul {
        display: flex;
        align-items: center;
    }

    .footer-ctn .column-ctn {
        text-align: center;
        padding: 5%;
        justify-items: center;
        gap: 40px;
        grid-template-columns: 100%;
    }

    .footer-ctn .column-ctn a {
        justify-content: center;
    }

    .footer-ctn .column-ctn p {
        text-align: center;
    }

    .footer-ctn .column-ctn .follow-us {
        align-items: center;
        gap: 20px;
    }

    .footer-ctn .column-ctn .follow-us .icon-ctn {
        align-items: center;
        gap: 20px;
        justify-content: center;
    }

    .footer-ctn .column-ctn .follow-us .terms-privacy-ctn {
        align-items: center;
    }
}
