html {
	font-size: 62.5%;
}
html body {
	font-family: 'Oracle Sans', Arial;
	font-size: 1.4rem;
  color: #000000;
}

body,
div,
section,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
	margin: 0px;
	padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

strong {
	font-weight: normal;
	font-family: 'Oracle Sans Bold';
}

.flex{
    display: flex;
}

.container{
    width: 1500px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
}
.wrap{
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}

header{
    background-image: url(images/header-strip.png), url(images/header-bg.jpg);
    background-position: center top, center;
    background-repeat: repeat-x, no-repeat;
    background-size: auto, cover;
    padding-top: 34px;
    padding-bottom: 36px;

    background-color: #E7F2F5;

    .wrap{
        display: flex;
        gap: 43px;
        align-items: center;
    }
    .header-left{
        width: 570px;
        max-width: 100%;
    }
    .header-left .ons-logo{
        height: 40px;
        margin-bottom: 18px;
    }
    .header-left h1{
        color: #0B171F;
        font-family: "Oracle Sans Semi Bold";
        font-size: 7rem;
        line-height: 0.98em;
        margin-bottom: 11px;
    }
    .header-left p{
        color: #161513;
        font-family: "Oracle Sans Lite";
        font-size: 1.8rem;
        line-height: 1.11em;
        margin-bottom: 32px;
    }

    .form-wrap{
        width: 339px;
        max-width: 100%;
        background-color: #ffffff;
        padding: 20px 30px;
        border-radius: 15px;
        box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.20);
    }
}

main{
    background-color: #FBF9F8;
}

.content1{
    padding-top: 76px;
    padding-bottom: 76px;
    h2{
        color: #0D171A;
        text-align: center;
        font-family: "Oracle Sans Semi Bold";
        font-size: 4rem;
        margin-bottom: 28px;
    }
    .items{
        gap: 25px;
    }
    .items > div{
		text-align: center;
        flex: 1;
        border-radius: 7px;
        background: #FFF;
        box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
        padding: 32px 30px 16px;
    }
    img{
        margin: 0 auto 10px;
    }
    h3{
        color: #000;
        font-family: "Oracle Sans Semi Bold";
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    p{
        color: #000;
        font-family: "Oracle Sans Lite";
        font-size: 1.5rem;
        line-height: 1.46em;
    }
}

.content2{
    padding-bottom: 76px;
    h2{
        color: #0D171A;
        text-align: center;
        font-family: "Oracle Sans Semi Bold";
        font-size: 4rem;
        margin-bottom: 28px;
    }
    .flex{
        gap: 35px;
        align-items: flex-start;
    }
    .accordion{
        flex: 1;
    }
    details{
        padding: 24px 0;
        border-bottom: 1px solid #E4E1DD;
		position: relative;
        margin-bottom: 8px;
    }
    details:after{
        content: '';
        background-image: url(images/chevron.png);
        background-repeat: no-repeat;
        background-position: 0px -9px;
        width: 16px;
        height: 9px;
        display: block;
        position: absolute;
        right: 0;
        top: 33px;
        z-index: 0;
    }
    details[open]:after{
        background-position: 0px 0px;
    }
    summary{
        list-style-type: none;
        background-repeat: no-repeat;
        background-position: center left;
        position: relative;
        z-index: 1;
        color: #0D171A;
        font-family: "Oracle Sans Semi Bold";
        font-size: 2.0rem;
    }
    summary:hover{
        cursor: pointer;
    }
    details[open] summary{
        padding-left: 34px;
    }
    details:nth-child(1):before{
        content: url(images/acc1.png) url(images/acc2.png) url(images/acc3.png) url(images/acc4.png) url(images/acc5.png);
        display: none;
        
    }
    details:nth-child(1)[open] summary{
        background-image: url(images/acc1.png);
    }
    details:nth-child(2)[open] summary{
        background-image: url(images/acc2.png);
    }
    details:nth-child(3)[open] summary{
        background-image: url(images/acc3.png);
    }
    details:nth-child(4)[open] summary{
        background-image: url(images/acc4.png);
    }
    details:nth-child(5)[open] summary{
        background-image: url(images/acc5.png);
    }
    img{
        flex: 2;
    }
    details p{
        color: #0D171A;
        font-size: 1.6rem;
        margin-top: 8px;
    }
}

@media only screen and (max-width: 820px) {
    .content2 {
        details p {
            margin-bottom: 24px;
        }
        .dashboard {
            margin-left: auto;
            margin-right: auto;
        }
    }
}

.content3{
    padding-bottom: 76px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    h2{
        color: #0D171A;
        text-align: center;
        font-family: "Oracle Sans Semi Bold";
        font-size: 4rem;
        margin-bottom: 36px;
    }
    .flex{
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 56px;
    }
    img{
        height: 40px;
    }
    a{
        padding: 18px 20px;
        color: #fff;
        border-radius: 6px;
        background-color: #E18212;
        font-size: 1.8rem;
        font-family: "Oracle Sans Semi Bold";
		text-align: center;
    }
}

footer{
    background-image: url(images/footer-bg.jpg);
    background-repeat: repeat-x;
    color: #ffffff;
    padding-top: 36px;
    padding-bottom: 36px;
    font-size: 1.4rem;
    font-family: "Oracle Sans Lite";
    .flex{
        justify-content: space-between;
    }
}

.form-header h3 {
	color: #2C5266;
	font-family: Georgia;
	font-size: 2.0rem;
	font-style: italic;
	font-weight: 700;
	margin-bottom: 5px;
}

.form-header p {
	color: #000;
	font-size: 1.4rem;
	margin-bottom: 15px;
}

.form-wrapper form fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	min-inline-size: unset;
}

.form-list {
	color: #312D2A;
}

.form-item {
	margin-bottom: 15px;
	position: relative;
}

.form-item .form-input {
	z-index: 2;
	position: relative;
}

.form-item .form-input input[type="text"],
.form-item .form-input input[type="email"],
.form-item .form-input input[type="phone"],
.form-item .form-input select {
	height: 35px;
	background-color: #FBF9F8;
	border: none;
	border-radius: 0;
	padding: 5px 10px;
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.15em;
	font-family: 'Oracle Sans';
	outline: none;
}

.form-item .form-input input[type="text"]:focus,
.form-item .form-input input[type="email"]:focus,
.form-item .form-input input[type="phone"]:focus,
.form-item .form-input select:focus {
	outline: none;
}

.form-caption {
	font-size: 1.4rem;
	line-height: 1.15em;
	color: #000000;
	position: absolute;
	padding: 0 2px;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	opacity: 0.7;
	z-index: 3;
	pointer-events: none;
}

.opt-in-section {
	font-size: 1.1rem;
	color: #616161;
}

.opt-in-section * {
	font-size: 1.1rem;
	color: #616161;
	line-height: 1.3em;
}

.form-submit-btn input[type="submit"] {
	border-radius: 6px;
	background: #E18212;
	color: #ffffff;
	display: inline-block;
	width: 100%;
	border: none;
	padding: 10px;
	margin-top: 15px;
	font-size: 14px;
	font-family: 'Oracle Sans Semi Bold';
}

@media only screen and (max-width: 1030px) {
	.container{
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media only screen and (max-width: 820px) {
	.container{
		padding-left: 15px;
		padding-right: 15px;
	}
	header .wrap{
		flex-direction: column;
	}
	header .form-wrap{
		min-width: 80%;
	}
	.items{
		flex-direction: column;
	}
	.content2 .flex{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.accordion{
		width: 100%;
	}
	.content3 .flex{
		flex-wrap: wrap;
		gap: 15px;
		align-items: center;
		justify-content: space-evenly;
	}
	footer{
		padding: 10px 0;
		text-align: center;
	}
    footer .flex{
        flex-direction: column;
        gap: 5px;
		
    }
}
.dashboard{
    display: none;
}

header .form-2-col{
	width: 370px;
}
.form-2-col .form-list{
	display: grid;
	gap: 0px 8px;
	grid-template-columns: 1fr 1fr;
}
.content1-left-align .items > div{
	text-align: left;
	img{
		margin: 0 0 10px;
	}
}