@import url('https://fonts.googleapis.com/css2?family=Viga&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;  
}
body {
    font-family: "Poppins", sans-serif;
}
h1, h2, h3, h4 {
    font-family: "Viga", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}
.container {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}
/***   HEADER STYLE   ***/
.headet-top .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.headet-top .nav ul {
    width: 460px;
    display: flex;
    justify-content: space-between;
}
.headet-top .nav a {
    color: #5c5c5c;
    font-weight: 600;
    font-size: 16px;
    transition: all .3s;
}
.headet-top .nav a.active {
    color: #7663f3;
}
.headet-top .nav a:hover {
    color: #be63f3;
}
.headet-top .nav .nav-cta {
    background-color: #7663f3;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
}
.headet-top .nav .nav-cta:hover {
    background-color: #be63f3;
    color: #ffffff;
}
.hero {
    background-color: #f8f9fb;
    padding: 60px 0;
}
.hero .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.hero .hero-title {
    font-size: 34px;
    color: #be63f3;
    margin-bottom: 20px;
}
.hero .hero-desc {
    font-size: 18px;
    color: #212121;
    margin-bottom: 20px;
}
.hero .hero-cta {
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero .hero-cta-1 a {
    background-color: #7663f3;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all .3s;
    display: block;
}
.hero .hero-cta-1 a:hover{
    background-color: #be63f3;
}
.hero .hero-cta-2 a {
    background-color: #ffffff;
    color: #7663f3;
    border: 1px solid #7663f3;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all .3s;
    display: block;
}
.hero .hero-cta-2 a:hover {
    background-color: #be63f3;
    color: #ffffff;
    border: 1px solid #be63f3;
}
.hero-img img {
    border-radius: 10px;
}
/*** END HEADER STYLE   ***/
/*************************************************************************************************/
/***   Why choose US STYLE   ***/
#why-choose-us {
    padding: 60px 0;
}
.why-choose-us-title {
    color: #be63f3;
    text-align: center;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}
.why-choose-us-cards {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 40px;
    margin-bottom: 20px;
}
.why-choose-us-card {
    padding: 30px 20px;
    box-shadow: 2px 2px 10px 2px rgba(92,92,92,.3);
    border-radius: 10px;
}
.why-choose-us-card-img {
    margin-bottom: 10px;
}
.why-choose-us-card-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #282828;
}
.why-choose-us-card-descr {
    font-size: 16px;
}
/*** END Why choose US STYLE   ***/
/*************************************************************************************************/
/***   Statistics STYLE   ***/
#statistics {
    padding: 60px 0;
    background-color: #7663f3;
}
#statistics .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.statistic-card {
    text-align: center;
}
.statistic-number {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    font-family: "Viga", sans-serif;
}
.statistic-descr {
    font-size: 20px;
    color: #ffffff;
}
/*** END Statistics STYLE   ***/
/*************************************************************************************************/
/***   How It Works STYLE   ***/
#how-it-works {
    padding: 60px 0;
    background-color: #f8f9fb;
}
.how-it-works-title {
    color: #be63f3;
    text-align: center;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}
.how-it-works-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 900px;
    margin: 0 auto;
}
.how-it-works-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.step {
    margin-bottom: 20px;
}
.step span {
    background-color: #7663f3;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}
.how-it-works-step-title {
    font-size: 20px;
    color: #282828;
    margin-bottom: 20px;
}
.how-it-works-step-descr {
    font-size: 16px;
}