@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
	padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}


/* simple text */
.simple_text-main {
    padding: 42px 0 24px;
}
.simple_text-main h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    padding-bottom: 24px;
    color: rgb(0 0 0 / 70%);
}
.simple_text-main h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    padding-bottom: 24px;
    color: rgb(0 0 0 / 65%);
}
.simple_text-main p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    padding-bottom: 16px;
    color: rgb(0 0 0 / 60%);
}

/* footer */
.footer {
    padding: 64px 0;
    background: #402861;
}
.footer-logo {
    padding-bottom: 48px;
}
.footer-logo a img {
    max-width: 300px;
    width: 100%;
    height: auto;
}
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-cols {
    flex: 0 0 33%;
    max-width: 33%;
}
.footer-cols-icon {
    display: flex;
    align-items: center;
    gap: 32px;
}
.footer-icons a img {
    width: auto;
    height: 48px;
}
.footer-cols ul li {
    padding-bottom: 18px;
}
.footer-cols ul li a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    font-weight: 400;
}
.footer-cols h4 {
    font-size: 24px;
    color: #fff;
    padding-bottom: 18px;
}
.footer-cols p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
}



/* Buttons */  /* Sign up now \\ login */
.main-content {
    padding-top: 42px;
    justify-content: center;
    background: #fff;
}
.main-content .banner-btn-2 a, .main-content .banner-btn-1 a:hover {
    color: #000;
} 
.main-content .banner-btn-2 a:hover {
    color: #fff;
} 

/* footer */




@media (max-width: 1024px ) {
    
}
@media (max-width: 992px ) {
    /* footer */
    .footer-menu {
        gap: 24px;
    }
    .footer-cols-icon {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .footer-cols {
        flex: 0 0 48%;
        max-width: 48%;
    }
}
@media (max-width: 768px ) {
    
}
@media (max-width: 480px) {
    /* simple text */
    .simple_text-main p {
        font-size: 16px;
        line-height: 24px;
    }
    /* demo points */
    .demo_points-title h2 {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
    }
    .demo_points-list ul {
        padding-left: 24px;
        margin-bottom: 12px;
    }
    .demo_points-list ul li {
        font-size: 16px;
        line-height: 24px;
    }
    /* footer */
    .footer-cols {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 380px) {
    /* footer */
    .footer-logo a img {
        max-width: 200px;
    }
    .footer-icons a img {
        width: auto;
        height: 30px;
    }
    .footer-cols ul li a {
        font-size: 16px;
    }
    .footer-cols p {
        font-size: 14px;
    }
}

