/* NAVBAR */

.navbar-container {
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
}

.navbar-wrapper {
    width: 100%;
    height: 70px;
    background-color: var(--main);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
}

.nav-logo h2 {
    color: var(--light);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 18px;
}

.nav-menu {
    display: flex;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 20px;
}

.nav-menu i {
    color: var(--white);
    font-size: 28px;
}

.nav-menu i:hover {
    color: var(--dark-grey);
}


/* INFO */

.about {
    margin-top: 70px;
}

.text-info {
    font-weight: var(--text-light);
}

.about-container {
    width: 100%;
}

.about-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-side {
    margin: 0px 25px;
}

.about-left, .about-right {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;

}

.about-left {
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;

}

.about-text {
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.about-text p {
    text-align: center;
}

.about-text h3 {
    font-size: 35px;
    font-weight: var(--text-light);
}

.text-one {
    font-size: var(--font-s);
}

.text-two {
    font-size: var(--font-xs);
    font-weight: var(--text-medium);
    color: var(--light-grey);
}

.text-three {
    font-size: var(--font-subheading);
    font-weight: var(--text-heavy);
}

.text-three span{
    color: var(--main);
    font-size: 30px;
}

.text-four {
    font-size: var(--font-s);
    font-weight: var(--text-medium);
    color: var(--light-grey);
}

.about-right {
    background-color: var(--white);
}

.about-img img {
    border: 5px solid var(--main);
    border-radius: 50%;
    width: 250px;
}

.about-side-wrapper {
    width: 100%;
}

.about-info-header {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-grey);
    border-bottom: 5px solid var(--main);
}

.about-info-header h4 {
    color: var(--white);
    font-size: var(--font-heading);
    font-weight: var(--text-medium);
    letter-spacing: 1px;
}

.about-info-header span {
    color: var(--main);
}

.about-info-location {
    width: 100%;
}

.location {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.location img {
    width: 40px;
}

.location-city, .location-map {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
}

.location-city h6{
    font-size: var(--font-subheading);
    font-weight: var(--text-medium);
    padding: 3px 0px;
    letter-spacing: 2px;
}

.location-map {
    width: 100%;
    padding: 15px 0px;
}

.location-map img {
    width: 110px;
}

.about-contact-container, .about-contact-phone {
    width: 100%;
}

.about-contact-wrapper {
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-contact-phone {
    width: 60px;
    margin: 10px;
}

.about-contact-phone img {
    width: 60px;
}

.about-contact-details{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.about-contact-details a {
    color: var(--dark-grey);
}

.contact-large {
    font-size: var(--font-heading);
    font-weight: var(--text-medium);
}

.contact-large span {
    font-weight: var(--text-heavy);
}

.about-social-container {
    width: 100%;
}

.about-social-wrapper {
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-social-wrapper img {
    width: 50px;
}

.about-brain-usage-container {
    width: 100%;
    background-color: var(--dark-grey);
    color: var(--white);
    border-top: 8px solid var(--main);
}

.about-brain-usage-wrapper {
    width: 100%;
    padding: 15px;
}

.about-brain-usage-wrapper h4 {
    font-size: var(--font-heading);
    font-weight: var(--text-medium);
    letter-spacing: 1px;
    padding-bottom: 10px;
}

.brain-usage-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brain-image img {
    width: 110px;
}

.brain-text p {
    font-size: var(--font-subheading);
    text-align: right;
    font-weight: var(--text-medium);
    padding: 5px 0px;
}


/* SECTION TWO */


.section-two {
    width: 100%;
    margin-top: 50px;
}

.section-two-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-two-quote {
    max-width: 600px;
    background-color: var(--dark-grey);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 40px;
}

.section-two-quote p {
    color: var(--white);
    font-size: var(--font-s);
    font-weight: var(--text-medium);
    text-align: justify;
}

.author {
    margin-top: 25px;
    color: var(--main);
}

.author span {
    color: var(--main);
    text-align: center;
    font-weight: var(--text-medium);
}

.section-two-info {
    width: 400px;
    margin-top: 50px;
}

.section-two-info p {
    font-weight: var(--text-medium);
    text-align: center;
}

.section-two-cog {
    text-align: center;
    margin-top: 40px;
}

.cog-p {
    font-size: var(--font-heading);
    font-weight: var(--text-medium);
}

.cog-heading {
    font-size: 100px;
    font-weight: var(--text-medium);
    color: var(--main);
}

.cog-subheading {
    font-size: var(--font-xs);
    font-weight: var(--text-medium);
}

.cog-paragraph {
    margin-top: 40px;
    font-size: var(--font-m);
    font-weight: var(--text-heavy);
}

/* SUPER POWERS*/


.super-power-contianer {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

.super-power-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.super-heading {
    font-family: 'Josefin-slab', serif;
    font-size: var(--font-l);
    text-align: center;
    margin-top: 50px;
}

.super-img {
    width: 500px;
    margin-top: 20px;
}

.super-paragraph {
    width: 100%;
    font-weight: var(--text-medium);
    font-size: var(--font-m);
    margin-top: 30px;
    text-align: center;
}

.super-grey-text {
    width: 100%;
    font-weight: var(--text-medium);
    font-size: var(--font-m);
    margin-top: 30px;
    color: var(--light-grey);
    text-align: center;
}

.super-subheading {
    width: 100%;
    text-align: center;
    font-size: var(--font-l);
    font-weight: var(--text-heavy);
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.underline-main {
    width: 700px;
    height: 3px;
    margin: 25px 0px;
    background-color: var(--main);
}

.super-items {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.super-items img {
    width: 300px;
    margin: 15px;
}

/* WHAT ELSE*/

.what-else-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-else-wrapper {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;  
    flex-wrap: wrap;
}

.pro-dna-info {
    background-color: var(--main);
    padding: 10px;
    width: 100%;
}

.pro-dna-info h3 {
    color: var(--white);
    letter-spacing: 0.5;
    text-align: center;
}
.pro-dna {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pro-dna-images {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 60px 0px;
}

.pro-dna-image-item {
    width: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pro-dna-image-item img {
    width: 130px;
}

.monument img {
    width: 110px;
}

.dna-info {
    position: absolute;
}

.dna-info p {
    text-align: center;
}

.language {
    font-size: var(--font-s);
    font-weight: var(--text-medium);
}

.percent {
    font-size: var(--font-l);
    font-weight: var(--text-heavy);
}

.pro-dna-banner {
    background-color: var(--dark-grey);
    max-width: 800px;
    margin: 0px 40px;
}

.pro-dna-banner p {
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: var(--font-l);
    font-weight: var(--text-medium);
}

.pro-dna-list {
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 5px solid var(--dark-grey);
    padding: 20px;
    margin: 40px;
}

.pro-dna-list p {
    color: var(--main);
    font-weight: var(--text-medium);
    text-align: center;
    line-height: 25px;
    font-size: var(--font-s);
}

.skills {
    width: 100%;
    height: auto;
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.skills-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.skills-card {
    width: 150px;
    margin: 15px;
}


/* EDUCATION */


.education {
    width: 100%;
    height: auto;
    background-image: url("../img/educationBG.png");
}


.education-seperator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.seperator {
    width: 100%;
    height: 10px;
    background-color: var(--dark-grey);
}

.seperator-circle {
    width: 130px;
    height: 130px;
    background-color: var(--dark-grey);
    border: 4px solid var(--main);
    border-radius: 50%;
    position: absolute;
}

.seperator-img {
    position: absolute;
    width: 50px;
}


.accordion-container {
    width: 100%;
    display: flex;
}

.accordion-wrapper {
    margin-top: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.accordion-wrapper h4 {
    font-size: var(--font-l);
    font-weight: var(--text-medium);
    text-align: center;
    margin-bottom: 40px;
}

.rocket {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.rocket-border {
    width: 100px;
    height: 100px;
    background-color: var(--dark-grey);
    border-radius: 50%;
    border: 3px solid var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rocket img {
    width: 60px;
}

/* CAREER */

.career {
    width: 100%;
    margin-top: 50px;
}

.career-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.career-header {
    width: 100%;
}

.career-header h2 {
    font-size: var(--font-l);
    font-weight: var(--text-medium);
    text-align: center;
}

.career-subheading h4 {
    font-size: var(--font-m);
    font-weight: var(--text-light);
    text-align: center;
    margin-top: 40px;
}

.career-jobs-container {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.career-jobs-wrapper {
    width: 80%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


.career-job-ball {
    background-color: var(--dark-grey);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.career-job-ball-text {
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main);
    line-height: 19px;
    padding: 10px;
    font-size: 14px;
}

.career-job-ball-text span {
    color: var(--white);
}


/* EXPERIENCE */

.experience {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    flex-direction: column;
    margin-bottom: 140px;
}

.experience-wrapper {
    width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
 
}

.experience-label {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-left-circle, .experience-right-circle {
    width: 60px;
    height: 60px;
    background-color: var(--dark-grey);
    border: 5px solid var(--main);
    border-radius: 50%;
}

.experience-seperator {
    width: 80%;
    height: 5px;
    background-color: var(--main);
}

.experiance-label-heading {
    position: absolute;
    background-color: var(--light);
    padding: 5px 20px;
    font-size: var(--font-l);
    border: 4px solid var(--main);
    border-radius: 15px;
    font-weight: var(--text-medium);
}


/* DREAM JOB */

.dream-job {
    width: 100%;
    background-color: var(--main);
    display: flex;
}

.dream-job-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 50px;
    text-align: center;
}

.dream-job-wrapper p {
    color: var(--dark-grey);
    font-weight: var(--text-medium);
    font-size: var(--font-m);
}

.dream-quote p{
    font-weight: var(--text-heavy);
    font-size: var(--font-m);
    margin-top: 15px;
}

.dream-job-heading {
    max-width: 500px;
    margin-top: 50px;
}

.dream-job-heading h1 {
    font-family: 'Josefin-slab', serif;
    font-size: var(--font-xxl);
    color: var(--white);
}

.dream-paragraph {
    width: 100%;
}

.dream-paragraph p {
    color: var(--dark-grey);
    font-size: var(--font-l);
    margin-top: 40px;
}


.contact-us {
    width: 100%;
}

.contact-us h4 {
    padding: 20px;
    color: var(--dark-grey);
    font-size: var(--font-l);
    text-align: center;
}

.contact-us span {
    color: var(--main);
}

.contact-us-wrapper {
    width: 100%;
    background-color: var(--dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
}

.form-group {
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.col {
    width: 49%;
}

.form-row input {
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px;
    border-radius: 5px;
}

input:focus {
    border: none;
}

textarea:focus {
    border: none;
}

.form-row input::placeholder {
    color: var(--white);
    opacity: 0.5;
}

.form-group textarea {
    width: 100%;
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px;
    border-radius: 5px;
    margin: 7px 0px;
}

.form-group textarea::placeholder {
    color: var(--white);
    opacity: 0.5;
    font-family: 'Montserrat', sans-serif;
}

.btn-submit {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    color: var(--white);
    font-weight: var(--text-medium);
    font-size: var(--font-s);
    background-color: var(--main);
    border: none;
    cursor: pointer;
}


.footer-container {
    width: 100%;
    background-color: var(--main);
}

.footer-wrapper {
    padding: 20px;
}

.footer-social-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-info {
    display: flex;
    align-items: center;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

.footer-contact-details a {
    color: var(--dark-grey);
    text-align: right;
    font-weight: var(--text-medium);
}

.footer-socials img {
    width: 40px;
    margin: 10px;
}

.copyright p {
    font-size: var(--font-tiny);
    margin: 10px;
}