@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import 'https://cdn.jsdelivr.net/npm/swiper@12/swiper-bundle.min.css';

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    
}

body 
{
    min-width: 1200px;
    background: #281E18;
}


.s-wrap 
{
    padding: 38px 0;
}

.s-wrap.primary 
{
    background: #E4791A;
}

.s-wrap.dark 
{
    background: #281E18;
}

.s-title 
{
   
    font-size: 44px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFEBC0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    line-height: .8;
}

.s-title-icon 
{
    height: 50px;
}

.container
{
    margin: auto;
    width: 1200px;
    height: 100%;
    position: relative;
    padding: 0 15px;
}

.header 
{

    width: 100%; height: 220px;
    padding-bottom: 50px;
    background: #281E18;
}

.header-fx
{
    display: flex;
    justify-content: space-between;
}

.header-logo-img 
{
    width: auto;
    height: 134px;
}

.header-nav 
{
    display: flex;
    gap: 20px;
}

.nav-link 
{
    height: 110px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #FFEBC0;
    padding: 30px 50px;
    transition: .4s;
}

.nav-link:nth-of-type(1),
.nav-link:nth-of-type(2)
{
    background-image: url(../img/link1.svg);
}

.nav-link:nth-of-type(3)
{
    background-image: url(../img/link2.svg);
}

.nav-link:hover 
{
    transform: scale(.9);
}

.enemy 
{
    padding: 150px 0;
    background: #FFECC1 url(../img//enemy-bottom.svg)no-repeat bottom/contain;
}

@keyframes enemyAnim 
{
    0%
    {
        transform: translateY(0%);
    }

    10%
    {
        transform: translateY(-15%);
    }

    50%
    {
        transform: translateY(0);
    }

    75%
    {
        transform: translateY(-5%);
    }

    100%
    {
        transform: translateY(0);
    }
}

.enemy-img 
{
    width: 100%;
    animation: enemyAnim 2s infinite linear;
}

.enemy-titles
{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    margin-left: 80px;
}

.enemy-title 
{
    font-size: 28px;
    font-weight: bold;
    color: #281E18;
    text-align: center;
}


.calc 
{
    padding: 75px 0;
    background: #FFECC1;
}

.calc-fx 
{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 40px;
}

.calc-article 
{
    width: 400px;
    text-align: center;
    transition: .4s;
}

.calc-article:hover 
{
    transform: scale(1.2);
}

.calc-article-img 
{
    width: 280px;
    aspect-ratio: 1;
    object-fit: contain;
}

.calc-article-title
{
    font-size: 22px;
    font-weight: bold;
    color:#281E18;
}


.uniq 
{
    padding: 100px 0;
    height: 900px;
    background: #FFECC1 url(../img/uniq-bottom.svg)no-repeat bottom;
    background-size: 100%;
}

.uniq-text 
{
    font-size: 28px;
    color:#281E18;
    text-align: center;
    position: absolute;
    opacity: 0;
    transition: .4s;
}

.uniq-text:hover 
{
    opacity: 1;
}

.uniq-text:nth-of-type(1)
{
    top: 0px; left: 200px;;
}

.uniq-text:nth-of-type(1):before 
{
    content: "";
    width: 300px;
    height: 300px;
    position: absolute;
    top: 70px; left: 20px;
}

.uniq-text:nth-of-type(2)
{
    top: 0px; right: 250px;;
}

.uniq-text:nth-of-type(2):before 
{
    content: "";
    width: 300px;
    height: 300px;
    position: absolute;
    top: 70px; left: 0px;
}


.footer 
{
    background: #281E18;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    bottom: 1px;
}

.footer-logo-img 
{
    height: 60px;
}

.swiper-button-prev,
.swiper-button-next
{
    color: #FFEBC0;
}