@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

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

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: "DM Sans", sans-serif;

    background: #efefef;
}

.container {
    max-width: 112rem;
    margin: 0 auto;
}

.header {
    /*max-width: 1200px;*/
    max-width: 112rem;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 6rem;
}

/*.header a:link, .header a:visited {
    text-decoration: none;
}*/

/*this has to be part of css resets*/
a:link,
a:visited {
    text-decoration: none;
}

.logo {
    width: 24rem;
}

.main-nav {
    font-size: 2rem;
    font-weight: 300;
}

.main-nav a:link, .main-nav a:visited {
    color: #000;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 3.2rem;
}

.nav-cta {
/*    font-size: 2.4rem;
    font-weight: 400;*/
}

.cta:link, .cta:visited {
    display: inline-block;
    padding: 12px 30px;
    background: #1E59F4;
    color: #fff;
    border-radius: 3.2rem;

    font-size: 2.4rem;
    font-weight: 400;
}


/*================
HERO SECTION
=================*/
.hero-section {
    /*height: 100vh;*/
    height: 50vh;

    position: relative;
}

.hero-text-box {

  /*  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/

    padding: 8rem 0 2rem;


}

.headline {
    max-width: 72rem;
    margin: 0 auto 2rem;

    font-size: 5.8rem;
    text-align: center;
    line-height: 1.03;
    font-weight: 800;

}

.subheadline {
    max-width: 60rem;
    margin: 0 auto 2rem;

    font-size: 1.8rem;
    line-height: 1.03;

    text-align: center;

}

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

.hero-div {
    background: #D9D9D9;
    height: 30rem;

    margin-bottom: 4rem;

    /*position: relative;*/
}

.hero-highlights {
    display: flex;
    justify-content: space-between;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    gap: 2rem;
}

.icon-img {
    height: 4rem;
}

.icon-text {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
}