@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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');

:root{
    /* Typography */
    /* font family */
    --heading-font: "Poppins", sans-serif;
    --body-font: "Open Sans", sans-serif;
    --call-to-action-font: "Open Sans", sans-serif;
    /* font size */
    --default-text-size: 18px;
    /* heading size */
    --large-heading-size: 55px;
    --medium-heading-size: 45px;
    --small-heading-size: 40px;
    /* paragraph size */
    --default-paragraph-size: 18px;
    /* call to action text size */
    --large-call-to-action-text: 22px;
    --small-call-to-action-text: 17px;
    /* font weight */
    --default-font-weight: 600;
    --heading-font-weight: 600;


    /* Colors */
    /* primary colors */
    --pink: hsl(322, 100%, 66%);
    /* neutral colors */
    --very-pale-cyan: hsl(193, 100%, 96%);
    --very-dark-cyan: hsl(192, 100%, 9%);
    --grayish-blue: hsl(208, 11%, 55%);
    /* btn colors */
    --primary-btn-background-color: var(--pink);
    --secondary-btn-background-color: white;
    --primary-btn-text-color: white;
    --secondary-btn-text-color: var(--very-dark-cyan);
    /* heading colors */
    --heading-color: var(--very-dark-cyan);
    --primary-paragraph-color: var(--very-dark-cyan);
    --secondary-paragraph-color: var(--grayish-blue);
}

/* Default styles >> */
*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
    font-size: var(--default-text-size);
    background-color: white;
    color: black;
    font-family: var(--body-font);
}
img{
    width: 100%;
}
.container{
    max-width: 1280px;
    margin: 0 auto;
    display: block;
}
/* Default styles << */

/* button style >> */
.btn{
    border-radius: 45px;
    font-family: var(--call-to-action-font);
    font-weight: 600;
    cursor: pointer;

    transition: opacity 0.2s ease-in-out;
}
.btn:hover{
    opacity: 0.6;
}
.large_btn{
    border: none;
    padding: 25px 70px;
    color: white;
    font-size: var(--large-call-to-action-text);
    
}
.small_btn{
    border: none;
    padding: 20px 70px;
    color: white;
    font-size: var(--small-call-to-action-text);
}
.pink_btn{
    background-color: var(--primary-btn-background-color);
}
.white_btn{
    background-color: white;
    color: var(--very-dark-cyan);
    box-shadow: 1px 1px 15px -10px black;
}
/* button style << */



/* #main >> */
/* #header_and_hero-sec >> */
#header_and_hero_sec{
    background: url(../images/bg-hero-desktop.svg);
    background-color: var(--very-pale-cyan);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* #header >> */
#header > .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
}
#header > .container img{
    width: 180px;
}
/* #header << */

/* #hero-sec >> */
/* .container >> */
/* .col_1 >> */
#hero_sec > .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 30px;
}
#hero_sec > .container > .col_1{
    flex: 1 1 45%;
}
#hero_sec > .container > .col_1 > .heading{
    font-size: var(--large-heading-size);
    color: var(--heading-color);
    line-height: 60px;
    font-size: 45px;
}
#hero_sec > .container > .col_1 > .description{
    font-size: var(--default-paragraph-size);
    color: var(--primary-paragraph-color);
    line-height: 25px;

    margin-top: 35px;
    margin-bottom: 25px;
}
/* .col_1 << */
/* .col_2 >> */
#hero_sec > .container > .col_2{
    flex: 1 1 50%;
}
#hero_sec > .container > .col_2 > img{
    width: 100%;
}
/* .col_2 << */
/* .container << */
/* #hero-sec << */

/* #header_and_hero-sec << */




/* #about_sec >> */
/* .container >> */
/* .card >> */
#about_sec > .container{
    padding: 120px 30px;

    display: flex;
    flex-direction: column;
    gap: 40px;
}
#about_sec > .container > .card{
    box-shadow: 0px 0px 9px -6px black;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px 60px 120px;
    border-radius: 15px;
    gap: 120px;
}
#about_sec > .container > .card > .col_1 > .heading,
#about_sec > .container > .card_2 > .col_2 > .heading{
    font-size: var(--small-heading-size);
    font-weight: 600;
    color: var(--heading-color);
}
#about_sec > .container > .card > .col_1 > .description,
#about_sec > .container > .card_2 > .col_2 > .description{
    font-size: var(--default-paragraph-size);
    color: var(--secondary-paragraph-color);
    margin-top: 15px;
    line-height: 30px;
    font-family: var(--body-font);
}
/* .card << */
/* .container << */
/* #about_sec << */


/* #cta_sec >> */
/* .container >> */
#cta_sec > .container{
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .box >> */
#cta_sec > .container > .box{
    margin: 0 30px;
    padding: 60px 100px;
    text-align: center;
    box-shadow: 0px 0px 25px -15px gray;
    border-radius: 30px;
    background-color: white;

    transform: translateY(45%);
    margin-top: -175px;
}
#cta_sec > .container > .box > .heading{
    font-size: var(--medium-heading-size);
    margin-bottom: 35px;
}
/* .box << */
/* .container << */
/* #cta_sec << */
/* #main << */


/* #footer_sec >> */
#footer_sec{
    background-color: var(--very-dark-cyan);
    color: white;
    padding-top: 170px;
}
/* .container >> */

/* .row_1 >> */
#footer_sec > .container > .row_1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;

    padding: 60px;
}
#footer_sec > .container > .row_1 > .col{
    flex: 1 1 2%;
}

/* .col_1 >> */
#footer_sec > .container > .row_1 > .col_1{
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}
#footer_sec > .container > .row_1 > .col_1 > a > img{
    width: 250px;
    filter: brightness(0) invert(1);
}
#footer_sec > .container > .row_1 > .col_1 > p > i{
    color: white;
    margin-right: 25px;
    font-size: 18px;
}
#footer_sec > .container > .row_1 > .col_1 > p > span{
    color: white;
    font-size: 18px;
    font-weight: 300;
    font-family: var(--body-font);
}
/* .col_1 << */

/* .col_2 >> */
#footer_sec > .container > .row_1 > .col_2{
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}
#footer_sec > .container > .row_1 > .col_2 > a{
    display: inline-block;
    color: white;
    font-size: 18px;
    font-weight: 300;
}
/* .col_2 << */

/* .col_3 >> */
#footer_sec > .container > .row_1 > .col_3{
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}
#footer_sec > .container > .row_1 > .col_3 > a{
    display: inline-block;
    color: white;
    font-size: 18px;
    font-weight: 300;
}
/* .col_3 << */

/* .col_4 >> */
#footer_sec > .container > .row_1 > .col_4{
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
#footer_sec > .container > .row_1 > .col_4 > a{
    display: inline-block;
    border: 1px solid white;
    border-radius: 50%;
    overflow: hidden;
}
#footer_sec > .container > .row_1 > .col_4 > a > i{
    color: white;
    display: inline-block;
    font-size: 20px;
    padding: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
#footer_sec > .container > .row_1 > .col_4 > a:first-child > i{
    margin-left: 3px;
    width: 47px;
}
/* .col_4 << */

/* .row_1 << */


/* .row_2 >> */
#footer_sec > .container > .row_2{
    padding: 60px;
}
#footer_sec > .container > .row_2 > p{
    text-align: right;
    font-size: 18px;
    color: white;
    font-weight: 400;
}
/* .row_2 << */

/* .container << */
/* #footer_sec << */




/* Responsiveness >> */
/* max-width: 988px >> */
@media screen and (max-width: 988px){
    /* #main >> */
    /* #hero_sec >> */
    /* .container >> */
    #hero_sec > .container{
        flex-direction: column;
        gap: 70px;
        text-align: center;
    }
    /* .container << */
    /* #hero_sec << */

    /* #about_sec >> */
    /* .container >> */
    /* .card >> */
    #about_sec > .container > .card{
        flex-direction: column;
        padding: 50px 70px;
    }
    /* .col >> */
    #about_sec > .container > .card_1 > .col_2,
    #about_sec > .container > .card_3 > .col_2{
        order: -1;
    }
    /* .col << */
    /* .card << */
    /* .container << */
    /* #about_sec << */
    /* #main << */

    /* #footer_sec >> */
    /* .container >> */
    /* .row_1 >> */
    #footer_sec > .container > .row_1{
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 40px;
    }
    #footer_sec > .container > .row_1 > .col_1 > a > img{
        width: 180px;
    }
    #footer_sec > .container > .row_1 > .col_2{
        margin-bottom: -20px;
    }
    #footer_sec > .container > .row_1 > .col_4{
        align-self: center;
    }
    /* .row_1 << */

    /* .row_2 >> */
    #footer_sec > .container > .row_2{
        padding: 40px;
    }
    #footer_sec > .container > .row_2 > p{
        text-align: center;
        font-size: 16px;
    }
    /* .row_2 << */

    /* .container << */
    /* #footer_sec << */
}
/* max-width: 988px << */

/* max-width: 768px >> */
@media screen and (max-width: 768px){
    :root{
        /* heading size */
        --large-heading-size: 45px;
        --medium-heading-size: 40px;
        --small-heading-size: 35px;
        /* paragraph size */
        --default-paragraph-size: 16px;
    }

    /* #main >> */
    #header_and_hero_sec{
        background: url(../images/bg-hero-mobile.svg);
        background-color: var(--very-pale-cyan);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    /* #header >> */
    #header > .container > a > img{
        width: 90px;
    }
    #header > .container > .btn{
        font-size: 14px;
        padding: 10px 30px;
    }
    /* #header << */
    /* #hero_sec >> */
    /* .container >> */
    /* .container << */
    /* #hero_sec << */

    /* #about_sec >> */
    /* .container >> */
    /* .card >> */
    #about_sec > .container > .card{
        flex-direction: column;
        padding: 50px 50px;
        gap: 40px;
    }
    /* .card << */
    /* .container << */
    /* #about_sec << */

    /* #cta_sec >> */
    /* .container >> */
    /* .box >> */
    #cta_sec > .container > .box{
        padding: 60px 20px;
    }
    #cta_sec > .container > .box > .heading{
        font-size: 35px;
    }
    #cta_sec > .container > .box > .btn{
        font-size: 14px;
        padding: 20px 30px;
    }
    /* .box << */
    /* .container << */
    /* #cta_sec << */
    /* #main << */
}
/* max-width: 768px << */
/* Responsiveness << */