:root {
    --font-family: "League Spartan";
    --main-color: 255 222 89;
    --second-color: 33 66 55;
    --black-color: 0 0 0;
    --white-color: 255 255 255;
}

body {
    background: rgb(var(--white-color));
    font-family: var(--font-family), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0 auto;
}

header#header {
    position: absolute;
    display: block;
    width: 100%;
    padding: 5em 0 0;
    top: 0;
    z-index: 99999;
}

header#header nav.pirat-menu>ul {
    display: flex;
    align-items: center;
    gap: 2em;
    list-style: none;
    margin: 0;
    padding: 0;
}

header#header nav.pirat-menu>ul>li {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

header#header nav.pirat-menu>ul>li>a {
    color: rgb(var(--black-color));
    text-decoration: none;
    transition: all .3s;
}

header#header nav.pirat-menu>ul>li:last-child {
    background: rgb(var(--main-color));
    padding: .5em .7em;
    border-radius: 15px;
    box-shadow: -1px 7px 11px 0px rgb(var(--main-color) / 35%);
    transition: all .3s;
}

header#header nav.pirat-menu>ul>li:last-child>a {
    color: white;
}

header#header .logo {
    position: absolute;
    top: 0;
    left: 57%;
    background: rgb(var(--second-color));
    -webkit-border-bottom-right-radius: 200px;
    -webkit-border-bottom-left-radius: 200px;
    -moz-border-radius-bottomright: 200px;
    -moz-border-radius-bottomleft: 200px;
    border-bottom-right-radius: 200px;
    border-bottom-left-radius: 200px;
    height: 800px;
    display: grid;
    align-items: center;
    transition: all .3s;
}

header#header .logo>img:last-child {
    display: none;
}

header#header .logo>img {
    transition: all .3s;
}

header#header .logo:hover {
    background: rgb(var(--main-color));
}

header#header .logo:hover>img:first-child {
    display: none;
}

header#header .logo:hover>img:last-child {
    display: block;
}

section.hero {
    background-image: url(hero-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 17.5em 0;
}

section.hero:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background: rgb(255 255 255 / 31%);
    z-index: 2;
}

section.hero .hero-f .hero-f__item {
    position: relative;
    z-index: 999;
}

section.hero .hero-f .hero-f__item>span {
    background: #FFF2BE;
    padding: .5em 2em;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 79px;
    color: #FFDE59;
}

section.hero .hero-f .hero-f__item>h1 {
    font-size: 5em;
    font-weight: 500;
    margin: .5em 0;
}

section.hero .hero-f .hero-f__item>p {
    padding: 0;
    margin: 0 0 1em;
    width: 50%;
    font-weight: 600;
    font-size: 19px;
}

section.hero .hero-f .hero-f__item>p:last-child {
    padding: 0;
    margin: 0;
    width: 50%;
    font-weight: 400;
    font-size: 19px;
    color: #3F3F3F;
}

section.hero .hero-f .hero-f__item>button {
    background: rgb(var(--main-color));
    font-size: 20px;
    margin: 1em 0;
    border-radius: 14px;
    outline: 0;
    border: 0;
    transition: all .3s;
}

section.hero .hero-f .hero-f__item>button>a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    padding: 1em;
    display: block;
    margin: 0 auto;
    transition: all .3s;
}

span.boldcolor {
    font-weight: bold;
    color: rgb(var(--main-color));
}

span.bold {
    font-weight: bold;
}

section.orders {
    background: rgb(var(--black-color));
}

section.orders .orders-f {
    display: flex;
    justify-content: space-between;
    position: relative;
}

section.orders .orders-f .orders-f__item {
    -webkit-border-bottom-right-radius: 200px;
    -webkit-border-bottom-left-radius: 200px;
    -moz-border-radius-bottomright: 200px;
    -moz-border-radius-bottomleft: 200px;
    border-bottom-right-radius: 200px;
    border-bottom-left-radius: 200px;
    border: 2px solid rgb(var(--white-color) / 15%);
    height: 527px;
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: -6em;
    z-index: 99999;
    transition: all .3s;
}

section.orders .orders-f .orders-f__item>.circle {
    background: rgb(var(--second-color));
    width: 203px;
    height: 203px;
    border-radius: 50%;
    display: grid;
    align-items: center;
}

section.orders .orders-f .orders-f__item>.circle>img {
    width: 100%;
    height: auto;
    margin-top: -1em;
}

section.orders .orders-f .orders-f__item>h2 {
    color: rgb(var(--white-color));
    text-transform: uppercase;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
}

section.orders .orders-f .orders-f__item>button {
    background: rgb(var(--second-color));
    padding: .5em;
    border: none;
    border-radius: 14px;
    transition: .3s all;
}

section.orders .orders-f .orders-f__item>button>a {
    font-family: 'Merienda', serif;
    color: rgb(var(--white-color));
    text-decoration: none;
    margin: 0;
    padding: 1em 2em;
    text-transform: uppercase;
}

section.orders .orders-f.b {
    justify-content: space-evenly;
}

section.orders .orders-f.b .orders-f__item {
    -webkit-border-top-left-radius: 200px;
-webkit-border-top-right-radius: 200px;
-moz-border-radius-topleft: 200px;
-moz-border-radius-topright: 200px;
border-top-left-radius: 200px;
border-top-right-radius: 200px;
-webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: 6em;
    margin-bottom: -6em;
}

footer .flex {
    display: flex
;
    justify-content: flex-end;
    padding: 3em;
}

section.orders .orders-f .orders-f__item>button:hover {
    background: rgb(var(--main-color));
}

section.orders .orders-f .orders-f__item>button:hover>a {
    color: rgb(var(--black-color));
    font-weight: bold;
}

section.hero .hero-f .hero-f__item>button:hover,
header#header nav.pirat-menu>ul>li:last-child:hover {
    background: rgb(217 187 65);
}

section.orders .orders-f.b .orders-f__item,
section.orders .orders-f .orders-f__item>.circle,
section.orders .orders-f .orders-f__item>.circle>img {
    transition: all .3s;
}

section.orders .orders-f .orders-f__item>.circle>img:last-child,
section.orders .orders-f .orders-f__item:hover>.circle>img:first-child {
    display: none;
}

section.orders .orders-f .orders-f__item:hover>.circle>img:last-child {
    display: block;
}

section.orders .orders-f .orders-f__item:hover>.circle {
    background: rgb(var(--main-color));
    box-shadow: -3px 4px 20px rgb(var(--main-color) / 56%);
}

@media screen and (min-width: 981px) {
    .container {
        max-width: 1350px;
    }
    .hideDesktop {
        display: none!important;
    }
}

@media screen and (max-width: 980px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    .hideMobile {
        display: none!important;
    }
    header#header .logo {
        align-items: start;
        padding-top: 1em;
        left: 50%;
        margin: 0 auto;
        width: 200px;
        height: 200px;
        transform: translateX(-50%);
    }
    section.hero .hero-f .hero-f__item>h1 {
        font-size: 3em;
    }
    section.hero .hero-f .hero-f__item>p {
        width: 80%;
        font-weight: 600;
        font-size: 15px;
    }
    header#header .logo>img {
        width: 100%;
        height: auto;
    }
    footer .flex {
        justify-content: center;
        padding: 8em 0 2em;
    }
}

@media screen and (max-width: 767px) {
    section.orders .orders-f.b .orders-f__item {
        margin: 0;
    }
    section.orders .orders-f.b .orders-f__item>.circle {
        margin-bottom: -6em;
    }
    section.orders .orders-f.b {
        margin-top: 3em;
        gap: 9em;
    }
    section.orders .orders-f .orders-f__item {
        width: 100%;
        height: 400px;
    }
    section.orders .orders-f {
        flex-direction: column;
        gap: 14em;
        width: 100%;
    }
    section.orders .orders-f.t .orders-f__item:not(:first-child)>.circle {
        margin-top: -6em;
    }
}