/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');
@import url(../font-awesome.min.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #000000;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.80857;
    font-weight: normal;
    text-align: justify;
}

ul, li, ol {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

p {
    margin: 0px;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    padding-bottom: 15px;
}

a {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

h2 {
    font-size: 25px;
}

img {
    height: auto;
}

:focus {
    outline: 0;
}

button {
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

button:focus {
    outline: none;
}

.container {
    max-width: 1170px;
}

.display-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.error {
    color: red !important;
}

input.error, select.error {
    border-color: red !important;
}

.swal2-title {
    font-family: var(--bs-body-font-family);
}

.swal2-toast .swal2-title {
    color: white !important;
}

.swal2-icon-success {
    background-color: #4caf50 !important;
}

.swal2-icon-error {
    background-color: #f44335 !important;
}

.grey-bg {
    background: #efefefcc;
}

.title {
    font-size: 50px;
    line-height: 52px;
    font-weight: 800;
    padding: 0;
    display: block;
    margin-bottom: 60px;
    color: #00717B;
}

.page {
    padding-top: 90px;
    padding-bottom: 90px;
    background: #efefefcc;
    font-weight: 400;
    font-size: 17px;
}

.page ul, .page ol {
    padding-left: 30px;
}

.page ul li {
    list-style: disc;
}

.page ol li {
    list-style: decimal;
}

.page ul li:last-of-type, .page ol li:last-of-type {
    padding-bottom: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .title {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .title {
        line-height: 44px;
        font-size: 43px
    }
}
