:root{
    --primary-color: #4E47FF;
}
body{
    background-color: rgba(214, 221, 237, 50%)
}
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Typography */

.primary-font {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
/* Common Style */
a{
    text-decoration: none;
    color: #fff;
}
section{
    margin: 116px 0;
}
/* button style */

.btn-primary{
    padding: 12px 36px;
    background-color: var(--primary-color);
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

/* header style */

.header{
    background: url(../images/Hero-bg.png);
    max-width: 1440px;
    margin: 0 auto;
    height: 700px;
    padding: 0px 150px;
}
.nav-header{
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}
.nav-header h1 a{
    color: var(--primary-color);
    font-size: 34px;
    text-transform: uppercase;
}
.header-container{
    margin: 150px 0;
    text-align: center;
}

.header-container h2{
    font-size: 65px;
}
.header-container button{
    margin-top: 40px;
}

/* main section style */
main{
    width: 1140px;
    margin: 0 auto;
}

/* action style */
.action{
    display: flex;
    justify-content: space-between;
    background-color: #fff;
}
.action-live{
    padding: 62px 0;
}
.section-title, .section-description {
    margin-bottom: 20px;
}
.section-title{
    font-size: 42px;
    color: #252432;
}
.section-description{
    font-weight: 300;
    font-size: 24px;
    color: rgba(37, 36, 50, 0.5);
    font-style: normal;
}
.action-image img{
    width: 100%;
    max-width: 403px;
    height: 328px;
    border-radius: 50px;
}

/* users style */

.users{
    background-color: rgba(78, 71, 255, 0.1);
    border-radius: 24px;
    padding: 50px 140px;
    text-align: center;
}
.users .section-title{
    font-size: 38px;
}
.user-stats{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.user-item h4{
    color: var(--primary-color);
    font-size: 80px;
}
.user-item p{
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
    font-size: 20px;
}

/* user feedback style */

.user-feedback .section-title{
    text-align: center;
}
.feedbacks{
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.feedback{
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(242, 237, 237, 1);
    padding: 24px;
    border-radius: 14px;
}
.rating i{
    color: #FFB805;
    font-size: 20px;
    margin-bottom: 24px;
}
.feedback h5, .user-name{
    font-size: 20px;
    color: #252432;
    font-weight: 600;
    margin-bottom: 10px;
}
.feedback p{
    color: rgba(37, 36, 50, 0.5);
    font-size: 16px;
    font-weight: 300;
}
.user-author{
    margin-top: 24px;
    display: flex;
    gap: 8px;
}
.user-author img{
    border-radius: 100%;
}

/* Focus Style */
.focus{
    background-color: #fff;
    border: 1px solid #000;
    padding: 70px 150px;
    border-radius: 15px;
    text-align: center;
}
.focus img{
    width: 100%;
    max-width: 840px;
    border-radius: 48px;
    margin-top: 20px;
}
.focus .section-title{
    font-size: 50px;
}
.focus .section-description{
    font-size: 14px;
}

/* Contact Style */

section.contact{
    margin: 90px 0px 15px;
}
.contact{
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 115px;
}
.contact-form label{
    font-weight: 300;
    margin-bottom: 10px;
}
.contact-title{
    font-size: 97px;
    font-weight: 800;
}
fieldset{
    display: flex;
    flex-direction: column;
}

input[type="email"], input[type="text"], textarea{
    margin-bottom: 20px;
    padding: 20px 32px;
    border: 1px solid #D6DDED;
    border-radius: 10px;
    font-weight: 300;
}

input[type="email"], input[type="text"], textarea:focus{
    outline: none;
}
.contact-form .btn-primary{
    width: 100%;
}

/* Footer Style */

.footer{
    max-width: 1440px;
    height: 220px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 100px 450px;
    text-align: center;
}
.footer-title{
    color: var(--primary-color);
    font-size: 100px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
}
.footer-description{
    color: rgba(137, 135, 161, 1);
    font-weight: 300;
    font-size: 16px;
}
.footer a{
    color: rgba(137, 135, 161, 1);
    font-weight: 300;
}
.footer-nav ul{
    display: flex;
    margin-top: 30px;
    justify-content: center;
}
.footer-nav li{
    margin-right: 50px;
}
.footer-nav li a:hover{
    color: var(--primary-color);
    font-weight: 400;
}