:root {
    --red: #c82128;
    --white: #fff;
    --black: #000;
    --footer: #f1f1f1;
    --footer-footer: #d8d8d8;
}

::selection {
    color: #fff;
    background: var(--red);
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: sans-serif !important;
    font-size: 1rem !important;
}

hr{
    border-radius: 3px;
}

header {
    background-color: transparent;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    color: var(--white);
    transition: 0.2s linear;
    z-index: 9;
}

a {
    transition: 0.2s linear !important;
}

header.scrolled {
    background-color: var(--white);
    color: var(--black);
    box-shadow: 0 0.0625em 0.2em rgb(0 0 0 / 30%);
    transition: 0.2s linear;
}

.img-tm{
    color: var(--white);
}

.scrolled .img-tm{ 
    color: var(--black) !important;
}

.scrolled a{
    color: var(--red);
}

input,
textarea {
    border: 2px solid #ccc;
    padding: 0.5rem 1rem;
    border-radius: 3px;
}

input:focus,
textarea:focus {
    outline: none !important;
    border: 2px solid var(--red) !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    /* letter-spacing: 0.1rem; */
    ;
}

p {
    font-size: 1.1rem;
    line-height: 1.5;
    /* text-align: center; */
    font-weight: 300;
}

div {
    /*letter-spacing: 0.1rem;*/
    line-height: 1.5;
    font-weight: 300;
}

a {
    color: var(--red);
    text-decoration: none;
}

li{
    font-weight: 300;
}

strong{
    font-weight: 600;
}

.conf-btn{ 
    /*background-color: #b1bdc6;*/
    background-color: #000;
    color: var(--white);
    border: none;
    padding: 0.5rem 0.5rem;
    border-radius: 50%;
    height: 250px;
    width: 250px;
    font-size: 1.2rem;
    font-weight: 600; 
    transition: 0.1s ease-in-out;
    box-shadow: 3px 3px 5px rgb(0 0 0 / 50%);
    cursor: pointer;
    
    text-align: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    
    transition: 0.5s all linear;
}

.conf-btn:hover {
    color: var(--red) !important;
    transform: translate(0px, -5px)
}

.conf-btn::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    /* background-color: rgb(200, 33, 40); */
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(200, 33, 40, 1);
    /*transform: scale(1);*/
    animation: pulse2 2.5s linear infinite;
}

@keyframes pulse2 {
    0% {
        /*transform: scale(1);*/
        box-shadow: 0 0 0 0 rgba(200, 33, 40, 1);
    }
    70% {
        /*transform: scale(1);*/
        box-shadow: 0 0 0 20px rgba(200, 33, 40, 0);
    }
    100% {
        /*transform: scale(0.95);*/
        box-shadow: 0 0 0 0 rgba(200, 33, 40, 0);
    }
}


.cont-btn{ 
    /*background-color: #b1bdc6;*/
    background-color: #000;
    color: var(--white);
    border: none;
    padding: 0.5rem 0.5rem;
    border-radius: 50%;
    height: 130px;
    width: 130px;
    z-index: 1;
    font-size: 0.725rem;
    font-weight: 600; 
    transition: 0.1s ease-in-out;
    box-shadow: 3px 3px 5px rgb(0 0 0 / 50%);
    cursor: pointer;
    
    text-align: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
     
    transition: 0.5s all linear;
}

.cont-btn:hover {
    color: var(--red) !important;
    transform: translate(0px, -5px)
}

.cont-btn::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    /* background-color: rgb(200, 33, 40); */
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(200, 33, 40, 1);
    /*transform: scale(1);*/
    animation: pulse3 2.5s linear infinite;
}

@keyframes pulse3 {
    0% {
        /*transform: scale(1);*/
        box-shadow: 0 0 0 0 rgba(200, 33, 40, 1);
    }
    70% {
        /*transform: scale(1);*/
        box-shadow: 0 0 0 20px rgba(200, 33, 40, 0);
    }
    100% {
        /*transform: scale(0.95);*/
        box-shadow: 0 0 0 0 rgba(200, 33, 40, 0);
    }
}





.bg-dark-hero{
    background-color: rgb(123, 123, 123);
    color: var(--white);
}

.added_product {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 5px 20px;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    background-position: center;
    background-size: cover;
    min-height: 30vh;
    margin-bottom: 100px;
}

.blog-list:hover {
    transform: scale(1.005);
    box-shadow: 5px 5px rgba(125, 125, 125, 0.4), 10px 10px rgba(125, 125, 125, 0.3), 15px 15px rgba(125, 125, 125, 0.2), 20px 20px rgba(125, 125, 125, 0.1), 25px 25px rgba(125, 125, 125, 0.05);
}

.cp {
    cursor: pointer;
}

.mobile-nav {
    position: absolute;
    top: 0;
    left: 100vw;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white !important;
    transition: 1s all ease-in-out;
}

.mobile-nav__close {
    position: absolute;
    top: 0rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
}

.tx-red {
    color: var(--red);
}

.scrolled img {
    filter: invert(1);
}

.scrolled a.main-link {
    color: var(--black);
}

.hero {
    height: 100vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
     /* background-attachment: fixed; */
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
}


@media (max-width: 675px) {
    .hero {
        background-position: left -330px top;
    }
}

@media (min-width: 675px) {
    .hero {
       /* background-attachment: fixed; */
    }
    
    .hide-link{
        /*display: none;*/
    }
}

@media (max-width: 675px) { 
    .hide-link{
        display: none;
    }
}

.hero2 {
    height: 50vh;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.btn-hero-white {
    /*background-color: var(--black);*/
    background-color: #b1bdc6;
    color: var(--red);
    border: none;
    padding: 0.5rem 0.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    /* margin: 0 0.5rem; */
    transition: 0.1s ease-in-out;
    box-shadow: 3px 3px 5px rgb(0 0 0 / 50%);
    cursor: pointer;
    transition: 0.5s all linear;
}

.btn-hero-white:hover {
    color: var(--red) !important;
    /*transform: translate(0px, -5px);*/
    scale: 1.05;
}


.btn-hero {
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 400;
    /* margin: 0 0.5rem; */
    transition: 0.1s ease-in-out;
    box-shadow: 3px 3px 5px rgb(0 0 0 / 50%);
    cursor: pointer;
}

.btn-hero:hover {
    color: white !important;
    transform: translate(0px, -3px);
}

.btn-hero-blk {
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 1.25rem 1.75rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 400;
    /* margin: 0 0.5rem; */
    transition: 0.1s ease-in-out;
    box-shadow: 3px 3px 5px rgb(0 0 0 / 50%);
    cursor: pointer;
}

.hero-text {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0.75rem 0;
    text-align: center;
    /*letter-spacing: 0.1rem;*/
}

.side-heading {
    position: relative;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1;
    border-left: solid 10px var(--red);
    padding-left: 1rem;
}

.side-heading-side {
    font-size: 1.3rem;
    font-weight: 600;
}

.side-text {
    color: var(--whblackite);
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0.75rem 0;
    /* text-align: center; */
    /* letter-spacing: 0.1rem; */
}

.side-ul {
    margin: 30px 0 30px 0;
    font-size: 1.2rem;
}

.side-ul li {
    margin-bottom: 0.4rem;
}

.main-link {
    color: inherit;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.5rem 0;
    margin: 0 0.75rem;
    position: relative;
}

.main-link:hover {
    color: var(--white);
    text-decoration: none;
}

.ml-active{
    color: var(--white);
    text-decoration: none;
}
.ml-active::after { 
    width: 100% !important;; 
}
 
.main-link:hover::after {
    width: 100%;
}

.main-link::after {
    opacity: 1;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 3px;
    background-color: #c82128;
    transition: opacity .3s, width .3s;
}

.main-link-blk {
    /* color: inherit; */
    text-decoration: none;
    /* font-size: 1rem;  */
    font-weight: 400;
    padding: 0.2rem 0;
    /* margin: 0 0.75rem; */
    position: relative;
    color: var(--black);
    cursor: pointer;
    width: fit-content;
}

.main-link-blk:hover {
    color: var(--black);
    text-decoration: none;
}

.main-link-blk:hover::after {
    width: 100%;
}

.main-link-blk::after {
    opacity: 1;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 3px;
    background-color: #c82128;
    transition: opacity .3s, width .3s;
}

.main-link-foot {
    color: inherit;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.2rem 0;
    /* margin: 0 0.75rem; */
    position: relative;
    color: var(--black);
    cursor: pointer;
    width: fit-content;
}

.main-link-foot:hover {
    color: var(--black);
    text-decoration: none;
}

.main-link-foot:hover::after {
    width: 100%;
}

.main-link-foot::after {
    opacity: 1;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 1px;
    background-color: #c82128;
    transition: opacity .3s, width .3s;
}

.shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.shadowNoHover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.3s linear;
}

.paralax-sect {
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    font-style: normal;
    text-align: center;
    padding: 20px 0;
}

@media (min-width: 1200px) {
    .paralax-sect {
        background-attachment: fixed;
    }
}

.paralax-sect-solar {
    padding: 125px 0;
    /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white);
    font-style: normal;
    text-align: center;
}

@media (min-width: 1200px) {
    .paralax-sect-solar {
        background-attachment: fixed;
    }
}

.image-sect {
    height: 30vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: 0.5s ease !important;
    cursor: pointer;
}

.image-sect:hover {
    background-size: 115%;
}

.main-footer {
    background-color: var(--footer);
    color: var(--black);
    display: flex;
    flex-wrap: wrap;
}

.footer-footer {
    background-color: var(--footer-footer);
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px
}

.footer-icon{
    height: 30px;
}

.footer-icon:hover{ 
    transform: translate(0px, -5px);
}


/* CSS CLASS FOR THE FULLPAGE LOADER */

.full-page {
    position: absolute;
    top: -45px;
    width: 100%;
    z-index: 99999999;
    height: 100vh;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-control {
    border-radius: 5px;
}

.full-page-loader {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999;
    height: 100vh;
    background-color: rgb(37, 37, 37);
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-page-loader img {
    height: 30vh;
    border-bottom: 0px solid var(--red);
    z-index: 99;
}

.full-page-loader::after {
    content: "";
    position: absolute;
    width: 45vh;
    height: 45vh;
    /* background-color: rgb(200, 33, 40); */
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(200, 33, 40, 1);
    transform: scale(1);
    animation: pulse 1.5s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(200, 33, 40, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 30px rgba(200, 33, 40, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(200, 33, 40, 0);
    }
}

.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #000;
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: #FF3D00;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}