﻿:root {
    --white-100: #fff;
    --white-200: #e4e6e7;
    --white-300: #c9cccf;
    --white-400: #a1a6aa;
    --white-500: #6d7478;
    --black-100: #181f25;
    --black-200: #12171c;
    --black-300: #0c0f13;
    --black-400: #060809;
    --black-500: #020303;
    --night-100: #253041;
    --night-200: #1e2634;
    --night-300: #161d27;
    --night-400: #0f131a;
    --night-500: #070a0d;
    --pink-100: #fbd0e8;
    --pink-200: #f8a0d0;
    --pink-300: #f471b5;
    --pink-400: #ec4699;
    --pink-500: #da2576;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
@font-face {
    font-family: "Roboto";
    src: url("/fonts/roboto/Roboto-Regular.ttf") format("truetype");
     font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: url("/fonts/roboto/Roboto-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1rem, calc(0.97rem + 0.14vw), 1.09rem);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black-300);
    background-color: #f0f5f7;
}

main {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
    background: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.section {
    margin: 0 auto;
    padding: 6rem 0 2rem;
}

.container {
    max-width: 75rem;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.centered {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    user-select: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    color: var(--white-100);
    background-color: var(--pink-500);
    box-shadow: var(--shadow-medium);
}

a:hover {
    color: #2a9dd6;
}
/* scroll bar start */
/* width */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-ms-scrollbar {
    width: 5px;
    height: 5px;
}
/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-ms-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */

::-webkit-scrollbar-thumb {
    background: #888;
}

::-ms-scrollbar-thumb {
    background: #888;
}
/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

::-ms-scrollbar-thumb:hover {
    background: #555;
}
/* scroll bar end */

#button {
    display: inline-block;
    background-color: #ffae27;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition:
        background-color 0.3s,
        opacity 0.5s,
        visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}
/* breadcrumb start */

.breadcrumb-item a {
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    color: #212529;
}

.breadcrumb-item + .breadcrumb-item::before {
    padding-right: 0.25rem !important;
    font-size: 16px;
}
/* breadcrumb end */

.text-align-justify {
    text-align: justify !important;
}

.indented {
    text-indent: 40px;
    text-align: justify !important;
}
/* 
p {
    text-indent: 40px;
    text-align: justify !important;
}
*/

.bottom-line {
    font-size: 20px;
    border-bottom: 1px solid rgb(212 215 218);
    padding-bottom: 5px;
}
