@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');
@import "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css";
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
    padding: 0;
}
a,
a:hover,
a:focus {
    text-decoration: none;
}
*,
*:focus {
    outline: none !important;
}
html {
    font-size: 16px;
}
body {
    font-family: "Jost", sans-serif;
}
.main-color {
    color: #f8c707;
}
.site-button {
    background-color: #000;
    font-size: 1rem;
    padding: 0 20px;
    position: relative;
    z-index: 9;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    border: 0;
}
.site-button:hover {
    color: #fff;
}
.sub-title {
    font-size: 18px;
    margin: 0px 0px 10px 0px;
    color: #f8c707;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.sub-title:after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: currentColor;
    margin-left: 30px;
}
.sub-title.sub-title-after-left:after {
    display: none;
}
.sub-title.sub-title-after-left:before {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: currentColor;
    margin-right: 30px;
}
.large-title {
    
    font-size: 2.3rem;
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 500;
}
.site-desc p {
    font-family: 'Poppins', sans-serif;
    margin: 0 auto 30px;
    font-size: 16px;
}
.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.social a {
    color: #f8c707;
    font-size: 22px;
}
.social a:not(:last-child) {
    margin-right: 15px;
}
header {
    position: absolute;
    z-index: 61;
    left: 0;
    right: 0;
    top: 15px;
}
header #header-wrap.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: #000;
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
}
header .navbar .logo img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    height: 142px;
}
header .navbar .navbar-toggler {
    font-size: 32px;
}
header .navbar .navbar-collapse ul li:not(:last-child) {
    margin-right: 40px;
}
header .navbar .navbar-collapse ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 0 !important;
    text-transform: uppercase;
}
header .navbar .navbar-collapse ul li a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    background-color: #f8c707;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    display: block;
    height: 2px;
    width: 100%;
}
@media (max-width: 991px) {
    header .navbar .navbar-collapse ul li a::before {
        display: none;
    }
}
header .navbar .navbar-collapse ul li a:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
header .navbar .navbar-collapse ul li a.active {
    color: #fff;
}
header .navbar .navbar-collapse ul li a.active::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.slider {
    margin-bottom: 75px;
    height: 100vh;
}
.slider .swiper-slide-active .item {
    -webkit-animation: zoom-effect 5s linear infinite;
    animation: zoom-effect 5s linear infinite;
}
.slider .swiper-slide .item {
    display: block;
    text-align: center;
    height: 100%;
}
.slider .swiper-slide .item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.25);
    inset: 0;
    position: absolute;
    z-index: 1;
}
.slider .swiper-slide .item img {
    width: 100%;
    position: relative;
    z-index: 0;
    height: 100%;
    object-fit: cover;
}
.slider .swiper-slide .item .text {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70%;
    color: #fff;
}
.slider .swiper-slide .item .text .small-title {
    font-size: 21px;
    font-weight: 500;
    margin: 0px 0px 20px 0px;
}
.slider .swiper-slide .item .text .large-title {
    font-size: 4rem;
    line-height: 1;
    
}
.slider .swiper-slide .item .text p {
    font-size: 21px;
    margin-top: 20px;
}
@-webkit-keyframes zoom-effect {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.061);
        transform: scale(1.061);
    }
}
@keyframes zoom-effect {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.061);
        transform: scale(1.061);
    }
}
.about .text a {
    margin-bottom: 75px;
}
.home-contact figure img:nth-child(1) {
    width: 50%;
}
.home-contact figure img:nth-child(2) {
    width: 48%;
    margin-left: 2%;
}
.home-contact-2 figure img {
    -o-object-fit: cover;
    object-fit: cover;
}
.home-contact-2 figure img:nth-child(1),
.home-contact-2 figure img:nth-child(3) {
    width: 29%;
    height: 450px;
}
.home-contact-2 figure img:nth-child(2) {
    width: 40%;
    height: 650px;
    margin: 0 1%;
}
.quality {
    margin: 100px 0;
}
.quality figure img {
    position: relative;
}
.quality figure img:nth-child(2) {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.full-area {
    margin: 150px 0;
    background-color: #000;
}
.full-area a {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
}
.full-area a::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    inset: 0;
    position: absolute;
    display: none;
}
.full-area a:hover > img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.full-area a img {
    position: relative;
    z-index: 0;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.full-area a .text {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    padding: 30px;
    display: none;
}
.full-area a .text .title {
    
    margin-bottom: 10px;
    font-size: 2rem;
    color: #fff;
}
.full-area a .text .link {
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #f8c707;
    display: inline-block;
}
.counter {
    margin: 100px 0;
    height: 400px;
    background: url(../images/parallax-2.jpg) no-repeat center/cover;
}
.counter::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.counter .item {
    color: #fff;
    text-align: center;
}
.counter .item .number {
    font-size: 61px;
}
.counter .item .title {
    font-size: 18px;
    font-weight: 300;
}
.small-info .bg {
    background: url(../images/info.jpg) no-repeat center/cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.small-info .bg .text {
    color: #fff;
    background: url(../images/ico-05.png) no-repeat center left/50px;
    padding-left: 70px;
}
.small-info .bg .text .title {
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}
.small-info .bg .text .title span {
    border-bottom: 1px solid #fff;
}
.small-info .bg .text p {
    color: #fff;
    font-size: 18px;
    margin: 10px 0 0;
}
.small-info .bg a {
    background-color: #f8c707;
    width: 180px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
}
.breadcrumb {
    position: relative;
    margin-bottom: 100px;
}
.breadcrumb::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    inset: 0;
    position: absolute;
    z-index: 1;
}
.breadcrumb img {
    position: relative;
    z-index: 0;
    height: 350px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.breadcrumb h1 {
    position: absolute;
    z-index: 2;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20%;
    
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
}
.parallax {
    position: relative;
    margin-bottom: 100px;
}
.parallax::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    inset: 0;
    position: absolute;
    z-index: 1;
}
.parallax img {
    position: relative;
    z-index: 0;
    height: 500px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.parallax .text {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.5;
    
    text-align: center;
    color: #fff;
}
.parallax .text::before {
    content: "“";
    color: #f8c707;
    font-size: 80px;
    font-family: system-ui;
    line-height: 0;
}
.contact-form {
    margin-top: 100px;
    background-color: #faf9f8;
    padding: 100px 0;
}
.contact-form form label {
    width: 100%;
    margin-bottom: 30px;
}
.contact-form form label span {
    font-size: 18px;
    line-height: 1;
}
.contact-form form label input,
.contact-form form label textarea {
    width: 100%;
    background: none;
    border: 0;
    border-bottom: 1px solid #ccc;
    height: 50px;
}
.product-list .title {
    
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
}
.product-list a {
    position: relative;
    display: block;
    margin-bottom: 30px;
    overflow: hidden;
}
.product-list a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.product-list a img {
    width: 100%;
    aspect-ratio: 1/1.1;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.menu .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 50px;
}
.menu .title span {
    font-size: 13px;
    font-weight: 600;
    color: #f8c707;
    text-transform: uppercase;
}
.menu .title strong {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    
    margin-top: 10px;
}
.menu .items .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(152, 152, 152, 0.5);
}
.menu .items .item .text {
    width: 100%;
}
.menu .items .item .text span {
    display: block;
}
.menu .items .item .text span:nth-child(1) {
    font-size: 22px;
    font-weight: 500;
    
}
.menu .items .item .text span:nth-child(2) {
    color: #989898;
    font-size: 1rem;
    margin-top: 5px;
}
.menu .items .item .price {
    font-size: 1.25rem;
    padding-left: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
footer {
    background-color: #09080e;
    padding-top: 100px;
    margin-top: 100px;
}
footer * {
    color: #e1e1e1;
}
footer .footer-about .logo img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
footer .footer-about .title {
    font-size: 2.5rem;
    
    margin-bottom: 20px;
    line-height: 1;
}
footer .footer-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
}
footer table {
    width: 100%;
}
footer table * {
    font-weight: 400;
}
footer table tr {
    margin-bottom: 10px;
}
footer .copy {
    font-size: 14px;
}
@media (max-width: 1399px) {
    .slider .swiper-slide .item .text .large-title {
        font-size: 2.8rem;
    }
    .home-contact-2 figure img:nth-child(1),
    .home-contact-2 figure img:nth-child(3) {
        width: 29%;
        height: 290px;
    }
    .home-contact-2 figure img:nth-child(2) {
        height: 450px;
    }
}
@media (max-width: 1199px) {
    .slider {
        margin-bottom: 50px;
    }
    .slider .swiper-slide .item .text .large-title {
        font-size: 2.6rem;
    }
}
@media (max-width: 991px) {
    html {
        font-size: 13px;
    }
    header {
        top: 5px;
    }
    header .navbar-collapse {
        background: #f8c707;
        padding: 30px;
    }
}
@media (max-width: 767px) {
    .site-button {
        height: 30px;
    }
    header .navbar .logo img {
        height: 120px;
    }
    header .navbar .navbar-collapse ul li:not(:last-child) {
        margin-right: 0;
    }
    header .navbar .navbar-collapse ul li a {
        border-bottom: 1px solid #fff;
        padding: 7px 0!important;
    }
    .slider {
        height: 80vh;
    }
    .slider .swiper-slide .item .text .small-title {
        font-size: 16px;
        margin: 0px 0px 10px 0px;
    }
    .slider .swiper-slide .item .text .large-title {
        font-size: 1.8rem;
    }
    .slider .swiper-slide .item .text p {
        font-size: 16px;
        margin-top: 20px;
    }
    .about .text a {
        margin-bottom: 50px;
    }
    .full-area {
        margin: 50px 0;
    }
    .quality {
        margin: 50px 0;
    }
    .home-contact-2 figure img:nth-child(1),
    .home-contact-2 figure img:nth-child(3) {
        width: 29%;
        height: 200px;
    }
    .home-contact-2 figure img:nth-child(2) {
        height: 250px;
    }
    .small-info .bg {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .small-info .bg .text .title {
        font-size: 20px;
    }
    .small-info .bg .text .title span {
        display: block;
        padding: 10px 0;
    }
    .small-info .bg a {
        margin-top: 30px;
    }
    .parallax .text {
        width: 90%;
        font-size: 1.5rem;
    }
}
@media (max-width: 575px) {
    .breadcrumb {
        margin-bottom: 50px;
    }
    .breadcrumb h1 {
        bottom: 20%;
        font-size: 30px;
    }
    .breadcrumb img {
        height: 340px;
    }
    .contact-form {
        margin-top: 50px;
        padding: 50px 0;
    }
}