/* Custom CSS */

.centered {
    display: grid;
    justify-self: center;
    justify-content: center;
    text-align: center;
}

.centered h1,
.centered h2,
.centered h3,
.centered h4,
.centered p,
.centered a {
    justify-self: center;
    text-align: center;
}


ul li::marker {
    color: #0FA293;
}

.frame {
    background-color: white;
    padding: 10px;
    border: 8px ridge #0FA293;
}

.title {
    font-size: 1.3em;
    font-weight: 400;
    color: #0FA293;
}

.imageback {
    padding: 50px 0px;
    background-image: url("../img/background-image.png");
    background-repeat: no-repeat;
    background-size: cover;
}

@media(max-width: 760px) {
    .testimonial-arrow {
        display: none;
    }
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

@media(max-width:768px) {
    .caret {
        display: none;
    }
}

@media(max-width:768px) {
    .cent-drop {
        justify-self: center;
    }
}


@media(max-width: 768px) {
    .dropdown-container p {
        justify-self: center;
        text-align: center;
    }
}


/* - Table - */

.w100 {
    width: 100%;
}

.elem-table {
    border: 1px solid #fff;
    background-color: #fff;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

thead {
    background-color: #207A3C;
    border-bottom: 2px solid #fff;
}

th {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    border-left: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: solid 1px;

    height: 20px;
}

th h1 {
    font-size: 14px;
}

tr:nth-child(2n) {
    background: rgba(222, 222, 222, 0.30);
}


/*** TABLE STYLING ***/

table {
    border: 1px solid #fff;
    background-color: #fff;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

table td,
table th {
    border: 1px solid #fff;
    padding: 10px 10px;
}

table tbody td {
    font-size: 13px;
}

table thead th:first-child {
    border-left: none;
}

table tfoot td {
    font-size: 14px;
}

table tfoot .links {
    text-align: right;
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: black;
    border: 1px solid orange;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    color: #ff9101;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #444;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: orange;
    color: black;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}


.tabcontent {
    animation: fadeEffect 1s;
    /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.box2 {
    display: grid;
    box-shadow: inset 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    border: 5px ridge gold;
    padding: 30px;
    justify-content: center;
    align-items: center;

}

make overflow show for when you have shadows or a form and the side of the form is hidden .show {
    overflow: visible;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: grid;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
}

.card p {
    color: #000000;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: .75rem;
    color: #87ae3b;
    font-size: 1.3em;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #0FA293;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-family: 'Lato', sans-serif;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
    background-color: #8DCBC3;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

.accordion:after {
    content: '\002B';
    /* Unicode character for "plus" sign (+) */
    font-size: 25px;
    color: #fff;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
    /* Unicode character for "minus" sign (-) */
}
