*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}
body{
    font-family: "Inter", sans-serif;
    font-weight: bold;
}

/* Header ---------------------------------------------------------------------------------------------------*/

.header{
    min-height:700px;
    width:100%;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at 20% 30%, rgba(37,99,235,0.12), transparent 35%),
        radial-gradient(circle at 80% 60%, rgba(34,197,94,0.10), transparent 35%),
        #f8fafc;
    background-position: center;
    background-size: cover;
    margin-top: -1%;
}

nav{
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%;
    background: white;
    top: 0;
    position: sticky;
    z-index: 1000;
    box-shadow: 0 0 20px 0px hsla(0, 0%, 0%, 0.2);
}
nav img{
    width: 250px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 6px 50px;
    position: relative;
    text-align: center;
}
.nav-links ul li a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}
.navLinkText::after {
    content: '';
    width: 0%;
    height: 2.5px;
    background: black;
    display: block;
    margin: auto;
    transition: 0.5s;

}
.navLinkText.active::after {
    width: 100px;
}
.accountButtons { /* Sign in Button */
    background-color: hsl(224, 89%, 48%);
    font-size: 16px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border: none;
    border-radius: 100px;
    padding: 10px 20px;
    margin-left: 30px;
    transition: 0.5s ease;
    cursor: pointer;
}
.accountButtons:hover{
    background-color: hsl(224, 89%, 58%);
}
.signoutBtn { /* Sign in Button */
    display: none;
    background-color: hsl(0, 0%, 100%);
    font-size: 16px;
    color: hsl(0, 0%, 0%);
    text-decoration: none;
    border: 2px solid hsl(0, 0%, 0%);
    border-radius: 100px;
    padding: 10px 20px;
    margin-left: 30px;
    transition: 0.5s ease;
    cursor: pointer;
}
.signoutBtn:hover {
    background-color: hsl(0, 0%, 95%);
}
.logged-in .accountButtons{
    display: none;
}
.logged-in .signoutBtn {
    display: inline-block;
}
.signoutBtn{
    display: none;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #000000;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}


/* form box ------------------------------------------------*/

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* dims the background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 900;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}
/* Prevent scrolling when modal is open */
body.modal-open {
    overflow: hidden;
}
/* Form Box - update position */
.form-box {
    position: relative; /* changed from absolute */
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 600px;
    max-width: 90%;
    height: 600px;
    padding: 20px 40px;
    border-radius: 40px;
    overflow: hidden;
    box-sizing: border-box;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 901;
}
.modal-overlay.active .form-box {
    transform: scale(1);
}
/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    font-size: 32px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
}
.modal-close:hover {
    color: #000;
}
.login-container,
.register-container{
    position:absolute;
    width:90%;
    max-width:500px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    transition:0.5s ease-in-out;
}

.accountHeader1,
.accountHeader2{
    margin-left:0;
    justify-content:center;
    text-align:center;
}

.login-container{
    transform: translateX(-50%);
}

.register-container{
    transform: translateX(calc(-50% + 800px));
}
.top span{
    color: rgb(0, 0, 0);
    font-size: small;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}
.top span a{
    font-weight: 500;
    color: rgb(0, 0, 0);
    margin-left: 5px;
}
header{
    display:flex;
    width:100%;
    color: black;
    font-size: 30px;
    text-align: center;
    padding: 10px 0 30px 0;
}
.two-forms{
    display: flex;
    gap: 10px;
}
.input-field{
    font-size: 15px;
    background: rgb(255, 255, 255);
    color: black;
    height: 50px;
    width: 100%;
    padding: 0 10px 0 45px;
    border: 2.7px solid hsl(0, 0%, 50%);
    border-radius: 30px;
    outline: none;
    transition: .2s ease;
    box-sizing: border-box;
    margin: 4px 0px;
}
.input-field:hover, .input-field:focus{
    background: rgba(255, 255, 255, 0.254);
}
::-webkit-input-placeholder{
    color: rgb(149, 149, 149);
}
.input-box i{
    position: relative;
    top: -35px;
    left: 17px;
    color: rgb(0, 0, 0);
}
.submit{
    font-size: 15px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    height: 45px;
    width: 100%;
    border: none;
    border-radius: 30px;
    outline: none;
    background-color: hsl(224, 89%, 48%);
    cursor: pointer;
    transition: .3s ease-in-out;
}
.submit:hover{
    box-shadow: 0 0 20px 0px hsla(0, 0%, 0%, 0.2);
    background-color: hsl(224, 89%, 58%);
}
.two-col{
    display: flex;
    justify-content: space-between;
    color: black;
    font-size: small;
    margin-top: 20px;
}
.two-col .one{
    display: flex;
    gap: 5px;
}
.two label a{
    text-decoration: none;
    color: black;
}
.two label a:hover{
    text-decoration: underline;
}

.error-message{
    color: red;
    font-size: 14px;
    text-align: center;
    transform: translateY(-15px);
}

@media (max-width: 600px){

    .form-box{
        width:85%;
        max-width:360px;
        height:70%;
        padding:24px 20px;
        border-radius:24px;
    }

    .login-container,
    .register-container{
        width:calc(100% - 20px);
        left:50%;
    }

    .top span{
        font-size:13px;
        padding:6px 0;
        text-align:center;
    }

    header{
        justify-content:center;
        font-size:26px;
        padding:8px 0 22px;
    }

    .input-box{
        margin-bottom:8px;
    }

    .input-field{
        height:44px;
        font-size:15px;
        padding-left:42px;
    }

    .input-box i{
        top:-33px;
        left:15px;
        font-size:14px;
    }

    .submit{
        height:44px;
        font-size:15px;
        margin-top:8px;
    }

    .two-col{
        flex-direction:column;
        align-items:center;
        gap:10px;
        margin-top:16px;
        font-size:13px;
    }

    .two-col .one{
        justify-content:center;
    }

    .modal-close{
        top:12px;
        right:16px;
        font-size:24px;
    }

    .error-message{
        font-size:13px;
        transform:translateY(-10px);
    }
}


/* Main Body ---------------------------------------------------------------------------------------------------*/

.text-box{
    width:45%;
    color:black;
    margin-left:7%;
    padding:50px 45px;
}

.text-box h1{
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    line-height:1.05;
    letter-spacing: -0.05em;
    font-weight: 900;
    padding:0;
    margin-bottom:40px;
}

.text-box p{
    max-width:600px;
    margin:0 0 40px;
    font-size:clamp(18px, 1.5vw, 24px);
    line-height:1.5;
    color:#555;
    font-family:"Inter", sans-serif;
    padding:0;
    font-weight:500;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    color:white;
    border-radius:100px;

    padding:18px 40px;

    font-size:20px;
    font-weight:700;

    background-color:hsl(224,89%,48%);
    cursor:pointer;

    transition:0.3s ease;
}

.hero-btn:hover{
    background-color:hsl(224,89%,58%);
    transform:translateY(-2px);
}

.blockAnimation{
    width:50%;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    overflow:hidden;
    padding-left:3%;
    height:520px;
}

#animationGrid{
    display:grid;
    grid-template-columns:130px repeat(9,130px);
    grid-template-rows:60px repeat(9,60px);
    padding:0px;
    background:#efefef;
    border-radius:35px;
    box-shadow: 0px 10px 30px rgba(0,0,0,.12);
    transform:scale(var(--chart-scale, 0.8));
    transform-origin:left center;
}
.animationHeader{
    width:130px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

    border: 1px solid hsla(0, 0%, 72%, 0.143);
    font-family:"Inter", sans-serif;
    font-size:20px;
    font-weight:700;

    color:#1d1d1d;
    background-color: hsl(0, 0%, 98%);
}

.animationCell{
    position: relative;
    width:130px;
    height:60px;
    background:#f3f3f3;
    border:none;

    display:flex;
    align-items:center;
    padding-left: 13px;
    



    font-family: "Inter", sans-serif;
    font-size:16px;
    font-weight:700;
    color:#1d1d1dea;

    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;

    transition:
        background-color 0.2s ease,
        transform 1s ease,
        opacity 1s ease;
}
.animationCell::after {
    content: "";
    position: absolute;
    inset: -1.5px;
    background: inherit;
    z-index: -1;
}

.animationCell.filled{
    transform:scale(1.05);
}

.topLeft{
    border-top-left-radius:20px;
}

.topRight{
    border-top-right-radius:12px;
}

.bottomLeft{
    border-bottom-left-radius:20px;
}

.bottomRight{
    border-bottom-right-radius:12px;
}

nav .fa{
    display: none;
}

/* Benefits ---------------------------------------------------------------------------------------------------*/

.benefits{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 42px;
    font-weight: 600;
}
.benefits h3{
    font-size: 28px;
}
.benefits p{
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 300;
    padding: 10px;

}
.row{
    margin-top: 2.1%;
    display: flex;
    justify-content: space-between;
}
.benefits-col{
    flex-basis: 31%;
    border-radius: 20px;
    margin-bottom: 3%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
.benefits-col i{
    font-size: 80px;
    margin-bottom: 15px;
}
.benefits h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.benefits-col:hover{
    box-shadow: 0 0 20px 0px hsla(0, 0%, 0%, 0.2);
}

@media(max-width: 800px){
    .row{
        flex-direction: column;
    }
}

/* FAQ Section ------------------------------------------ */

.faq{
    width:80%;
    max-width:1000px;
    margin:0px auto;
    padding-top: 60px;
    text-align:center;
}


.faq-container{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top: 4%;
}


.faq-item{
    background:#f8fafc;
    border-radius:25px;
    overflow:hidden;
    text-align:left;
    border:1px solid #e5e7eb;
}


.faq-question{
    width:100%;
    padding:20px;
    border:none;
    background:none;
    display:flex;
    justify-content:space-between;
    align-items:center;

    font-family:"Inter", sans-serif;
    font-size:24px;
    color: black;
    font-weight:700;
    cursor:pointer;
    text-align: left;
}


.faq-question span{
    font-size:32px;
    font-weight:400;
    transition:0.3s ease;
    color: black;
}


.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
    color: black;
}


.faq-answer p{
    padding:0 30px 30px;
    color:#555;
    font-size:20px;
    line-height:1.6;
    font-weight:400;
    color: black;
}


/* Open state */

.faq-item.active .faq-answer{
    max-height:200px;
}


.faq-item.active .faq-question span{
    transform:rotate(45deg);
}


/* Call to Action ---------------------------------------------------------------------------------------------------*/

.cta{
    display: block;
    margin: 50px auto;
    margin-top: 100px;
    width: 100%;
    height: 500px;
    background: hsl(0, 0%, 95%);
    background-position: center;
    background-size: cover;
    color: white;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 0px;
    margin-bottom: 0;
}

.cta img{
    width: clamp(80%, 80%, 600px);
    max-width: 600px;
    height: auto;
    padding-bottom: 40px;
}
.cta h1{
    color: rgb(0, 0, 0);
    font-size: 42px;
    margin-bottom: 40px;
    margin-top: 0px;
    padding: 0px 15px;
}
.hero-btn2{
    display: inline-block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    border-radius: 100px;
    padding: 25px 40px;
    margin-top: 13px;
    font-size: 20px;
    font-weight: 700;
    background-color:hsl(224,89%,48%);
    box-shadow: 0 0 20px 0px hsla(0, 0%, 0%, 0.2);
    position: relative;
    cursor: pointer;
}
.hero-btn2:hover{
    background-color: hsl(224, 89%, 58%);
    transition: 0.5s;
}


/* Footer ---------------------------------------------------------------------------------------------------*/

.footer-container{
    background-color: rgb(46, 46, 46);
    padding: 4rem 0 4rem 0;
}
.footer{
    width: 95%;
    height: 170px;
    background-color: rgb(46, 46, 46);
    color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
}
.footer-heading{
    display: flex;
    flex-direction: column;
    margin-right: clamp(2px, 10%, 200px);
}
.footer-heading h2{
    margin-bottom: 2rem;
}
.footer-heading a{
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
}
.footer-heading a:hover{
    color: hsl(0, 0%, 80%);
    transition: 0.3s ease-out;
}
.footer-email-form h2{
    margin-bottom: 2rem;
}

#footer-email{
    width: 250px;
    height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    padding-left: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}
#footer-email::placeholder{
    color: #b1b1b1;
}
#footer-email:focus{
    outline: none;
    box-shadow: 0 0 12px black;
}

#footer-email-btn{
    width: 100px;
    height: 40px;
    border-radius: 4px;
    background-color: hsl(224, 89%, 48%);
    outline: none;
    border: none;
    color: white;
    font-size: 1rem;
}
#footer-email-btn:hover{
    cursor: pointer;
    background-color: hsl(224, 89%, 58%);
    transform: all 0.4s ease-out;
}
#copyright{
    background-color: rgb(46, 46, 46);
    color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 60px;
}

@media screen and (max-width: 800px){
    .footer-3{
        display: none;
    }
    .footer-email-form{
        margin-top: 4rem;
    }
    .footer{
        height: 400px;
    }
    .footer-heading{
        margin-top: 30px;
    }
    #copyright{
        margin-top: 20px;
    }
}












@media (max-width: 1350px){
    .nav-links ul li{
        display: block;
        padding: 40px 0px;
    }
    nav{
        z-index: 2001;
    }
    .nav-links{
        position: absolute;
        display: flex;
        justify-content: center;
        background: hsla(0, 0%, 25%, 0.566);
        width: 100%;
        height: 90vh;
        backdrop-filter: blur(20px);
        transition: .3s;
        text-align: center;
        top: -1500px;
        left: 0;
        padding-top: 60px;
        z-index: 0;
    }
    .nav-links ul li a{
        color: rgb(255, 255, 255);
        width: 500px;
    }
    .nav-links.responsive{
        top: 70px;
        height: 900px;
        z-index: 1;
    }
    /*.nav-links{
        position: absolute;
        background: rgb(247, 247, 247);
        height: 100vh;
        width: 250px;
        top: 0px;
        right: -250px;
        text-align: left;
        z-index: 2;
        padding: 20px 0px;
        transition: 0.5s;
    }*/
    .accountButtons{
        display: flex;
        margin-top: 50px;
    }
    .signoutBtn { /* Sign in Button */
        margin-left: 0;
        margin-top: 40px;
        font-size: 18px;
    }

    nav .fa{
        position: absolute;
        right: 0;

        display: block;
        color: black;
        margin: 40px;
        font-size: 40px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 10px;  
    }

    .wrapper{
        flex-direction: column;
    }
    .wrapper img{
        width: 30vh;
    }

    .header{
        flex-direction:column;
        min-height:auto;
        height:auto;
        padding-top:80px;
        padding-bottom:20px;
    }

    .text-box{
        width:90%;
        margin-left:0;
        text-align:center;
        padding:20px;
    }


    .text-box h1{
        font-size:clamp(2.8rem, 8vw, 5rem);
    }

    .text-box p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-btn{
        margin-bottom: 0px;
    }

    .blockAnimation{
        width:100%;
        height:auto;
        margin-top:0;
        padding:0;
        justify-content:center;
        overflow:visible;
    }

    #animationGrid{
        --chart-scale:0.65;
        margin-top:0;
        transform-origin:center center;
    }

@media (max-width:600px){

    nav .fa{
        margin-right: 20px;
    }
    nav img{
        width: 200px;
        margin-left: 10px;
    }


    .header{
        padding-top:80px;
        padding-bottom:10px;
    }

    .text-box{
        padding:10px;
    }
    .text-box h1{
        font-size: 40px;
    }

    #animationGrid{
        --chart-scale:0.35;
    }

}

    @media (max-width:1350px){

    #animationGrid{
        --chart-scale:0.65;
        margin-top:-70px;
        margin-bottom: -40px;
    }

    h1{
        margin-bottom: 40px;
    }
}

@media (max-width:900px){

    #animationGrid{
        --chart-scale:0.45;
        margin-top:-130px;
        margin-bottom: -70px;
    }
}

@media (max-width:600px){

    #animationGrid{
        --chart-scale:0.35;
        margin-top:-140px;
        margin-bottom: -130px;
    }
}
}

@media (max-width:500px){
    #animationGrid{
        --chart-scale:0.25 !important;
        transform: scale(0.25) !important;
        transform-origin:center center;
        margin-top:-170px;
        margin-bottom: -150px;
    }
}







.aboutContainer{
    display: flex;
    flex-direction: column;
    width:80%;
    max-width:1200px;
    margin:0px auto;
    padding-top: 20px;
    padding-bottom: 80px;
    text-align:left;
}
.chartContainer{
    display: flex;
    flex-direction: row;
    background:white;
    padding:60px;
    border-radius:40px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    align-items: center;
}
.founderContainer{
    display: flex;
    flex-direction: row;
    background:white;
    padding:60px;
    border-radius:40px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}
.aboutHeader{
    font-size: 42px;
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
}
.aboutSeparator{
    display: none;
    margin-bottom: 40px;
    width: 400px;
}
.aboutText{
    font-size: 20px;
    font-weight: 400;
}
.chartContainer .aboutText{
    margin-left: 40px;
}
.founderContainer .aboutText{
    margin-right: 40px;
}
.chartPhoto{
    height: 300px;
    width: auto;
    border-radius: 20px;
    box-shadow: 0 0 8px black;
}
.founderPhoto{
    height: 300px;
    width: auto;
    border-radius: 20px;
    box-shadow: 0 0 8px black;
}

@media (max-width:1350px){

    .aboutContainer{
        width:90%;
        text-align:center;
    }

    .chartContainer{
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:35px 25px;
    }
    
    .founderContainer{
        flex-direction:column-reverse;
        align-items:center;
        text-align:center;
        padding:35px 25px;
    }

    .aboutHeader{
        font-size:36px;
        margin-top:40px;
        margin-bottom:25px;
    }

    .aboutText{
        width:100%;
        text-align:center;
        font-size:18px;
        line-height:1.6;
        margin:0 !important;
    }

    .chartPhoto{
        width:90%;
        height:auto;
        margin:0 auto 30px;
    }

    .founderPhoto{
        width:80%;
        height:auto;
        margin:0 auto 30px;
    }

}

@media (max-width:600px){

    .chartContainer,
    .founderContainer{
        border-radius:25px;
        padding:30px 20px;
    }

    .aboutHeader{
        font-size:32px;
    }

}






.contact{
    min-height:80vh;
    background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.04), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(34,197,94,.03), transparent 30%),
    radial-gradient(#e9e9e9 1px, transparent 1px),
    white;

background-size:
    auto,
    auto,
    24px 24px,
    auto;
    padding:50px 5%;
    text-align:center;
}
.contactContainer{
    max-width: 1200px;
    margin: 0 auto;
}
.contactHeader{
    font-size: 42px;
    font-weight: 900;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}
.contactDescription{
    font-size: 14px;
    margin-bottom: 40px;
}
.contactWrapper{
    display:flex;
    justify-content:center;
    gap:80px;
    max-width: 1200px;
    background:white;
    padding:60px;
    margin-bottom: 60px;
    border-radius:40px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}
.contactForm{
    text-align: left;
    width: 600px;
}
.contactSubHeading{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: black;
}
.formGroup{
    margin-bottom: 20px;
}
input, textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid black;
    background-color: rgb(255, 255, 255);
    color: black;
    font-size: 18px;
    resize: none;
}
input:focus, textarea:focus{
    outline: none;
    box-shadow: 0 0 8px black;
}
.contact button{
    font-size: 18px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    height: 45px;
    width: 100%;
    margin-top: 10px;
    border: none;
    border-radius: 30px;
    outline: none;
    background-color: hsl(224, 89%, 48%);
    cursor: pointer;
    transition: .3s ease-in-out;
}
.contact button:hover{
    box-shadow: 0 0 20px 0px hsla(0, 0%, 0%, 0.2);
    background-color: hsl(224, 89%, 58%);
}
.contactInfo{
    text-align: left;
    font-size: 18px;
}
.contactInfo i{
    color: black;
    margin-right: 10px;
}
@media (max-width:1350px){

    .contact{
        min-height: 80vh;
        padding: 40px 20px;
    }

    .contactContainer{
        padding: 0;
    }

    .contactWrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .contactForm{
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    .contactSubHeading{
        text-align: center;
    }

    .contactInfo{
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    .formGroup{
        text-align: left;
    }

    .contactHeader{
        font-size: 42px;
    }
}

@media(max-width: 800px){
    .contactWrapper{
        padding: 60px 30px;
    }
    .contactSubHeading{
        margin-bottom: 20px;
    }
    .contactInfo{
    text-align: center;
    font-size: 15px;
}
}