/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    position: relative;
    font-family: "Nunito", sans-serif;
    color: #444444;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
header{
    position: absolute;
    z-index: 999;
    background-color: #000;
    width: 100%;
}


.right-navbar {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
}

.right-navbar img {
    border-radius: 50%;
    border: 1px solid #ff6040;
    width: 35px;
    height: 35px;
}

.action_btn {
    background: linear-gradient(0deg, #ff6040, #ff6040 50%, #ff9c88);
    color: #fff !important;
    width: 150px;
    text-align: center;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
    box-shadow: 0 3px 15px rgba(255, 156, 136, 1);
}

.action_btn span {
    margin-right: 0.3rem;
}

.action_btn:hover {
    scale: 1.05;
    color: #fff;
}

.action_btn:active {
    scale: 0.95;
}

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 75px;
    width: 300px;
    height: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    height: 240px;
}
.dropdown_menu li {
    list-style: none;
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu a {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
}

.dropdown_menu a:hover {
    color: orange;
}

.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.dropdown_menu img {
    border-radius: 50%;
    border: 1px solid #ff6040;
    width: 35px;
    height: auto;
    margin-right: 5px;
}

.hero-container {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom right, #FDA79C 3.17%, #FFE1D6 68.68%, #00E87F 119.47%, #078E51 144.5%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-container h1 {
    margin: 190px 0 80px 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    color: #000;
    text-align: center;
}


@media (max-width: 992px) {
    .navbar .links,
    .navbar .action_btn,
    .right-navbar img {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }
}

@media (max-width: 768px) {
    .hero-container h1 {
        font-size: 28px;
        line-height: 36px;
    }

}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.container{
    position: relative;
    max-width: 1000px;
}

/* Tab Slider */
.tile
{
    width: 100%;
    margin: 60px auto 60px 0px;
}

#tile-1 .nav-tabs{
    width: 56%;
    position: relative;
    border: none!important;
    background-color:#fff;
    /*   box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); */
    border-radius: 6px;
}

#tile-1 .nav-tabs li{
  margin:0px!important;
  width: 240px;
}

#tile-1 .nav-tabs li a{
  position:relative;
  margin-right:0px!important;
  padding: 10px 0px!important;
  border:none!important;
  font-size: 14px;
  color: #B9B9B9;
  width: 240px;
  font-weight: 700;
}

#tile-1 .nav-tabs a:hover{
  background-color:#fff!important;
  border:none;
}

#tile-1 .slider{
  display:inline-block;
  width: 220px;
  height: 2px;
  border-radius:3px;
  background-color:#FF775B;
  position:absolute;
  z-index:1200;
  bottom:0;
  transition:all .4s linear;
  
}

#tile-1 .nav-tabs .active{
  background-color:transparent!important;
  border:none!important;
  color:#FF775B!important;
  width: 240px;
}


/* Program */
.tab-content{
    margin-top: 100px;
    width: 100%;
    height: auto;
}

.program-row{
    width: 100%;
    margin-bottom: 13px;
}

.program-row .time{
    font-size: 16px;
    font-weight: 800;
    color: black;
}

.time-col{
    /* background-color: #f2eeee;
    border-radius: 10px;
    margin-right: 20px; */
    height: 100%;
}

.time{
    background-color: #f6f2f2;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    color: #000;
}

.description{
    background-color: #f6f2f2;
    border-radius: 10px;
    text-align: left;
    padding: 20px 0px 20px 20px;
    width: 100%;
    height: 100%;
}

.description p{
    margin-bottom: 0px;
    width: 530px;
    color: #000;
}

.lunch-break{
    background-color: #FFE1D6;
}

.end{
    background-color: #FF775B;
}

@media (max-width: 899px) {
    #tile-1 .nav-tabs{
        width: 70%;
    }
}

@media (max-width: 728px) {
    #tile-1 .nav-tabs{
        width: 80%;
    }
}

@media (max-width: 716px) {
    #tile-1 .nav-tabs{
        width: 100%;
    }

    .program-row {
        margin-bottom: 30px;
    }

    .program-row .time{
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .description{
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        text-align: center;
        padding: 20px 20px 20px 20px;
    }

    .description p {
        width: 100%;
        font-size: 14px;
    }

    .description-col{
        width: 100%;
    }

    .time-col{
        width: 100%;
        height: 60px !important;
    }

    #tile-1 .nav-tabs li a{
        margin: 0 auto !important;
    }

    #tile-1 .nav-tabs .active {
        margin: 0 auto !important;
    }
}

@media (max-width: 640px) {
    #tile-1 .nav-tabs{
        width: 90%;
    }
}

@media (max-width: 576px){
    #tile-1 .slider {
        display: none;
    }
}
/* CopyRight */
/* .copyright-bottom{
    width: 100%;
    color: #000;
    font-size: 18px;
    margin-top: 80px;
    margin-bottom: 20px;
} */
footer{
    color: #000;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}
