@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Roboto','sans-serif';
}

.main{
    display: flex;
    flex-direction:column;
}

.header{
    display: flex;
    flex-direction: column;  
    background-color: #1F2937;
    padding: 20px 220px;
}

.logo{
    font-weight: bold;
    color: #F9FAF8;
    font-size: 24px;
}

.menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
}

.info{
    display: flex;
}

.hero{
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.leftsection{
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.herotext{
    font-weight: 900;
    color: #F9FAF8;
    font-size: 48px;
}

.desc{
    font-size: 18px;
    color: #e5e7eb;
}

.signup{
      padding: 8px 10px;
      background-color: #3882f6;
      color: white;
      font-size: 18px;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      width: 140px;
}
.rightsection{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: large;
    width: 1750px;
    height: 250px;
    background-color: #6d747d;
    /* padding: 16px; */
    /* margin: 20px; */
}
.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:20px;

}
.maintext{
    font-size: 36px;
    font-weight: 900;
    color: #1F2937;
    padding:30px;
}
.dialogbox{
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
}
.element{
    display: flex;
    flex-direction: column;
}
.box{
    align-self: center;
    border: 4px solid #3882f6;
    font-size: large;
    height: 150px;
    width:150px;
    border-radius: 12px;
    
}
.context{
    text-align: center;
    color: black; 
    font-weight: 400; 
    max-width: 150px;
}

.quotation{
    display: flex;
    flex-direction: column;
    background-color: #e5e7eb;
    padding: 100px 250px;
    
}

.quote{
    font-size: 36px;
    font-style:italic;
    font-weight: light;
}

.referencename{
    color:#1F2937;
    font-size: 30px;
    font-weight: bold;
    align-self: flex-end;
}

.footer{
    padding: 100px 200px;
}

.call{
    background-color: #3882f6;
    color: white;
    border-radius: 15px;
    padding: 50px 125px;
    display: flex;
    justify-content: space-between;
}
.callhero{
    font-weight: bold;
    color: #F9FAF8;
    font-size: 24px;
}
.callbutton{
    padding: 8px 10px;
    background-color: #3882f6;
    color: white;
    font-size: 15px;
    font-weight: bold;
    border:2px solid white;
    border-radius: 8px;
    width: 140px;
}

ul {
  list-style-type: none;
  margin:0;
  padding:0;
  display: flex;
  gap: 35px;
  font-size: 18px;
}

a {
  text-decoration: none;
  color: #c1c2c4;  
}