@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Light.ttf") format("truetype");
    font-weight: 100;
    font-style: thin;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: regular;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: bold;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: thin;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: regular;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: bold;
}

* {
    box-sizing: border-box;
    font-family: "Roboto";
}

html,
body {
    margin: 0;
    scroll-behavior: smooth;
    background-color: #efefef;
}

#page-wrapper {
    display: flex;
    overflow-x: hidden;
    flex-direction: column;
}

#page-wrapper #header {
    height: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page-wrapper #header #header-container #logo {
    height: 48px;
}

@media (min-width: 768px) {
    #page-wrapper #header {
        height: 93px;
    }
    #page-wrapper #header #header-container #logo {
        height: 56px;
    }
}

@media (min-width: 981px) {
    #page-wrapper #header {
        height: 83px;
        justify-content: flex-start;
    }
    #page-wrapper #header #header-container {
        width: 80%;
        margin: 0 auto;
        max-width: 1080px;
    }
    #page-wrapper #header #header-container #logo {
        height: 64px;
    }
}

.green-divider {
    height: 3px;
    background-color: #008c94;
}


/* FIRST DIV */

#first-div {
    display: flex;
    min-height: 620px;
    position: relative;
    align-items: center;
    padding-bottom: 100px;
    background-image: url('../images/Header-Homepage.jpg');
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 75px));
}

#first-div .particles-js-canvas-el {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

#first-div #first-div__container {
    padding: 60px 10%;
}

@media (min-width: 981px) {
    #first-div #first-div__container {
        width: 80%;
        margin: 0 auto;
        padding: 60px 0;
        max-width: 1080px;
    }
}

#first-div #first-div__container #first-div__text {
    font-size: 32px;
    color: #efefef;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Montserrat";
}

#first-div #first-div__container #first-div__text .green-divider {
    height: 5px;
    max-width: 450px;
    border-radius: 1px;
}

#first-div #first-div__container #first-div__text #first-div__text__animation {
    height: 40px;
    display: flex;
    margin-bottom: 6px;
    position: relative;
    align-items: center;
}

#first-div #first-div__container #first-div__text .animated {
    margin: 0;
    line-height: 1.6;
    font-weight: 700;
    position: absolute;
    font-family: "Montserrat";
}

#first-div #first-div__container #first-div__text .animated.is-visible {
    animation: slide-in 0.5s forwards;
}

#first-div #first-div__container #first-div__text .animated.is-hidden {
    opacity: 0;
    animation: slide-out 0.5s forwards;
}


/* SECOND DIV */

#second-div {
    display: flex;
    padding: 60px 10%;
    flex-direction: column;
}

@media (min-width: 981px) {
    #second-div {
        max-width: 1280px;
        margin: 0 auto;
        flex-direction: row;
        align-items: center;
        padding: 60px 171px 60px 0;
    }
}

#second-div #second-div__image {
    max-width: 575px;
    margin: 0 auto;
}

#second-div #second-div__image img {
    width: 100%;
    animation: up-down 13s infinite;
}

#second-div #second-div__block {
    padding: 47px 25px 25px;
    background-color: white;
    border-top: 8px solid #48486a;
}

@media (min-width: 981px) {
    #second-div #second-div__image {
        flex: 1;
        padding-left: 20px;
    }
    #second-div #second-div__block {
        width: 50%;
        min-width: 380px;
    }
}

#second-div #second-div__block #second-div__block__title {
    margin-top: 0;
    font-size: 18px;
    font-weight: 100;
    color: #48486a;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: "Montserrat";
}

#second-div #second-div__block #second-div__block__divider {
    height: 1px;
    width: 140px;
    background-color: #48486a;
}

#second-div #second-div__block #second-div__block__subtitle {
    margin: 35px 0;
    font-size: 32px;
    font-weight: 700;
    color: #48486a;
    font-family: "Montserrat";
}

#second-div #second-div__block #second-div__block__subtitle span {
    font-size: 32px;
    font-weight: 700;
    color: #008c94;
    font-family: "Montserrat";
}

#second-div #second-div__block .second-div__block__unit {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #cccccc;
}

#second-div #second-div__block .second-div__block__unit:last-of-type {
    border-bottom: unset;
}

#second-div #second-div__block .second-div__block__unit .second-div__block__unit-left {
    width: 32px;
}

#second-div #second-div__block .second-div__block__unit .second-div__block__unit-left img {
    width: 100%
}

#second-div #second-div__block .second-div__block__unit .second-div__block__unit-right {
    flex: 1;
    color: #48486a;
    margin-left: 15px;
    font-size: 18px;
}

#second-div #second-div__block .second-div__block__unit .second-div__block__unit-right b {
    color: #008c94;
}


/* THIRD DIV */

#third-div {
    z-index: 3;
    display: flex;
    padding: 60px 10%;
    position: relative;
    flex-direction: column;
}

@media (min-width: 981px) {
    #third-div {
        max-width: 1180px;
        margin: 0 auto;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 60px;
    }
}

#third-div #third-div__block {
    margin-bottom: 100px;
    padding: 47px 25px 25px;
    background-color: white;
    border-top: 8px solid #008c94;
}

#third-div #third-div__image {
    max-width: 800px;
    margin: 0 auto;
}

#third-div #third-div__image img {
    width: 110%;
    margin-left: -5%;
    animation: up-down 13s infinite;
}

@media (min-width: 981px) {
    #third-div #third-div__image {
        flex: 1;
        padding-left: 20px;
    }
    #third-div #third-div__block {
        width: 50%;
        max-width: 505px;
        min-width: 380px;
    }
}

@media (min-width: 981px) {
    #third-div #third-div__image {
        flex: 1;
        padding-left: 20px;
    }
    #third-div #third-div__block {
        width: 50%;
        min-width: 380px;
    }
    #third-div #third-div__image img {
        margin-top: -20px;
    }
}

#third-div #third-div__block #third-div__block__title {
    margin-top: 0;
    font-size: 18px;
    font-weight: 100;
    color: #48486a;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: "Montserrat";
}

#third-div #third-div__block #third-div__block__divider {
    height: 1px;
    width: 140px;
    background-color: #48486a;
}

#third-div #third-div__block #third-div__block__subtitle {
    margin: 35px 0;
    font-size: 32px;
    font-weight: 700;
    color: #48486a;
    font-family: "Montserrat";
}

#third-div #third-div__block #third-div__block__text {
    font-size: 18px;
    color: #48486a;
    line-height: 1.35;
}


/* FOURHT DIV */

#fourth-div {
    z-index: 2;
    overflow: hidden;
    position: relative;
    margin-top: -150px;
    padding-bottom: 150px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 75px), 0 100%);
}

@media (min-width: 981px) {
    #fourth-div {
        margin-top: -250px;
        padding-bottom: 250px;
    }
}

#fourth-div__image {
    top: -200px;
    left: 50%;
    min-width: 100%;
    position: absolute;
    min-height: calc(100% + 200px);
    height: calc(100% + 200px);
    transform: translate(-50%, 0);
}

#fourth-div__content {
    z-index: 1;
    position: relative;
    padding: 200px 10% 60px;
}

@media (min-width: 981px) {
    #fourth-div__content {
        padding: 250px 60px 60px;
    }
}

#fourth-div__block__title {
    margin-top: 0;
    font-size: 18px;
    font-weight: 100;
    color: white;
    text-align: center;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: "Montserrat";
}

#fourth-div__block__divider {
    height: 1px;
    width: 140px;
    margin: 0 auto;
    background-color: white;
}

#fourth-div__block__subtitle {
    color: white;
    font-size: 32px;
    font-weight: 700;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: "Montserrat";
}

#fourth-div__block__blocks {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    max-width: 600px;
}

#fourth-div__block__blocks .fourth-div__block__blocks__unit {
    width: 100%;
    display: flex;
    color: white;
    margin-bottom: 50px;
    align-items: center;
    flex-direction: column;
}

@media (min-width: 480px) {
    #fourth-div__block__blocks .fourth-div__block__blocks__unit {
        width: 50%;
    }
}

@media (min-width: 981px) {
    #fourth-div__block__blocks {
        max-width: 900px;
    }
    #fourth-div__block__blocks .fourth-div__block__blocks__unit {
        width: 20%;
    }
}

#fourth-div__block__blocks .fourth-div__block__blocks__unit.green {
    color: #008c94;
}

#fourth-div__block__blocks .fourth-div__block__blocks__unit.green .fourth-div__block__blocks__unit__number {
    font-weight: 700;
}

#fourth-div__block__blocks .fourth-div__block__blocks__unit__number {
    font-size: 60px;
    font-weight: 100;
    margin: 0 0 20px;
}

#fourth-div__block__blocks .fourth-div__block__blocks__unit__label {
    margin: 0;
    font-size: 14px;
    max-width: 250px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}


/* FIFTH DIV */

#fifth-div {
    z-index: 1;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    margin-top: -75px !important;
}

@media (min-width: 981px) {
    #fifth-div {
        width: 100%;
        margin: 0 auto;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 60px;
    }
}

#fifth-div__image {
    top: -200px;
    left: 50%;
    min-width: 100%;
    position: absolute;
    min-height: calc(100% + 200px);
    height: calc(100% + 200px);
    transform: translate(-50%, 0);
}

#fifth-div__content {
    z-index: 1;
    position: relative;
    padding: 150px 10% 60px;
}

@media (min-width: 981px) {
    #fifth-div__content {
        padding: 150px 60px 60px;
    }
}

#fifth-div #fifth-div__block {
    width: 100%;
    max-width: 1080px;
    position: relative;
    padding: 47px 25px 25px;
    background-color: transparent;
    border-top: 8px solid #008c94;
}

@media (min-width: 981px) {
    #third-div #third-div__block {
        width: 50%;
        max-width: 505px;
        min-width: 380px;
    }
}

#fifth-div__block__title {
    margin-top: 0;
    font-size: 18px;
    font-weight: 100;
    color: #48486a;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: "Montserrat";
}

#fifth-div__block__divider {
    height: 1px;
    width: 140px;
    background-color: #48486a;
}

#fifth-div__block__subtitle {
    margin: 30px 0;
    font-size: 32px;
    color: #48486a;
    font-weight: 700;
    font-family: "Montserrat";
}

#fifth-div__block__blocks {
    display: flex;
    padding: 0 20px;
    flex-direction: column;
}

@media (min-width: 981px) {
    #fifth-div__block__blocks {
        flex-wrap: wrap;
        max-width: 1080px;
        padding-top: 50px;
        flex-direction: row;
    }
}

.fifth-div__block__blocks__unit {
    width: 100%;
    margin-bottom: 30px;
    background-color: white;
    border-top: 8px solid #48486a;
    box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, .3);
}

@media (min-width: 981px) {
    .fifth-div__block__blocks__unit {
        margin-right: 50px;
        margin-bottom: 50px;
        width: calc(50% - 25px);
    }
    .fifth-div__block__blocks__unit:nth-of-type(2n) {
        margin-right: 0;
    }
    .fifth-div__block__blocks__unit:nth-of-type(odd) {
        transform: translateY(-75px);
    }
}

.fifth-div__block__blocks__unit img {
    width: 100%;
}

.fifth-div__block__blocks__unit__content {
    color: #48486a;
    padding: 25px;
}

.fifth-div__block__blocks__unit__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    font-family: "Montserrat";
}

.fifth-div__block__blocks__unit__text {
    font-size: 15px;
    font-weight: 100;
    line-height: 1.3;
}


/* SIXTH DIV */

#sixth-div {
    z-index: 3;
    display: flex;
    overflow: hidden;
    position: relative;
    background-color: white;
    flex-direction: column;
    margin-top: -75px !important;
    padding-bottom: 150px;
}

@media (min-width: 981px) {
    #sixth-div {
        width: 100%;
        margin: 0 auto;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 60px;
    }
}

#sixth-div__image {
    top: -200px;
    left: 50%;
    min-width: 100%;
    position: absolute;
    min-height: calc(100% + 200px);
    transform: translate(-50%, 0);
}

#sixth-div__content {
    z-index: 1;
    position: relative;
    padding: 150px 10% 60px;
}

@media (min-width: 981px) {
    #sixth-div__content {
        padding: 150px 60px 60px;
    }
}

#sixth-div #sixth-div__block {
    width: 100%;
    max-width: 1080px;
    position: relative;
    padding: 47px 25px 25px;
    background-color: white;
    border-top: 8px solid #008c94;
}

@media (min-width: 981px) {
    #third-div #third-div__block {
        width: 50%;
        max-width: 505px;
        min-width: 380px;
    }
}

#sixth-div__block__title {
    margin-top: 0;
    font-size: 18px;
    font-weight: 100;
    color: #48486a;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: "Montserrat";
}

#sixth-div__block__divider {
    height: 1px;
    width: 140px;
    background-color: #008c94;
}

#sixth-div__block__subtitle {
    margin: 30px 0;
    font-size: 32px;
    color: #48486a;
    font-weight: 700;
    margin-bottom: 75px;
    font-family: "Montserrat";
}

#sixth-div__block__blocks {
    display: flex;
    flex-wrap: wrap;
}

.sixth-div__block__blocks__unit {
    width: 100%;
    color: #48486a;
}

@media (min-width: 480px) {
    .sixth-div__block__blocks__unit {
        width: calc(50% - 15px);
        margin-right: 30px;
    }
    .sixth-div__block__blocks__unit:nth-of-type(even) {
        margin-right: 0;
    }
}

@media (min-width: 981px) {
    .sixth-div__block__blocks__unit {
        width: calc(25% - 23px);
        margin-right: 30px;
    }
    .sixth-div__block__blocks__unit:nth-of-type(even) {
        margin-right: 30px;
    }
    .sixth-div__block__blocks__unit:nth-of-type(4n) {
        margin-right: 0;
    }
}

.sixth-div__block__blocks__unit__image {
    width: 50px;
}

.sixth-div__block__blocks__unit__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: "Montserrat";
}

.sixth-div__block__blocks__unit__text {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 100;
}


/* SEVENTH DIV */

#seventh-div {
    z-index: 4;
    display: flex;
    padding: 60px 10%;
    position: relative;
    flex-direction: column;
    padding: 0 10%;
    padding-bottom: 150px;
}

@media (min-width: 981px) {
    #seventh-div {
        width: 100%;
        margin: 0 auto;
        padding: 0 60px;
        flex-direction: row;
        align-items: center;
        padding-bottom: 150px;
    }
}

#seventh-div__dashborad-image {
    width: 100%;
    margin: 0 auto;
    max-width: 630px;
    margin-top: -100px;
    position: relative;
    z-index: 5;
    animation: up-down 13s infinite;
}

#seventh-div__image__container {
    top: 0;
    left: 0%;
    height: 100%;
    min-width: 100%;
    overflow: hidden;
    position: absolute;
}

#seventh-div__image__container img {
    top: -200px;
    left: 50%;
    min-width: 100%;
    position: absolute;
    min-height: calc(100% + 200px);
    height: calc(100% + 200px);
    transform: translate(-50%, 0);
}


/* FOOTER */

#footer {
    z-index: 3;
    padding: 60px 10%;
    background-color: #121226;
}

@media (min-width: 981px) {
    #third-div {
        max-width: 1180px;
        margin: 0 auto;
        padding: 60px;
    }
}

#footer_image {
    width: 175px;
}

#footer_text {
    color: white;
    margin: 20px 0;
    font-size: 15px;
    max-width: 550px;
    line-height: 1.6;
    font-weight: 100;
}

#registration_number {
    color: white;
    margin: 20px 0;
    font-size: 15px;
    max-width: 550px;
    line-height: 1.6;
    font-weight: 100;
    text-decoration: none;
}


/* ANIMS */

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    60% {
        opacity: 1;
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    60% {
        opacity: 0;
        transform: translateY(120%);
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes up-down {
    0%,
    100% {
        transform: translateY(-40px);
    }
    50% {
        transform: translateY(-10px);
    }
}