*{
	box-sizing: border-box;
}

.wrapper{
    width: 70%;
    margin: auto;
    height: fit-content;

    border: solid 1px rgb(28, 28, 162);

    background: linear-gradient(to bottom, rgb(133, 186, 255), #ffffff);
}

body {
    background-image: url('images/background3.png');
    background-blend-mode: lighten;
    background-color: rgba(255,255,255,0.2);
}




#menu{
	width: 100%;
    background-color: rgb(28, 28, 162);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
}

.menu-item{
    width: 18%;
    position: relative;
    border-radius: 15px 15px 0 0;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 0; 
    transition: all 0.3s ease;
}

.active-page {
    background-color: rgb(133, 186, 255);
}

.active-page > a {
    color: rgb(28, 28, 162) !important ;
    font-weight: bold;
}

.menu-item > a {
    display: block;
    padding: 25px 0;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background-color:rgb(133, 186, 255);
    margin-bottom: 2px;
}

.menu-item:hover > a {
    color: rgb(28, 28, 162);
}

.sub{
    width: 100%;
    position: absolute;
    top: 100%;
    transition: height 0.5s ease;
    overflow: hidden;
    background-color: rgb(28, 28, 162);
    z-index: 100;


    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    box-shadow: 0px 8px 15px rgba(0,0,0,0.2);

    top: 100%;
    border-radius: 0 0 10px 10px;

}

.third:hover .sub{
	max-height: 400px;
}

.sub-menu-item a {
    display: block;
    padding: 15px 10px;
    color: white;
    text-decoration: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.sub-menu-item a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}
















.title{
	color:  rgb(28, 28, 162);
	font-size: 400%;
	font-weight: bold;
	text-align: center;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	padding-bottom: 40px;
	padding-top: 50px;
}

.homepagebox{
    border-top: solid 2px rgb(28, 28, 162);
    border-bottom: solid 2px rgb(28, 28, 162);
    margin-bottom: 40px;
}

.homepage-pic{
    display: block;
	width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}


.gfw{
    color:  rgb(28, 28, 162);
	font-size: 250%;
	font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}

.intro{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color:  rgb(28, 28, 162);
    padding-left: 150px;
    padding-right: 150px;
    padding-top: 40px;
    padding-bottom: 50px;
    font-size: 150%;
}

.ctabold{
    color:  rgb(28, 28, 162);
	font-size: 150%;
	text-align: center;
    font-weight: bold;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-top: 30px;
}

.cta{
    color:  rgb(28, 28, 162);
	font-size: 125%;
	text-align: center;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-top: 10px;
    margin-bottom: 5%;
}


.form{
    background-color: rgb(135, 191, 255);
    color: rgb(28, 28, 162);
    width: 50%;
    margin: auto;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;;
    
}



input, select {
    padding: 0.5em;
    border-radius: 4px;
    border: 1px solid rgb(28,28,162)
}


.group {
    display: flex;
    margin-bottom: 15px
}

.group label {
    width: 250px;
    text-align: right;
    padding: 0.4em 0.8em
}

.group input, .group select {
    width: 150px
}


.group .large {
    width: 300px;
}






.subtitle{
	color:  rgb(28, 28, 162);
	font-size: xx-large;
	font-weight: bold;
	text-align: center;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	padding-bottom: 20px;
	padding-top: 70px;
}

.subtext{
	color:  rgb(28, 28, 162);
	font-size:x-large;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	
    display: block;
}

.paragraph{
	color:  rgb(28, 28, 162);
	font-size: x-large;
	text-align: center;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    justify-content: space-between;
}

.parbox{
    border: solid 1px  rgb(28, 28, 162) ;
    width: 30%;
    padding: 20px;
    border-radius: 40px;
    background-color: rgb(211, 239, 255);

}


.zoom-parbox {
  transition: transform 0.3s ease-in-out;
}

.zoom-parbox:hover {
  transform: scale(1.1);
  z-index: 10;
}






.coachbox{
    margin-left: 5%;
    margin-right: 5%;
    display: block;
    margin-bottom: 100px;
    
}

.coach-pic{
    float: left;
    display: block;
	width: 22%;
    margin-right: 25px;
	height: auto;
    margin-top: auto;
    margin-bottom: 15px;
    border-radius: 15px;
    border: solid 2px  rgb(28, 28, 162);
}






.paragraph2023{
	color:  rgb(28, 28, 162);
	font-size: xx-large;
	text-align: center;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 30px;
}


.case23{
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top:30px;
}

.case23box{
    width: 45%;
    background-color: rgb(37, 37, 134);
}

.case23box img{
    width:100%;
}

.case23text{
    width:45%;
    color:  rgb(28, 28, 162);
	font-size: x-large;
    font-weight: bold;
	text-align: center;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
}

.case23team{
    width:45%;
    color:  rgb(28, 28, 162);
	font-size: large;
	text-align: center;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
}

.zoom-awards{
    transition: transform 0.3s ease-in-out;
}
.zoom-awards:hover {

  transform: scale(1.1);

  z-index: 10;

}


.allyears{
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    margin-top:30px;
}

.year-card {
    width: 45%;
    margin-bottom: 40px;
    transition: transform 0.3s ease-in-out;
}

.card-link {
    text-decoration: none;
    display: block;
}

.allyearsbox{
    width: 100%;
    background-color: rgb(37, 37, 134);
}

.allyearsbox img{
    width:100%;
}

.allyearstext{
    width:100%;
    color:  rgb(28, 28, 162);
	font-size: x-large;
    font-weight: bold;
	text-align: center;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
    margin-bottom: 30px;
}

.allyearsbtn{
    border-radius: 50px;
    padding: 12px;
    background-color:  rgb(255, 255, 255);
    color: rgb(28, 28, 162);
    transition: background-color 0.3s ease;
    border: solid 1px  rgb(28, 28, 162);
    text-decoration: none;
}

.year-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.year-card:hover .allyearsbtn {
    background-color: rgb(28, 28, 162);
    color: #ffffff;
}












.performance{
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top:30px;
}


.performancebox{
    width: 100%;
    background-color: rgb(37, 37, 134);
    overflow: hidden;
}

.performancebox img{
    width: 100%;
}

.perf-card {
    width: 32%;
    margin-bottom: 40px;
    transition: transform 0.3s ease-in-out;
}

.perf-card-link {
    text-decoration: none;
    display: block;
}

.performancetext{
    width:100%;
    color:  rgb(28, 28, 162);
	font-size: x-large;
    font-weight: bold;
	text-align: center;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
}

.perfbtn{
    border-radius: 50px;
    padding: 12px;
    background-color:  rgb(255, 255, 255);
    color: rgb(28, 28, 162);
    transition: background-color 0.3s ease;
    border: solid 1px  rgb(28, 28, 162);
    text-decoration: none;
}

.perf-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.perf-card:hover .perfbtn {
    background-color: rgb(28, 28, 162);
    color: #ffffff;
}







.gallery{
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top:30px;
}

.gallerybox{
    width: 22%;
    background-color: rgb(37, 37, 134);
}

.gallery img{
    width:100%;
}

.gallerytext{
    width:22%;
    color:  rgb(28, 28, 162);
	font-size: large;
	text-align: center;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
    padding-bottom: 20px;
}



.videobtn{
    border-radius: 50px;
    padding: 12px;
    background-color:  rgb(255, 255, 255);
    transition: background-color 0.3s ease;
    border: solid 1px  rgb(28, 28, 162);
    text-decoration: none;
}


.videobtn:hover {
  background-color:  rgb(28, 28, 162);
  color: #ffffff;
}






#container{
    width: 32%;
    margin-left: auto;
    margin-right: auto;
}

#container img{
    width: 100%;
    height: 100%;
}




.trophy{
    border: double rgb(28, 28, 162) 10px;
    display: flex;
    height: 220px;
    margin-top: 30px;
    background-color: rgb(230, 244, 253);
    width: 70%;

    margin-left: auto;
    margin-right: auto;
    
    overflow: hidden;

}

.trophy-pic{
    width: 150px;
    height: 100%;
    flex-shrink: 0;
   
}

.trophy-pic img{
    width: 100%;
    height: 100%;
    
}

.trophytext{
    padding: 1%;
    margin-left: 2%;
    margin-top: 2%;
}

.trophyname{
    font-weight: bold;
    font-size: xx-large;
    color:  rgb(28, 28, 162);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-bottom: 10px;
    text-align: center;
}

.trophylocation{
    font-style: italic;
    font-size: larger;
    color:  rgb(28, 28, 162);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-bottom: 10px;
    text-align: center;
}

.trophyexp{
    font-size: x-large;
    color:  rgb(28, 28, 162);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}




.main-footer {
    background-color: rgb(28, 28, 162);
    color: #ffffff;
    padding: 20px 20px 5px 20px;
    text-align: center;
    margin-top: 50px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    transition: opacity 0.3s ease;
    padding-top: 10px;
}

.footer-link:hover {
    color: rgb(133, 186, 255);
   
    text-decoration: none;
}

.copyr {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: 15px;
    bottom: 10px;

}

.copyright {
    font-size: 0.8em;
    opacity: 0.7;
    text-align: right;
    margin: auto;
    line-height: 1.8em;
}






