/* FONTS */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,400;1,700&display=swap');

/* DEFAULTS */

body {
    background-color: #f7f7f7;
    font-family: 'Poppins', 'Arial', sans-serif;
    color: #21409A;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

img,
object,
embed {
    max-width: 100%;
}

a:hover,
a:focus,
a:active {
    outline: none !important;
}

strong,
b {
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Poppins', 'Arial', sans-serif;
    color: #21409A;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
}

h1,
.h1 {
    font-size: 36px;
    line-height: 44px;
}

h2,
.h2 {
    font-size: 30px;
    line-height: 36px;
}

h3,
.h3 {
    font-size: 24px;
    line-height: 30px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-size: 20px;
    line-height: 24px;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* DESIGN */

.home-page {
    padding-bottom: 60px;
}

.container {
    width: 1336px;
    padding-right: 18px;
    padding-left: 18px;
    margin-right: auto;
    margin-left: auto;
}

.home-page-title {
    background: #21409A;
    text-align: center;
    padding: 60px 0 120px;
}

.home-page-title h1 {
    color: #fff;
}

.home-page-title h1 span {
    color: #fff;
    font-weight: 200;
}

.container-content {
    margin-top: -60px;
}

.home-page-content {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    padding: 60px 60px 42px;
}

.home-page-buttons {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -9px;
}

.home-page-buttons>li {
    padding: 0 9px 18px;
}

.home-page-buttons>li>a {
    position: relative;
    min-width: 125px;
    display: block;
    background: #1c9936;
    font-family: 'Poppins', 'Arial', sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 20px;
    border: 2px solid #1c9936;
    letter-spacing: 0.14px;
    outline: 0;
    box-shadow: none;
    overflow: hidden;
    padding: 11px 24px;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    cursor: pointer;
    z-index: 1;
}

.home-page-buttons>li>a:hover,
.home-page-buttons>li>a:focus {
    color: #1c9936;
}

.home-page-buttons>li>a:before {
    content: '';
    position: absolute;
    top: 0;
    right: -25%;
    width: 0;
    height: 100%;
    background: #fff;
    -webkit-transition: width .3s ease;
    transition: width .3s ease;
    -webkit-transform: skew(-45deg);
    transform: skew(-45deg);
    z-index: -1;
}

.home-page-buttons>li>a:hover:before,
.home-page-buttons>li>a:focus:before {
    width: 150%;
    right: auto;
    left: -25%;
}

.home-page-buttons>li.in-progress>a {
    background: #ED1C24;
    color: #fff;
    border-color: #ED1C24;
}

.home-page-buttons>li.in-progress>a:hover,
.home-page-buttons>li.in-progress>a:focus {
    color: #ED1C24;
}

.home-page-buttons>li.new>a {
    background: #ffae20;
    color: #fff;
    border-color: #ffae20;
}

.home-page-buttons>li.new>a:hover,
.home-page-buttons>li.new>a:focus {
    color: #ffae20;
}

.home-page-counter {
    width: 320px;
    background: #Fff;
    border: 2px solid #ED1C24;
    text-align: center;
    color: #ED1C24;
    padding: 30px 18px;
    margin: 48px auto 0;
}

.counter-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.counter-stat {
    white-space: nowrap;
    opacity: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-top: 18px;
}

.home-page-legend {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 18px 0 0;
    margin: 0 -15px;
}

.home-page-legend>li {
    padding: 0 15px;
    margin-bottom: 18px;
}

.home-page-legend>li>span {
    display: block;
    position: relative;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 34px;
}

.home-page-legend>li>span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #000;
}

.home-page-legend>li>span:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 16px;
    background: #000;
}

.home-page-legend>li>span.ready {
    color: #1c9936;
}

.home-page-legend>li>span.ready:before {
    border-color: #1c9936;
}

.home-page-legend>li>span.ready:after {
    background: #1c9936;
}

.home-page-legend>li>span.progress {
    color: #ED1C24;
}

.home-page-legend>li>span.progress:before {
    border-color: #ED1C24;
}

.home-page-legend>li>span.progress:after {
    background: #ED1C24;
}

.home-page-legend>li>span.new {
    color: #ffae20;
}

.home-page-legend>li>span.new:before {
    border-color: #ffae20;
}

.home-page-legend>li>span.new:after {
    background: #ffae20;
}

#page-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 14px;
}

.loading {
    overflow: hidden;
}

.fancy-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 99999;
}

.fancy-loader-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.is-loaded .fancy-loader-spinner {
    opacity: 0;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 240px;
    height: 240px;
}

.lds-ripple div {
    position: absolute;
    border: 12px solid #fff;
    opacity: 1;
    border-radius: 50%;
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 108px;
        left: 108px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 216px;
        height: 216px;
        opacity: 0;
    }
}

.fancy-loader-background {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 200%;
    background: #0969fb;
    -webkit-transition: width .5s ease;
    transition: width .5s ease;
    -webkit-transform: translateX(-50%) skew(45deg);
    transform: translateX(-50%) skew(45deg);
    z-index: 1;
}

.is-loaded .fancy-loader-background {
    width: 0;
}

@media (max-width: 1399px) {

    h1,
    .h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .home-page {
        padding-bottom: 30px;
    }

    .container {
        width: 976px;
    }

    .home-page-title {
        padding: 30px 0 60px;
    }

    .container-content {
        margin-top: -30px;
    }

    .home-page-content {
        padding: 30px 30px 12px;
    }

    .home-page-counter {
        width: 280px;
        padding: 24px 18px;
        margin-top: 36px;
    }

    .counter-stat {
        margin-top: 12px;
    }

    .home-page-legend {
        padding-top: 6px;
    }

    #page-title {
        font-size: 24px;
        line-height: 30px;
        margin-top: 11px;
    }
}

@media (max-width: 991px) {
    .container {
        width: auto;
    }
}

@media (max-width: 767px) {
    .home-page-content {
        padding-right: 18px;
        padding-left: 18px;
    }

    .home-page-legend {
        padding-top: 20px;
    }

    .home-page-buttons {
        margin: 0 -5px;
    }

    .home-page-buttons>li {
        padding: 0 5px 10px;
    }

    .home-page-buttons>li>a {
        min-width: 96px;
        padding: 6px 14px;
    }
}

@media (max-width: 479px) {
    .home-page-counter {
        width: auto;
    }
}