* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: 'Roboto';
    src: url('../Fonts/Roboto-Medium.woff2') format('woff2'),
        url('../Fonts/Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../Fonts/Roboto-Light.woff2') format('woff2'),
        url('../Fonts/Roboto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('../Fonts/AktivGrotesk-Light.woff2') format('woff2'),
        url('../Fonts/AktivGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AktivGrotesk';
    src: url('../Fonts/AktivGrotesk-Medium.woff2') format('woff2'),
        url('../Fonts/AktivGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



body {
    font-family: 'Roboto';
}

p {
    margin: 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    color: #013299;
}

img {
    max-width: 100%;
}

header {
    background-color: #0e0a0b;
    z-index:9;
}

.main_title_idee {
    font-size: 41px;
    font-weight: 100;
    color: #666666;
}

.sub_title_ideed {
    font-size: 41px;
    font-weight: 500;
    color: #666666;
}
.plus{
    font-size: 34px;
    font-weight: 500;
    color: #666666;
    line-height: 18px;
}

.idee_all_store {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 25px 0;
}

.Visit_idee_eyewear {
    font-size: 41px;
    font-weight: 100;
    color: #666666;
}

.border-secondary-custom {
    border-color: #a5a5a5 !important;
}

.idee_products_grid {
    margin-bottom: 50px;
}

.idee_products_grid figure {
    transition: all 0.4s ease-in-out;
    position: relative;
}

.idee_products_grid figure::after,
.idee_products_grid figure::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    transition: all 0.5s;
    z-index: 1;
}

.idee_products_grid figure::after {
    border-right: 1px solid #013299;
    border-left: 1px solid #013299;
    transform: scale(1, 0);
}

.idee_products_grid figure::before {
    border-top: 1px solid #013299;
    border-bottom: 1px solid #013299;
    transform: scale(0, 1);
}

.idee_products_grid figure:hover::after,
.idee_products_grid figure:hover::before {
    transform: scale(1, 1);
}

.idee_products_grid figure:hover {
    border: none !important;
}

figure img,
figure {
    transition: 0.3s;
    overflow: hidden;
}

figure:hover img {
    transition: 0.3s;
    transform: scale(1.1);
}

.product_title {
    font-size: 18px;
    font-weight: 100;
    color: #000;
    text-align: center;
    line-height: 24px;
    max-width: 250px;
    margin: auto;
}

.idee_social_title {
    font-size: 26px;
    font-weight: 300;
    color: #6d6e71;
    text-transform: uppercase;
}

.social_links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social_links li a .fa {
    color: #6d6e71;
    border: 2px solid #6d6e71;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.social_links li a .fa:hover {
    color: #013299;
    border-color: #013299;
}
.form-input {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
input {
    padding: .4rem 1rem;
    width: 70%;
    border-radius: 8px;
    outline: none;
    border: 1px solid #6d6e71;
    font-size: 14px;
    color: #6d6e71;
    font-weight:100;
    letter-spacing:1px;
}
input:focus {
    border-color:#013299;
}

::placeholder {
    color: #6d6e71;
}

.subscribe-btn {
    padding: .4rem 20px;
    border-radius: 8px;
    background: #000;
    color: #fff;
    font-size: 14px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight:100;
    letter-spacing:0.4px;
}

.subscribe-btn:hover {
    background:#013299;
}
.itemEnd {
    height: 100%;
    display: flex;
    align-items: end;
}
.Storelogo {
    width: 100%;
}
.border_right {
  position: relative;
  width: 100%;
}

.border_right:before {
  content: '';
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  background: #000;
  height: 30px;
  width: 1px;
  margin: auto;
}

.border_right img {
  width: 115px;
  margin: auto;
  text-align: center;
}
.Storelogo.w-full-m .border_right img{
    width:180px;
    padding-right:25px;
}
.Storelogo.w-full-m .border_right:before{
    display:none;
}

@media (max-width: 991px) {
    
}
@media (max-width: 767px) {
    .main_title_idee{
        font-size:34px;
        line-height: 36px;
    }
    .sub_title_ideed{
        font-size:28px;
    }
    .Visit_idee_eyewear{
        font-size:32px;
    }
    footer{
        text-align:center;
    }
    .social_links {
        justify-content: center;
        margin-bottom: 15px;
    }
    .idee_social_title {
        margin-top: 10px;
    }
    .form-input{
        gap:5px;
    }
    .idee_stores.text-center.py-5.mt-4{
        margin-top:10px !important;
    }
    .Idee_banner{
        height:300px;
        object-fit: cover;
    }
    .social_sharing_idee {
        padding: 15px 0;
    }
    footer .container.mb-4{
        margin-bottom:0 !important;
    }
}
@media (max-width: 520px) {
    .Visit_idee_eyewear{
        font-size:24px;
    }
    .sub_title_ideed, .main_title_idee {
        font-size: 24px;
        line-height: 28px;
    }
    .Storelogo.w-full-m {
        width: 100%;
        margin-bottom: 15px;
    }
    .Storelogo {
        width: 50%;
        margin: 10px 0;
    }
    .border_right:before{
        left:auto;
        right:0;
    }
    .Storelogo.w-full-m .border_right img {
        width: 180px;
        padding-right: 0;
    }
    .idee_all_store {
        flex-wrap: wrap;
    }
    .Storelogo:nth-child(3) .border_right:before, .Storelogo:nth-child(5) .border_right:before, 
    .Storelogo:nth-child(3) .border_right:before, .Storelogo:nth-child(7) .border_right:before, 
    .Storelogo:nth-child(9) .border_right:before{
        display:none;
    }
}

@media (max-width: 360px) {
    .form-input{
        display:block;
    }
    input{
        width:100%;
    }
    .subscribe-btn{
        margin-top:15px;
    }
}





