@font-face {
	font-family: 'Nequn';
	font-style: normal;
	font-weight: normal;
	src: local('Nequn'),
		url('../fonts/Nuqun-Regular\ 2.otf') format("opentype");
}

html {
    scroll-behavior: smooth;
}

body {
    --black: #313134;
    --accent: #ffc300;
    --main-radius: 40px;
}

* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}


a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

ul, ul li {
	list-style: none;
}

body {
    font-family: 'Montserrat';
    background-color: #F6F7F9;
}

a {
    color: #000;
}

.wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.wrapper h3 {
    font-family: Nequn;
    font-weight: 400;
    font-size: 32px;
    line-height: 94%;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
}


header {
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 99999;
    background: #FFF;
    height: 70px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.07);
}

.navigation {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.for-hamburger {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-buttons {
    display: none;
    align-items: center;
}

.hamburger {
    margin-left: 24px;
}

.row .three {
    padding: 80px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
}

.hamburger .line {
    width: 33px;
    height: 3px;
    border-radius: 10px;
    background-color: #000000;
    display: block;
    margin: 4px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}

nav {
    max-width: 100%;
    min-width: 545px;
    width: 730px;
}

.navigation .logo * {
    height: 50px;
}

nav > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav a {
    font-weight: 450;
    font-size: 20px;
    color: #000;
}


.to-cart-box, .to-cart-box * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.count-in-cart {
    font-size: 15px;
    display: none;
    position: absolute;
    background: var(--accent);
    border-radius: 100px;
    min-width: 18px;
    width: fit-content;
    height: 18px;
    margin-top: -15px;
    margin-left: 25px;
    text-align: center;
    padding: 0 5px;
}

.change-count {
    display: flex; 
    align-items: center;
}

.change-count * {
    font-family: Nequn;
    font-weight: 400;
    font-size: 40px;
    line-height: 75%;
    letter-spacing: 0.05em;
    color: #000;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.change-count .minus {
    border: 2px solid #ffc300;
    border-radius: 15px 0 0 15px;
    width: 51px;
    height: 43px;
    cursor: pointer;
}

.change-count .count {
    border-bottom: 2px solid #ffc300;
    border-top: 2px solid #ffc300;
    width: 51px;
    height: 43px;
    cursor: default;
}

.change-count .plus {
    border: 2px solid #ffc300;
    border-radius: 0 15px 15px 0;
    width: 51px;
    height: 43px;
    cursor: pointer;
}

.itc-slider-item img {
    height: 100%;
}

.sale, .before-sale {
    text-decoration: line-through;
}

.is_empty {
    font-size: 28px;
    color:rgba(0, 0, 0, 0.5)
}


footer {
    margin-top: 100px;
    background: #313134;
    height: 180px;
}

footer .footer-logos {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

footer .wrapper {
    padding: 20px 0;
}


footer * {
    color: white;
}

footer .copyright{
    font-weight: 500;
    font-size: 20px;
    text-align: right;
}

footer img {
    height: 50px;
}

.one-photo {
    width: 100%;
    border-radius: 40px 40px 0 0;
}


@media (max-width: 1450px) {
    .wrapper {
        max-width: 90vw;
    }

    nav {
        width: 55%;
    }
}

@media (max-width: 1000px) {
    body.active {
        overflow-y: hidden;
    }

    .cart-icon {
        display: none;
    }

    .nav-buttons {
        display: flex;
    }

    nav {
        display: none;
    }

    nav > ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    header.active {
        height: 100vh;
        padding-top: 10px;
    }
    
    header.active nav {
        width: auto;
        min-width: auto;
        display: block;
        margin: 0 auto;
        margin-top: calc(50vh - 120px);
    }
    header.active .navigation {
        display: block;
    }

    .for-hamburger {
        width: 100%;
    }
    nav li {
        margin-bottom: 15px;
    }
}

@media (max-width: 500px) {
    footer .copyright {
        font-size: 17px;
    }
}

@media (max-width: 700px) {
    header, .navigation {
        height: 55px;
    }
}
