@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;600&display=swap');

:root{
    /*Primary*/

--Strong-Cyan: hsl(171, 66%, 44%);
--Light-Blue: hsl(233, 100%, 69%);

    /*Neutral*/

--Dark-Grayish-Blue: hsl(210, 10%, 33%);
--Grayish-Blue: hsl(201, 11%, 66%);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
    text-align: center;
    font-size: 18px;
    font-family: 'Bai Jamjuree', sans-serif;
    color: var(--Dark-Grayish-Blue);
    background-image: url(images/bg-header-desktop.png);
    background-repeat: no-repeat;
    background-size: contain;
}
ul, a{
    text-decoration: none;
    list-style: none;
}

main{
    display: grid;
    grid-template-columns: 1fr;
    gap: 7rem;
}
/*global same effect edit start here*/
.section_headings{
    font-size: 2.8rem;
    font-weight: 600;
}
.heading_parag{
    margin-top: 1.3rem;
    line-height: 1.8rem;
    width: 42rem;
    font-weight: 400;
}
.download_btn{
    font-size: 1.2rem;
    font-weight: 400;
    width: 15rem;
    border-radius: 50px;
    margin-right: 1rem;
    padding: 1rem;
    border: 0;
    color: white;
    border-bottom: 3px solid var(--Dark-Grayish-Blue);
}
.btn_1{
    background-color: var(--Strong-Cyan);
}
.btn_2{
    background-color: var(--Light-Blue);
}
.download_btn:hover{
    cursor: pointer;
    opacity: .8;
}
p{
    color: var(--Grayish-Blue);
}
a{
    color: var(--Dark-Grayish-Blue);
}
/*global same effect edit end here*/

/*first section start here*/
.first_section_container{
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 3.3rem;   
    padding: 8.4rem;
}
/*first section end here*/

/*second section start here*/
.second_section_container{
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 4rem;  
}
.section_content_wrapper{
    display: flex;
}
.second_section_list{
    text-align: left;
    padding: 5rem;
}
.second_section_list h2{
    font-size: 1.4rem;
    font-weight: 600;
}
.second_section_list ul{
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
}
.second_section_list p{
    width: 22rem;
    font-size: 1rem;
    font-weight: 400;
    margin-top: .5rem;
    line-height: 2rem;
}
/*second section end here*/

/*thrid section start here*/
.third_section_container{
    display: grid;
    place-items: center;
    gap: 7rem;
}
/*thrid section end here*/

/*fourth section start here*/
.fourth_section_container{
    display: grid;
    place-items: center;
    gap: 5rem;
}
.workflow_list{
    display: flex;
    gap: 2rem;
}
.workflow_list h2{
    font-size: 1.5rem;
    font-weight: 600;
}
.workflow_list p{
    width: 22rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2rem;
}
.workflow_list li{
    display: grid;
    place-items: center;
    gap: 1.6rem;
}
/*fourth section end here*/

/*fifth section start here*/
.fifth_section_container{
    display: grid;
    place-items: center;
    gap: 3.5rem;
}
.fifth_section_container img{
    margin-right: 4rem;
    margin-bottom: 6rem;
}
/*fifth section end here*/

/*footer section start here*/
.page_footer{
    display:grid;
    width: 84rem;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    align-items: center;
    margin-top: 17rem;
    margin-bottom: 2rem;
}
.page_footer img{
    display: block;
    width: 3.3rem;
    height: 3.3rem;
}
.footer_list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    margin-left: -7rem;
    text-align: left;
}
.footer_list li{
    margin-right: 3rem;
}
ul.footer_list > li:nth-child(2){
    grid-column: 1;
    grid-row: 2;
}
ul.footer_list > li:nth-child(4){
    grid-column: 2;
    grid-template-rows: 2;
}
ul.footer_list > li:nth-child(5){
    grid-column: 3;
    grid-row: 1;
}
.social_links_list{
    display: flex;
    gap: 1.5rem;
}
.social_links_list i{
   font-size: 1.8rem;
}
.footer_list a:hover{
    color: var(--Strong-Cyan);
}
.social_links_list i:hover{
    color: var(--Strong-Cyan);
}
/*footer section end here*/
