* {
    padding: 0; 
    margin: 0; 
} 

body {
    font-family: plus-jakarta-sans, sans-serif; 
    box-sizing: border-box; 
}

.logo img {
    height: 50px; 
    width: auto; 
}

.menuOptions {
    display: flex;  
    justify-content: space-between; 
    align-items: center;
    gap: 5px; 
} 

.menuOptions a:link, .menuOptions a:active, .menuOptions a:visited {
    color: black;
    font-weight: 500; 
    text-decoration: none;
}

.callVector {
    margin-right: 1rem; 
}

.call {
    display: flex;
} 

.callInfo { 
    font-family: manrope, sans-serif;
}

.callNumber {
    font-size: 12px; 
    font-weight: bold;
}

.callText {
    font-size: 9px; 
}

#frame {
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    background-image: url("Frame.png"); 
    background-size: cover; 
    filter: brightness(80%);
}

.bigText {
    font-size: 4rem; 
    text-align: center; 
    width: 50%;
    font-weight: bold; 
    color: white; 
    font-family: manrope, sans-serif; 
    letter-spacing: -2px; 
    line-height: 100%;
}

span {
    color: #83ff7e;
}

p, li {
    color: #555; 
    font-family: inter, sans-serif; 
    font-weight: 600;
}

/* FOOTER */ 

footer {
    height: 60vh; 
    background-color: #1e1f17;
    color: white;
}

/* Footer logo only */
.footerLogo img {
    height: 42px;
    width: auto;
}

/* Social icons under logo */
.desc > div:last-child img {
    height: 50px;
    width: auto;
    margin-right: 12px;
}

/* Explore & contact icons */
.explore img {
    height: 10px;
}

.footerContact img {
    height: 13px;
}


.desc {
    gap: 20px; 
    font-size: .9rem;
}

.exploreHeader, .footerContactHeader { 
    font-size: 1.2rem;  
    /* border-bottom: 5px solid #2a834f; */
}

.exploreBody {
    font-size: .9rem; 
    color: #e5e5e5;
}

/* hr {
    height: 10px;
    color: #2a834f;
} */

/* .explore img {
    height: 10px;
}

.footerContact img {
    height: 13px;
} */

.footerContact {
    font-size: .9rem;
}

.contactInput input, input:focus {
    height: 50px;
    width: 270px;
    font-size: .8rem;
    border: 0;
    outline: none;
    border-bottom-left-radius: 10px; 
    border-top-left-radius: 10px;
}

.sendCont {
    height: 50px; 
    width: 50px;
    border-bottom-right-radius: 10px; 
    border-top-right-radius: 10px;
}

#copyright {
    height: 10vh; 
    background-color: #1f1e17; 
    color: #a5a49a; 
    font-size: .8rem;
}