/* The home section  */
#home {
    width: 100%;
    height: 100vh;
    margin: auto;
    background: url(../images/Untitled\ design.png);
    background-size: cover;
  }
  #home .container{
    padding: 7rem 0;
    text-align: center;
    width: 80%;
    margin: auto;
  }
#home h1{
    font-size: 42px;
    font-weight:800;
}
#home p{
    font-size: 32px; color: #333;
}


/* Our services  */
#services h2{
    text-align: center;
    font-size: 42px;
}
#services .text{
    padding: 0;
    margin: auto;
}
#services .text h2{
    color: #020202;
    font-size: 32px;
    text-align: left;
}
#services .text p{
    color: #333;
    font-size: 18px;
    width: 100%;
}
#services li{
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

#services li div{
    width: 48%;
}
#services li .image img{
    width: 100%;
    margin: auto;
}

/* The who we are section  */
.about-us{
    background-color: #fff;
}
.about-us h2{
    color: #020202;
    font-size: 26px;
}

.about-us .sub-heading{
    border-left: 3px solid #020202;
    padding-left: 10px;
}
.about-us .container{
    width: 80%;
    margin: auto;
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    /* grid-gap: 40px; */
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.about-us .container div{
    /* padding: 40px; */
    width: 48%;
}
.about-us .image{
    background: url(../images/advisory.jpg);
    background-size: cover;
    height: 300px;
}
.about-us .text{
    /* padding-left: 0; */
    align-content: center;
}
/* .about-us img{
    width: 400px;
    margin: auto;
} */
.about-us a{
    text-decoration: none;
    color: #fff;
    background: #020202;
    padding: 5px 20px;
    border-radius: 5px;
    position: relative;
    top: 5px;
}

/* About Us and Contact Us sections */
#about, #contact {
    padding: 2rem 0;
    background-color: #fff;
    text-align: center;
}

#about .container, #contact .container {
    width: 80%;
    margin: auto;
}

#about h2, #contact h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#about p, #contact p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.6;
}

@media only screen and (max-width: 1250px) {
    /* The home section  */
    #home {
        height: 80vh;
      }
  #home .container{
    width: 90%;
  }
#home h1{
    font-size: 32px;
}
#home p{
    font-size: 22px;
}
}

@media only screen and (max-width: 750px) {
    /* The home section  */
    #home {
        width: 100%;
        height: 90vh;
        margin: auto;
        background: url(../images/Untitled\ design1.png);
      }
}
@media only screen and (max-width: 600px) {
    /* The home section  */
    #home {
        width: 100%;
        height: 100vh;
        margin: auto;
        background: url(../images/Untitled\ design1.png);
      }
  #home .container{
    padding: 7rem 0;
    width: 90%;
  }
#home h1{
    font-size: 26px;
}
#home p{
    font-size: 18px;
}

/* what-sets-apart */
.what-sets-apart{
    padding: 30px 5%;
}
.what-sets-apart .contents{
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.what-sets-apart .contents div{
    padding: 20px;
}
}
@media only screen and (max-width: 350px) {
    /* what-sets-apart */
.what-sets-apart .contents{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.what-sets-apart .contents div{
    padding: 20px;
}
}

@media only screen and (max-width: 400px) {
    /* The home section  */
#home h1{
    font-size: 24px;
}
#home p{
    font-size: 16px;
}
}