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

html {
    font-size: 1rem; /* 1 rem = 1px */
    font-family: "Rubik", sans-serif;
    overflow: auto;
}

/******* MOBILE *******/

/* global Variables and classes */

:root {
    --just-white: #000;
}

body {
    background: #ffffff;
    position: relative;
    overflow: auto;
}

body::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.noise-container {
    position: absolute;
    pointer-events: none;
    width: calc(95%);
    height: calc(95%);
    background: url(small_background-noise3.png) repeat;
    opacity: 1;  /* here adjust the opacity of the background noise */
    border-style: solid; /* here adjust the style of noise */
    border: 2px; /* and here the border */
    border-color: #ffffff;
    z-index: -1;
    margin: 2.5%;
    clip-path: polygon(1% 0, 99% 0, 100% 1%, 100% 99%, 99% 100%, 1% 100%, 0 99%, 0 1%);
}

h1,
h2,
h3,
h6 {
    font-family: "Crimson Text", sans-serif;
    font-weight: normal;
    color: #0D1317;
}

h4 {
        font-family: "Rubik", sans-serif;
        font-weight: 600;
        color: #ffffff;
}

h5 {
        font-family: 'Lora', serif;
        font-weight: 700;
        color: #000;
}

/* HEADER */

.header-title-container {
    height: 295px;
    margin: 0 auto 25px;
}

.header-title-container h1 {
    max-width: 419px;
    margin: 0 auto;
    padding: 0px 32px;
    font-size: 35rem;
    line-height: 82rem;
    color: #000;
}

.header-flow-container {
    overflow: hidden;
    width: 100%;
    height: 450px;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: -1;
}
.header-flow {
    position: absolute;
    left: calc(50% - 140px);
    width: clamp(280px, 80%, 150px);
    top: 9%;
    border: 4px solid #ffffff;
    clip-path: polygon(2% 0, 98% 0, 100% 2%, 100% 98%, 98% 100%, 2% 100%, 0 98%, 0 2%);
}

.header-flow-desktop {
    display: none;
}

/* MAIN */

.content-container {
    width: 100%;
    height: auto;
    margin-bottom: 120px;
    margin-top: 70px;
}

.row {
    margin: 0 auto;
}

.row article {
    margin: 0 auto;
    padding-left: 10px;
    padding-top: 20px;
    max-width: 1400px;
    text-align: justify;
}


.div-table {
  display: table;         
  width: auto;
  height: 250px;             
  border: 7px solid #ffffff;
  font-weight: 800;
  font-size: 20em;
  line-height: 20rem;
  clip-path: polygon(2% 0, 98% 0, 100% 2%, 100% 98%, 98% 100%, 2% 100%, 0 98%, 0 2%);
      text-align: left;
    padding: 15px 10px 0px 10px;
}
.div-table-row {
  display: table-row;
    font-family: "Crimson Text", sans-serif;
  width: auto;
  clear: both;
}
.div-table-col {
  float: left; /* fix for  buggy browsers */
  display: table-column;         
  width: 250px;         
}

.title {
    margin: 0 auto;
    padding: 18px 0px;
    font-size: 28rem;
    line-height: 22rem;
    color: #0D1317;
    text-align: center;
}

.title-cyrillic {
    font-family: 'Lora', serif;
    font-weight: 700;
    margin: 0 auto;
    padding: 18px 0px;
    font-size: 28rem;
    line-height: 22rem;
    color: #0D1317;
    text-align: center;
}

.paragraph {
    margin: 0 auto;
    font-size: 44rem;
    line-height: 19rem;
    color: #0D1317;
    text-align: left;
}

.paragraph-image {
    width: 30%;
    margin: 0px 50px 30px;
    box-shadow: 0px 0px 0px #151414;
    border-radius: 0px;
}

.paragraph-logo {
    width: 50%;
    margin: 30px 0 0px;
    box-shadow: 0px 0px 0px #151414;
    border-radius: 0px;
}

.paragraph a {
    color: #000;
    font-style: italic;
    text-decoration-color: #715AFF;
}

/* FOOTER */

footer {
    width: 85%;
    height: 56px;
    border-top: 1.5px solid white;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    bottom: 80px;
}

footer section {
    width: 90%;
    margin: 0 auto;
}

.footer-section ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.icon-footer {
    width: 50px;
}

.icon-footer-li {
    width: 12px;
}

.footer-section ul li {
}


/******* TABLET *******/

@media (min-width: 768px) {
    .noise-container {
        width: calc(95%);
        height: calc(95%);
        margin: 2.5%;
        clip-path: polygon(1% 0, 99% 0, 100% 1%, 100% 99%, 99% 100%, 1% 100%, 0 99%, 0 1%);
    }
    .header-title-container h1 {
        font-size: 45rem;
        max-width: 750px;
    }

    .header-flow-container {
        height: 660px;
    }

    .header-flow {
        left: calc(50% - 200px);
        width: clamp(400px, 100%, 400px);
        top: 9%;
        border: 5px solid #ffffff;
        clip-path: polygon(2% 0, 98% 0, 100% 2%, 100% 98%, 98% 100%, 2% 100%, 0 98%, 0 2%);
    }

    .content-container {
        margin-top: 350px;
        margin-bottom: 120px;
    }

    .row {
        width: 100%;
        display: flex;
        justify-content: center;
        max-width: 750px;
    }

    .row article {
        margin-bottom: 22px;
        max-width: 580px;
    }

    .title {
        font-size: 48rem;
    }

    .paragraph {
        font-size: 56rem;
        padding: 0px;
    }

    .paragraph-image {
        margin-top: 20px;
    }

    footer {
        height: 55px;
        width: 75%;
        bottom: 90px;


    }
    .icon-footer {
        width: 40px;
    }

    .icon-footer-li {
        width: 23px;
    }


}

/******* DESKTOP *******/

@media (min-width: 1201px) {
    .noise-container {
        width: calc( 95%);
        height: calc( 95%);
        margin: 2.5%;
        clip-path: polygon(2% 0, 98% 0, 100% 2%, 100% 98%, 98% 100%, 2% 100%, 0 98%, 0 2%);

    }

    .header-title-container h1 {
        padding: 10px 12px;
        font-size: 58rem;
        max-width: 1550px;
    }

    .header-flow-container {
        height: 1200px;
    }

    .header-flow-desktop {
        position: absolute;
        left: calc(50% - 210px);
        width: clamp(920px, 100%, 91px);
        top: 9%;
        display: flex;
        border: 7px solid #ffffff;
        clip-path: polygon(2% 0, 98% 0, 100% 2%, 100% 98%, 98% 100%, 2% 100%, 0 98%, 0 2%);
    }

    .header-flow {
        display: none;
    }

    .content-container {
        margin-top: 100px;
    }

    .row {
        max-width: 1580px;
    }

    .row article {
        max-width: 1200px;
    }

    .title {
        font-size: 30rem;
    }

    .paragraph {
        line-height: 23rem;
    }

    footer {
        height: 64px;
        padding-top: 10px;
    }
    .icon-footer {
        width: 60px;
    }



    .icon-footer-li {
        width: 49px;
    }


}
