@charset "utf-8";

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/rajdhani-v16-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/rajdhani-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rajdhani-v16-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/rajdhani-v16-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/rajdhani-v16-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/rajdhani-v16-latin-regular.svg#Rajdhani') format('svg'); /* Legacy iOS */
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/rajdhani-v16-latin-600.eot'); /* IE9 Compat Modes */
  src: url('../fonts/rajdhani-v16-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/rajdhani-v16-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/rajdhani-v16-latin-600.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/rajdhani-v16-latin-600.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/rajdhani-v16-latin-600.svg#Rajdhani') format('svg'); /* Legacy iOS */
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Rajdhani', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1.5rem;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.529em;
    line-height: 1.1em;
}
h2 {
    font-size: 1.235em;
    line-height: 1.3em;
    margin-bottom: 0.8rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 1.1rem;
}
ul li:before {
    content: "\25a0";
    font-size: 1em;
    float: left;
    margin: -3px 0 0 -1.1rem;
    color: #187efe;
}
@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }
    25% {
        left: 0%;
    }
    50% {
        left: -100%;
    }
    75% {
        left: -100%;
    }
    100% {
        left: -200%;
    }
}
@keyframes slidy {
    0% {
        left: 0%;
    }
    25% {
        left: 0%;
    }
    50% {
        left: -100%;
    }
    75% {
        left: -100%;
    }
    100% {
        left: -200%;
    }
}
header section {
    overflow: hidden;
}
header section figure img {
    width: 33.333333%;
    float: left;
}
header section figure {
    position: relative;
    width: 300%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 18s;
    -webkit-animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    animation: 18s slidy infinite;
}
.flex {
    display: flex;
    justify-content: space-between;
    padding: 2rem 2rem;
}
.left, .right {
    width: 49%;
}
article {
    padding: 2rem 2rem 0;
}
.top span {
    background: #DDDDDD;
    padding: 0.35rem;
    border-radius: 3px;
}
.top {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.ps {
    position: relative;
    padding-right: 2rem !important;
}
.ps img {
    position: absolute;
    top: -4px;
    right: -11px;
}
.pdt {
    padding-top: 2rem;
}
small {
    font-size: 0.9375rem;
    color: #808080;
    display: block;
    padding-top: 0.25rem;
}
.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
hr {
    border: none;
    border-bottom: 1px solid #ccc;
    margin: 0 0 1.5rem;
}
.logo {
    display: flex;
    justify-content: flex-end;
    padding: 2rem;
}
.color {
    color: #187efe;
}
article>figure {
    margin-bottom: 2rem;
}
footer p {
    text-align: center;
    padding-bottom: 3rem;
}
footer a {
    background: #187efe;
    color: #fff !important;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    width: fit-content;
}
footer i {
    color: #FFCA7F;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .logo {
        justify-content: center;
    }
    h1 br{
        display: none;
    }
}
@media only screen and (max-width:780px) {
    .flex {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
}
@media only screen and (max-width:480px) {
    .flex, article {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .row {
        flex-direction: column;
        align-items: center;
        padding-bottom: 1.5rem;
    }
    .logo {
        padding-bottom: 0;
    }
    .row p {
        text-align: center;
    }
}