/* source-sans-pro-300 - latin */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/source-sans-pro-v14-latin-300.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/source-sans-pro-v14-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/source-sans-pro-v14-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/source-sans-pro-v14-latin-300.woff') format('woff'), /* Modern Browsers */
         url('../fonts/source-sans-pro-v14-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/source-sans-pro-v14-latin-300.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }
  /* source-sans-pro-regular - latin */
  @font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-pro-v14-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/source-sans-pro-v14-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/source-sans-pro-v14-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/source-sans-pro-v14-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/source-sans-pro-v14-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/source-sans-pro-v14-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }
  /* source-sans-pro-600 - latin */
  @font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/source-sans-pro-v14-latin-600.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/source-sans-pro-v14-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/source-sans-pro-v14-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/source-sans-pro-v14-latin-600.woff') format('woff'), /* Modern Browsers */
         url('../fonts/source-sans-pro-v14-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/source-sans-pro-v14-latin-600.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }
  /* source-sans-pro-700 - latin */
  @font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-sans-pro-v14-latin-700.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/source-sans-pro-v14-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/source-sans-pro-v14-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/source-sans-pro-v14-latin-700.woff') format('woff'), /* Modern Browsers */
         url('../fonts/source-sans-pro-v14-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/source-sans-pro-v14-latin-700.svg#SourceSansPro') format('svg'); /* Legacy iOS */
  }

:root {
    --width: 75vw;

    --yellow: #FAD44A;
    --black: #292930;
    --light-grey: #EDF3F7;
}

html {
    font-family: 'Source Sans Pro';
    margin: 0;
}

body{
    margin: 0;
}

h1 {
    font-size: 80px;
    font-weight: 300;
}

h2 {
    font-size: 60px;
    font-weight: 300;
}

h3 {
    font-size: 28px;
    font-weight: 700;
}

@media screen and (max-width: 800px) {
    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 42px;
    }

    h3 {
        font-size: 24px;
    }
}

body {
    font-size: 20px;
}

.btn {
    background: var(--yellow);
    cursor: pointer;
    border: none;
    padding: 15px 25px;
    font-weight: 700;
    font-size: 16px;
}

.left-heading-floater {
    position: relative;
}

.left-heading-floater::before {
    content: "";
    position: absolute;
    background: var(--yellow);
    height: 3px;
    width: 50%;
    top: 0;
    left: 0;
}

.object-fit-contain {
    object-fit: contain;
}

.d-none {
    display: none;
}

.d-block {
    display: block !important;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--width);
    margin: 0 auto;
    padding: 32px 0;
}

.header-logo {
    margin-top: -16px;
}

.nav-bar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style-type: none;
    padding-left: 0;
    gap: 28px;
}

.nav-bar li {
    cursor: pointer;
    padding: 0 10px;
    position: relative;
}

.nav-bar a {
    width: 100%;
    top: 0;
    padding: 0 10px;
}

.nav-bar a:hover {
    font-weight: 700;
    padding: 0 8.5px;
}

.active-nav-link {
    font-weight: 700;
}

.login-link, #burger-menu {
    cursor: pointer;
}

@media screen and (min-width: 1300.1px) {
    #burger-menu {
        display: none;
    }

    .nav-bar {
        display: block;
    }
}

@media screen and (max-width: 1600px) {
    .header {
        width: 90vw;
    }
}

@media screen and (max-width: 1300px) {
    .nav-bar {
        position: absolute;
        display: none;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        left: 0;
        top: 100px;
        background: white;
        z-index: 3;
        padding-bottom: 20px;
        box-shadow: 0px 9px 80px rgba(0, 0, 0, 0.07), 0px 1.12694px 10.0172px rgba(0, 0, 0, 0.0322522);
    }

    .nav-bar ul {
        display: block;
    }

    .nav-bar li {
        margin: 0 auto;
        padding: 20px;
    }
}

/* Hero */
.hero {
    position: relative;
}

.hero > div {
    width: var(--width);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 280px 0;
}

.hero-content {
    margin-left: 70px;
}

.hero iframe {
    margin-left: 50px;
}

.hero-title {
    padding-top: 50px;
    margin: 0;
    width: 50%;
    color: white;
}

.hero-subtitle {
    margin-top: 32px;
    margin-bottom: 40px;
    font-weight: 700;
    width: 70%;
    color: white;
}

.hero::before {
    content: "";
    position:absolute;
    background: var(--black);
    height: 100%;
    width: 70vw;
    z-index: -1;
}

@media screen and (max-width: 1500px) {
    .hero > div {
        display: flex;
        flex-direction: column;
        padding: 140px 0;
        padding-bottom: 0;
    }

    .hero iframe {
        margin-top: 100px;
    }

    .hero::before {
        content: "";
        position:absolute;
        background: var(--black);
        height: 100%;
        width: 100%;
        z-index: -1;
    }

    .hero iframe {
        width: 90vw;
        height: 56vw;
        margin-left: 0;
    }
}

@media screen and (max-width: 800px) {
    .hero-content {
        margin-left: 0;
    }
}

/* Gallery */
.gallery {
    position: relative;
}

.gallery > div {
    width: var(--width);
    margin: 0 auto;
    padding: 200px 0;
}

.gallery::before {
    content: "";
    position: absolute;
    background: var(--light-grey);
    top:0;
    left:0;
    height: calc(50% - 15px);
    width: 100%;
    z-index: -1;
}


.gallery-image {
    height: 400px;
    object-fit: cover;
}

.gallery-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
}

.gallery-row-large {
    width: 59%;
}

.gallery-row-small {
    width: 40%;
}

@media screen and (max-width: 1200px) {
    .gallery-row {
        flex-direction: column;
        margin: 0;
    }

    .gallery-image {
        width: 100%;
        height: 400px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 800px) {
    .gallery > div {
        width: 100%;
    }

    .gallery-image {
        height: 300;
    }
}

/* Configuration Tool */
.configuration-tool-head {
    display: flex;
    justify-content: space-between;
    width: var(--width);
    margin: 0 auto;
}

.configuration-tool-head > * {
    width: 100%;
}

.configuration-tool-text h2 {
    width: 70%;
    padding-top: 30px;
}

.configuration-tool-text h3 {
    width: 70%;
    margin-bottom: 40px;
}

.configuration-tool-numbered {
    display: flex;
    width: var(--width);
    margin: 120px auto;
}

.configuration-tool-numbered-item {
    display: flex;
    align-items: center;
}

.configuration-tool-numbered > div {
    width: 100%;
}

.configuration-tool-numbered-item > h3 {
    padding: 14px 22px;
    background: var(--yellow);
    margin-right: 40px;
}

.configuration-tool-numbered-item > p {
    width: 60%;
}

@media screen and (max-width: 1500px) {
    .configuration-tool-head {
        flex-direction: column;
    }

    .configuration-tool-head img {
        margin-top: 100px;
    }

}

@media screen and (max-width: 1200px) {  
    .configuration-tool-numbered {
        flex-direction: column;
    }

    .configuration-tool-text h3 {
        width: 100%;
    }

    .configuration-tool-numbered-item > p {
        width: 80%;
    }
}

@media screen and (max-width: 500px) {  
    .configuration-tool-numbered-item {
        flex-direction: column;
        text-align: center;
    }

    .configuration-tool-numbered-item > h3 {
        margin-right: 0;
        margin-bottom: 0;
    }
}

/* Project Pricing */
.definitive-project-pricing {
    display: flex;
    width: var(--width);
    margin: 0 auto;
    margin-bottom: 200px;
}

.definitive-project-pricing > * {
    width: 100%;
}

.definitive-project-pricing-text {
    margin-left: 100px;
}

.definitive-project-pricing-text h2 {
    padding-top: 30px;
    margin: 0;
    width: 70%;
}

.definitive-project-pricing-text p {
    margin: 50px 0;
}


@media screen and (max-width: 1500px) {
    .definitive-project-pricing {
        flex-direction: column;
    }

    .definitive-project-pricing img {
        margin-bottom: 100px;
    }

    .definitive-project-pricing-text {
        margin-left: 0;
    }
}


/* Submit Project */
.submit-your-project {
    position: relative;
}

.submit-your-project > div {
    padding: 120px 0;
    width: var(--width);
    margin: 0 auto;
    background: var(--black);
}

.submit-your-project > div > div {
    margin: 0 auto;
    width: 30vw;
    text-align: center;
    color: white;
}

.submit-your-project h2 {
    margin-top: 0;
}

.submit-your-project button {
    margin-top: 40px;
}

.submit-your-project::before {
    content: "";
    width: 100%;
    height: 50%;
    top: 50%;
    position: absolute;
    background: var(--light-grey);
    z-index: -1;
}

@media screen and (max-width: 1200px) {  
    .submit-your-project > div > div {
        width: 60vw;
    }

    .submit-your-project > div {
        width: 100%;
    }
}



/* Footer */
.footer {
    background: var(--light-grey);
    padding-top: 140px;
    padding-bottom: 60px;
}

.footer-content {
    width: 60vw;
    margin: 0 auto;
    display: flex;
}

.footer-content > * {
    width: 100%;
}

.footer-copyright {
    text-align: center;
}

.footer-content-info p {
    width: 60%;
}

.footer-content-nav {
    display: flex;
    justify-content: space-between;
}

.footer-content-nav ul {
    align-items: center;
    list-style-type: none;
    padding: 0;
}

.footer-content-nav li {
    align-items: center;
    list-style-type: none;
    padding-left: 0;
    margin: 25px 0;
}

.footer-content-nav > ul > li:first-of-type {
    font-weight: 700;
}

.footer-copyright {
    width: var(--width);
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .footer-content-info p {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 800px) {
    .footer-logo {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .footer-content-nav {
        flex-direction: column;
    }

    .footer-content {
        width: var(--width);
    }
}

/* Login dropout */
.dropout {
    position: absolute;
    right: 0;
    background: white;
    z-index: 4;
    padding: 64px 84px;
    padding-top: 32px;
    box-shadow: 0px 9px 80px rgba(0, 0, 0, 0.07), 0px 1.12694px 10.0172px rgba(0, 0, 0, 0.0322522);
    font-size: 16px;
    min-width: 22vw;
}

.dropout h3 {
    margin-top: 0;
    margin-bottom: 40px;
}

.dropout input {
    width: 100%;
    background: var(--light-grey);
    border: none;
    box-sizing: border-box;
    padding: 16px 24px;
    font-size: 16px;
}

.dropout button {
    width: 100%;
}

.dropout .label-name >  {
    margin-top: 30px;
}

.redirect-text {
    margin: 36px 0;
} 

.redirect-text a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
}

.exit-button {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
}

.exit-button a {
    font-size: 50px;
    margin: 0;
    cursor: pointer;
}

@media screen and (max-width: 1300px) {
    .dropout {
        width: 100%;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1300px) {
    .dropout {
        padding: 64px 30px;
    }
}