/* ROOT VARIABLES */
:root {
--color-white: #fff;
--color-light: #f4f4f4;
--color-dark: #c3d3da;
--color-black: #000000;
--color-primary: rgb(0, 154, 219);
--color-primaryB: #aaddf8;
--color-primary-light: rgba(145, 70, 70, 0.12);
--color-success: #29f5a6;
--color-warning: #FDBE33;
--color-semipale: rgb(33, 50, 59);

--transition: all 300ms ease;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    outline: none;
}

/* Smooth scroll */
html{
    scroll-behavior: smooth;
}

body {
    background: var(--color-white);
    max-width: 100%;
}


.container{
    max-width: 1300px;
    padding: 0px 100px;
    margin: auto;
    z-index: 10;
}

/* CUSTOM SCROLLBAR IN CHROME */
::-webkit-scrollbar {
width: 10px;
background: var(--color-primary-light);
}

::-webkit-scrollbar-thumb {
background: var(--color-primary);
}

.text-secondary{
    color: var(--color-primary);
}

.text-center{
    text-align: center;
}
.m-heading{
    font-size: 32px;
    margin-bottom: 12px;
}

/* .menu-btn{
    color: #fff;
    cursor: pointer;
    display: none;
} */

/* .list{
    margin: 16px 0;
    list-style: none;
}

.list li{
    padding: 8px 0;
}

.list li span{
    padding-left: 50px;
} */

.btn {
padding: 1.0rem 3.5rem;
font-size: 1.1rem;
font-weight: 600;
color: var(--color-white);
background: var(--color-primary);
display: inline-block;
margin: 2rem 0;
transition: var(--transition);
border-radius: 40px 0 40px 0;
}

.btn:hover {
border-color: var(--color-primaryB);
background: var(--color-primaryB);
color: var(--color-black);
border: 2px solid var(--color-semipale);
box-shadow: 0 2rem 2rem var(--color-primary-light);
}

.btn-custom {
background: var(--color-primary);
color: var(--color-white);
}

.title::before{
    content: '';
    background: var(--color-primary);
    height: 2px;
    width: 150px;
    margin: auto;
    display: block;
    transform: translateY(44px);
}

.title::after{
    content: '';
    background: var(--color-primary);
    height: 7px;
    width: 65px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display: block;
    transform: translateY(1px);
}



.navbar{
    position: fixed;
    width: 100%;
    margin: auto;
    padding: 20px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}
.navbar.sticky{
    padding: 10px 100px;
    background: var(--color-primary);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4), 0 6px 5px 0 rgba(0, 0, 0, 0.4);
}

.navbar .logo{
    color: var(--color-white);
    font-size: 25px;
    font-weight: 700;
    margin-left: -90px;
}
nav button {
    display: none;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    font-size: 13px;
    text-transform: none;
    position: relative;
    left: 100px;
}

.navbar ul li span{
    color: var(--color-primary);
    border-left: 1px solid var(--color-white);
    padding-left: 25px;
    padding-right: 5px;
    text-align: center;
    
}
.navbar ul li a{
    color: var(--color-white);
    
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.navbar ul li a:hover{
    color: var(--color-primary);
    font-size: 15px;
    text-transform: scale(1.3);

}

.navbar.sticky ul li{
    position: relative;
    color: var(--color-white);
   
    top: 10px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

.navbar.sticky ul li a:hover{
    color: var(--color-white);
    font-size: 15px;
    text-transform: scale(1.1);

}

.carousel {
    position: relative;
    width: 100%;
    min-height: 300px;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    margin-right: 400px;
    display: flex;
    align-items: justify;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    max-width: 1000px;
    text-align: left;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: justify;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-btn .btn.btn-custom {
    color: #ffffff;
}

.carousel .carousel-btn .btn.btn-custom:hover {
    color: var(--color-black);
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
    color: var(--color-primary);
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: var(--color-primary);
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}
.about h2{
    color: var(--color-black) !important;
    font-weight: 900;
    transform: translateY(-65px);
    margin-top: 50px;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    width: 100%;
    height: 100vh;
}

.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    padding-bottom: 7px;
    border-bottom: 3px solid #FDBE33;
}

.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
    text-align: justify;
}
.about .about-tab .tab-content a{
    text-decoration: none;
    color: var(--color-primary);
}
.about .about-tab .tab-content a:hover{
    color: var(--color-success);
}
.about .about-tab .tab-content .container {
    padding: 0;
}
/* About section content */

#profile{
    background: var(--color-light);
}

.profile .title::before{
    background: var(--color-primary);
}
.profile .title::after{
    background: var(--color-primary);
}

.profile h1{
    color: #000000;
    text-align: center;
    font-size: 80px;
    transform: translateY(20px);
    opacity: 0.13;
    padding-top: -20px;
}

.profile h2{
    color: var(--color-black) !important;
    font-weight: 900;
    transform: translateY(-65px);
    margin-top: 100px;
}

.profile .profile-content .column{
    margin-top: 40px;
}
.profile .profile-content{
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-60px);
}

.events .event-content,
.skills .skill-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-60px);
}


.profile .profile-content .left{
    width: 55%;
    padding: 0 20px;
    overflow: hidden;
}
.profile .profile-content .left img{
    height: 450px;
    width: 450px;
    object-fit: cover;
    border-radius: 50%;
    border: 18px solid #B51010;
}

.profile .profile-content .right{
    width: 100%;
    color: #000000;
}

.profile .profile-content .right .text{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
.profile .profile-content .right p{
    text-align: justify;
    line-height: 25px;
}
.profile .profile-content .right .text span{
    color: #B51010;
}
.profile .profile-content .right .table{
    width: 500px;
    padding: 10px 0;
    margin-left: 0px;
}
.profile .profile-content .right .table td{
    padding: 10px;
}

/* events section styling */

#programs{
    color: var(--color-black);
    background: var(--color-light);
}

.events h5{
    color: var(--color-black) !important;
    font-weight: 900;
    transform: translateY(-65px);
    padding-bottom: 20px;
    position: relative;
    top: 100px;
}

.events h1{
    color: #ffffff;
    text-align: center;
    font-size: 80px;
    transform: translateY(23px);
    opacity: 0.1;
    padding-top: -20px;
}

.events .event-content .main{
    width: calc(30% - 20px);
    min-height: 450px;
    text-align: center;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    margin-top: 60px;
}
.event{
    background: var(--color-dark);
    padding: 30px;
    border-radius: 40px 0 40px 0;
    position: absolute;
    bottom: 0;
    z-index: 1;
    transform: scale(1.05);
    box-shadow: 0 0 20px -15px #ffffff;
    transition: transform 0.8s;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4), 0 6px 5px 0 rgba(0, 0, 0, 0.4);
}
.event-logo{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: -90px auto 0;
    background: #ffffff;
    border: 18px solid var(--color-primary);
    transform: transform 1s;
}
.event-logo span{
    color: var(--color-primary);
    width: 50px;
    margin-top: 20px;
    font-size: 50px;
}

.event h4{
    height: 25px;
    width: 80%;
    font-weight: 700;
    font-size: 17px;
    background: var(--color-dark);
    margin: 60px auto;
    position: relative;
}
.event h4::after{
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, #ffffff , var(--color-primary) );
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: -1;
}
.event h4::before{
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, var(--color-primary) , #ffffff);
    position: absolute;
    left: -5px;
    bottom: -5px;
    z-index: -1;
}
.event p{
    text-align: justify;
}
.shadowone{
    height: 200px;
    width: 80%;
    background: var(--color-primary);
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 10%;
    z-index: -1;
    box-shadow: 0 0 20px -15px #ffffff;
    transition: transform 0.8s;
}
.shadowtwo{
    height: 200px;
    width: 64%;
    background: var(--color-primary);
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 18%;
    z-index: -2;
}

.main:hover .event{
    transform: translateY(-50px);
}
.main:hover .shadowone{
    transform: translateY(-25px);
}

/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    z-index: -3;
    background: rgba(0, 154, 219, .3);
}

.facts .facts-item {
    display: flex;
    flex-direction: row;
    margin: 25px;
}

.facts .facts-item span{
    margin-top: 10px;
    font-size: 50px;
    line-height: 60px;
    color: var(--color-white);
}

.facts .facts-text {
    padding-left: 20px;
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.facts .facts-text h3::after {
    position: absolute;
    top: 0px;
    color: #ffffff;
    font-size: 25px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.facts .facts-text h3.facts-plus::after {
    content: "\f067";
    right: -25px;
}

.facts .facts-text h3.facts-dollar::after {
    content: "\f155";
    right: -18px;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}


#boards{
    position: relative;
    top: 150px;
    color: #000000;
    background: var(--color-light);
    z-index: -2;
    padding-bottom: 50px;
    padding-top: 50px;
}

.boards h5{
    color: var(--color-black) !important;
    font-weight: 900;
    transform: translateY(-65px);
    padding-top: 50px;
}

.boards h1{
    color: #ffffff;
    text-align: center;
    font-size: 80px;
    transform: translateY(23px);
    opacity: 0.1;
    padding-top: -20px;
}
.boards h2{
    color: var(--color-black);
    text-align: center;
    font-size: 25px;
    padding-top: -90px;
    margin-top: -80px;
}

.boards .boardcarousel .card{
    background: var(--color-dark);
    border-radius: 50px 0 50px 0;
    padding: 25px 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.boards .boardcarousel .card:hover{
    background: var(--color-primary);
    color: #fff;
}
.boards .boardcarousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.boards .boardcarousel .card:hover .box{
    transform: scale(1.05);
}
.boards .boardcarousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.boards .boardcarousel .card img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--color-primary);
    transition: all 0.3s ease;
}
.boards .boardcarousel .card:hover img{
    border-color: #fff;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    background: var(--color-primary) !important;
    outline: none !important;
    border-radius: 50%;
    border: 2px solid var(--color-dark);
    transition: all 0.3s ease;
}

/*******************************/
/********** Causes CSS *********/
/*******************************/
.blogs {
    position: relative;
    width: 100%;
    padding: 45px 0;
    position: relative;
    top: 200px;
    z-index: 0;
}

.blogs h5{
    color: var(--color-black) !important;
    font-weight: 900;
    transform: translateY(-65px);
    padding-top: 50px;
}

.blogs h2{
    color: var(--color-black);
    text-align: center;
    font-size: 25px;
    padding-top: -90px;
    margin-top: -70px;
}

.blogs .blogs-carousel {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 20px;
}

.blogs .blogs-item {
    margin: 0 15px;
    overflow: hidden;
}

.blogs .blogs-img {
    overflow: hidden;
}

.blogs .blogs-img img {
    width: 100%;
    transition: .3s;
    border-radius: 40px 0 40px 0;
}

.blogs .blogs-item:hover img {
    transform: scale(1.2);
}


.blogs .blogs-progress {
    width: 100%;
    margin-top: 32px;
    padding: 30px 30px 20px 30px;
}

.blogs .progress {
    height: 10px;
    border-radius: 0;
    background: #dddddd;
    overflow: visible;
}

.blogs .progress .progress-bar {
    position: relative;
    width: 0px;
    background: #FDBE33;
    overflow: visible;
    transition: 2s;
}

.blogs .progress-bar span {
    position: absolute;
    top: -32px;
    right: 0;
    height: 23px;
    display: inline-block;
    padding: 2px 6px;
    background: #FDBE33;
    color: #20212B;
}

.blogs .progress-bar span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 23px;
    left: calc(50% - 6px);
    border: 6px solid;
    border-color: #FDBE33 transparent transparent transparent;
}

.blogs .progress-text {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.blogs .progress-text p {
    margin: 0;
}

.blogs .blogs-text {
    padding: 30px 30px;
    margin-bottom: -40px;
}

.blogs .blogs-text h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.blogs .blogs-text p {
    margin: 0;
    text-align: justify;
}

.blogs .blogs-btn {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.blogs .blogs-btn .btn {
    padding: 10px 0;
    width: 50%;
    margin-left: 65px;    
}

.blogs .blogs-btn .btn:last-child {
    color: #20212B;
    text-align: center;
    background: var(--color-primary);
}

.blogs .blogs-btn .btn:last-child:hover {
    color: #ffffff;
    transform: scale(1.2);
}




/* Contact Me Section */

section.contact {
background: url("/images/contact.jpg") no-repeat center center/cover;
max-width: 100vw;
height: 100%;
margin-top: 300px;
z-index: 0;
}

section.contact .overlay {
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
}

.contact h1{
    color: #6e6e70;
    text-align: center;
    font-size: 80px;
    transform: translateY(20px);
    opacity: 0.1;
}
.contact h5{
    color: var(--color-white) !important;
    font-weight: 900;
    padding-top: 50px;
}
.contact .title::before{
    background: var(--color-primary);
}
.contact .title::after{
    background: var(--color-primary);
}
.contact .contact-content .column{
    margin-top: 40px;
    width: calc(50% - 50px);
}
.contact .contact-content .left{
    color: var(--color-white);
}
.contact .contact-content .left h2{
    font-size: 30px;
    margin-bottom: 30px;
}
.contact .contact-content .left .form-group input{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    border: 1px solid var(--color-primary);
    background: #fff;
    border-radius: 20px;
}
.contact .contact-content .left .form-group textarea{
    width: 100%;
    background: #fff;
    padding: 10px;
    height: 150px;
    margin-top: 20px;
    border: 1px solid var(--color-primary);
    border-radius: 25px;
}


.contact .contact-content .right{
    color: var(--color-white);
}
.contact .contact-content .right h2{
    font-size: 30px;
    margin-bottom: 15px;
}
.contact .contact-content .right p{
    line-height: 1.6;
}
.contact .contact-content .right .items{
    margin: 10px 0;
}
.contact .contact-content .right .items .item{
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.contact .contact-content .right .items .item i{
    padding: 16px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    margin-right: 20px;
}
.contact .contact-content .right .items .item span{
    font-size: 14px;
}
.contact .contact-content .right .links{
    overflow: hidden;
    padding: 10px 0;
}
.contact .contact-content .right .links li{
    display: inline-block;
    list-style: none;
    padding-right: 15px;
}
.contact .contact-content .right .links li a{
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact .contact-content .right .links li a:hover{
    transform: scale(1.3);
    color: var(--color-primaryB);
}
#footer{
    position: fixed;
    padding: 20px 10px 0px 10px;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: rgb(33, 50, 59);
    box-shadow: 0 1px 20px 0 rgba(0,0,0,.1);
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
    font-size: 10px;
    text-align: center;
}

.footer .copyright .col-md-6:last-child p {
    text-align: center;
    font-size: 10px;
}

.footer .copyright p a {
    color: var(--color-primary);
}

.footer .copyright p a:hover {
    color: var(--color-light);
    text-decoration: none;
}



/* Scroll up styling */
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    border: 1px solid var(--color-primaryB);
    background: var(--color-primary);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-up-btn:hover{
    position: fixed;
    height: 45px;
    width: 42px;
    border: 1px solid var(--color-primary);
    background: #eceece;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: var(--color-primary);
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-up-btn.show{
    opacity: 1;
    pointer-events: auto;
    bottom: 30px;
}

  /* ========================== MEDIA QUERIES (PHONES) ============================ */
  @media screen and (max-width: 600px) {
    body {
        background: var(--color-white);
        max-width: 100%
    }

    .container{
        max-width: 1300px;
        padding: 0px 20px;
        margin: auto;
        
    }

    .btn {
        padding: 3.5px 15.5px 3.5px 15.5px;
        font-size: 10px;
        font-weight: 600;
        color: var(--color-white);
        background: var(--color-primary);
        display: inline-block;
        margin-top: -10px;
        transition: var(--transition);
        border-radius: 40px 0 40px 0;
        width: auto;
    }

    .navbar{
    width: 100%;
    }
    .navbar.sticky{
        padding: 10px 100px;
    }

    .navbar img{
    display: none;
    }

   

    .navbar ul{
    position: fixed;
    top: 0;
    left: 0px;
    padding-top: 30px;
    flex-direction: column;
    z-index: 3;
    width: 14rem;
    height: 100vh;
    background: var(--color-white);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4), 0 6px 5px 0 rgba(0, 0, 0, 0.4);
    display: none;
    }

    .navbar .logo{
        color: var(--color-white);
        font-size: 15px;
        font-weight: 700;
        margin-left: -50px;
        position: relative;
        top: 5px;
    }
    

   nav button {
      display: inline-block;
      cursor: pointer;
      background: transparent;
      color: var(--color-white);
      margin-right: -7rem;
      height: 30px;
    }
  
    nav button#close-btn {
      display: none;
    }
    .navbar ul li{
      height: 4.6rem;
      width: 100%;
      
    }
    
    .navbar ul li a{
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        color: var(--color-black);
        position: relative;
        transition: var(--transition);
        margin-left: -120px;
        padding-left: 20px;
        bottom: 40px;
    }
    
    .navbar ul li a.active {
        background: var(--color-primary);
        color: var(--color-white);
        width: 100%;
        padding-right: 90px;
    }
    

    .carousel {
        width: 100%;
        min-height: 300px;
        margin-bottom: 45px;
        overflow-x: hidden;
    }
    .carousel .carousel-text {
        position: absolute;
        max-width: 200px;
        margin-top: 50px;
        margin-right: 55px;
        display: flex;
        align-items: justify;
        justify-content: center;
        flex-direction: column;
        z-index: 2;
    }
    
    .carousel .carousel-item {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .carousel .carousel-img {
        position: relative;
        width: 100%;
        height: 300px;
        min-height: 300px;
        text-align: right;
        overflow: hidden;
    }
    
    .carousel .carousel-text h1 {
        max-width: 200px;
        text-align: left;
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
    }
    
    .carousel .carousel-text p {
        color: #ffffff;
        text-align: justify;
        margin-top: -10px;
        font-size: 10px;
    }
    
    .carousel .carousel-btn .btn {
    color: red;
    }
    
    .about .section-header {
        margin-top: -20px;
        margin-left: 0;
        text-align: center;
    }

    .about .about-tab {
        margin-top: -90px;
        width: 100%;
    }
    
    
    .about .about-img {
        display: none;
    }

    .events h5{
        color: var(--color-black) !important;
        font-weight: 900;
        transform: translateY(-65px);
        padding: 90px 0 40px 0;
    }
    .events .event-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        transform: translateY(-60px);
        margin-top: -100px;
    }

    .events .event-content .main{
        width: 80%;
        max-height: auto;
        text-align: center;
        border-radius: 5px;
        position: relative;
        cursor: pointer;
        margin-top: 60px;
    }
    .event{
        background: var(--color-dark);
        padding: 30px;
        border-radius: 40px 0 40px 0;
        position: absolute;
        bottom: 0;
        z-index: 1;
        transform: scale(1.05);
        box-shadow: 0 0 20px -15px #ffffff;
        transition: transform 0.8s;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4), 0 6px 5px 0 rgba(0, 0, 0, 0.4);
    }

    .events h5{
        top: 0px;
    }
    
    
    .facts {
        
        width: 100%;
        height: auto;
        margin: 0;
        z-index: 0;
    }
    
    .facts .overlay {
        max-width: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    .facts .facts-item {
        margin-left: 70px;
    }

    #boards{
        padding-top: 50px;
        margin-top: -90px;
        color: #000000;
        background: var(--color-light);
        z-index: -2;
    }
    
    .contact .contact-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .contact .contact-content .column{
        margin-top: 40px;
        width: auto;
    }

    .contact .contact-content .right{
        color: var(--color-white);
        margin-left: 20px;
        text-align: justify;
    }

    .contact .contact-content .left h2{
        font-size: 20px;
    }
    
    .contact .contact-content .right h2{
        font-size: 25px;
    }
    
    .contact .contact-content .right .links{
        overflow: hidden;
        padding: 0 0 15px 0;
        margin-left: 40px;
    }


}

  /* ========================== MEDIA QUERIES (PHONES) ============================ */
  @media screen and (max-width: 1300px) {
    body {
        background: var(--color-white);
        max-width: 100%
    }

    .container{
        max-width: 1300px;
        padding: 0px 20px;
        margin: auto;
        
    }

    .btn {
        padding: 3.5px 15.5px 3.5px 15.5px;
        font-size: 10px;
        font-weight: 600;
        color: var(--color-white);
        background: var(--color-primary);
        display: inline-block;
        margin-top: -10px;
        transition: var(--transition);
        border-radius: 40px 0 40px 0;
        width: auto;
    }

    .navbar{
    width: 100%;
    }
    .navbar.sticky{
        padding: 10px 100px;
    }

    .navbar img{
    display: none;
    }

   

    .navbar ul{
    position: fixed;
    top: 0;
    left: 0px;
    padding-top: 30px;
    flex-direction: column;
    z-index: 3;
    width: 14rem;
    height: 100vh;
    background: var(--color-white);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4), 0 6px 5px 0 rgba(0, 0, 0, 0.4);
    display: none;
    }

    .navbar .logo{
        color: var(--color-white);
        font-size: 15px;
        font-weight: 700;
        margin-left: -50px;
        position: relative;
        top: 5px;
    }
    

   nav button {
      display: inline-block;
      cursor: pointer;
      background: transparent;
      color: var(--color-white);
      margin-right: -7rem;
      height: 30px;
    }
  
    nav button#close-btn {
      display: none;
    }
    .navbar ul li{
      height: 4.6rem;
      width: 100%;
      
    }
    
    .navbar ul li a{
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        color: var(--color-black);
        position: relative;
        transition: var(--transition);
        margin-left: -120px;
        padding-left: 20px;
        bottom: 40px;
    }
    
    .navbar ul li a.active {
        background: var(--color-primary);
        color: var(--color-white);
        width: 100%;
        padding-right: 90px;
    }

    .carousel .carousel-text {
        margin-right: 55px;
        
    }
    
    
}