@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
}

body {
    overflow-x: hidden !important;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: #0F1921;
    text-align: center;
    padding: 0 7vw;
}

header img {
    width: 10em;
    height: auto;
}

header h1 {
    color: #C9CDCE;
    font-size: 3.5em;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.5s;
}

header h2 {
    color: #C9CDCE;
    font-size: 1.8em;
    text-transform: uppercase;
    font-weight: 300;
    transition: 0.5s;
}

@media only screen and (max-width : 450px) {
    header h1 {
        font-size: 2.5em;
    }

    header h2 {
        font-size: 1.25em;
    }
}

header a {
    color: #C9CDCE;
    border: 1px solid #C9CDCE;
    text-decoration: none;
    padding: 1em 2em;
    border-radius: 15px;
    transition: 0.5s;
}

@media only screen and (max-width : 575px) {

    header a {
        margin-bottom: 10vh;
    }

}

header a:hover {
    background: #C9CDCE;
    color: #0F1921;
}

#content {
    background: #C9CDCE;
}

.content_header {
    background: #fff;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 0 5vw;
    height: 5em;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid #000;
}

.content_header img {
    width: 12em;
    transition: 0.5s;
    height: auto;
}

.header_right {
    width: 55em;
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
    gap: 1em;
}

.btn-search2 {
    display: none;
}

.input-search2 {
    display: none;
}

.search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
}

.input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    padding-right: 40px;
    color:#000;
}

.input-search::placeholder{
    color:rgba(0 , 0, 0,.5);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 100;
}

.btn-search{
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 1.7em;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: #000;
    background-color:transparent;
    pointer-events: painted;
    transition: 0.5s;
}

.btn-search:hover {
    transform: scale(1.25);
}

.btn-search:focus ~ .input-search{
    width: 25em;
    border-radius: 0px;
    background-color: transparent;
    border-bottom:1px solid rgba(255,255,255,.5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.input-search:focus{
    width: 25em;
    border-radius: 0px;
    background-color: transparent;
    border-bottom:1px solid rgba(0, 0, 0,.5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.header_right > button {
    background: transparent;
    border: 0;
    font-size: 2em;
    color: #0F1921;
    transition: 0.5s;
    position: relative;
}

.header_right > button:hover {
    transform: scale(1.25);
}

.header_right > button:focus {
    transform: scale(1.25);
}

.header_right > button:active {
    color: #fff;
}

.header_right > button > span {
    opacity: 1;
    position: absolute;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #FFA29A;
    top: 15px;
    transition: 0.5s;
}

.animdot {
    animation: animdot 0.5s;
}

@keyframes animdot {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(2)
    }

    100% {
        transform: scale(1)
    }
}

.cart {
    position: absolute;
    width: 25em;
    height: 25em;
    border: 1px solid #000;
    right: 0;
    background: #fff;
    top: 74px;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.cart::after {
    content: "";
    position: absolute;
    top: -9px;
    height: 1em;
    width: 1em;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    left: 10em;
}

.cart > button {
    cursor: pointer;
    position: absolute;
    background: #000;
    color: #fff;
    border: 0;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 1em;
    left: -49px;
    top: -1px;
    transition: 0.5s;
}

.cart > button:hover {
    background: #fff;
    color: #000;
}

.products_container {
    display: flex;
    flex-direction: column;
    gap: 1em;
    overflow: auto;
    width: 100%;
    height: 86%;
    padding: 1em;
}

.cart_msg {
    position: absolute;
    width: 100%;
    height: 86%;
    top: 0;
    justify-content: center;
    align-items: center;
    padding: 0 5em;
    text-align: center;
    font-family: Merriweather;
    user-select: none;
}

.cart_products {
    border: 1px solid #000;
    border-radius: 15px;
    position: relative;
    padding: 15px;
}

.removeprod {
    position: absolute;
    cursor: pointer;
    padding: 7px 13px;
    top: 0;
    right: 0;
    user-select: none;
    transition: 0.5s;
}

.removeprod:hover {
    color: #FFA29A;
    transform: scale(1.5)
}

.cp_img {
    border: 1px solid #000;
    overflow: hidden;
    width: 5em;
    height: 5em;
    position: relative;
    background: rgb(255,255,255);
    background: linear-gradient(225deg, rgba(255,255,255,1) 50%, rgba(158,158,158,1) 69%, rgba(0,0,0,1) 100%); 
}

.cp_img > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart_products > p {
    position: absolute;
    top: 10px;
    left: 110px;
    width: 60%;
    font-family: Roboto;
    font-weight: 500;
}

.prodprice {
    display: flex;
    position: absolute;
    justify-content: space-between;
    width: 7em;
    bottom: 15px;
    left: 110px;
    align-items: center;
}

.prodprice > span {
    font-family: Roboto;
    font-weight: 400;
}

.prodprice > select {
    background: #fff;
    border: 1px solid #000;
    padding: 5px;
    font-family: Roboto;
    font-weight: 300;
    cursor: pointer;
    transition: 0.5s;
}

.prodprice > select:hover {
    background: #000;
    color: #fff;
}

.checkout {
    position: absolute;
    bottom: 0;
    background: #000;
    border-top: 1px solid #000;
    padding: 1em;
    width: 100%;
    left: 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
}

.checkout:hover {
    background: #fff;
    color: #000;
}

@media only screen and (max-width : 575px) {

    .cart {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }

    .cart::after {
        display: none;
    }

    .cart > button {
        top: auto;
        left: auto;
        z-index: 1;
        bottom: 2.7em;
        right: 0.4em;
        font-size: 25px;
        border-radius: 50%;
        padding: 6px 13px;
    }

    .products_container {
        height: 100%;
        padding-bottom: 6em;
    }

}

.header_right > a {
    text-decoration: none;
    color: #fff;
    background: #0F1921;
    border: 1px solid #0F1921;
    padding: 1em;
    border-radius: 10px;
    transition: 0.5s;
}

.header_right > a:hover {
    background: #fff;
    color: #0F1921;
}

.login2 {
    display: none;
}

@media only screen and (max-width : 575px) {

    .header_right {
        position: unset;
    }

    .header_right > a {
        padding: 0px 10px;
        font-size: 2em;
    }

    .login1 {
        display: none;
    }

    .login2 {
        display: block;
    }

    .search-box {
        display: none;
    }

    .btn-search2 {
        display: block;
        background: #fff;
        color: #0F1921;
        border: 0;
        font-size: 1.5em;
    }

    .input-search2 {
        display: block;
        position: absolute;
        text-align: center;
        width: 100%;
        top: 79px;
        left: 0;
        color: #0F1921;
        font-family: Roboto;
        font-weight: 300;
        border-radius: 0;
        outline: none;
        height: 0;
        padding: 0;
        border: 0;
        transition: 0.5s;
    }

    .btn-search2:focus ~ .input-search2{
        height: unset;
        padding: 1em;
        border-bottom: 1px solid #000;
    }

    .input-search2:focus{
        height: unset;
        padding: 1em;
        border-bottom: 1px solid #000;
    }

}

@media only screen and (max-width : 400px) {

    .content_header > img {
        width: 10em;
    }

    .btn-search {
        font-size: 1.5em;
    }

    .header_right > button {
        font-size: 1.7em;
    }

    .header_right > a {
        font-size: 1.7em;
    }

}

.content {
    padding: 5vw;
}

@media only screen and (max-width : 600px) {

    .content {
        padding: 10vw 5vw;
    }

}

.content1 {
    display: flex;
    align-items: center;
    background-image: url(images/bg1.webp);
    background-size: cover;
    position: relative;
}

.content1 > div {
    width: 40%;
    display: flex;
    flex-direction: column;
    margin-left: 9%;
    gap: 1em;
}

.content1 > div span {
    color: #FFA29A;
}

.promo {
    position: absolute;
    left: 52vw;
    top: 1em;
    font-family: Roboto;
    font-weight: 900;
    font-size: 5em;
    text-shadow: 5px 5px #000;
}

.content1 > div h1 {
    font-family: Merriweather;
    margin: 0;
    color: #0F1921;
}

.content1 > div p {
    font-family: Roboto;
    font-weight: 300;
    font-size: 0.9em;
    margin: 0;
    color: #0F1921;
}

.content1 > div h2 {
    font-size: 2em;
    font-family: Merriweather;
    margin-left: 0.5em;
}

.c1_buttons {
    display: flex;
    justify-content: space-evenly;
    width: 25em;
}

.content1 > div a, .content1 > div button {
    text-decoration: none;
    color: #C9CDCE;
    padding: 1em 10px;
    background: #0F1921;
    border: 1px solid #0F1921;
    border-radius: 30px;
    width: 11em;
    text-align: center;
    transition: 0.5s;
}

.content1 > div a:hover, .content1 > div button:hover {
    background: #C9CDCE;
    color: #0F1921;
}

.content1 > div > img {
    position: absolute;
    top: 13vh;
    width: 35em;
    right: 0;
}

@media only screen and (max-width : 1500px) {

    .content1 > div > img {
        top: 9em;
    }

}

@media only screen and (max-width : 1000px) {

    .content1 {
        padding: 10vw 5vw;
        background: #fff;
    }

    .content1 > div {
        width: 100%;
        height: fit-content;
        margin: 0;
        gap: 3vw;
    }
    
    .promo {
        top: -9px;
        right: 18px;
        left: auto;
        font-size: 4em;
    }

    .content1 > div h2 {
        margin: 0;
        text-align: center;
    }

    .c1_buttons {
        width: 100%;
        justify-content: center;
        gap: 4vw;
    }

    .content1 > div > img {
        position: unset;
        width: 100%;
    }

}

.sectiontitle {
    font-family: Merriweather;
    text-align: center;
}

.sectionpresent {
    padding: 2vw;
    text-align: center;
    font-family: Roboto;
    font-weight: 300;
}

.contentcards {
    padding: 5vw 0;
}

.contentproducts {
    display: flex;
    gap: 1em;
    width: 100%;
    overflow: auto;
    padding: 0 5vw;
}

.cards {
    position: relative;
    width: 20em;
    background: linear-gradient(0deg, rgb(15, 25, 33) 0%, rgb(15, 25, 33) 50%, rgb(201, 205, 206) 75%, rgb(201, 205, 206) 100%);
    border: 1px solid #0f1921;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    gap: 1em;
}

.cards > p {
    position: absolute;
    padding: 1em;
    border-radius: 10px;
    top: 7px;
    right: 7px;
    font-family: Roboto;
    font-weight: 900;
}

.promocolor1 {
    background: #FFA29A;
}

.promocolor2 {
    background: #EFE9AE;
}

.promocolor3 {
    background: #CDEAC0;
}

.promocolor4 {
    background: #79d2e6;
}
.cards_img {
    border-radius: 15px;
    border: 1px solid #000;
    width: 15em;
    height: 15em;
    overflow: hidden;
    position: relative;
    object-fit: cover;
}

.cards_img > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.12);
}

.cards > h1 {
    font-family: Merriweather;
    color: #fff;
    font-size: 1em;
    text-align: center;
    margin: 0;
}

.cards > span {
    font-family: Roboto;
    color: #fff;
    font-size: 1.5em;
    font-weight: 900;
}

.cbutton {
    text-decoration: none;
    font-family: Roboto;
    font-weight: 300;
    background: #fff;
    border: 1px solid #fff;
    padding: 1em;
    color: #0f1921;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    transition: 0.5s;
}

.sbutton {
    background: transparent;
    color: #fff;
}

.cbutton:hover {
    background: transparent;
    color: #fff;
    transform: scale(1.025);
}

.contentpromo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    color: #fff;
    text-align: center;
    gap: 1em;
}

.contentpromo h1 {
    font-family: Roboto;
    font-weight: 900;
    font-size: 8vw;
}

.contentpromo p {
    font-family: Roboto;
    font-weight: 300;
}

.contentpromo a {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 1em;
    font-family: Roboto;
    font-weight: 300;
    transition: 0.5s;
}

.contentpromo a:hover {
    background: #fff;
    color: #000;
}

.contentcat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

.categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}

.categories > a {
    position: relative;
    background: #000;
    border: 3px solid #fff;
    padding: 2em 7em;
    width: 35vw;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-family: Roboto;
    font-weight: 900;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.categories > a:hover {
    filter: invert(1);
}

.categories > a > img {
    position: absolute;
    width: 52px;
    left: 2em;
}


@media only screen and (max-width: 1000px) {

    .categories {
        width: 100%;
    }

    .categories > a {
        width: 100%;
    }

}

@media only screen and (max-width: 750px) {
    
    .categories {
        display: flex;
        flex-direction: column;
    }

}

.community {
    display: flex;
    justify-content: space-evenly;
}

.community > a {
    position: relative;
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    font-size: 6vw;
    padding: 3vw;
    overflow: hidden;
    transition: 0.5s;
}

.community > a > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    top: 0;
    left: 0;
}

.community > a:hover {
    transform: scale(1.05);
}

.community > a:hover .sn_logos {
    filter: brightness(125%);
    transform: scale(10);
    transition: 10s;
}

.community > a > i {
    position: relative;
}

@media only screen and (max-width: 1033px) {
    .community {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 2em;
    }

    .community > a {
        text-align: center;
        text-shadow: 2px 2px #000;
    }

    .community > a:nth-child(7) {
        grid-column: 1/4;
        grid-row: 3/3;
    }
}

@media only screen and (max-width: 600px) {
    .community {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1em;
    }

    .community > a {
        padding: 0.4em 0;
        font-size: 6em;
    }

    .community > a:nth-child(7) {
        grid-column: 1/3;
        grid-row: 3;
    }

}

.innerdiv
{
	display: grid;
	grid-gap: 1.5rem;
	grid-template-rows: repeat(2,25rem);
    grid-template-columns: repeat(5,16rem);
}
.eachdiv
{
	padding: 1rem 2rem;
    border-radius: 0.8rem;
    box-shadow: 5px 5px 20px #6d6b6b6b;
    color: white;
}
.div1
{
	background: #070F2B;
    grid-column: 1/3;
    grid-row: 1/2;
}
.div2
{
	background:#1B1A55;
    grid-column: 3/4;
    grid-row: 1/2;
}
.div3
{
	background: #535C91;
    grid-column: 4/5;
    grid-row: 1/3;
}
.div4
{
	background: #9290C3;
	grid-column: 1/2;
    grid-row: 2/3;
    color: #000;
}
.div5
{
	background: #B9B4C7;
	grid-column: 2/4;
    color: #000;
    grid-row: 2/3;
}
.div6
{
	background: #FAF0E6;
    grid-column: 5/6;
    color: #000;
    grid-row: 1/3;
}
.userdetails
{
	display: flex;
}
.imgbox
{
	margin-right: 1rem;
    display: flex;
    align-items: center;
}
.imgbox i
{
	font-size: 2em;
}
.detbox
{
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.detbox p
{
	margin: 0;
}
.lightstars {
    color: hsl(0, 0%, 39%) !important;
}
.lightstars2 {
    color: hsl(0, 0%, 25%) !important;
}
.detbox .name
{
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
}
.detbox .designation
{
	color: hsl(0, 0%, 81%);
    opacity: 50%;
    font-size: 0.8rem;
}
.review h4
{
	font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}
.review p
{
	font-size: 0.95rem;
    font-weight: 500;
    opacity: 50%;
    line-height: 1.5;
}
.attribution
{
	font-size: 1rem;
    line-height: 1.5;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    text-align: right;
}
.attribution a
{
	text-decoration: none;
}

@media only screen and (max-width: 1500px) {
    .innerdiv {
        grid-template-rows: unset;
        grid-template-columns: unset;
        width: 100%;
    }
    
    .eachdiv {
        height: fit-content;
    }
}

@media only screen and (max-width: 1200px)
{

    .div6 {
        display: none;
    }

}

@media only screen and (max-width: 975px)
{
	.innerdiv {
        display: flex;
        flex-direction: column;
    }
}

.contenttrust {
    width: 98vw;
    margin: auto;
}

.contenttrust ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.contenttrust ul > li {
    text-align: center;
    list-style: none;
    color: #0F1921;
}

.contenttrust i {
    font-size: 5em;
}

.contenttrust h2 {
    font-family: Merriweather;
    font-size: 1.5em;
    margin: 0;
}

.contenttrust p {
    font-family: Roboto;
    font-weight: 300;
    padding: 1em;
    margin: 0;
}

@media screen and (max-width: 800px) {

    .contenttrust ul {
        flex-direction: column;
    }

}

.footer {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    padding: 2em 3em;
    color: #C9CDCE;
    background: #0F1921;
    border-top: 1px solid #e5e5e5;
    overflow: hidden;
  }
  
  .footer > * {
    flex:  1 100%;
  }
  
  .footer__addr {
    margin-right: 1.25em;
  }
  
  .footer__logo {
    width: 10em;
    margin-left: 2em;
    height: auto;
  }
  
  .footer__addr h2 {
    margin-top: 1.3em;
    font-size: 15px;
    font-weight: 400;
  }
  
  .nav__title {
    font-weight: 400;
    font-size: 15px;
  }
  
  .footer address {
    font-style: normal;
    color: #999;
  }
  
.footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: #C9CDCE;
    border-radius: 100px;
    color: #0F1921;
    line-height: 0;
    font-size: 1rem;
    padding: 0 1.3em;
    margin-left: 1em;
    margin-top: 2em;
}

.footer_deco {
    position: absolute;
    width: 12em;
    bottom: -1em;
    left: 20vw;
}

  .footer ul {
    list-style: none;
    padding-left: 0;
    gap: 1em;
  }
  
  .footer li {
    line-height: 2em;
  }
  
  .footer a {
    text-decoration: none;
  }
  
  .footer__nav {
    display: flex;
      flex-flow: row wrap;
  }
  
  .footer__nav > * {
    flex: 1 50%;
    margin-right: 1.25em;
  }
  
  .nav__ul a {
    color: #999;
    transition: 0.4s;
  }
  .nav__ul a:hover {
    color: #fff;
  }
  
.legal {
    position: absolute;
    bottom: 1vw;
    right: 2em;
}
  
@media screen and (min-width: 500px) {

    .footer__nav > * {
      flex: 1;
    }
    
    .nav__item--extra {
      flex-grow: 2;
    }
    
    .footer__addr {
      flex: 1 0px;
    }
    
    .footer__nav {
      flex: 2 0px;
    }

}

@media screen and (max-width: 500px) {

    .footer__addr {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .footer__logo {
        margin: 0;
    }

    .footer address {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    address {
        margin-bottom: 2em;
    }

    .footer__btn {
        margin-left: 0;
    }

    .footer ul {
        text-align: center;
        gap: 2em;
    }

    .footer__nav > * {
        margin: 0;
    }

    .footer_deco {
        display: none;
    }

    .legal {
        position: unset;
        text-align: center;
        margin-top: 1rem;
    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////// TABLET //////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media only screen and (max-width: 1033px) {

    @media (orientation: landscape) {

    }

}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////// MOBILE //////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media only screen and (max-width: 742px) {

    @media (orientation: landscape) {

    }

}