@font-face {
    font-family: 'Roboto_Regular';
    src: url(/fonts/Roboto_Regular.ttf);
  }
@font-face {
    font-family: 'Abel_Regular';
    src: url(/fonts/Abel_Regular.ttf);
  }
@font-face {
    font-family: 'Fifa_2018_Dusha';
    src: url(/fonts/Fifa_2018_Dusha.ttf);
  } 
:root {
    --main-header-color: #505050;
    --main-bg-color: #FBFBFB;
    --box-color: #FFC107;
    --main-bullet-color: #2196F3;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto_Regular'; 
    background: var(--main-bg-color);
    color: #333;
    height: 100vh;
    display: grid;
    overscroll-behavior: none;  /* -- stop pull to refresh the page --*/
    user-select: none;
    -moz-user-select: none;
    animation: fadein 2.5s;
    /* margin: 1em 2em; */
}
header .Top-Head {
    margin-top: 52px;
    font-family: 'Abel_Regular';
    font-size: 22px;
    text-align: center;
    background-color: var(--main-header-color);
    color: #f2f2f2;
    padding: 5px 10px;
}
.Top-Head-sub {
    font-family: 'Fifa_2018_Dusha';
    margin-top: 10px;
}
.Top-Head-sub p:nth-child(1) {
    background: var(--box-color);
    text-align: center;
    letter-spacing: 1px;
    font-size: 22px;
    border: 1px solid #989803;
    margin: 5px 10px;
    padding: 10px 0;
}
.Top-Head-sub p:nth-child(2) {
    text-align: center;
    font-size: 20px;
    border-bottom: 2px solid #58595b;
    padding: 10px;
}
.point-list {
    margin: 10px 10px 10px 30px;
    position: relative;
}
.point-list ul {
    border-left: 3px solid rgba(255, 152, 0, .5);
    list-style: none;
    padding: 5px 0;
}
.point-list ul li {
    font-size: 16.5px;
    text-align: justify;
    padding-left: 7px;
    padding-bottom: 0.6em;
    position: relative;
}
.point-list ul:before{
    content: "";
    position: absolute;
    top: 0px;
    left: -32px;
    width: 32px;
    height: 100%;
    background-color: rgba(0,0,0,.1);
}
ul li:before{
    content: "\f05a";
    font-family: "Font Awesome 5 Pro";
    /* font-weight: 300; */
    /* font-size: 3em; */
    position: absolute;
    top: 0px;
    left: -27px;
    color: var(--main-bullet-color);;
}
.point-list ul li:last-child {
    padding-bottom: 0;
}
.Bottom-head {
    font-family: 'Abel_Regular';
    font-size: 22px;
    background-color: var(--main-header-color);
    color: #f2f2f2;
    text-align: center;
    padding: 5px;
}
.Bottom-head-text {
    padding: 5px 10px;
    text-align: justify;
    font-size: 16.5px;
}
footer {
    display: grid;
    font-size: 14px;
    letter-spacing: 3px;
    font-family: 'Abel_Regular';
    justify-content: center;
    background-color: #206789;
    color: var(--main-bg-color);
    padding: 0.7em 0;
}
footer p {
    text-align: center;
}
/* Media query for  High Workstations 21/22/23" Monitor..............*/
@media (min-width: 900px) {
    .Top-Head-sub p:nth-child(1){
        margin: 1em 20em;
    }
}