:root{
    --mainFont:'Roboto', sans-serif;
    --secondartFont:'Roboto Condensed', sans-serif;
    --primaryColor: #1B90FC;
    --white:white;
    --black: #202020;
}
/* .box {
    background: red;
   display: flex;
   flex-direction: column;
}

.box > * {
    display: flex;
    color: white;
}

.box >:nth-child(1){
     background: yellow;
     z-index: 1;
 }

.box >:nth-child(2){
   background: blue;
   margin-block-start: -12px;
   color: green;
} */

body {
    /* border: 10px solid red; */
    /* outline: 10px solid green; */
    /* box-shadow: inset 0 0 0 10px blue; */
    margin: 0;
    /* font-family: 'Roboto', sans-serif; */
    /* font-family: 'Roboto Condensed', sans-serif; */
    font-family: var(--mainFont);
}

.wrapper {
    /* max-width: ; */
    max-inline-size: 1664px;
    /* 320 480 768 1024 1240 1366 1440 1920 */
    margin: auto;
    /* border: 1px solid green; */
    /* overflow: hidden; */
}

.hero .hero-content h1 {

}

h1{

}

p, h1 {
    margin: 0;
}

.hero h1 {
    font-family: var(--secondartFont);
    font-size: 40px;
    margin-block-end: 8px;
    /* padding: 20px; */
}

.hero p {
    font-size: 16px;
    line-height: 24px;
    margin-block-end: 24px;

}

img{
    max-inline-size: 100%;
}

button{
    background-color: var(--primaryColor);
    color:var(--white);
    padding-block: 16px;
    padding-inline: 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 16px;
}

.hero-content{
    display: flex;
    flex-direction: row;
    block-size: 768px;    
    align-items: center;
    /* background-color: red; */
}
.card{
    max-inline-size: 412px;
    color: var(--white);
    z-index: 2;
    position: relative;
}
.hero::before{
    content: '';
    inline-size: 50%;
    display:block;
    /* block-size: 100%; */
    background-color: var(--black);
    position: absolute;
    inset-block:0;
    z-index: 1;
    clip-path: polygon(0 0, calc(100% - 151px) 0, 100% 100%, 0 100%);
}
.hero{
    /* border: 10px solid red; */
    background-color:var(--black) ;
    background-image: url('../images/loki.jpg');
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 128px), 0 100%);
    /* background-size: cover; */
    /* justify-content: flex-start; */


}