@import url("../fonts/proxima/stylesheet.css");
html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    font-family: "Proxima Nova", "Roboto", sans-serif, "Helvetica";
}

body {
    color: #456;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", cursive;
    font-weight: bold;
}

.wrapper {
    /* padding for not error */
    padding: 0;
    background-color: #F8F7F5;
}

.header,
.logo,
.menu__list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.header {
    position: fixed;
    z-index: 2000;
    width: 100%;
    height: 75px;
    background-color: rgba(247, 247, 247, 0.9);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    transition: background-color 1s, height 1s ease-in, color 1s;
    transition-delay: 100ms;
}


/* .header-top-hide {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 500ms, opacity 700ms, height 2000ms;
} */

.header-top-fixed {
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    transition: background-color 1s, height 1s ease, color 1s;
    transition-delay: 100ms;
}

.header-top-fixed .menu ul a {
    color: #fff;
}

.logo-img img {
    height: 70px;
}

.logo-text {
    font-family: "Montserrat", cursive;
    font-weight: 600;
    font-size: 20px;
    line-height: 18px;
    padding-left: 15px;
}

.menu__item {
    font-size: 15px;
    font-weight: 600;
    color: #4e4e4e;
}

.menu li {
    display: inline-block;
    margin: 0 15px;
    cursor: pointer;
}

.menu__item {
    position: relative;
    line-height: 50px;
}

.menu__item:focus:after,
.menu__item:focus:before,
.menu__item:hover:after,
.menu__item:hover:before {
    opacity: 1;
    transform: translateY(0);
}

.menu__item::after,
.menu__item::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ffce29;
    opacity: 0;
    position: absolute;
    bottom: 5px;
    left: 0;
    z-index: 1;
    transform: translateY(10px);
    transition: opacity .4s ease-in-out, transform .4s ease-in-out;
}

.menu-btn {
    display: none;
    width: 30px;
}

.menu-row {
    width: 100%;
    background-color: #4e4e4e;
    height: 4px;
    margin-bottom: 4px;
}

.slider__item {
    position: relative;
    max-height: 650px;
}

.slider__item img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.about {
    padding: 20px 100px;
    /*     background-color: #fcfcfc; */
}

.about .row {
    align-items: center;
}

.slogan {
    text-align: center;
}

.slogan img {
    width: 80%;
    height: auto;
}

.about-text {
    text-align: justify;
}

.about-strong {
    font-weight: 700;
}

#counter {
    padding-bottom: 3em;
    background-color: #4e4e4e;
    color: #fff;
}

.counter-stat {
    text-align: center;
}

.stat__digit {
    color: #ffce29;
}

.counter-stat h4 {
    font-size: 3em;
    margin-bottom: 10px;
}

.number {
    display: inline;
}

.viz {
    opacity: 1;
    transition: 1s;
}

.announcement {
    padding: 3em 0;
    text-align: center;
}

.anmt-header {
    padding: 10px;
    font-size: 18px;
    font-weight: 700;
}

.announce__item {
    margin-bottom: 25px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.25);
}

.anmt-image img {
    object-fit: cover;
    width: 80%;
    height: auto;
}

.anmt-date {
    padding: 5px 0px;
}

.anmt-date::before {
    content: "";
    background-image: url('../images/svg/calendar.svg');
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    margin: -3px 0px 0px -24px;
}

.anmt-button {
    background-color: #4e4e4e;
    color: #ffce29;
    border-radius: 0px 0px 10px 10px;
    transition: background-color 0.5s, color 0.5s;
}

.anmt-button:hover {
    background-color: #ffce29;
    color: #4e4e4e;
    transition: background-color 0.5s, color 0.5s;
}

.anmt-button a {
    width: 100%;
    padding: 25px 10px;
    font-weight: 700;
}

.programs {
    padding-bottom: 50px;
}

.programs h2 {
    text-align: center;
}

.program__item {
    background-color: #fff;
    border-radius: 10px;
    margin: 10px 0px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.5s;
    transition: background-color 0.5s;
}

.program__item:hover {
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.5s;
    background-color: #4e4e4e;
    transition: background-color 0.5s;
    cursor: pointer;
}

.program__item:hover .program__header {
    border-bottom: 1px solid #ffffff7e;
    transition: border-bottom 0.5s;
}

.program__item:hover .program__header svg {
    fill: #ffce29;
}

.program__item:hover .program__header-name {
    color: #ffce29;
}

.program__item:hover .program__desc {
    color: #fff;
}

.program__item:hover .program__header svg,
.program__item:hover .program__header-name,
.program__item:hover .program__desc {
    transition: color 0.5s, fill 0.5s;
}

.program__header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #4e4e4e7e;
}

.program__header-name {
    font-weight: 700;
    padding-right: 25px;
    transition: color 0.5s;
}

.program__header svg {
    padding: 25px 25px 10px 25px;
    display: inline;
    fill: #4e4e4e;
    width: 100%;
    height: auto;
    transition: fill 0.5s;
}

.program__desc {
    padding: 10px;
    font-size: 12px;
    text-align: justify;
    word-wrap: break-word;
    transition: color 0.5s;
    height: 120px;
}

.footer .row {
    min-height: 300px;
}

.footer {
    background-color: #4e4e4e;
    color: #fff;
}

.map {
    padding: 0px;
    min-height: 300px;
}

.contact__footer .title {
    display: block;
    padding: 5px 0px;
    font-size: 15px;
    color: #ffce29;
}

.contact__footer a {
    font-size: 18px;
    font-weight: 600;
}

.announce-page .container {
    background-color: #fff;
}

.announce-page img {
    width: 100%;
    max-width: 300px;
    height: auto;
    float: left;
}

.announce-page .container .row .anmt-date {
    display: inline-block;
    padding-left: 30px;
    padding-top: 15px;
}

.announce-page p {
    text-align: justify;
}

ol {
    counter-reset: item;
}

ol > li {
    counter-increment: item;
}

ol ol > li {
    display: block;
}

ol ol > li:before {
    content: counters(item, ".") ". ";
    margin-left: -20px;
}