@import url(http://fonts.googleapis.com/css?family=Roboto);

:root{
    --text-color: #4e4e4e;
    --main-color: white;
    --some-color: #dcecf9;
    --debug-border: 0px;
    --main-border: 10px;
}

body, html{
    
    width: 100%;
    height: 100%;
    min-width: 1180px;
    min-height: 600px;
    background-color: #fff;
    color: black;
    font-family: 'Roboto', sans-serif;
}

header{
    width: 100%;
    height: 15%;

    display: flex;
    justify-content: center;

    border: var(--debug-border) solid red;
}
.header-wrapper{
    width: 50%;
    height: 100%;

    display: flex;
    flex-direction: row;
    justify-content: end;
    -webkit-justify-content: flex-end;
}
.header-container{
    width: 45%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    border: var(--debug-border) solid red;
}
.header-container>img{
    width: 80%;
}

.header-wrapper:last-child{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 3;
}


/* ======================= */

main{
    width: 100%;
    height: 65%;

    display: flex;
    flex-direction: row;

    border: var(--debug-border) solid red;
}
.main-container{
    width: 50%;
    height: 100%;

    display: flex;
    justify-content: end;
    -webkit-justify-content: flex-end;

    border: var(--debug-border) solid red;
    z-index: 2;
}
.main-container:last-child{
    -webkit-justify-content: flex-start;
    justify-content: start;
}
.main-wrapper{
    width: 90%;
    height: 100%;
    border: var(--debug-border) solid red;
    position: relative;
    z-index: 2;
}

.main-container-bg{
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 130%;
    background-color: #BAF2B7;
    z-index: -1 !important;
}
.for-marxiz{
    width: 100%;
    height: 100%;
}
.main-elements{
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
}
.main-elements:nth-child(1){
    height: 50%;
    font-size: 30px;

    border: var(--debug-border) solid red;
}
.main-elements:nth-child(2){
    height: 25%;
    font-size: 20px;
    border: var(--debug-border) solid red;
}
.main-elements:nth-child(3){
    height: 25%;
    
    border: var(--debug-border) solid red;
}
.button-marxiz{
    width: 80%;
    height: 100%;
    background-color: #EC2B2B;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;

    font-size: 18px;
}
.button-marxiz::before{
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(1%, 10%);
    width: 100%;
    height: 100%;
    background-color: #C92020;
    z-index: -1;
}
.marxiz-mb{
    display: none;
}
.main-two{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-video{
    width: 100%;
    height: 80%;
    border: var(--debug-border) solid red;
    padding: 20px;
    padding-left: 30px;
    position: relative;
}

.main-video-title{
    width: 100%;
    height: 20%;
    padding: 20px;
    padding-left: 40px;
    border: var(--debug-border) solid red;
    font-size: 20px;
}
.main-video>iframe{
    position: absolute;
    top: 1%;
    left: 4%;
    width: 100%;
    height: 95%;

    border: var(--debug-border) solid red;
}
.main-video-bg{

    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(3%, 8%);
    width: 105%;
    height: 90%;
    background-color: #fff;
    z-index: -1;
}
.main-video-bgi{
    position: absolute;
    top: 1%;
    left: 4%;
    width: 100%;
    height: 95%;
    background-image: url('../src/vidTit.png');
    background-repeat:no-repeat;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    
    z-index: 1;
}

/* ========================= */

footer{
    width: 100%;
    height: 20%;

    border: var(--debug-border) solid red;
}
.footer-wrapper{
    width: 95%;
    height: 100%;
    margin-left: 5%;
    background-color: #E4F5EE;

    display: flex;
    flex-direction: row;
    align-items: center;

    border: var(--debug-border) solid red;
}
.footer-elements{
    width: 28%;
    height: 100%;
    display: flex;
    flex-direction: row;

    border: var(--debug-border) solid red;
}
.footer-elements-icon{
    width: 35%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    border: var(--debug-border) solid red;
}
.footer-elements-icon>img{
    width: 35%;
}
.footer-elements-text{
    width: 65%;
    height: 100%;

    display: flex;
    align-items: center;

    font-size: 20px;

    border: var(--debug-border) solid red;
}

.maqxiz-wrapper{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    min-width: 1180px;
    min-height: 600px;

    z-index: 5;
    background-color: rgba(255, 255, 255, 0.815);
}

.mar-style{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px black;
}
