*{
    Margin:0;
    padding:0;
    outline:none;
    box-sizing: border-box;
    list-style: none;
    text-decoration:none;
}

:root {
    --transition: all 0.5s ease-in-out;
}


html {
    font-size: 62.5%;
    background:rgb(236, 241, 245);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger-menu {
    width: 3rem;
    height: 3rem;
    position: fixed;
    top: 5rem;
    right: 5rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
    transition: right .7s;
}

.change .hamburger-menu {
    right: 33rem;
}

.line {
    width: 100%;
    height: 0.3rem;
    background-color: white;
    box-shadow: 0.1rem 0.2rem rgba(0,0,0,0.2);
}

.line {
    background-color: rgba(255, 253, 253, 0.8);
}

.change .line-1 {
    transform: rotate(45deg)
    translate(.3rem, .8rem);
}

.change .line-2 {
    opacity: 0;
    visibility: hidden;
}

.change .line-3 {
    transform: rotate(-45deg)
    translate(.3rem, -0.8rem);
}

.hamburger-menu span {
    position: absolute;
    left: 5rem;
    width: 10rem;
    height: 4rem;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: red;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
    opacity: 0;
    visibility: hidden;
}

.hamburger-menu span::before {
    content: "";
    position: absolute;
    border-left: 1rem solid transparent;
    border-right: 1rem solid white;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
    transition: all .2s;
}

.change .hamburger-menu:hover span {
    opacity: 1;
    visibility: visible;
}

.header {
    width: 100%;
    height: 100vh;
    position: relative;
    perspective: 100rem;
    overflow: hidden;
}

.img-wrapper {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgb(199, 225, 247);
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 30%;
    object-fit: cover;
    opacity: 0.8;
    animation: scale 25s 2;
}

@keyframes scale {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.banner {
    position: absolute;
    top: 30%;
    left: 10%;
}

.banner h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 8rem;
    font-weight: 300;
    color: #fff;
    width: 80%;
    line-height: 3rem;
    letter-spacing: 0.2rem;
    text-shadow: 0.2rem 0.5rem rgba(66, 63, 63, 0.2);
    margin-bottom: 5rem;
    opacity: 0;
    animation: moveBanner 1s .5s
    forwards;
}

.banner p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 4rem;
    color: #fff;
    width: 100%;
    letter-spacing: 1.1rem;
    margin-top: 3rem;
    font-weight: 500;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.4);
    opacity: 0;
    animation: moveBanner 1s .7s
    forwards;
}

.banner button {
    width: 25rem;
    height: 7rem;
    background-color: rgb(129, 198, 243);
    border: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    border-radius: 10px;
    margin-top: 4rem;
    opacity: 0;
    animation: moveBanner 1s .9s
    forwards;
    letter-spacing: 0.7rem;
    font-size: 1.4rem;
    font-weight: 600;
}

@keyframes moveBanner {
    0% {
        transform: translateY(40rem) rotateY(-20deg);
    }
    100% {
        transform: translateY(0) rotateY(0);
        opacity: 1;
    }
}


.sidebar {
    width:40rem;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -40rem;
    background-color: rgba(7, 78, 90, 0.3);
    transition: right .5s;
    z-index: 100;
}

.change .sidebar {
    right: 0;
}

.menu {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-item {
    text-align: center;
}

.menu-link  {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 4rem;
    color: white;
    position: relative;
}

.menu-link::before{
    content: attr(data-content);
    position: absolute;
    top: 0;
    left: 0;
    color: paleturquoise;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease-in-out;
}

.menu-link:hover::before{
    width: 100%;
}


.social-media {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.social-media i {
    font-size: 2.2rem;
    margin: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color:#fff;
    color: rgb(19, 236, 19);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-media i:hover {
    background-color: white;
}

@media screen and (max-width: 770px) {

    .banner {
        top: 8%;
        left: 5%;
    }

    .banner h1 {
        font-size: 3.3rem;
        font-weight: 500;
        width: 80%;
        line-height: .4rem;
        letter-spacing: 0.1rem;
        margin-bottom: 2rem;
    }
    
    .banner p {
        font-size: 1.5rem;
        width: 100%;
        letter-spacing: .5rem;
        margin-top: .5rem;
        font-weight: 900;
    }

    .sidebar {
        width: 20rem;
    }
    .menu-link {
        font-size: 2.1rem;
    }
    .change .hamburger-menu {
        right: 15rem;
    }
}

/* END OF HEADER */



/* ABOUT SECTION */

.about {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 5rem;
    background: rgb(186, 216, 241);
}

.abouthead h2 {
    font-size: 4.3rem;
    text-align: center;
    margin-bottom: 8rem;
    color: rgb(7, 23, 54);
    text-shadow: .1rem .2rem rgb(51, 57, 75);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.about p {
    color: rgb(17, 17, 17);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 2.2rem;
    padding: 1rem;
    font-family: 'Courier New', Courier, monospace;
    text-align: justify;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    margin-right: 10%;
    margin-left: 10%;
    flex-wrap: wrap;
}

.about-col {
    flex-basis: 31%;
    background: rgb(234, 203, 241);
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 5%;
    box-sizing: border-box;
    transform: 0.5s;
}

.about-col h3 {
    text-align: center;
    font-weight: 500;
    margin: 1rem 0;
    font-size: 2.5rem;
}

.about-col:hover {
    box-shadow: 0 0 20px 0px rgba(71, 60, 70, 0.2);
}

@media(max-width: 700px) {
    .row {
        flex-direction: column;
    }
}

/* END OF ABOUT SECTION */

/* FAQ QUESTIONS */

.facilities {
    padding: 5rem 0 10rem 0;
}

.facility-heading {
    font-size: 4.3rem;
    text-align: center;
    margin-bottom: 8rem;
    color: rgb(7, 23, 54);
    text-shadow: .1rem .2rem rgb(51, 57, 75);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

.cards-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-right: 3%;
    margin-left: 3%;
}


.card {
    width: 35rem;
    position: relative;
    perspective: 150rem;
    margin-bottom: 1.5rem;
}

@media(max-width: 700px){
    .cards-wrapper {
    margin-right: 1.6rem;
    margin-left: 4.6rem;
}

.card {
    width: 35rem;
    position: relative;
    perspective: 150rem;
    margin-bottom: 1.5rem;
}


}

.card-image {
    width: 100%;
    border-radius: .5rem;
}

.front-side {
    text-align: center;
    background: rgb(111, 112, 112);
    border-radius: .5rem;
    position: relative;
    z-index: 10;
    opacity: .9;
    transition: opacity .4s, transform .4s,
    box-shadow .4s;
}

.change2 > .front-side {
    transform: translateZ(-5rem) translateX(3rem);
    box-shadow: 0 2rem 4rem #777;
    opacity: 5;
    z-index: 0;
}

.facility-name {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    top: 30%;
    position: absolute;
    right: 1.5rem;
    color: rgb(217, 217, 230);
    text-shadow: 0 0 1rem rgb(51, 51, 50);
    margin-top: 10%;
}

.card-list {
    width: 80%;
    margin: auto;
    padding: 2rem 0 3rem 0;
}

.card-list-item {
    font-size:1.6rem;
    font-weight: 500;
    color: rgb(217, 217, 230);
    margin: 2rem 0;
    border-bottom: .1rem solid rgb(171, 171, 245);
    padding-bottom: 1.5rem;
}

.back-side {
    position: absolute;
    top: 0;
    background-color: rgb(181, 216, 245);
    width: 100%;
    height: 100%;
    border-radius: .3rem;
    box-shadow: 0 2rem 4rem rgb(72, 70, 78);
    flex-direction: column;
    transform: translateZ(-5rem) translateX(3rem);
    opacity: .5;
    transition: opacity .4s, transform .4s,
    box-shadow .4s;
}

.change2 > .back-side {
    transform: translateZ(0) translateX(0);
    box-shadow: 0 .5rem 2rem #aaa;
    opacity: .9;
}

.facility-description {
    font-size: 3rem;
    font-weight: 300;
    color: rgb(59, 59, 59);
    margin-bottom: 3rem;
    text-align: justify;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
}

.card-button {
    color: rgb(59, 59, 59);
    background-color: rgb(189, 6, 196);
    border: none;
    font-size: 2.5rem;
    padding: 1rem 2rem;
    letter-spacing: .2rem;
    border-radius: 1rem;
    cursor: pointer;
}

.navigation-button {
    position: absolute;
    top: .5rem;
    left: .5rem;
    padding: .5rem;
    background-color: rgb(189, 6, 196);
    border: none;
    border-radius: .4rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    cursor: pointer;
} 


@media(max-width: 700px) {
    .facilities {
        flex-direction: column;
    }
}

/* END OF FACILITIES SECTION */

/* WHY CHOOSE US SECTION */

.feature {
    width: 100%;
    padding-bottom: 7rem;
    background: rgb(128, 192, 245);
}


.title-text {
    text-align: center;
    padding-bottom: 7rem;
}



.title-text p {
    margin:auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: 4.3rem;
    color: rgb(7, 23, 54);
    font-weight: bolder;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-shadow: .1rem .2rem rgb(51, 57, 75);
    letter-spacing: .6rem;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.title-text h3 {
    font-size: 3.3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: rgb(39, 56, 90);
    font-weight: 700;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-shadow: .1rem .2rem rgb(51, 57, 75);
}


.feature-box {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.features {
    flex-basis: 50%;
}

.features-img {
    flex-basis: 50%;
    margin: auto;
}

.features-img img {
    width: 70%;
    border-radius: 1rem;
}

.features h4 {
    text-align: left;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 3.2rem;
    color: rgb(201, 24, 224);
}

.features-desc {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.feature-icon .fa {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    border-radius: 0.8rem;
    color: rgb(6, 114, 33);
    border: 1px solid rgb(44, 63, 236);
}

.feature-text p {
    padding: 0 2rem;
    text-align: initial;
}

@media screen and (max-width:770px) {
    .title-text h1{
        font-size: 3.5rem;
    }
    .features {
        flex-basis: 100%;
    }
    .features h4 {
        font-size: 2.0rem;
    }
    .features-img {
        flex-basis: 100%;
    }
    .features-img img {
        width: 100%;
    }
}

/* END OF WHY CHOOSE US SECTION */

/* OUR TEACH SECTION */

.teamsection-heading {
    font-size: 4.3rem;
    text-align: center;
    margin-bottom: 8rem;
    padding-top: 3rem;
    color: rgb(7, 23, 54);
    text-shadow: .1rem .2rem rgb(51, 57, 75);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5rem 20rem 5rem;
}

.teamcards-wrapper {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.teamcard {
    width: 37rem;
    height: 45rem;
    box-shadow: 0 1rem 4rem rgba(0,0,0,0.4);
    border-radius: .5rem;
    position: relative;
}

.teamcard-img-wrapper {
    width: 100%;
    height: 100%;
    background-color: rgb(189, 227, 238);
    border-radius: 0.5rem;
}

.teamcard-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
    border-radius: .5rem;
    transition: opacity 0.3s;
}

.teamcard:hover .teamcard-img-wrapper img {
    opacity: .9;
}

.teamcard-info {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    text-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.teamcard:hover .teamcard-info {
    bottom: 2rem;
    opacity: 1;
    visibility: visible;
}


.teamcard-info h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 300;
    color: rgb(233, 219, 232);
}

.teamcard-info h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: rgb(228, 224, 217);
    margin-bottom: 1rem;
    margin-top: .3rem;
}

.teamcard-info p {
    font-size: 1.7rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.6rem;
    font-weight: 300;
    color: rgb(141, 122, 88);
    width: 80%;
    margin-bottom: 2rem;
}

.teamcard-info button {
    width: 12rem;
    height: 4rem;
    background-color: rgb(124, 6, 120);
    border: none;
    border-radius: 1rem;
    color: papayawhip;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.5rem;
    box-shadow: 0 0.1rem .8rem rgba(124, 6, 120, .8);
}

@media(max-width: 700px) {
    .teamcards-wrapper {
        flex-direction: column;
        width: 100%;
    }
}

/* END OF TEAM SECTION */

/* Contact section */

.contact {
    padding: 10rem 0 5rem 0;
    text-align: center;
    background-size: cover;
    background: rgb(128, 192, 245);
}

.contact-heading {
    font-size: 7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5rem;
    color: azure;
    text-shadow: 0 1rem 2rem rgb(88, 86, 86);
    margin-bottom: 8rem;
}

.contactwrapper {
    display: flex;
}

.contactmap {
    width: 40rem;
    /* height: 35rem; */
    margin: auto;
}

.contact-form {
    width: 100rem;
    /* height: 5rem; */
    background-color: rgb(175, 197, 197);
    margin: auto;
    flex-direction: column;
    border-radius: .5rem;
    box-shadow: 0 1rem 3rem rgb(78, 76, 72);
    padding: 5rem;
}

.input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
    position: relative;
}

.input-groups {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.input-groups .input-group {
    width: 48.5%;
}

.input-group input , .input-group textarea {
    padding: 3rem 1rem 1rem 1rem;
    background-color: beige;
    border: .1rem solid beige;
    font-size: 1.4rem;
    color: rgb(12, 159, 218);
    letter-spacing: .1rem;
    border-radius: .5rem;
    transition: border 0.3s;
}

.input-group input:focus , .input-group textarea:focus {
    border: .15rem solid rgb(164, 252, 211);
}

.input-group label {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1rem;
    color: rgb(6, 97, 6);
    position: absolute;
    top: 1rem;
    left: 1rem;
}

@media(max-width: 700px){
    .contact-form {
    width: 40rem;
    }
}

.form-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 1rem;
    margin-top: 1rem;
    background-color: paleturquoise;
    color: rgb(6, 83, 41);
    border-radius: .3rem;
    border: none;
    cursor: pointer;
}

.form-btn:hover {
    background-color: rgb(95, 219, 178);
}

.input-group textarea {
    max-height: 15rem;
    max-width: 100%;
}

.address {
    font-size: 3.2rem;
    color: azure;
    padding-top: 4.2rem;
}


/* End of contact section */

footer {
    color: white;
    text-align: center;
    background-color: rgb(89, 103, 109);
    padding: 3rem;
    font-size: 2.2rem;
}