body {
    margin-top: var(--nav-height);
}

main section.vh-100:first-child {
    margin-top: calc(var(--nav-height) * -1);
}

hr {
    background-color: #d9d9d9;
    height: 2px;
    border: 0;
}

iframe {
    display: block;
}

/** OTHERS **/

.c-border {
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
}

.photo {
    cursor: pointer;
    object-fit: cover;
    border-radius: 50rem;
    height: 50px;
    width: 50px;
}

.title {
    font-family: FontBold;
    background-color: var(--orange-clr-1);
    border-top-left-radius: var(--bs-border-radius);
    border-bottom-right-radius: var(--bs-border-radius);
    padding: 0.3rem 2rem;
    width: fit-content;
}

/** NAVBAR **/
nav {
    background-color: var(--blue-clr-1);
    transition: 0.5s;
    padding: 1.5rem 0 !important;
}

.navbar-nav a {
    font-family: FontBold !important;
    color: #fff;
}

.navbar-nav a:hover {
    color: var(--green-clr-1);
}

.navbar-nav li {
    padding: 0 1rem;
}

.navbar .logo {
    width: 140px;
}

.navbar svg path {
    stroke: var(--green-clr-1);
}

/** FOOTER **/
footer {
    background-color: var(--blue-clr-1);
    padding: 6rem 0;
}

footer h5 {
    font-family: FontBolder;
    color: var(--green-clr-1);
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

footer a,
footer p {
    color: #fff !important;
}

footer a:hover {
    color: var(--green-clr-1) !important;
}

footer .social-media {
    text-decoration: none;
    width: 25px;
    margin-right: 0.5rem;
}

#btn-corner a {
    background-color: var(--blue-clr-1) !important;
    border: 2px solid var(--green-clr-1) !important;
}

#btn-corner a path {
    stroke: var(--green-clr-1) !important;
}

#btn-corner a:hover {
    border: 2px solid var(--blue-clr-1) !important;
    background-color: var(--green-clr-1) !important;
}

#btn-corner a:hover path {
    stroke: var(--blue-clr-1) !important;
}

/** TOOLS  **/
svg {
    margin: 0;
    padding: 0;
}

#toast {
    color: #000;
    border: none;
    box-shadow: none;
}

/** Medium devices (tablets, less than 992px)  **/
@media (max-width: 991.98px) {
    :root {
        --nav-height: 93px;
    }

    .c-border {
        border-top-right-radius: 2rem !important;
        border-top-left-radius: 2rem !important;
        border-bottom-left-radius: 0rem !important;
    }
}

/* PC */
@media (min-width: 992px) {
    :root {
        --nav-height: 93px;
    }
}

/* MOB */
@media (max-width: 991.98px) {
    footer {
        padding: 4rem 0;
    }
}

