/* RESET */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;400;700&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}



/* MY CSS */

html {
    overflow-x: hidden;
}

body {
    position: relative;
    background-color: #000;
    color: #fff;
    margin: 0px auto;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
    overflow-x: hidden;
}

.logo {
    width: 100px;
    position: absolute;
    top: 40px;
    right: 40px;
}

.fullwidthsection {
    padding: 40px;
}

.projectlistcont {
    position: relative;
}

h1 {
    font-size: 56px;
    font-weight: 200;
    line-height: 120%;
}

.hero {
    position: relative;
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 32px;
}

.button {
    color: inherit;
    padding: 14px 24px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 70px;
    border: 2px solid #fff5;
    background-color: #0000;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s;
}

.button:hover {
    color: #000;
    background-color: #fff;
}

.buttonservices {
    padding: 8px 16px;
    font-size: 16px;
    margin-bottom: 40px;
}

.headlinehighlight {
    text-decoration: underline;
    text-underline-offset: 12px;
    text-decoration-thickness: 2px;
}

.hero .button {
    margin-bottom: 56px;
}

.projectitem {
    margin-right: 16px;
    transition: transform 0.2s;
    width: 480px;
}

.projectitem:hover {
    transform: scale(0.98);
}

.projectitem img {
    width: 480px;
    height: 480px;
    border-radius: 12px;
    background-color: #fff1;
}

.projecttitle {
    font-size: 32px;
    margin-top: 16px;
    margin-bottom: 8px;
}

.projecttype {
    font-size: 16px;
    opacity: 0.7;
    line-height: 140%;
}

.projectlist {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: scroll;
    box-sizing: border-box;
    position: relative;
    padding: 40px;
}

.wrapper {
    width: 85%;
    max-width: 1000px;
    margin: 0px auto;
}

#services {
    position: relative;
}

.accordion {
    font-size: 100px;
    font-weight: 200;
    line-height: 130%;
    margin-top: 16px;
    display: inline-block;
    cursor: pointer;
    position: relative;
}

.accordion:hover::after {
    opacity: 1;
}

.accordion:after {
    content: ''; 
    width: 60px;
    height: 60px;
    margin-left: 16px;
    background-image: url("./img/arrow.svg");
    background-size: cover;
    display: inline-block;
    transition: all 0.2s;
    opacity: 0.4;
    position: absolute;
    top: 40px;
  }
  
  .active:after {
    transform: rotate(180deg); 
  }

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 20px;
    max-width: 600px;
    line-height: 140%;
  }

  .panel p {
    margin: 40px 0px;
  }

  .panel ul {
    list-style: none;
    font-size: 26px;
    line-height: 150%;
    margin: 40px 0px;
  }
  
  .panel ul li:before {
    content: '✓';
    margin-right: 8px;
    color: #bee377;
}

.sectionheadline {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
}

.servicessection {
    padding: 120px 0px;
}


.logos {
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 20px;
    margin: 64px 0px;
}

.logos img {
    max-width: 100%;
}

.testimonial {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
}

.testimonialtext {
    max-width: 720px;
    width: 80%;
}

.quote {
    font-weight: 200;
    font-size: 40px;
    line-height: 120%;
    margin: 24px 0px;
}

.quoteauthor {
    font-size: 18px;
    opacity: 0.7;
}

.quotebackgroundimage {
    width: 480px;
    height: 560px;
    background-color: #111;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.4;
    z-index: -1;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

.stars {
    width: 120px;
}

.contactsection h2 {
    font-size: 100px;
    font-weight: 200;
    line-height: 120%;
}

.contactsection {
    padding: 120px 0px;
}

.contactsection .button {
    margin-top: 40px;
}

.checklist {
    margin-top: 40px;
    font-size: 18px;
}

.checklist span {
    margin-right: 24px;
    display: inline-block;
}

.checklist span img {
    margin-right: 12px;
    width: 20px;
}

.bubble {
    width: 1000px;
    height: 1000px;
    z-index: -1;
    position: absolute;
}

.redbubble {
    background: rgb(0,0,0);
    background: radial-gradient(closest-side, #CD4A0155 0%, #CD4A0100 100%); 
    
}

.bluebubble {
    background: rgb(0,0,0);
    background: radial-gradient(closest-side, #4767BA55 0%, #4767BA00 100%); 
}

.bubble1 {
    top: -450px;
    right: -450px;
}

.bubble2 {

    bottom: -450px;
    left: -450px;
}

.bubble3 {
    top: 0px;
    right: -450px;
}

.bubble4 {
    bottom: 0px;
    left: -450px;
}

footer {
    padding: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #fffa;
}

footer img {
    width: 160px;
}

.footertext span, .footertext a {
    display: inline-block;
    margin: 0px 8px;
}

.bubbletopright {
    display: none;
    width: 800px;
    height: 800px;
    position: fixed;
    top: -300px;
    right: -300px;
    /*animation: bubblemove 6s linear infinite;*/
}

.bubblebottomleft {
    display: none;
    width: 800px;
    height: 800px;
    position: fixed;
    bottom: -300px;
    left: -300px;
   /* animation: bubblemove 6s linear infinite;*/
}

@keyframes bubblemove {
    from { 	transform: rotate(0deg) translateX(150px) }
	to   {  transform: rotate(360deg) translateX(150px)}
}

.sliderbutton {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0px 8px 16px #0003;
    z-index: 5;
    position: absolute;
    top: 250px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
}

.sliderbutton:active {
    transform: scale(0.9);
}

.sliderbutton img {
    width: 32px;
}

#button-right {
    right: 24px;
}

#button-left {
    left: 24px;
}

.splide__arrow {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0px 8px 16px #0003;
    z-index: 5;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
}

.splide__arrow:disabled {
    opacity: 0;
}

.splide__pagination {
    display: none;
}

.arrows-testimonials {
    position: relative;
    display: flex;
    margin-top: 24px;
    justify-content: center;
}

.arrows-testimonials .splide__arrow {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: #0000;
    box-shadow: none;
    transform: none;
    top: auto;
    position: relative;
    right: unset;
    left: unset;
}

.projecthero {
    padding: 120px 0px;
}

.projecthero h1 {
    font-size: 100px;
    font-weight: 200;
    line-height: 120%;
    margin-top: 24px;
    margin-bottom: 32px;
    max-width: 900px;
}

.projecthero span {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    display: inline-block;
}

.projecthero p {
    font-size: 32px;
    font-weight: 200;
    line-height: 140%;
    max-width: 800px;
}

.projectcontainer {
    display: grid;
    margin-bottom: 32px;
    max-width: 1080px;
    margin: 0px auto;
}

.projectcontainer-left {
    grid-template-columns: 2fr 1fr;
}

.projectcontainer-right {
    grid-template-columns: 1fr 2fr;
}

.projectcontainer img {
    width: 100%;
    border-radius: 20px;
}

.projectgriditem {
    padding: 20px;
    box-sizing: border-box;
}

.projectgridtext {
    align-items: flex-end;
    display: flex;
    font-size: 18px;
    line-height: 140%;
}

.nextprojectbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 56px;
    margin-top: 100px;
    border-top: 2px solid #fff5;
    border-bottom: 2px solid #fff5;
    box-sizing: border-box;
    transition: all 0.2s;
    text-align: center;
}

.nextprojectbox:hover {
    background-color: #fff;
    color: #000;
}

.nextprojectlink {
    font-size: 56px;
    margin-top: 20px;
    font-weight: 200;
}

.contactgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    margin-bottom: 80px;
    align-items: flex-start;
}

input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 20px 16px; /* Some padding */ 
    border-radius: 8px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-bottom: 20px; /* Bottom margin */
    resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
    border: none;
    font-size: 16px;
    font-family: inherit;
  }

  input[type="submit"] {
    font-family: inherit;
  }


.contact-info {
    background-color: #83deff36;
    border-radius: 12px;
    padding: 24px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
}

.contact-info a {
    font-size: 32px;
    font-weight: 200;
    display: inline-block;
    margin-bottom: 12px;
    transition: opacity 0.2s;
}

.contact-info a:hover {
    opacity: 0.6;
}

.contact-info p {
    margin-bottom: 24px;
    opacity: 0.6;
    font-size: 16px;
}

.contact-info img {
    width: 100%;
    max-width: 360px;
    margin-top: 24px;
    align-self: center;
}

.textwrapper {
    max-width: 600px;
    line-height: 160%;
}

.textwrapper p {
    margin-bottom: 40px;
}

.textwrapper h2 {
    margin-bottom: 24px;
}
  
.circle-cursor {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    display: none;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 100px;
    text-align: center;
  }

  label {
    margin-bottom: 12px;
    display: inline-block;
    font-size: 18px;
  }

  .contactsuccess {
    background-color: #b7f2a1;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    color: #255413;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 140%;
  }