/**
 * /* niku style
 *
 * @format
 */
 @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");
 /*font*/
 @font-face {
     font-family: "Montserrat";
     src: url(font/Montserrat-Regular.ttf);
 }
 @font-face {
     font-family: "MontserratSemiBold";
     src: url(font/Montserrat-SemiBold.ttf);
 }
 @font-face {
     font-family: "MontserratAlternates";
     src: url(font/MontserratAlternates-Regular.ttf);
 }
 @font-face {
     font-family: "MontserratAlternatesSemiBold";
     src: url(font/MontserratAlternates-SemiBold.ttf);
 }
 @font-face {
     font-family: "MontserratBold";
     src: url(font/Montserrat-Bold.ttf);
 }
 
 /*color*/
 
 :root {
     --blue: #004990;
     --blue-2: #afd1f2;
     --blue-shadow: #0080ff3f;
     --orange: #ea5b13;
     --colorF: #1e2833;
     --GRAY_1_COLOR: #333333;
     --GRAY_2_COLOR: #4f4f4f;
     --GRAY_3_COLOR: #828282;
     --GRAY_4_COLOR: #bdbdbd;
     --GRAY_5_COLOR: #e0e0e0;
     --GRAY_6_COLOR: #f2f2f2;
     --stroke: rgba(0, 129, 255, 0.1);
     --yellow: #f8c100;
     --tsAll: 30px;
 }

body, html {
    font-family: "MontserratAlternates";
}

.shops-container {
    font-family: "MontserratAlternates";
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shops-header {
    display: flex;
    padding: 40px 20px 80px 20px;
    flex-direction: column;
    gap: 10px;
    position: relative;
    color: white;
}

.shops-header h5 {
    z-index: 1;
}

.shops-header-background {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.download-links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.links-img {
    width: 100%;
}

.shops-title {
    padding: 40px 20px 0px 20px;
    background-color: transparent;
    z-index: 1;
}

.shops-title-slogan {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* gap: 5px; */
}

.shops-title-slogan h1 {
    margin: 0;
    font-weight: bold;
}

.shops-title-img {
    width: 30%;
    margin-bottom: 11px;
}

.shops-title h1{
    font-weight: bold;
    color: var(--GRAY_1_COLOR);
}

.shops-title p {
    color: var(--GRAY_3_COLOR);
    font-weight: bold;
} 

.section-0-img {
    width: 100%;
}

.section-1 {
    padding: 40px 20px 0px 20px;
    display: grid;
    grid-template-columns: 6fr 5fr;
}

.section-1-img {
    width: 100%;
}

.section-1-info h2{
    font-weight: bold;
    color: var(--GRAY_1_COLOR);
}

.section-1-info p {
    color: var(--GRAY_3_COLOR);
    font-weight: bold;
}

.section-2 {
    padding: 15px 20px 0px 20px;
}

.btn-more {
    background-color: var(--orange);
    border-style: none;
    border-radius: 35px;
    color: white;
    display: flex;
    align-items: center;
    /* justify-content: flex-start; */
    padding: 20px;
    font-weight: 900;
    text-decoration: none;
}

.btn-more:focus {
    color: white;
}

.btn-more h2{
    margin: 0;
    text-align: start;
}

.footer {
    padding: 80px 20px 20px 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.footer-img {
    width: 30%;
}

.footer-social {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}