body, html, *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{

    font-family: Roboto, sans-serif;
}

.header{
    display: flex;
    justify-content: space-between;
    padding: 0 14%;
    flex-wrap: wrap;

    width: 100%;


    color: whitesmoke;
}
.left_col{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.left_col .logo img{
    width: 137px;
}
.left_col .text{
    text-align: center;
}
@media screen and (max-width: 426px) {
    .header{
        justify-content: space-around;
        padding: 0;
    }

}
@media screen and (max-width: 321px) {
    .left_col{
        width: 100%;
        grid-template-columns: auto auto;
        justify-content: center;
        gap: 40px;
        text-align: left;
        margin-bottom: 30px;
    }
    .left_col .text{
        text-align: left;
    }
}
.right_col{
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.main_wrapper{
    position: relative;


    min-width: 100%;
    min-height: 100vh;

    padding-top: 100px;
}

/*  Timer   */
.timer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 20px 50px;
    margin-top: 86px;

    color: white;
    font-weight: 400;
    font-size: 36px;
    /*line-height: 43px;*/
}
.timer .clock{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 240px;
    height: 240px;

    /*margin: 10px 50px;*/

    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}
.timer .clock .text{
    text-align: center;
    transform: translateY(8px);
}
.timer .clock .time{
    font-size: 2.2em;
    line-height: .8em;
}
.timer .clock .text div:nth-child(2){
    font-size: .8em;
}
@media screen and (max-width: 426px) {
    .timer .clock{
        margin: 20px 0;
    }
}
.progress-ring{
    position: absolute;
}
.progress-ring__circle{
    transform-origin: center;
    transform: rotate(-90deg);
    transition: all .5s;
}
.description{
    width: 100%;

    margin-top: 50px;

    text-align: center;
}
.background-image{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: url("../media/high-angle-solar-pannels-arrangement 1.webp");
    background-size: cover;
    z-index: -1;
}
.blackout{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.45);
}
