*{
    box-sizing: border-box;
    margin: 0;
}

body
{
    font-family: "Poppins";
    background: #ffffff url('img/bg-shape-lightblue.svg');
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}

/** Navigation **/
.nav-container
{
    background: #f9fbff;
}

.wrapper
{
    width: 1200px;
    margin: 0 auto;
}

nav
{
    display: flex;
    align-items: left;
    justify-content: space-between;
    height: 75px ;
}   
nav ul
{
    display: flex;

}

nav .logo
{
    position: absolute;
    right: 580px;
    bottom: 1%S;
}

nav h1
{
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 35px;
    line-height: 60px;
    text-transform: uppercase;
    color: #144D94;
    position: absolute;
    height: 44.41px;
    right: 950px;
    top: 20px;
    
}
nav ul a
{
    position: absolute;
    width: 116px;
    height: 44.41px;
    left: 1050px;
    top: 30px;
    background: #FFF72B;
    border-radius: 22.2057px;
    font-size: 20px;
    color: #144D94;
    text-decoration: none;
    border-radius: 173px;
    padding: 7px 31px;
    margin: 25px;
    display: inline-block;
    transition: 300ms;
    font-weight: 800;
} 

nav ul a:hover
{
    transform: translateY(-8px);
}

/* Header */
header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1
{
font-weight: 800;
font-size: 36px;
line-height: 54px;
text-transform: uppercase;
color: #144D94;
margin: 24px;
width: 650px;

}

header p
{
font-size: 20px;
font-weight: 500;
display: flex;
line-height: 30px;
align-items: center;
color: #4D4444;
width: 400px;
margin: 24px;
}

header a 
{
    font-size: 14px;
    font-weight: 800;
    color: #144D94;
    text-decoration: none;
    background: #FFF72B;
    border-radius: 25px;
    padding: 9px 18px;
    margin: 24px;
    display: inline-block;
    transition: 300ms;
}

header a:hover
{
    transform: translateY(-8px);
}

/*Social Icons*/
.contact-us-icons
{
    display: flex;
    align-items: center;
    margin: 10 20px;
}

.contact-us-icons a
{
    margin: 20px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: #144D94;
    padding: 20px 20px;
    align-items: center;
}

.contact-us-icons a:nth-of-type(1)
{
    margin-left: 4%;
}

.content-img img:hover
{
    transform: rotate(-6);
}