html {
    font-size: 100%;
    box-sizing: border-box;
}

*,*::before,*::after {
  box-sizing: inherit;
  font-family: 'Roboto';
}

body {
    margin: 0;
    padding: 0;
    font-family: "Public Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: #9698a6;
    line-height: 1.3;
    overflow-x: hidden;
   
}

@media screen and (min-width: 64em){
    body{
        font-size: 1.15rem;
        background-color: hsl(0%, 0%, 98%);
    }
    
}

.flex {
    display: flex;
}

.flex-jc-sb{
    justify-content: space-between;
}

.flex-jc-c {
    justify-content: center;
}

.flex-ai-c {
    align-items: center;

}

a,a:visited,a:hover {
    text-decoration: none;
    
}


h1, h2, h3 {
    margin-top: 0px;
    
}

.container {
    max-width: 77rem;
    margin: 0 auto;
    padding-top: 2.25rem;
    padding-right: 1.5rem;
    padding-bottom: 2.25rem;
    padding-left: 1.5rem;
    
}

nav{
    padding: 24px;
    z-index: 1;
}

.header__logo img {
    width: 5.5rem;
    height: 2.3rem;

}

.header__links a {
    font-size: 0.92rem;
    transition: colour 300ms ease-in-out;
    color: rgba(0, 70, 128, 0.966);
    

}
.header__links a:hover {
    color: black;
    font-style: bold;
    transition: colour 300ms ease-in-out;
    
}

.header__links a:not(:last-child) {
    margin-right: 32px ;

}

/* Mobile Menu */
.header__menu span{ 
    display: block;
    width: 26px;
    height: 2px;
    background-color: black;
}

.header__menu span:not(:last-child) {
    margin-bottom: 3px;
}

.button {
  position: relative;
  display: inline-block;
  padding: 0.875rem 2.1875rem;
  background: linear-gradient(to right,#9979f2,#f288db);
  border-radius: 30px;
  cursor: pointer;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  transition: opacity 300ms ease-in-out;
  overflow: hidden;

}

.header__cta {
    font-size: 0.875rem;
    color: white;
    font-style: bold;
    transition: colour 300ms ease-in-out;

}

.button2 {
    position: relative;
    display: inline-block;
    padding: 0.875rem 2.1875rem;
    background: linear-gradient(to right,#9979f2,#f288db);
    border-radius: 30px;
    cursor: pointer;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    transition: opacity 300ms ease-in-out;
    overflow: hidden;
    margin-top: 30px;
  
  }
  
  .header__cta2 {
      font-size: 0.875rem;
      color: white;
      font-style: bold;
      transition: colour 300ms ease-in-out;
  
  }


@media screen and (max-width: 64em) {
    .hide-for-mobile {
        display: none;
    
    }   
}


@media screen and (min-width: 64em) {
    .hide-for-desktop {
        display: none;
    }      
}

@media screen and (min-width: 64em) {
    .hero .container {
        display: flex;
        align-items: center;
        min-height: 40rem; 
    }  
}

.hero__cta {
    background-color: rgba(0, 70, 128, 0.966);
    color: white;
    border: none;
}

.hero__text3 {
    text-align: center;   
}
@media screen and (min-width: 64em) {
    .hero__text3 {
        flex: 2;
        order: 1;
        text-align: left;
        margin-left: 20px;
    } 
}
.hero__text3 h1 {
    font-weight: 300;
    color: black;
    line-height: 1.15;
    font-size: 2.31rem;
    margin-bottom: 1.5rem;
}
@media screen and (min-width: 64em){
    .hero__text3 h1 {
        font-size: 5rem;   
        color: rgba(0, 70, 128, 0.966);
    }    
}
.hero__text3 p {
    line-height: 1.6;
    margin-bottom: 2.25rem; 
    margin-top: 80px;  
    color: black;
}
.hero__image3 {
    position: relative;
    background-image: url(../images/intro-img.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 24.5rem;   
   
}
@media screen and (min-width: 40em) {
    .hero__image3 {
        min-height: 35rem;
        background-image: url(../images/intro-img.svg);
        background-position: center 60%;    
    }  
}
@media screen and (min-width: 64em) {
    .hero__image3 {
        flex: 3;
        order:2;
        height: 34rem;
        background-image: url(../images/intro-img.svg);
        background-size: 550px; 
    }   
}



    .background{
        position: absolute;
        top: 0;
        right: 0;
        height: 95%;
        z-index: -1;
            
    }


