/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto Mono');

body {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body,
section {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-align: justify;

}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #e95420;
    /* text-transform: uppercase; */
    padding-bottom: 5px;
    text-align: left;
}

h2{
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: #e95420;
    padding-bottom: 5px;

    text-align: left;


}
h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #e95420;
    padding-bottom: 5px;

    text-align: left;

}
p { margin:0 }

ol {
    counter-reset: item;
    float: left;
    margin-left: 30px;
}
ul {
    float: left;
    margin-left: 50px;
}
li::marker {
    color:#e95420;
}
ol li {
    display: block;
}

ol li:before {
    content: attr(seq) ". " counters(item, ".") " ";
    counter-increment: item;
}

table {
    width: 100%;
    table-layout: auto;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}