/* common styles */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Work Sans', sans-serif;
}

.btn-white {
    padding: 20px 25px;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: #005FAC;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.heading-2 {
    font-size: 40px;
    font-weight: 700;
    color: #151414;
}

/* banner styles */
.banner-container {
    background-image: url("../images/banner/banner3.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    margin-right: auto;
    display: flex;
    justify-content: end;
    align-items: center;
}

.banner-text-container {
    max-width: 40%;
    color: white;
    text-align: right;
    margin-right: 150px;
}

.banner-title>h1 {
    font-size: 65px;
    font-weight: 700;
}

.banner-text {
    margin: 10px 0px 20px 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

/* main section - failures of previous year */
.failures-container {
    display: flex;
    justify-content: space-around;
    height: 100vh;
    align-items: center;
    padding: 0px 100px;
}

.failure-img>img {
    width: 450px;
}

.failure-text {
    width: 36%;
}

.failure-text>h2 {
    margin-bottom: 20px;
}

.failure-text>p,
.failure-text li {
    color: #444343;
    line-height: 26px;
    font-size: 16px;
}

.failure-text>p {
    margin-bottom: 15px;
}

.failure-text>ul {
    list-style-type: none;
}

.failure-text img {
    height: 15px;
    width: 15px;
    margin-right: 10px;
}

.failure-text li {
    line-height: 38px;
}

/* my plans section */
.my-plans-container {
    height: 100vh;
    color: #151414;
    padding: 80px 0px 200px 0px;
}

.my-plans-container>h2 {
    text-align: center;
}

.plan-module-container {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 60px 100px 150px;

}

.plan-module>h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 10px 0;
}

.plan-module>p {
    color: #737272;
    font-size: 20px;
    font-weight: 500;
}

.my-plan-foot {
    width: 80%;
    border-radius: 5px;
    height: 300px;
    margin: 0 auto;
    background-image: url("../images/gradient1.png"), url("../images/watch.png");
    background-position: left top, right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.my-plan-text {
    margin-left: 60px;
}

.my-plan-text>h2 {
    color: white;
}

.my-plan-text button {
    margin-top: 20px;
}

/* footer styles */
footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70vh;
    background-color: #151414;
    color: white;
    padding: 0px 100px;
}

.future,
.subscribe {
    max-width: 42%;
}

.future>h2 {
    color: #F8F8F8;
    font-size: 45px;
    font-weight: 700;
}

.future>p {
    line-height: 26px;
    margin-top: 16px;
}

.future-icon-container {
    margin-top: 32px;
    display: flex;
    gap: 15px;
}

.subscribe>h3 {
    font-size: 25px;
    font-weight: 600;
}

.subscribe > input{
    display: block;
    color: #F3F3F3;
    background-color: transparent;
    height: 64px;
    width: 325px;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid white;
    border-radius: 8px;
    padding-left: 20px;
    margin: 30px 0px 15px;
}

.subscribe > input:focus{
    outline: none;
}

.subscribe > button{
    background-color: #005FAC;
    color:white;
}