/* --------------------------------------------------------------------------- Fonts ------------------------------------------------------------------------- */
@font-face {
    font-family: Avenir;
    src: url(font/Avenir.otf);
}
@font-face {
    font-family: Baunk;
    src: url(font/Baunk.ttf);
}
@font-face {
    font-family: Avenir Next LT Pro;
    src: url(font/AvenirLTProBlack.otf);
}

/* --------------------------------------------------------------------------- Global ------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    width: 1920px;
}
.back-to-top {
    width: 110px;
    height: 107px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease, visibility 1s;
    background: none;
    border: none;
}   
.back-to-top:hover {
    transform: scale(1.1);
    
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes alternate-rotate {
    0% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
/* --------------------------------------------------------------------------- Header ------------------------------------------------------------------------- */
header {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    box-shadow: 0 1px 8px #ddd;
    background-color: black;
}
#logo {
    margin-right: auto;
    padding-left: 10rem;
    font-size: 1.5em;
}
header li {
    padding: 0 50;
    list-style: none;
    display: inline-block;
    
    font-size: 24px;
    font-family: Inter;
}
header a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease 0s;
}
/* --------------------------------------------------------------------------- Main ------------------------------------------------------------------------- */
.main {
    display: flex;
    justify-content: center;
    height: 1080px;
}
.main img {
    position: absolute;
    /*z-index: 1;*/
}
/* --------------------------------------------------------------------------- column-left ------------------------------------------------------------------------- */
.column-left {
    display: flex;
    justify-content: center;
    flex: 3; 
    background: #E3FF00;
    color: black;
}
.desc {
    margin: 400px 0 0 0px;
}
.role {
    font-family: Avenir Next LT Pro;
    font-size: 20px;
    text-transform: uppercase;
}
.name{
    font-family: Baunk;
    font-size: 48px;
    text-transform: uppercase;
}
.details {
    font-family: Avenir Next LT Pro;
    font-size: 24px;
    width: 682px;
    padding: 20px 0 0 0;
}
.decoration-header {
    z-index: 0;
}
.photo-header {
    position: absolute;
    margin: 50px 0 0 500px;
    z-index: 1;

}
/* --------------------------------------------------------------------------- column-right ------------------------------------------------------------------------- */
.column-right {
    flex: 2; 
    background: #E5E5E5;
    color: black;
}
.column-right-find-me {
    position: relative;
    margin: 110px 0 0 320px;
    z-index: 2;
}
.column-right-find-me a {
    text-decoration: none;
    color: #000000;
}
.column-right-find-me-row {
    width: 237px;
    height: 100px;
    background-color: #E3FF00;
    border-radius: 20px;
    margin: 0 0 15px 0;
}
.column-right-find-me-row:hover {
    color:white;
    background-color: black;
}
.column-right-find-me-row:hover > img {
    filter: drop-shadow(0px 0px 15px #E3FF00);
}
.column-right-find-me-row img {
    margin: 20px 0 0 15px;
}
.column-right-find-me-row p {
    padding: 25px 0 0 80px;
    font-size: 20px;
    font-family: Avenir;
}
.column-right-find-me-row b {
    font-size: 20px;
    font-family: Avenir Next LT Pro;
}
/* --------------------------------------------------------------------------- floating ------------------------------------------------------------------------- */
.floating-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2; 
    margin-top: -50px;
}
.floating-box {
    background-color: #000; 
    color: #fff; 
    padding: 40px;
    width: 1300px;
    height: 450px;
    text-align: center;
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    padding: 100px 0 0 0;
}
.floating-box h2 {
    font-size: 48px;
    font-family: Baunk;
    font-weight: 400;
    text-transform: uppercase;
}
.floating-box p {
    font-size: 24px;
    font-family: Avenir;
    font-weight: lighter;
    width: 961px;
    text-align: left;
    margin: 50px 0 0 150px;
}
/* --------------------------------------------------------------------------- services ------------------------------------------------------------------------- */
.services-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1; 
    margin-top: -50px;
}
.services-box {
    display: flex;
    background-color: #E3FF00; 
    width: 1548px;
    height: 1080px;
}
.services-box-mastering {
    padding: 100px 0 0 0;
    border-right: 1px solid black;
    text-align: center;
    transition: transform 0.5s ease, background-color 0.5s ease;
}
.services-box-mastering img{
    transition: transform 0.5s ease;
}
.services-box-mastering:hover {
    background-color: black;
    color: white;
}
.services-box-mastering:hover > button{
    background-color: #E3FF00;
    color: black;
}
.services-box-mastering:hover > img{
    transform: translateY(-10px);
}  
.services-box-production {
    padding: 100px 0 0 0;
    border-right: 1px solid black;
    text-align: center;
    transition: background-color 0.5s ease;
}
.services-box-production img{
    transition: transform 0.5s ease;
}
.services-box-production:hover {
    background-color: black;
    color: white;
}
.services-box-production:hover > button{
    background-color: #E3FF00;
    color: black;
} 
.services-box-production:hover > img{
    transform: translateY(-10px);
}  
.services-box-mix {
    padding: 100px 0 0 0;
    text-align: center;
    transition: background-color 0.5s ease;
}
.services-box-mix img{
    transition: transform 0.5s ease;
}
.services-box-mix:hover {
    background-color: black;
    color: white;
}
.services-box-mix:hover > button{
    background-color: #E3FF00;
    color: black;
} 
.services-box-mix:hover > img{
    transform: translateY(-10px);
}  
.services-header {
    font-family: Baunk;
    font-size: 32px;
    text-align: center;
    text-transform: uppercase;
}
.services-text {
    font-family: Avenir;
    font-size: 20px;
    padding: 20px 0 0 0;
    text-align: center;
    padding: 20px 0 0 0px;
}
.services-button {
    height: 76px;
    width: 160px;
    background-color: black;
    color: white;
    text-transform: uppercase;
    border-radius: 100px;
    font-family: Avenir;
    font-size: 20px;
    margin: 50px 0 0 0;
    border: none;
    cursor: pointer;
}
.services-box-mastering {
    flex: 1;
}
.services-box-production {
    flex: 1;
}
.services-box-mix {
    flex: 1;
}
/* --------------------------------------------------------------------------- process-container ------------------------------------------------------------------------- */
.process-container {
    display: flex;
    flex-direction: column;
    height: 1080px;
    background-color: black;
    color: white;
    overflow: hidden;
}
.process-container h1 {
    font-family: Baunk;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 100px 0 0 0;
}
.process-header {
    display: flex;
    justify-content: center;
}
.process-steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 200px;
}
.process-steps img {
    width: 128px;
    height: 128px;
    padding: 100px 0 0 0;
}
.process-steps-group {
    display: flex;
    flex-direction: row;
}
.process-steps-group p {
    font-family: Avenir;
    font-size: 24px;
    font-weight: 500;
    padding: 120px 0 0 50px;
    line-height: 35px
}
.process-steps-group-text {
    padding: 30px 0 0 0;
}
.process-rest {
    margin: -691px 0 0 700px;
    z-index: 10;
}
.process-rest-decoration {
    margin: -890px 0 0 1350px;
}
.process-rest-decoration img {
    animation: rotate 40s linear infinite;
}
/* --------------------------------------------------------------------------- projects-container ------------------------------------------------------------------------- */
.projects-container {
    display: flex;
    flex-direction: column;
    height: 1000px;
    background-color: #E3FF00;
    color: black;
    overflow: hidden;
}
.projects-container h1 {
    font-family: Baunk;
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 50px 0 0 0;
}
.projects-header {
    display: flex;
    justify-content: center;
}
.projects-details {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.projects-details h2 {
    font-family: Baunk;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 100px 0 0 0;
}
.projects-details-left {
    display: flex;
    justify-content: center;
    flex: 1;
}
.projects-details-center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex: 1;
    padding: 75px 0 0 0;
}
.projects-details-center a {
    text-decoration: none;
    color: white;
}
.projects-details-center-button {
    width: 293px;
    height: 70px;
    margin: 50px 0 0 180px;
    border-radius: 50px;
    background-color: #000;
    color: white;
}
.projects-details-center-button p {
    padding: 22px 0 0 0;
    font-family: Avenir;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}
.projects-details-right {
    flex: 1;
}
.play-button {

    margin: 280px 0 0 80px;
}
.play-button h3 {
    font-family: Avenir;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 900;
    padding: 50px 0 0 0;
}
.play-button p {
    font-family: Avenir;
    font-size: 24px;
}
.p-button-image-1 {
    position: absolute;
    padding: 150px 0 0 1600px;
}
.p-button-image-2 {
    position: absolute;
    padding: 850px 0 0 270px;
}
#prev-button {
    margin: 500px 0 0 50px;
    position: absolute;
    height: 100px;
    border: none;
    background-color: #E3FF00;
    cursor: pointer;
}
#next-button {
    margin: 500px 0 0 1800px;
    position: absolute;
    height: 100px;
    width: 49px;
    background-color: #E3FF00;
    border: none;
    cursor: pointer;
}
.slider div.projects-details:not(div.projects-details:first-child) {
    display: none;
}
/* --------------------------------------------------------------------------- form-container ------------------------------------------------------------------------- */
.form-container {
    display: flex;
    flex-direction: row;
    height: 1080px;
    background-color: white;
    color: black;
    overflow: hidden;
}
/* --------------------------------------------------------------------------- form-column-left ------------------------------------------------------------------------- */
.form-column-left {
    margin: 100px 0 0 100px;
    width: 903px;
    height: 1062px;
    background-color: #EDEDED;
    border-radius: 100px;
}
.form-column-left h1 {
    font-family: Baunk;
    font-size: 48px;
    text-transform: uppercase;
}
.form-column-left-text {
    padding: 50px 0 0 100px;
}
.form-column-left-text p {
    font-family: Avenir;
    font-size: 24px;
    padding: 50px 0 0 0;
}
form {
    display: flex;
    flex-direction: column;
    margin: 50px 0 0 105px;
}
input {
    font-family: Avenir;
    font-size: 24px;
}
.namename, .email {
    margin: 30px 0 0 0;
    width: 622px;
    height: 60px;
    border-radius: 100px;
    background-color: #E3FF00;
    border: none;
    padding: 0 0 0 20px;
}
.namename::placeholder, .email::placeholder {
    font-family: Avenir;
    font-size: 24px;
    color: black;
}
.namename:hover, .email:hover {
    background-color: black;
    color: white;
}
textarea {
    margin: 30px 0 0 0;
    width: 622px;
    height: 150px;
    border-radius: 30px;
    background-color: #E3FF00;
    border: none;
    resize: none;
    padding: 10px 0 0 20px;
    font-family: Avenir;
    font-size: 24px;
}
textarea::placeholder {
    font-family: Avenir;
    font-size: 24px;
    color: black;
}
textarea:hover {
    background-color: black;
    color: white;
}
.submit {
    margin: 30px 0 0 230px;
    font-family: Avenir;
    font-size: 20px;
    text-transform: uppercase;
    background-color: black;
    color: white;
    width: 149px;
    height: 70px;
    cursor: pointer;
    border-radius: 30px;
}
/* --------------------------------------------------------------------------- form-column-right ------------------------------------------------------------------------- */
.form-column-right {
    z-index: 1;
}
.form-column-right-deco img {
    margin: 150px 0 0 -100px;
}
.form-column-right-vector {
    margin: -330px 0 0 480px;
    
}
.form-column-right-vector img {
    position: relative;
    animation: alternate-rotate 40s linear infinite;
    z-index: -1;
}
.form-column-right-photo {
    position: relative;
    margin: -1020px 0 0 -200px;
    z-index: 10;
}
 
/* --------------------------------------------------------------------------- Footer ------------------------------------------------------------------------- */

.footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 565px;
    background-color: black;
    border-top-right-radius: 400px;
    color: white;
    font-family: Avenir;
    z-index: 0;
}
.footer-first {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.footer-first-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 280px;

    font-family: Avenir;
    font-size: 20px;
}
.footer-first-content img {
    margin-bottom: 200px;
}
.footer-first-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 530px;
    gap:30px;
}
.footer-first-info h3{
    display: flex;
    flex-direction: row;
    justify-content: center;

    font-family: Avenir Next LT Pro;
    font-size:30px;
    color: #E3FF00;
    font-weight: bold;
}
.footer-first-info-mail {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap:10px;

    font-family: Avenir;
    font-size: 24px;
}
.footer-first-info-phone {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap:10px;
    margin-bottom: 100px;
    font-family: Avenir;
    font-size: 24px;
}
.footer-first-info-images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}
.footer-casette-img-absolute {
    position: absolute;
    margin-left: 1240px;
    margin-top: 60px;
}
.footer-first-info-borderbottom {
    text-align: center;
}