@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');



* {
    margin: 0;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: black;
}

.titles {
    margin-top: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    text-align: center;
}

.heading-tags {
    position: relative;
    z-index: -100;
}

.heading-tags::before {
    content: '';
    position: absolute;
    border-bottom: rgb(222, 149, 14) double 5px;
    width: 9999px;
    right:110%;
    bottom:0;
}

.heading-tags::after {
    content: '';
    position: absolute;
    border-bottom: rgb(222, 149, 14) double 5px;
    width: 9999px;
    left: 110%;
    bottom:0;
}

span {
    font-weight: 600;
    text-align: center;
}

strong {
    font-style: italic;
    text-decoration: solid black;

}

body {
    padding-top: 50px;
    font-family: Play,Roboto;
    background-color: #f2f1f1bc;
}

img {
    width: 100%;
    height: 100%;
}



.video-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: -1;
    height: 40vw;
}

#title-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



#services-title {
    margin-top: 60px;
}

.services-section {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    justify-content: space-between;
}

.division1, .division3 {

    background-color: rgba(108, 153, 71, 0.907);
    color:rgb(0, 0, 0);
    border: 2px solid rgb(207, 205, 205);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 400px;
    box-shadow: 1px 1px 2px rgb(0, 0, 0);
    transition: box-shadow, 0.15s;
    margin-top: 20px;
}

.division1:hover, .division3:hover {
    box-shadow: 1px 1px 7px rgb(11, 11, 11);
}

.division1:active, .division3:active {
    box-shadow: 1px 1px 15px rgb(11, 11, 11);
}

.division1 {
    margin-right: 30px;
    padding-bottom: 11px;
}

.division3 {
    padding-top: 10px;
}

.symbolwrapper {
    width: 99px;
    margin-bottom: 10px;
}

.desc {
    display: flex;
    text-align: center;
    margin:20px
}

.division3 h3 {
    text-align: center;
}

.sponsor-section {
    margin-top: 70px;
    overflow: hidden;
}



#vid-section {
    margin-top: 70px;
    display:flex;
    /*border: 1px solid black;*/
    box-shadow: 0px 0px 10px 12px rgb(222, 149, 14);
}

#vid2 {
    width: 100%;
    opacity: 0.8;
    z-index: -1;
}

.map-section {
    margin-top: 60px;
}

.map-title {
    color: #000000;
}


.mapcontainer {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30vh;
    border: 1px solid black;
}

#map {
    width: 100%;
    height: 100%;
}



@media (max-width:668px) {
    .container {
        flex-direction: column;
    }
    .division1 {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .symbolwrapper {
        margin-bottom: 5px;
    }

    #headerlogo {
        width: 30px;
        height: 30px;
        margin-right: 3px;
        margin-left: 3px;
    }

    #barname {
        font-size: 0.8rem;
        margin-left: 8px;
        margin-right: 3px;
    }

    .announcementtitle {
        font-size: 0.9rem;
    }
    
}

