*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    /* 1rem = 16px */
    /* 10px / 16px = 0.625 = 62.5% */
    /* 1rem = 10px */
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    font-family: "Rubik", sans-serif;
    line-height: 1;
    font-size: 1.8rem;
    font-weight: 400;
    color: #555555;
}


.container{
    /* 1140px */
    max-width: 120rem;
    padding: 0 3.2rem;
    margin: 0 auto;
}

.grid{
    display: grid;
    row-gap: 9.6rem;
    column-gap: 6.4rem;
}

.grid:not(:last-child){
    margin-bottom: 9.6rem;
}

.grid-cols-2{
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3{
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4{
    grid-template-columns: repeat(4, 1fr);
}


.heading-primary, .heading-secondary, .heading-tertiary{
    font-weight: 700;
    color: #333;
    letter-spacing: -0.5px;
}

.heading-primary{
    font-size: 5.2rem;
    line-height: 1.05;
    line-height: 54.6px;
    margin-bottom: 3.2rem;
}

.heading-secondary{
    font-size: 4.4rem;
    line-height: 52.8px;
    margin-bottom: 9.6rem;
}

.heading-tertiary{
    font-size: 3rem;
    line-height: 36px;
    margin-bottom: 3.2rem;
}

.subheading {
    color: #cf711f;
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    margin-bottom: 1.6rem;
}

.strong{
    font-weight: 500;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    padding: 0 3.2rem;
    line-height: 5.2rem;
    border-radius: 9px;
    transition: all 0.3s ease-in;

}

.btn-full {
    background-color: #e67e22;
    color: #fff;
}

.btn-full:hover {
    background-color: #cf711f;
}

.btn-outline {
    background-color: #fff;
    color: #555;
}

.btn-outline:hover {
    background-color: #fdf2e9;
    box-shadow: inset 0 0 0 3px #fff;
}


.margin-right-sm{
    margin-right: 1.6rem!important;
}

.text-center{
    text-align: center;
}

.link{
    display: inline-block;
    color: #e67e22;
    text-underline-offset: 6px;
    transition: all 0.3s ease-in;
}
.link:hover{
    text-decoration: none;
}


.list{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.list-item{
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.list-icon{
    width: 3rem;
    height: 3rem;
    color: #e67e22;
}