﻿* {
    box-sizing: border-box;
    font-style: sans-serif;
}

.section {
    padding-top: 6px;
}
/*  img {
            height: 150px;
            width: 100%;
        }*/

/*  div [class^="col-"] {
            padding-left: 5px;
            padding-right: 5px;
        }*/

.card {
    transition: 0.5s;
    cursor: pointer;
}

.card-title {
    font-size: 15px;
    transition: 1s;
    cursor: pointer;
}

    .card-title i {
        font-size: 15px;
        transition: 1s;
        cursor: pointer;
        color: #ffa710
    }

        .card-title i:hover {
            transform: scale(1.25) rotate(100deg);
            color: #18d4ca;
        }

.card:hover {
    transform: scale(1.05);
    box-shadow: 10px 10px 15px rgba(0,0,0,0.3);
}

.card-text {
    height: 10px;
}

.card::before, .card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    background: rgba(255, 255, 255, 0.1);
    content: '';
    pointer-events: none;
}

.card::before {
    transform-origin: left top;
}

.card::after {
    transform-origin: right bottom;
}

.card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
    transform: scale3d(1, 1, 1);
}

.modal-content {
    width: 600px;
    overflow-y: initial !important;
}
/*
#more {
    display: none;
}

#more1 {
    display: none;
}

#more2 {
    display: none;
}

#more3 {
    display: none;
}*/

body {
    background-color: white;
}

a {
    text-decoration: none;
}

    a:hover {
        color: #335d46;
    }

.card-title {
    color: #335d46;
    text-align: center;
    /*font-size:initial;*/
}

.modal-dialog {
    overflow-y: initial;
}

.modal-body {
    max-height: 80vh;
    overflow-y: auto;
}
/*
button {
    border-radius: 50%;
    background-color: white;
    border: none;
    color: #335d46;
    text-align: center;
    font-size: 18px;
    padding: 2px;
    width: 150px;
    transition: all 0.5s;
    cursor: pointer;
    margin-left: 50px;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    padding-left: 20px;
}

    .button span:after {
        content: '\00bb';
        position: absolute;
        opacity: 0;
        top: 0;
        right: -20px;
        transition: 0.5s;
    }

.button:hover span {
    padding-right: 25px;
}

    .button:hover span:after {
        opacity: 1;
        right: 0;
    }

#more {
    display: none;
}
*/
.first_footer {
    height: 350px;
    background-color: #335d46;
    position: relative;
}

footer .footer__inner {
    /*position: fixed;*/
    bottom: 0;
    left: 0;
    padding: 40px 60px;
    width: 100%;
}

    footer .footer__inner * {
        color: #fff;
    }

footer .logo {
    text-align: center;
    text-transform: uppercase;
    font-size: 40px;
    margin-bottom: 40px;
    transform: translateY(50px);
    opacity: 0;
    transition: transform, opacity;
    transition-duration: 1.2s;
    transition-timing-function: ease;
}


    footer .logo.show {
        transform: translateY(0);
        opacity: 1;
    }

footer nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 900;
    font-size: 3.5em;
}

    .brand .letter {
        display: inline-block;
        line-height: 1em;
    }


.about ul {
    list-style: none; /* Remove default bullets */
}

    .about ul li::before {
        content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
        color: #335d46; /* Change the color */
        font-weight: bold; /* If you want it to be bold */
        display: inline-block; /* Needed to add space between the bullet and the text */
        width: 1em; /* Also needed for space (tweak if needed) */
        margin-left: -1em; /* Also needed for space (tweak if needed) */
    }

ol {
    list-style: none; /* Remove default bullets */
}

    ol li::before {
        content: counter(li); /* Add content: \2022 is the CSS Code/unicode for a bullet */
        color: #335d46; /* Change the color */
        font-weight: bold; /* If you want it to be bold */
        display: inline-block; /* Needed to add space between the bullet and the text */
        width: 1em; /* Also needed for space (tweak if needed) */
        margin-left: -1em; /* Also needed for space (tweak if needed) */
        direction: rtl
    }





.brand {
    font-family: "Sofia", sans-serif;
    font-size: 150px;
    animation: fadeIn 3s;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media(max-width: 468px) {
    .modal-content {
        width: 300px;
        overflow-y: initial !important;
    }
}
