@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;700;800&display=swap');
:root {
    --primary-color: #00A99D;
    --primary-dark: #028077;
    --secondary-color: #F79623;
    --background-color: #f2f2f2;
    --footer-bg: #323232;
    --text: #323232;
    --black: #000;
    --white: #fff;
    --facebook-blue: #3C5A9A;
    --youtube-red: #D8322E;
    --twitter-blue: #4086CC;
    --linkedIn-blue: #0072B1;
    --facebook-blue-hover: #273d6d;
    --youtube-red-hover: #a71e1c;
    --twitter-blue-hover: #2c66a0;
    --linkedIn-blue-hover: #015785;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #0fa044;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    transition-duration: .3s;
    list-style-type: none;
    border: none;
    outline: none;
    font-family: 'Mulish', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    font-size: 16px;
}

.con {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 3em 0;
}

p {
    font-size: 1.1em;
    line-height: 1.5;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .con {
        width: 85%;
    }
}

@media screen and (max-width: 767px) {
    .con {
        width: 90%;
    }
    section {
        padding: 2em 0;
    }
}


/* start of  button styles  */

.btn {
    width: max-content;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2rem;
    border: 2px solid transparent;
    font-size: 20px;
}

.btn.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn.btn-transparent {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn.btn-transparent:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn.btn-white {
    background-color: white;
    color: var(--text);
    border-color: var(--white);
}

.btn.btn-white:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}


/* end of  button styles  */


/* start of the hero section styles  */

.hero {
    width: 100%;
    height: auto;
    border-bottom: 20px solid var(--primary-color);
}

.hero .logo {
    width: 100%;
    height: 85px;
}

.hero .logo img {
    height: 100%;
    width: auto;
}

.hero .hero-sub {
    margin: 5rem 0;
    display: flex;
}

.hero .hero-sub .sec-1,
.hero .hero-sub .sec-2 {
    width: 50%;
    height: inherit;
    display: grid;
    align-content: center;
    justify-content: flex-start;
}

.hero .hero-sub .sec-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero .hero-sub .sec-1 h1 {
    font-size: 2.7em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero .hero-sub .sec-1 p {
    font-size: 22px;
    color: var(--text);
    margin-bottom: 3rem;
}

.hero .hero-sub .sec-1 .btns {
    display: flex;
    justify-content: space-between;
}

.hero .hero-sub .sec-1 .btns .btn {
    width: 49%;
}

.hero .hero-sub .sec-2 img {
    width: 80%;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hero .hero-sub {
        flex-wrap: wrap;
    }
    .hero .hero-sub .sec-1,
    .hero .hero-sub .sec-2 {
        width: 100%;
    }
    .hero .hero-sub .sec-2 {
        justify-content: center;
        margin-top: 4rem;
    }
    .hero .hero-sub .sec-1 h1 {
        font-size: 50px;
    }
    .hero .hero-sub .sec-1 p {
        font-size: 25px;
    }
    .hero .hero-sub .sec-2 img {
        width: 60%;
    }
}

@media screen and (max-width: 767px) {
    .hero .logo {
        height: 70px;
    }
    .hero .hero-sub {
        margin: 3rem 0;
        flex-wrap: wrap;
    }
    .hero .hero-sub .sec-1,
    .hero .hero-sub .sec-2 {
        width: 100%;
    }
    .hero .hero-sub .sec-2 {
        justify-content: center;
    }
    .hero .hero-sub .sec-1 h1 {
        font-size: 38px;
    }
    .hero .hero-sub .sec-1 p {
        font-size: 20px;
        margin-bottom: 2rem;
    }
    .hero .hero-sub .sec-1 .btns {
        flex-wrap: wrap;
    }
    .hero .hero-sub .sec-1 .btns .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    .hero .hero-sub .sec-2 img {
        width: 80%;
        margin-top: 3rem;
    }
}


/* end of the hero section styles  */


/* start of home section 2 styles  */

.home-sec-2 {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 5rem 0;
}

.heading {
    font-size: 2em;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.home-sec-2 p {
    width: 50%;
    font-size: 1.1em;
    margin: 0 auto;
    margin-bottom: 5rem;
}

.home-sec-2 .img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    background-color: var(--primary-color);
    position: relative;
    transform: translate(10px, 10px);
}

.home-sec-2 .img img {
    width: 100%;
    position: relative;
    transform: translate(-20px, -20px);
}

.home-sec-2 .abstract-bg {
    position: absolute;
    left: 10%;
    top: 15%;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .home-sec-2 p {
        width: 100%;
    }
    .home-sec-2 .img {
        width: 100%;
    }
    .heading {
        font-size: 40px;
    }
}

@media screen and (max-width: 767px) {
    .home-sec-2 p {
        width: 100%;
    }
    .home-sec-2 .img {
        width: 90%;
    }
    .home-sec-2 .img {
        transform: translate(5px, 5px);
    }
    .home-sec-2 .img img {
        transform: translate(-10px, -10px);
    }
    .heading {
        font-size: 30px;
    }
}


/* end of home section 2 styles  */


/* start of the share section styles  */

.share {
    width: 100%;
    height: auto;
    padding: 5rem 0;
    text-align: center;
    background-image: url('../images/bg/share.png');
    background-color: #323232;
    background-blend-mode: overlay;
    color: var(--white);
    background-position: center;
    display: grid;
    align-content: center;
}

.share h3 {
    margin-bottom: 2rem;
}

.share .icons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.share .icons a {
    display: block;
    margin: 0 .5rem;
    width: 70px;
    height: auto;
}

.share .icons a img {
    width: 100%;
}

.share .icons a:hover {
    position: relative;
    transform: scale(1.1);
}

.share .icons a i {
    width: inherit;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {}

@media screen and (max-width: 767px) {
    .share h3 {
        font-size: 40px;
    }
    .share .icons {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .share .icons a {
        display: block;
        margin: 0;
        width: 70px;
        height: auto;
    }
    .share .icons a img {
        width: inherit;
    }
}


/* end of the share section styles  */


/* start of the scope section styles  */

.scope {
    padding: 0;
}

.scope h1 {
    margin-top: 2em;
    text-align: center;
}

.scope p {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 5rem;
    font-size: 1.1em;
}

.scope img {
    width: 100%;
    transform: translateY(10px);
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .scope p {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .scope p {
        width: 100%;
    }
    .scope img {
        transform: translateY(5px);
    }
}


/* end of the scope section styles  */


/* start of the result section styles  */

.results {
    width: 100%;
    height: auto;
    padding: 0;
    background-color: var(--primary-color);
}

.results .heading {
    color: var(--white);
    text-align: center;
    padding-top: 3em;
}

.results p {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.results .results-grid {
    width: fit-content;
    min-width: 1000px;
    background-color: var(--white);
    margin: 0 auto;
    margin-top: 4em;
    padding: 4em 7em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.results .results-grid .result {
    width: 100%;
    text-align: center;
    display: grid;
    align-content: center;
    height: 200px;
}

.results .results-grid .result:nth-child(odd) {
    border-right: 1px solid var(--black);
}

.results .results-grid .result:nth-child(3) {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}

.results .results-grid .result:nth-child(4) {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}

.results .results-grid .result h1 {
    font-size: 2.2em;
    color: var(--text);
    margin-bottom: 1rem;
}

.results .results-grid .result p {
    color: var(--text);
}

.results .results-grid .result p span {
    font-weight: 600;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .results p {
        width: 100%;
    }
    .results .results-grid {
        padding: 2em;
        min-width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }
    .results .results-grid .result:nth-child(odd) {
        border-right: none;
    }
    .results .results-grid .result:nth-child(3) {
        border-top: none;
        border-bottom: none;
    }
    .results .results-grid .result:nth-child(4) {
        border-top: none;
        border-bottom: none;
    }
    .results .results-grid .result {
        border-bottom: 1px solid var(--black) !important;
    }
    .results .results-grid .result:last-child {
        border-bottom: none !important;
    }
}

@media screen and (max-width: 767px) {
    .results p {
        width: 100%;
    }
    .results .results-grid {
        padding: 1rem;
        min-width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }
    .results .results-grid .result:nth-child(odd) {
        border-right: none;
    }
    .results .results-grid .result:nth-child(3) {
        border-top: none;
        border-bottom: none;
    }
    .results .results-grid .result:nth-child(4) {
        border-top: none;
        border-bottom: none;
    }
    .results .results-grid .result {
        border-bottom: 1px solid var(--black) !important;
    }
    .results .results-grid .result:last-child {
        border-bottom: none !important;
    }
    .results .results-grid .result h1 {
        font-size: 35px;
        color: var(--text);
        margin-bottom: 2rem;
    }
    .results .results-grid .result p {
        color: var(--text);
    }
    .results .results-grid .result p span {
        font-weight: 600;
    }
}


/* end of the result section styles  */


/* start of the footer styles  */

footer {
    width: 100%;
    height: auto;
    background-color: var(--footer-bg);
    margin: 0;
}

footer .logo {
    width: 100%;
    height: 100px;
}

footer .logo img {
    height: 100%;
    width: auto;
}

footer .footer-sub {
    padding: 5rem 0;
    display: flex;
    color: var(--white);
}

footer .footer-sub .sec-1,
footer .footer-sub .sec-2 {
    width: 50%;
    height: inherit;
    display: grid;
    align-content: center;
    justify-content: flex-start;
}

footer .footer-sub .sec-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

footer .footer-sub .sec-1 h1 {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 1rem;
}

footer .footer-sub .sec-1 p {
    font-size: 22px;
    margin-bottom: 3rem;
}

footer .footer-sub .sec-1 .btns {
    display: flex;
    justify-content: space-between;
}

footer .footer-sub .sec-1 .btns .btn {
    width: 49%;
}

footer .footer-sub .sec-2 img {
    width: 80%;
}

footer .btn.btn-transparent {
    border-color: var(--white);
    color: var(--white);
}

footer .btn.btn-transparent:hover {
    color: var(--text);
    background-color: var(--white);
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    footer .footer-sub {
        flex-wrap: wrap;
    }
    footer .footer-sub .sec-1,
    footer .footer-sub .sec-2 {
        width: 100%;
    }
    footer .footer-sub .sec-2 {
        justify-content: center;
        margin-top: 4rem;
    }
    footer .footer-sub .sec-1 h1 {
        font-size: 50px;
    }
    footer .footer-sub .sec-1 p {
        font-size: 25px;
    }
    footer .footer-sub .sec-2 img {
        width: 60%;
    }
}

@media screen and (max-width: 767px) {
    footer .logo {
        height: 70px;
    }
    footer .footer-sub {
        padding: 3rem 0;
        flex-wrap: wrap;
    }
    footer .footer-sub .sec-1,
    footer .footer-sub .sec-2 {
        width: 100%;
    }
    footer .footer-sub .sec-2 {
        justify-content: center;
    }
    footer .footer-sub .sec-1 h1 {
        font-size: 38px;
    }
    footer .footer-sub .sec-1 p {
        font-size: 20px;
        margin-bottom: 2rem;
    }
    footer .footer-sub .sec-1 .btns {
        flex-wrap: wrap;
    }
    footer .footer-sub .sec-1 .btns .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    footer .footer-sub .sec-2 img {
        width: 80%;
        margin-top: 3rem;
    }
}


/* end of the footer styles  */


/* start of the success hero styles  */

.success-hero {
    width: 100%;
    height: auto;
    background-image: url('../images/bg/success-intro.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 4em 0 10em 0;
    border-bottom: 20px solid var(--primary-color);
}

.success-hero .logo {
    width: 100%;
    height: fit-content;
}

.success-hero .logo img {
    height: 70px;
    width: auto;
}

.success-hero h1 {
    font-size: 3.3em;
    color: var(--white);
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.success-hero p {
    font-size: 2em;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.success-hero p span {
    text-transform: uppercase;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .success-hero h1 {
        font-size: 3em;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .success-hero {
        padding: 1em 0 10em 0;
    }
    .success-hero .logo img {
        height: 50px;
        width: auto;
    }
    .success-hero h1 {
        font-size: 2em;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    .success-hero p {
        font-size: 1.2em;
    }
}


/* end of the success hero styles  */


/* start of the score section  */

.score {
    width: 100%;
    height: fit-content;
    margin: 0;
    position: relative;
    padding-bottom: 3em;
    background-color: var(--white);
}

.score-sub {
    width: 45vw;
    height: auto;
    background-color: var(--white);
    box-shadow: 0px 0px 64px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    margin-top: -10em;
    padding: 3em 5em;
    position: relative;
    z-index: 2;
}

.score-sub table {
    width: 100%;
}

.score-sub table tr {
    border-bottom: 1px solid var(--black) !important;
    font-size: 1.4em;
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 1rem 0 !important;
}

.score-sub table tr span {
    font-size: 1.4em;
    text-align: center;
    width: 1em;
    height: auto;
    display: inline-flex;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
}

.score-sub table tr:first-child {
    border-top: 1px solid var(--black);
}

.score-sub table tr :last-child {
    text-align: right;
}

.score-sub table tr :last-child span {
    color: var(--primary-color);
    display: inline-block;
    margin-left: .5rem;
    font-weight: 400;
}

.score .abstract-bg {
    position: absolute;
    left: 10%;
    top: 30%;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .score-sub {
        width: 100%;
        margin-top: -10em;
    }
}

@media screen and (max-width: 767px) {
    .score-sub {
        width: 100%;
        margin-top: -12em;
        padding: 1rem;
    }
    .score-sub table tr {
        font-size: 20px;
        padding: .5rem !important;
        grid-template-columns: 1fr;
    }
    .score-sub table tr td:last-child {
        margin-top: .5rem;
        display: flex;
        justify-content: space-between;
    }
    .score-sub table tr span {
        width: fit-content;
        margin-right: .2rem !important;
        text-align: left !important;
    }
}


/* end of the score section  */


/* start of the person section styles  */

.person {
    background-color: var(--white);
    position: relative;
}

.person .con {
    display: flex;
    flex-wrap: wrap;
}

.person .sec-1 {
    width: 50%;
    display: grid;
    align-content: center;
    justify-content: flex-start;
}

.person .sec-2 {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.person h1 {
    font-size: 2.5em;
    font-weight: 400;
    margin-bottom: 1em;
}

.person h1 span {
    font-weight: 600;
}

.person h1 .highlighted {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    width: max-content;
    padding: .5rem 1rem;
}

.person .sec-1 p {
    width: 80%;
}

.person .sec-2 img {
    width: 100%;
}

.person .abstract-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(50%);
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .person .sec-1 {
        width: 100%;
        margin-bottom: 1em;
    }
    .person .sec-2 {
        width: 100%;
        justify-content: center;
    }
    .person .sec-1 p {
        width: 100%;
    }
    .person .sec-2 img {
        width: 80%;
    }
}

@media screen and (max-width: 767px) {
    .person .sec-1 {
        width: 100%;
        margin-bottom: 1em;
    }
    .person .sec-2 {
        width: 100%;
        justify-content: center;
    }
    .person .sec-1 h1 {
        font-size: 2em;
        line-height: 1.5;
    }
    .person .sec-1 h1 .highlighted {
        display: inline;
    }
    .person .sec-1 p {
        width: 100%;
    }
    .person .sec-2 img {
        width: 100%;
    }
}


/* end of the person section styles  */


/* start of occupations styles   */

.occupations {
    width: 100%;
    height: fit-content;
    background-color: var(--primary-color);
    position: relative;
}

.occupations h1 {
    font-size: 2.5em;
    font-weight: 400;
    margin-bottom: 1em;
    color: var(--white);
}

.occupations h1 span {
    font-weight: 600;
}

.occupations h1 .highlighted {
    display: inline-block;
    color: var(--primary-color);
    background-color: var(--white);
    width: max-content;
    padding: .5rem 1rem;
}

.occupations .flex {
    display: flex;
    flex-wrap: wrap;
}

.occupations .sec-1 {
    width: 50%;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.occupations .sec-1 img {
    width: 100%;
}

.occupations .sec-2 {
    width: 50%;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.occupations .sec-2 ul li {
    list-style-type: initial;
    font-size: 22px;
    margin-bottom: .3rem;
}

.occupations .abstract-bg {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .occupations .sec-1 {
        width: 100%;
        margin-bottom: 5em;
    }
    .occupations .sec-2 {
        width: 100%;
        justify-content: flex-start;
    }
    .occupations .sec-2 ul li {
        font-size: 30px;
        margin-left: 1rem;
        margin-bottom: .3rem;
    }
    .occupations .abstract-bg {
        max-width: 90vw;
    }
}

@media screen and (max-width: 767px) {
    .occupations .sec-1 {
        width: 100%;
        margin-bottom: 3em;
    }
    .occupations .sec-2 {
        width: 100%;
        justify-content: flex-start;
    }
    .occupations .sec-2 ul li {
        font-size: 1.2em;
        margin-left: 1rem;
        margin-bottom: .3rem;
    }
    .occupations h1 {
        font-size: 2em;
        line-height: 1.5;
    }
    .occupations .abstract-bg {
        max-width: 90vw;
    }
}


/* end of occupations styles   */


/* start of training programs styles  */

.training-programs {
    background-color: var(--white);
}

.training-programs h1 {
    font-size: 3em;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text);
    text-align: center;
}

.training-programs h1 span {
    font-weight: 600;
}

.training-programs h1 .highlighted {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    width: max-content;
    padding: .5rem 1rem;
}

.training-programs p {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 3em;
}

.training-programs .program-grid {
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
}

.program-card {
    width: 100%;
    max-width: 100%;
    background-color: #fbfbfb;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.17);
    border-radius: 16px;
    padding: 2rem;
}

.program-card .name {
    font-size: 1.6em;
    color: var(--text);
    font-weight: 700;
}

.program-card .host {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: .5rem;
    color: var(--primary-color);
    font-size: 16px;
}

.program-card .host img {
    height: 30px;
    width: auto;
    margin-right: 1rem;
}

.program-card hr {
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border: none;
    margin: 1rem 0;
}

.program-card .contact {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.program-card .contact span {
    color: var(--text);
    font-size: 1em;
}

.program-card .contact img {
    width: 30px;
    margin-right: .5rem;
}

.program-card p {
    width: 100%;
    font-size: 1.2em;
    text-align: left;
    margin: 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.program-card a {
    display: block;
    width: max-content;
    margin-top: 1rem;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    padding: .5rem 1rem;
}

.program-card a:hover {
    background-color: var(--primary-dark);
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .training-programs .program-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
    }
    .program-card {
        padding: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .training-programs h1 {
        font-size: 2em;
    }
    .training-programs p {
        width: 100%;
        margin-bottom: 2em;
    }
    .training-programs .program-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1em;
    }
    .program-card {
        padding: 1rem;
    }
    .program-card .name {
        font-size: 1.5em;
        color: var(--text);
        font-weight: 700;
    }
}


/* end of training programs styles  */


/* start of the personality section styles  */

.personality {
    width: 100%;
    height: auto;
    background-color: var(--primary-color);
    position: relative;
}

.personality h1 {
    color: var(--white);
    font-size: 50px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 1rem;
}

.personality p {
    color: var(--white);
    width: 60%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3em;
}

.personality .flex {
    display: flex;
    flex-wrap: wrap;
}

.personality .sec-1 {
    width: 50%;
    height: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.personality .sec-1 img {
    width: 100%;
}

.personality .sec-2 {
    width: 50%;
    height: inherit;
    display: grid;
    justify-content: center;
    align-content: center;
}

.personality .sec-2 .personalities {
    width: 350px;
    height: auto;
}

.personality .sec-2 .personalities .item {
    width: 100%;
    height: max-content;
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 25px;
    padding: 1rem 0;
    border-bottom: 1px solid var(--white);
    text-transform: capitalize;
}

.personality .sec-2 .personalities .item img {
    width: 40px;
    margin-right: 1rem;
}

.personality .abstract-bg {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .personality h1 {
        color: var(--white);
        font-size: 50px;
        text-align: center;
        font-weight: 400;
        margin-bottom: 1rem;
    }
    .personality p {
        width: 100%;
    }
    .personality .sec-2 {
        justify-content: flex-end;
    }
    .personality .sec-2 .personalities {
        width: fit-content;
    }
    .personality .abstract-bg {
        max-width: 90vw;
    }
}

@media screen and (max-width: 767px) {
    .personality h1 {
        font-size: 40px;
    }
    .personality p {
        width: 100%;
        margin-bottom: 2em;
    }
    .personality .sec-1 {
        width: 100%;
        justify-content: center;
    }
    .personality .sec-2 {
        width: 100%;
    }
    .personality .sec-2 .personalities {
        width: 300px;
    }
    .personality .sec-2 .personalities .item {
        font-size: 1.2em;
    }
    .personality .sec-2 .personalities .item img {
        width: 30px;
        margin-right: .5rem;
    }
    .personality .abstract-bg {
        max-width: 90vw;
    }
}


/* end of the personality section styles  */


/* start of the message section   */

.message-section {
    width: 100%;
    height: auto;
    background-color: var(--footer-bg);
    position: relative;
}

.message-section .logo {
    text-align: center;
    margin-bottom: 2em;
}

.message-section .logo img {
    width: 150px;
    margin: 0 auto;
}

.message-section form {
    width: 60%;
    margin: 0 auto;
}

form input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background-color: var(--white);
    color: var(--text);
    margin-bottom: 1rem;
    padding: 0 1rem;
    font-size: 1.3em;
}

form textarea {
    width: 100%;
    border-radius: 5px;
    background-color: var(--white);
    color: var(--text);
    margin-bottom: 1rem;
    padding: 1rem;
    font-size: 1.3em;
}

form button {
    width: 100% !important;
    cursor: pointer;
    border-radius: 5px;
}

.message-section form .flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.message-section form .flex input {
    width: 49%;
}

.message-section .abstract-bg {
    position: absolute;
    left: 10%;
    top: 30%;
}

.message-section footer {
    border-top: 1px solid var(--white);
    display: flex;
    margin-top: 3em;
    padding-top: 1em;
    justify-content: space-between;
    color: var(--white);
}

.message-section footer p span {
    color: var(--secondary-color);
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .message-section .logo img {
        width: 150px;
        margin: 0 auto;
    }
    .message-section form {
        width: 100%;
        margin: 0 auto;
    }
    .message-section footer {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    .message-section footer p {
        margin-bottom: 1em;
    }
}

@media screen and (max-width: 767px) {
    .message-section .logo img {
        width: 100px;
    }
    .message-section form {
        width: 100%;
    }
    form input {
        width: 100%;
        height: 45px;
        font-size: 1em;
    }
    form textarea {
        width: 100%;
        font-size: 1em;
    }
    .message-section form .flex {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .message-section form .flex input {
        width: 100%;
    }
    .message-section .abstract-bg {
        display: none;
    }
    .message-section footer {
        padding-top: 1em 0;
        text-align: center;
        justify-content: initial;
    }
    .message-section footer p span {
        color: var(--secondary-color);
    }
}


/* end of the message section   */


/* start of the thank you hero styles  */

.thank-you-hero {
    width: 100%;
    height: auto;
    padding: 3em 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.thank-you-hero img {
    width: 100px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 2em;
}

.thank-you-hero h1 {
    font-size: 3em;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .thank-you-hero h1 {
        font-size: 2.5em;
    }
}

@media screen and (max-width: 767px) {
    .thank-you-hero img {
        width: 90px;
    }
    .thank-you-hero h1 {
        font-size: 2em;
        padding: 0 .5em;
    }
}


/* end of the thank you hero styles  */


/* start of the thank you section styles  */

.thank-you-section {
    width: 100%;
    height: auto;
    text-align: center;
}

.thank-you-section .sub {
    width: 600px;
    height: auto;
    margin: 0 auto;
}

.thank-you-section .sub p {
    margin-bottom: 3em;
}

.thank-you-section .sub .flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.thank-you-section .sub .flex .links {
    width: fit-content;
}

.thank-you-section .sub .flex .links li {
    width: fit-content;
}

.thank-you-section .sub .flex .links li a {
    width: 150px;
    display: flex;
    justify-content: center;
    padding: .5em 1em;
    margin-bottom: 1em;
    color: var(--white);
    border-radius: 50px;
    font-size: 1em;
}

.thank-you-section .sub .flex .links li a i {
    margin-right: .5em;
}

.thank-you-section .sub .flex .links li a.facebook {
    background-color: var(--facebook-blue);
}

.thank-you-section .sub .flex .links li a.youtube {
    background-color: var(--youtube-red);
}

.thank-you-section .sub .flex .links li a.twitter {
    background-color: var(--twitter-blue);
}

.thank-you-section .sub .flex .links li a.linked-in {
    background-color: var(--linkedIn-blue);
}

.thank-you-section .sub .flex .links li a.facebook:hover {
    background-color: var(--facebook-blue-hover);
}

.thank-you-section .sub .flex .links li a.youtube:hover {
    background-color: var(--youtube-red-hover);
}

.thank-you-section .sub .flex .links li a.twitter:hover {
    background-color: var(--twitter-blue-hover);
}

.thank-you-section .sub .flex .links li a.linked-in:hover {
    background-color: var(--linkedIn-blue-hover);
}

.thank-you-section .sub .flex>img {
    height: 200px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .thank-you-section .sub {
        width: 80%;
    }
    .thank-you-section .sub .flex {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .thank-you-section .sub {
        width: calc(100% - 1em);
    }
    .thank-you-section .sub p {
        margin-bottom: 2em;
    }
    .thank-you-section .sub .flex {
        justify-content: center;
    }
    .thank-you-section .sub .flex .links {
        width: 100%;
        margin-bottom: 1em;
        text-align: center;
    }
    .thank-you-section .sub .flex .links li {
        width: 70%;
        margin: 0 auto;
    }
    .thank-you-section .sub .flex .links li a {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: .5em 1em;
        margin-bottom: 1em;
        color: var(--white);
        border-radius: 50px;
        font-size: 1em;
    }
    .thank-you-section .sub .flex .links li a i {
        margin-right: .5em;
    }
    .thank-you-section .sub .flex .links li a.facebook {
        background-color: var(--facebook-blue);
    }
    .thank-you-section .sub .flex .links li a.youtube {
        background-color: var(--youtube-red);
    }
    .thank-you-section .sub .flex .links li a.twitter {
        background-color: var(--twitter-blue);
    }
    .thank-you-section .sub .flex .links li a.linked-in {
        background-color: var(--linkedIn-blue);
    }
    .thank-you-section .sub .flex .links li a.facebook:hover {
        background-color: var(--facebook-blue-hover);
    }
    .thank-you-section .sub .flex .links li a.youtube:hover {
        background-color: var(--youtube-red-hover);
    }
    .thank-you-section .sub .flex .links li a.twitter:hover {
        background-color: var(--twitter-blue-hover);
    }
    .thank-you-section .sub .flex .links li a.linked-in:hover {
        background-color: var(--linkedIn-blue-hover);
    }
    .thank-you-section .sub .flex>img {
        height: 200px;
    }
}


/* end of the thank you section styles  */


/* start of the recieved message section styles */

.recieved-message-section {
    width: 100%;
    text-align: center;
}

.recieved-message-section p {
    margin: 0 auto;
}

.recieved-message-section .whatsapp {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .7em 2em;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 2em;
    background-color: var(--whatsapp-green);
    color: var(--white);
    font-size: 1.3em;
}

.recieved-message-section .whatsapp i {
    margin-right: .5em;
}

.recieved-message-section .whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
}


/* end of the recieved message section styles */

@media screen and (min-width: 768px) and (max-width: 1023px) {}

@media screen and (max-width: 767px) {}