body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    background: #F7F8FB;
}

.header {
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(28, 96, 221, 0.24);
    z-index: 20;
    position: sticky;
    top: 0;
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}

.header .nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    background: none;
    height: 84px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1440px;
}

.hero {
    padding: 120px 60px;
    background: #F7F8FB;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .wrapper {
    width: 100%;
    max-width: 1260px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
}

.hero .wrapper .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 1000px;
}

.hero .wrapper .hero-text h1 {
    margin: 0;
    color: #22273D;
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    text-transform: uppercase;
}

.hero .wrapper .hero-text h1 span {
    color: #1C60DD;
}

.hero .wrapper .hero-text p {
    margin: 0;
    color: #22273D;
    font-size: 20px;
    font-weight: 400;
    line-height: 36px; 
    text-transform: uppercase;  
}

.hero .wrapper .hero-main-text {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(65, 142, 250, 0.35);
    display: flex;
    width: 100%;
    padding: 50px 50px;
    flex-direction: column;
    /* align-items: center; */
    /* gap: 22px; */
}


.footer {
    background: #22273D;
    max-width: 100%;
    padding: 100px 60px;
    display: flex;
    justify-content: center;
}

.footer .nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 50px;
    width: 100%;
    max-width: 1440px;
}

.footer .nav p {
    margin: 0;
    color: #A6ADC7;
    max-width: 1000px;
}

.footer .nav .social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer .nav .social a img {
    transition: transform .25s linear .05s, filter 1s linear;
}

.footer .nav .social a img:hover {
    transition: transform .05s cubic-bezier(0.34, 1.56, 0.64, 1) 0s, filter .05s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1.23);
    transform-origin: center;
    filter: drop-shadow(3px 3px 4px #445cdd80);
}

@media only screen and (max-width:768px) { 
    .hero {
        padding: 60px 60px;
    }
    .hero .wrapper .hero-text h1 {
        font-size: 36px;
        line-height: 48px;
    }
    .hero .wrapper .hero-text p {
        font-size: 16px;
        line-height: 28px;
    }

    .header .nav {
        justify-content: center;
    }
}

@media only screen and (max-width:425px) { 
    .header {
        padding-left: 30px;
        padding-right: 30px;
    }
    .hero .wrapper {
        gap: 40px;
    }
    .hero .wrapper .hero-text h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .hero .wrapper .hero-main-text {
        padding: 30px 30px;
    }
    .footer .nav p {
        font-size: 14px;
    }
}