@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body, html{

font-family: 'Poppins', Arial, Helvetica, sans-serif;
font-size: 14px;
color: #666666;

}


/* ********* Font Sizes ********* */  
.fs-12{
    font-size: 12px!important;
}
.fs-13{
    font-size: 13px!important;
}
.fs-14{
    font-size: 14px!important;
}
.fs-15{
    font-size: 15px!important;
}
.fs-16{
    font-size: 16px!important;
}
.fs-18{
    font-size: 18px!important;
}
.fs-20{
    font-size: 20px!important;
}
.fs-21{
    font-size: 21px!important;
}
.fs-22{
    font-size: 22px!important;
}
.fs-24{
    font-size: 24px!important;
}
.fs-26{
    font-size: 26px!important;
}
.fs-28{
    font-size: 28px!important;
}

.fs-40{
    font-size: 40px!important;
}

.fs-46{
    font-size: 46px!important;
}




/* ********* Font Weights ********* */  
.fw-medium{
    font-weight: 500!important;
}



.section1{
    /* padding-top: 10rem; */
    position: relative;

}
.section1::after{
    content: '';
    background: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    opacity: 0.4;
}

.selection_links{
    border: none;
    box-shadow: 0px 0px 27px rgba(0, 0, 0, 0.1);

    height: 100%;

    padding: 0.75rem;

    color: #000;
    text-decoration: none;

    position: relative;
    overflow: hidden;
    display: block;
}

.selection_links.comingsoon .card-body{
    opacity: 0.6;
    background-color: #ebebeb;
}
.selection_links.comingsoon::after{
    content: 'Coming Soon';
    position: absolute;
    background: #31698a;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 6px;
    top: 33px;
    left: -37%;
    transform: rotate(-50deg);

    font-weight: 200;
    font-size: 12px;
}

.selection_links.comingsoon{
    color: #000;
}

.bg-dark{
    background-color: #141414;
}

.product-logo{
    width: 100%;
    height: 40px;
    max-width: 180px;
    object-fit: contain;
}

footer a{
    color: rgba(255, 255, 255, 0.808);
}
footer a:hover{
    color: #FFF;
}