*{
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif;
}
/* ----------------NAVIGATION BAR-------- */

nav{
    position: fixed;
    z-index: 1040;
    width: 100%;
    background: white;
    padding-top: 15px; 
}

nav:after{
    content: '';
    clear: both;
    display: table;
}
nav .logo{
    width: 200px;
    transition: 0.5s ease;
    padding-left: 3%;
    float: left;
}
nav .logo:hover{
    transform: scale(1.02);
}

nav ul{
    float: right;
    list-style: none;
    margin-right: 3%;
    position: relative;
}

nav ul li{
    float: left; 
    margin-left: 5px;
    background-color: white;
}

nav ul li a{
    color: black;
    font-weight: 500;
    text-decoration: none;
    line-height: 70px;
    font-size: 16px;          /* ← fixed (was font‑weight) */
    padding: 8px 15px;
    transition: 0.5s ease;
}

nav ul li a i{
    margin-left: 5px;
    color: rgb(0,175,239);
}
nav ul li a:hover{
    background-color: rgb(0,175,239);
    border-radius: 5px;
    color: white;
}

nav ul ul{
    position: absolute;
    top: 90px;
    border-top: 3px solid rgb(4, 29, 69);
    opacity: 0;
    visibility: hidden;
    transition: top 0.5s ease;
}
nav ul li:hover > ul{
    opacity: 1;
    visibility: visible;
    top: 70px;
}

nav ul ul li{
    position: relative;
    margin: 0px;
    width: 250px;
    float: none;
    display: list-item;
    border-bottom: 1px solid rgb(0,175,239);
}
nav ul ul li a{
    line-height: 50px;
}
nav ul ul li a:hover{
    border: none;
    color: rgb(0,175,239);
    background-color: unset;
}

.show, .icon, nav input{
    display: none;
}

nav .donation{
    background-color: rgb(1,59,135);
    border-radius: 5px;
    color: white;
}

/* ------------------ RESPONSIVE NAV BAR ------------------ */
@media all and (max-width: 968px){
    .abt{ display: block; }
    nav{ padding: 3% 8%; }
    nav .logo{ padding-left: unset; }
    nav ul{ margin-right: 0; float: left; padding-left: unset; }

    nav ul li, nav ul ul li{
        display: block;
        width: 100%;
    }

    nav ul ul{
        top: 70px;
        position: static;
        border-top: none;
        float: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    nav ul ul li{
        width: 300px;
        border-bottom: none;
    }

    .show{
        display: block;
        color: black;
        font-size: 12px;
        padding: 0 15px;
        line-height: 70px;
        cursor: pointer;
    }
    .show:hover{ color: var(--light-blue); }

    .icon{
        display: block;
        color: black;
        position: absolute;
        right: 8%;
        line-height: 50px;
        font-size: 25px;
    }

    nav ul li a:hover{ border: none; }
    nav ul li a{ line-height: 50px; }
    .show + a, ul{ display: none; }
    [id^=bt]:checked + ul{ display: block; }
    nav .index{ padding-top: 5%; }
    nav ul ul{ padding-left: 0; }
}

/* -----------HOME PAGE--------------- */
.home{
    padding: 8%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.6)), url(images/bgimage.jpg);
    background-position: center;
    min-height: 100vh;
    background-size: contain;
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    animation: zoom 7s infinite;
    -webkit-animation: zoom 7s infinite;
}
@keyframes zoom{
    0%   { background-size: 100%; }
    50%  { background-size: 105%; }
    100% { background-size: 100%; }
}

.home .text{
    width: 60%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    padding-top: 50px;
}
.home .text h1{
    color: white;
    font-size: 45px;
    margin-bottom: 50px;
}
.home .text a{
    color: white;
    font-size: 20px;
    text-decoration: none;
    background-color: rgb(0,152,218);
    padding: 15px 30px;
    transition: 0.5s ease;
}
.home .text a:hover{
    background-color: rgb(41,191,255);
}

@media (max-width: 768px){
    .home .text h1{ font-size: 35px; }
    .home .text{
        width: 80%;
        position: absolute;
        top: 25%;
        left: unset;
        transform: unset;
        text-align: left;
    }
    .home{
        position: unset;
        background-repeat: none;
        background-size: cover;
        background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.6)), url(images/bgimage2.jpg);
    }
    .home .text a{
        font-size: 15px;
        padding: 10px 12px;
    }
}

/* ---------- HOME 2 ---------- */
.home2{
    min-height: 50vh;
    background-color: rgb(1,59,135);
    padding-right: 8%;
}
.home2 .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.home2 .container img{ width: 700px; }
.home2 .container .content h1{
    width: 500px;
    color: white;
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 40px;
}
.home2 .container .content h1 span{ font-weight: lighter; }

@media (max-width: 768px){
    .home2 .container img{ width: 300px; }
    .home2 .container .content h1{
        width: 90%;
        font-size: 20px;
        line-height: 25px;
    }
    .home2 .container .content{ padding-top: 8%; }
    .home2{ padding: 15% 8%; }
}

/* ---------- HOME 3 ---------- */
.home3{
    width: 100%;
    min-height: 90vh;
    padding: 8%;
}
.home3 .mission{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.home3 .mission .mission-container{
    width: 400px;
    height: 400px;
    border: 2px solid rgb(0,152,218);
    padding: 20px 30px;
    border-radius: 15px;
    transition: 0.5s ease;
    margin: 20px;
}
.home3 .mission .mission-container:hover{
    transform: scale(1.03);
}
.home3 .mission .mission-container img{
    width: 100px;
    margin-bottom: 20px;
}
.home3 .mission .mission-container h6{
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.home3 .mission .mission-container p{ letter-spacing: 1px; }

@media (max-width: 768px){
    .home3 .mission .mission-container{
        margin: 20px 0;
        height: unset;
        border: 2px solid rgb(0,152,218);
    }
}

/* ---------- HOME 4 ---------- */
.home4{
    min-height: 40vh;
    background-color: rgb(1,59,135);
    padding: 8%;
}
.home4 .contact h1{
    width: 50%;
    text-align: center;
    margin: auto;
    font-size: 40px;
    color: white;
    letter-spacing: 1px;
}
.home4 .contact .link{
    text-align: center;
    margin: auto;
    margin-top: 40px;
}
.home4 .contact .link a{
    color: white;
    text-decoration: none;
    border: 3px solid white;
    padding: 15px 20px;
    transition: 0.5s ease;
}
.home4 .contact .link a:hover{
    color: black;
    background-color: white;
}

@media (max-width: 768px){
    .home4 .contact h1{
        width: 90%;
        font-size: 30px;
    }
    .home4 .contact .link a{ border: 2px solid white; }
    .home4{ padding: 15% 8% 22% 8%; }
}

/* ---------------------- ABOUT ---------------------- */
.about-us{
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(images/bgimage1.jpg);
    background-position: top;
    background-size: cover;
    padding: 8%;
    min-height: 70vh;
    width: 100%;
    text-align: center;
}
.about-us .about-us-container{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about-us .about-us-container p{
    color: white;
    letter-spacing: 1px;
}
.about-us .about-us-container p a{
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}
.about-us .about-us-container h1{
    color: white;
    width: 80%;
    margin: auto;
    margin-top: 30px;
    font-size: 40px;
    letter-spacing: 1px;
}
@media (max-width: 768px){
    .about-us .about-us-container h1{
        font-size: 22px;
        width: 100%;
        line-height: 30px;
        letter-spacing: 1px;
    }
}

/* --- About content --- */
.about-us-content{
    min-height: 100vh;
    padding: 8% 25%;
}
.about-us-content .about-us-text{ margin: 70px 0; }
.about-us-content #about-us-text{ margin: 0; }
.about-us-content .about-us-text h6{
    letter-spacing: 1px;
    line-height: 30px;
    font-size: 20px;
    margin-bottom: 30px;
}
.about-us-content .about-us-text p{
    letter-spacing: 1px;
    line-height: 30px;
}
.about-us-content .about-us-text ul{
    letter-spacing: 1px;
    line-height: 30px;
    margin-top: 30px;
}
.about-us-content .about-us-text ul li{
    letter-spacing: 1px;
    line-height: 30px;
    margin-top: 10px;
    margin-left: 20px;
}
@media (max-width: 768px){
    .about-us-content{ padding: 8%; }
}
.about-us-content .ul-list li{ margin: 10px 0; }

/* ------------MEMBERSHIP-------------- */

.member-1{
    padding: 15% 8% 8%;
    background-image: url(images/bg-1.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
.member-1 .text{ 
    text-align: center;
    margin: auto;
    width: 50%;
}
.member-1 .text p{
    color: white; 
    line-height: 22px;
}
.member-1 .text p a{ color: white; text-decoration: none; }
.member-1 .text h1{
    color: white; 
    font-size: 40px;
    margin: 20px 0 15px;
}
@media (max-width: 768px){
    .member-1 .text{
        text-align: left;
        margin: 0;
        width: 100%;
        padding-top: 25%;
    }
    .member-1 .text h1{ font-size: 30px; }
}

/* ..........SEARCH‑BAR............. */

.search-bar{
    padding: 8%;
    width: 100%;
    height: 110vh; 
    overflow: hidden;
    background-color: rgb(240,240,240);
}
.search-bar .container{
    background-color: white;
    width: 50%;
    border: 1px solid rgb(0,152,218);
    overflow: hidden;
    display: flex;
}
.search-bar .container .search-box{
    padding: 15px;
    width: 500px;
    border: none;
    outline: none;
}
.search-bar .container i{
    color: white;
    background-color: rgb(0,152,218);
    padding: 16px 15px;
}

.search-bar .members-files{
    padding: 8% 0 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
}
.search-bar .members-files .m-files{
    background-color: white;
    width: 200px;
    overflow: hidden; 
    margin: 20px 0;
}
.search-bar .members-files .m-files img{
    width: 200px;
    transition: 0.5s ease;
}
.search-bar .members-files .m-files img:hover{
    transform: scale(1.03);
}
.search-bar .members-files .m-files .text{
    padding: 5%;
}
.search-bar .members-files .m-files .text i{
    color: rgb(0,152,218);
    font-size: 12px;
    margin-bottom: 20px;
}
.search-bar .members-files .m-files .text h2{
    font-size: 16px; 
    font-weight: lighter;
}
.search-bar .members-files .m-files .text h1{ 
    font-size: 16px;  
    color: rgb(83,83,83);
    margin: 5px 0 10px;
}
.search-bar .members-files .m-files .text p{ 
    font-size: 13px;   
    font-weight: 400;
    color: rgb(0,152,218);
}

@media (max-width: 768px){
    .search-bar{ max-height: 120vh; overflow: hidden !important; }
    .search-bar .container{ width: 100%; }
    .search-bar .container .search-box{ width: 100%; }
    .search-bar .members-files .m-files{ width: 100%; }
    .search-bar .members-files .m-files img{ width: 100%; }
}

/*  ----------EVENTS-----------  */
.event{
    padding: 12% 8% 8%;
    position: relative;
    min-height: 100vh;
    width: 100%;
}

.event .container{ 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.event .image{
    width: 320px;
    height: 220px;
    overflow: hidden; 
    margin: 15px;
    cursor: pointer;
    border: 1px solid rgb(0,152,218); 
}
.event .image img{
    width: 100%; 
    transition: .5s ease;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.event .image:hover img{ transform: scale(1.03); }

.event .popup-image{
    position: fixed;
    top: 0; 
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(8px);  /* fixed prefix */
    backdrop-filter: blur(8px);
    height: 100%;
    width: 100%;
    z-index: 1500;
    display: none;
}

.event .popup-image span{
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 40px;
    font-weight: bolder;
    color: white;
    cursor: pointer;
    z-index: 1500;
}
.event .popup-image img{ 
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     height: 90%;
}

@media (max-width: 768px){
    .event .popup-image img{ width: 95%; }
    .event{ padding: 25% 8% 8%; }
}

/* ----------EVENT PAGE ---------- */
.event-page{
    padding: 15% 8% 8%;
    background-image: url(images/bg-2.jpg);
    background-position: center;
    background-size: cover;
    min-height: 20vh; 
}
.event-page h1{
    text-align: center;
    font-size: 40px;
    color: white;
    letter-spacing: 1px;
}
@media (max-width: 768px){
    .event-page h1{
        font-size: 30px; 
        padding-top: 25%;
        text-align: left;
    }
}

/* ---------NEWS---------- */
.news{
    padding: 8%; 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news .container{ 
    width: 250px;   
    transition: 0.5s ease;
    border: 1px solid rgb(0,152,218);
    margin: 15px;
}
.news .container:hover{ transform: scale(1.03); }
.news .container .news-img{
    width: 250px;
    height: 220px;  
    overflow: hidden;
}
.news .container .news-img img{ width: 100%; }
.news .container .text{ padding: 5%; }
.news .container .text h1{
    font-size: 15px;
    margin-bottom: 20px;
}
.news .container .text a{
    text-decoration: none;
    background-color: rgb(0,152,218);
    padding: 7px 15px;
    font-size: 12px;
    color: white;
    border-radius: 5px;
}
@media (max-width: 768px){
    .news .container{ width: 100%; }
    .news .container .news-img{ width: 100%; }
}

/* ---------- MEMBERSHIP ---------- */
.membership{
    min-height: 50vh;
    padding: 8%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(images/bgimage1.jpg);
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
}
.membership h1{
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    font-size: 30px;
}

.membership-content{
    min-height: 100vh;
    padding: 8%;
    width: 100%;
}
.membership-content .membership-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.membership-content .membership-container img{ width: 400px; }
.membership-content .membership-container .membership-text .about-text{
    color: rgb(0,152,218);
    font-size: 30px;
    font-weight: lighter;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.membership-content .membership-container .membership-text h1{
    font-size: 40px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.membership-content .membership-container .membership-text h6{
    font-size: 25px;
    letter-spacing: 1px;
}
.membership-content .membership-container p{
    line-height: 25px;
    letter-spacing: 1px;
    margin-top: 100px;
}
.membership-content .membership-container .profile{
    line-height: 25px;
    letter-spacing: 1px;
    margin-top: 70px;
    width: 500px;
    margin-bottom: 40px;
}
.membership-content .membership-container a{
    text-decoration: none;
    background: rgb(0,152,218);
    padding: 10px 15px;
    color: white;
}

@media (max-width: 768px){
    .membership-content .membership-container img{
        width: 300px;
        margin-bottom: 40px;
    }
    .membership-content .membership-container .profile{ width: 100%; }
    .membership-content{ padding: 30% 8% 20%; }
}

.for-membership{
    padding: 8%;
    min-height: 15vh;
    background-image: linear-gradient(to right, rgb(1,59,135),rgb(0,152,218));
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.for-membership h1{
    color: white;
    font-size: 40px;
}
.for-membership a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    border: white 3px solid;
    padding: 15px 20px;
    transition: 0.5s ease;
}
.for-membership a:hover{
    color: #000;
    background: white;
}

@media (max-width: 768px){
    .for-membership h1{ margin-bottom: 20px; font-size: 30px; }
    .for-membership a{ border: white 2px solid; }
}

/* ---------------CONTACT US PAGE------------- */
.about-us .about-us-container .contactus{ width: 100%; }
footer iframe{ border-radius: 30px; }
footer .group #info{ margin-top: 30px; }
@media (max-width: 768px){ footer iframe{ margin-top: 20px; } }

/* -----------news page------------ */
.events{
    padding: 12% 8% 8%;
    width: 100%;
    min-height: 70vh;
}
.events h6{
    font-size: 30px;
    margin-bottom: 70px;
    text-align: center;
}
.events .upcoming-event .main-event{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.events .upcoming-event .main-event img{ width: 400px; }

@media (max-width: 768px){
    .events .upcoming-event .main-event img{ width: 300px; margin: 20px 0; }
    .events .upcoming-event{ padding-top: 25%; }
    .events h6{
        font-size: 20px;
        margin-bottom: 30px;
        margin-top: 30px;
    }
}

/*  ----------EVENT IMAGE POPUP-----------  */

/* (already fixed earlier) */

/* ---------- DONATION PAGE ---------- */
.donation-page{
    min-height: 100vh;
    width: 100%; 
    background-color: rgb(240, 251, 255);
    position: relative; 
}
.donation-page .popup-acct{
    padding: 8%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 60vh;
    width: 100%;
    position: fixed;
    background-color: rgba(177,177,177,0.8);
    -webkit-backdrop-filter: blur(8px);  /* fixed prefix */
    backdrop-filter: blur(8px);
    display: none;
    z-index: 1090;
}
.donation-page .popup-acct .account{
    padding: 2% 3% 3%;
    width: 40%;
    background-color: white;
    text-align: center;
    border-radius: 10px;
    margin: auto;
}
.donation-page .popup-acct .account img{ width: 200px; }
.donation-page .popup-acct .account .account-text{
    text-align: left;
    padding: 3%;
    border: 2px solid rgb(209,209,209);
    margin: 5px 0;
}
.donation-page .popup-acct .account .account-text label{
    color: rgb(0,152,218);
    font-size: 12px; 
}
.donation-page .popup-acct .account .account-text p{
    font-size: 14px; 
    margin-top: 5px;
    font-weight: 400; 
    letter-spacing: 0.5px;
}
.donation-page .popup-acct .account h6{
    font-size: 12px; 
    padding: 15px 0 5px;
}
.donation-page .popup-acct .account .text-bottom{ margin-bottom: 8%; }
.donation-page .popup-acct .account a{
    text-decoration: none;
    background-color: rgb(1,59,135);
    padding: 10px 25px; 
    color: white; 
    border-radius: 8px;
}
.donation-page .popup-acct .account a i{
    font-size: 16px;
    margin-right: 5px;
}

@media (max-width: 768px){
    .donation-page .popup-acct .account{ width: 100%; padding: 3% 5% 10%; }
    .donation-page .popup-acct{ min-height: 100vh; }
    .donation-page .popup-acct .account .account-text{
        text-align: left;
        padding: 5%;
        border: 1px solid rgb(209,209,209); 
    }
    .donation-page .popup-acct .account a{ padding: 8px 25px; border-radius: 6px; }
    .donation-page .popup-acct .account a i{ font-size: 14px; }
    .donation-page .popup-acct .account .text-bottom{ margin-bottom: 10%; }
}

/* Donation items grid */
.donation-page .container{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;  
    padding: 8%;
}
.donation-page .container .don-content{
    width: 300px; 
    overflow: hidden;
    background-color: white;  
    margin: 15px 0;
    border-radius: 15px;
    transition: 0.5s ease;
}
.donation-page .container .don-content:hover{
    transform: scale(1.03);
}
.donation-page .container .don-content img{ height: 300px; }
.donation-page .container .don-content .text{
    padding: 6% 6% 8%;
    height: 150px;
}
.donation-page .container .don-content .text h6{
    color: grey;
    font-weight: 200;
    font-size: 18px;
}
.donation-page .container .don-content .text h1{
    font-weight: 400;
    font-size: 18px;
    margin: 15px 0 5px;
}
.donation-page .container .don-content a{
    text-decoration: none;
    color: white;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(1,59,135);
    padding: 12px 0;
    transition: 0.5s ease;
}
.donation-page .container .don-content a:hover{
    background-color: rgb(0,152,218);
}

@media (max-width: 768px){
    .donation-page .container .don-content{ width: 100%; }
    .donation-page .container .don-content .text{ height: unset; }
}

/* executive-members */
.executive-members{
    padding: 8%;
}
.executive-members .ex-text h1{
    font-size: 30px;
    margin-bottom: 10px;
}
.executive-members .ex-text .ex-line{
    width: 100px;
    height: 10px;
    background-color: rgb(0,152,218);
}
.executive-members .executive-contents{
    display: flex;
    justify-content: space-evenly;
    padding-top: 8%;
    flex-wrap: wrap;
}
.executive-members .executive-contents .profiles{
    overflow: hidden;
    width: 230px;
    border: 1px solid rgb(208,242,255);
    margin: 15px;
    transition: 0.5s ease;
    border-radius: 10px;
}
.executive-members .executive-contents .profiles:hover{
    transform: scale(1.03);
}
.executive-members .executive-contents .profiles img{ width: 230px; }
.executive-members .executive-contents .profiles .profile-text{ padding: 5%; }
.executive-members .executive-contents .profiles .profile-text h6{
    font-weight: 400;
    font-size: 14px;
}
.executive-members .executive-contents .profiles .profile-text h1{
    font-weight: 500;
    font-size: 16px;
    margin: 5px 0;
}
.executive-members .executive-contents .profiles .profile-text p{ font-size: 12px; }

@media (max-width: 768px){
    .executive-members .executive-contents .profiles{ margin: 15px 0; width: 150px; }
    .executive-members .executive-contents .profiles img{ width: 150px; }
    .executive-members .executive-contents .profiles .profile-text h6{ font-size: 12px; }
    .executive-members .executive-contents .profiles .profile-text h1{ font-size: 14px; }
    .executive-members .executive-contents .profiles .profile-text p{ font-size: 11px; }
}

/* ---------------- FOOTER ---------------- */
footer{
    min-height: 60vh;
    background-color: rgb(19,19,19);
    padding: 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer .group{ min-height: 200px; }

footer .group .iawpalogo{
    width: 250px;
    background-color: white;
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
}
footer .group .socialmedia{ display: flex; }
footer .group .socialmedia img{
    width: 40px;
    margin-right: 20px;
    transition: 0.5s ease;
}
footer .group .socialmedia img:hover{
    background-color: rgb(0,152,218);
}
footer .group h6{
    color: white;
    font-size: 25px;
    letter-spacing: 1px;
}
footer .group .info{
    display: flex;
    align-items: start;
    margin: 15px 0;
}
footer .group .con{ margin-bottom: 30px; }
footer .group .info img{
    width: 30px;
    margin-right: 13px;
    background-color: rgb(0,152,218);
}
footer .group .info p{
    width: 300px;
    color: white;
    letter-spacing: 1px;
    line-height: 25px;
}
footer .group .info .add h5{
    color: white;
    letter-spacing: 1px;
    font-size: 17px;
    margin-bottom: 10px;
}

@media (max-width: 768px){
    footer .group .info p{ width: 200px; }
    footer .group .info{ margin: 15px; align-items: center; }
    footer{ padding: 20% 8%; }
    footer .group .info .email{ font-size: 15px; }
    footer .group .socialmedia img{ margin-right: 12px; }
}