@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Dirt&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.wrapper {display: grid;grid-template-columns: repeat(3,1fr);gap: 1rem;}

.fullbox {width:100%; aspect-ratio:1/1;display: grid;grid-template-columns: repeat(4,1fr);gap: 1rem;}

.row-2 {grid-template-rows:repeat(2,1fr);}
.row-4 {grid-template-rows:repeat(4,1fr);}
.row-6 {grid-template-rows:repeat(6,1fr);}
.row-8 {grid-template-rows:repeat(8,1fr);}

.menu {grid-template-rows: repeat(8,1fr);
  display: grid;
  height: 100%;
  gap: 1rem;}

.col-span-2 {grid-column: span 2;}
.col-span-4 {grid-column: span 4;}
.col-span-6 {grid-column: span 6;}
.col-span-8 {grid-column: span 8;}

.row-span-2 {grid-row: span 2;}
.row-span-4 {grid-row: span 4;}
.row-span-6 {grid-row: span 6;}
.row-span-8 {grid-row: span 8;}

.box {background: #222;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 1px rgba(255,255,255, 0.8);}

#section2 {margin: 1rem 0;}

#fcf-form {
    display:block;
}

.fcf-body {
    margin: 0;
    font-family: -apple-system, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    padding-bottom: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-width: 100%;
}

.fcf-form-group {
    margin-bottom: 1rem;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #545b62;
}

.fcf-credit a {
    color: #545b62;
    text-decoration: underline;
}

.fcf-credit a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #212529;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.fcf-btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.fcf-btn-block {
    display: block;
    width: 100%;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
}

:root {
  --main-radius: 5px;
  --main-padding: 5px;
}

.shine {
	-webkit-mask-image: linear-gradient(-75deg, rgba(0,0,0,.6) 30%, #000 50%, rgba(0,0,0,.6) 70%);
    -webkit-mask-size: 200%;
    animation: shine 5s infinite;
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  
  to {
    -webkit-mask-position: -50%;
}
	}

/* Grid */
body {font-family: 'Rubik', sans-serif;font-size: 12px;font-weight: 400;text-align: left;color: #fff;background:#040404;}

:focus, :active{outline: none;}
::selection {background: #040404; color:#ddd;/* WebKit/Blink Browsers */}
::-moz-selection {background: #040404; color:#ddd;/* Gecko Browsers */}
:focus {outline:none;}
::-moz-focus-inner {border:0;}
select {-moz-appearance: none;-webkit-appearance: none;padding: 5px;border: 0px;}
select::-ms-expand {display: none;}
button:focus {outline:0 !important;}
img {max-width: 100%;}
video {max-width: 100%;}
	
/* Fonts */
p {line-height: 1.4;margin: 15px 0;text-align:left;font-size: 22px;font-weight:600;padding-left:15px;}
#section1 p {line-height: 1.4;margin: 0;text-align:left;font-size: 1.1vw;font-weight:600;padding:0;}
p a {text-decoration: none;}
a, a:hover, a:visited, a:focus {text-decoration: none;color:#fff;}
h1,h2,h3,h4,h5,h6 {font-family: 'Rubik', serif;color:#fff;font-weight:600;line-height: 1.4;margin:0}
.h1, h1 {font-family: 'Rubik', system-ui;font-size: 26px;margin: 0;padding: 0 15px;text-align: center;color:#777;text-transform: uppercase;letter-spacing: 2px;font-weight:800}
.h2, h2 {font-size: 60px;margin: 10px 0 0;text-align: center;text-transform: uppercase;opacity: 0.5;font-weight: 800;}
.h3, h3 {font-size: 16px;margin: 0;text-shadow: 1px 1px 5px #000;}
.h4, h4 {font-size: 72px;text-align: right;}
.h5, h5 {font-size: 40px;color: #666; letter-spacing: 3px;text-transform: uppercase;}
.h6, h6 {font-size: 14px;text-align: center;line-height: 70px;margin: 0;color: #c09b73;font-weight: 600;text-transform: uppercase;letter-spacing: 6px;}
.h7, h7 {font-size: 16px;background: #efefef;padding: 5px 50px 5px 15px;position: absolute;border-radius: 40px;text-decoration: none;color: #333;top: 50%;transform: translateY(-50%);}

#contact h2 {font-size: 64px; color:#FE00D6;}

.full {aspect-ratio:1/1;position:relative;}
.half {aspect-ratio:2/1;position:relative;}
.vertical {aspect-ratio:1/2;position:relative;}
.nopadding {padding:0;}

.green {background:#333333;height:100%;position:relative;padding:1rem;  border-radius: 10px;box-shadow: 0px 0px 1px 2px rgba(255,255,255, 0.2);}
.red {background:#040404;height:100%;position:relative;}
.yellow {background:#990999;height:100%;position:relative;padding:1.4vw;  border-radius: 10px;box-shadow: 0px 0px 1px 2px rgba(255,255,255, 0.2);}
.blue {background:#002455;}
.black {background:#040404;}
.pink {color:#FE00D6;}
.pinky {background:#FE00D6;}
.violett {background:#9200aa;}
.grey {background:#545955;}

.multimedia {background-image: url(/user/pages/images/multimedia-marketing.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.corporate {background-image: url(/user/pages/images/corporate-design.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.brand {background-image: url(/user/pages/images/brand-strategy.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.webdesign {background-image: url(/user/pages/images/web-design.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.socialmedia {background-image: url(/user/pages/images/social-media.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.photography {background-image: url(/user/pages/images/photography.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.digital {background-image: url(/user/pages/images/digital.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.music-production {background-image: url(/user/pages/images/music-production.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.printings {background-image: url(/user/pages/images/printings.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.print {background-image: url(/user/pages/images/print.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.printer {background-image: url(/user/pages/images/printer.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.team {background-image: url(/user/pages/images/team.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.event {background-image: url(/user/pages/images/event.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.google {background-image: url(/user/pages/images/google.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}
.online-shop {background-image: url(/user/pages/images/online-shop.gif);background-size: cover;background-repeat: no-repeat;background-position:center;}
.multimedia {background-image: url(/user/pages/images/multimedia.jpg);background-size: cover;background-repeat: no-repeat;background-position:center;}

.logodesign {max-height: 90%;display: block; margin:0 auto;}

.flags {list-style:none; padding:0}
.flags li {float: left; width: 20%;}
.flag {padding:0 10px 0 0}

.video {position: absolute;top: 50%;transform: translateY(-50%);}
#section3 video {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
}
.video-wrapper {
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}

.video-wrapper:after {
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(0,0,0, 0.00);
background-image: radial-gradient(black 5%, transparent 70%);
background-size: 3px 3px;
}

.button {position: absolute;bottom: 50px;right: 0px;background: #FE00D6;color: #fff;padding: 30px;border-radius: 30px 0px 0 30px;font-size: 24px;text-decoration: none;font-weight:800;text-transform: uppercase;}

.mteam {text-align:center;}
.mteam img {padding: 30px 0; max-width:200px;}
.mteam p {font-size:20px;text-align:center}
.border-team {border:4px #fff solid;aspect-ratio: 1/1; padding: 30px;margin:15px;}

.contact {
position: absolute;
bottom: 15px;
list-style: none;
padding: 15px;
margin: 0;
}

li {
font-size: 24px;
line-height: 2.5;
text-transform: uppercase;
font-weight: 600;
}

li i {padding-right:15px;font-size:40px;color:#FE00D6; }
.fa-instagram {font-size:46px;}

#carousel {aspect-ratio: 1/1;text-align: center;}
#carousel img {padding-bottom:30px;}
#carousel p {font-size: 20px;line-height: 1.4;text-align: center;font-weight: 600;padding: 0 30px;}

.carousel-inner {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: 50%;
  transform: translateY(-50%);
}


@media screen and (max-width:575px){
	.container-fluid {--bs-gutter-x: .5rem;}
	.h1, h1 {font-size: 20px;letter-spacing: 0px;}
	.h2, h2 {font-size: 28px;margin:0;}
	.h3, h3 {font-size: 14px;}
	.h4, h4 {font-size: 36px;line-height:1}
	.h7, h7 {font-size: 12px; padding: 5px 25px 5px 8px;}
	.social h2 {font-size: 16px;}
	.google h3 {font-size:20px;text-align: center;}
	.button {padding:25px; bottom:25px;font-size: 16px;}
	#section1 p {font-size:12px;padding:0;margin-top:0;}
	.mteam img {padding: 0;max-width: 100px;}
	.mteam p {font-size:16px;padding:0;}
	.border-team {border:none; padding: 25px;margin:0px;}
	#contact h2 {font-size: 40px;}
	li {font-size: 18px;}
	li i {font-size: 20px;}
	.fa-instagram {font-size: 24px;}
	.contact {padding: 7px;margin: 0;}
	.logodesign {max-height:260px;}
	#carousel p {font-size: 13px;padding: 0 15px;}
	#carousel img {padding-bottom:15px;max-height:50px;}
	.yellow {padding:0.6rem;}

	.wrapper {display: grid;grid-template-columns: repeat(1,1fr);gap: 1rem;}
}

@media screen and (min-width:576px) and (max-width:767px){
	.h1, h1 {font-size: 20px;}
	.h2, h2 {font-size: 16px;}
	.h3, h3 {font-size: 16px;}
	.h4, h4 {font-size: 46px;line-height:1}
	.button {padding:25px; bottom:25px;}
	#section1 p {font-size:18px;padding:0;margin-top:0;}
	#section1 .full.black {aspect-ratio:2/1;}
	#section2 .violett {aspect-ratio:2/1;position:relative;padding: 15px;}
	.mteam img {padding: 10px 0;max-width: 150px;}
	.mteam p {font-size: 20px;}
	#contact h2 {font-size: 40px;}
	li {font-size: 18px;}
	li i {font-size: 20px;}
	.fa-instagram {font-size: 24px;}
	.contact {padding: 7px;margin: 0;}
	.logodesign {max-height:260px;}
	#carousel p {font-size: 14px;padding: 0 30px;}
}

@media screen and (min-width:768px) and (max-width:991px){
	#section2 .violett {aspect-ratio:2/1;position:relative;padding: 15px;}
	.h2, h2 {font-size: 20px;}
	.h3, h3 {font-size: 20px;}
	h4 {font-size:60px;}
	#section1 p {font-size:24px;padding:0;margin-top:0;}
	#section4 .violett {aspect-ratio:2/1;position:relative;padding: 15px;}
	#section4 .black {aspect-ratio:2/1;position:relative;padding: 15px;}
	.mteam img {padding: 100px 0 30px;}
	.mteam p {font-size: 26px;}
	#carousel p {font-size: 24px;line-height: 1.4;text-align: center;font-weight: 600;padding: 0 45px;}
}


@media screen and (min-width:992px) and (max-width:1200px){
	.h1, h1 {font-size: 20px;}
	.h2, h2 {font-size: 16px;}
	.h3, h3 {font-size: 16px;}
	.h4, h4 {font-size: 36px;line-height:1}
	.button {padding:25px; bottom:25px;font-size: 16px;}
	#section1 p {font-size:11px;padding:0;margin-top:0;}
	#contact h2 {font-size: 40px;}
	li {font-size: 18px;}
	li i {font-size: 20px;}
	.fa-instagram {font-size: 24px;}
	.contact {padding: 7px;margin: 0;}
	.mteam img {padding: 0;max-width: 100px;}
	.mteam p {font-size:13px;padding:0;}
	.border-team {padding: 15px;margin:0px;}
	#carousel p {font-size: 12px;padding: 0 30px;}
}

@media screen and (min-width:1201px) and (max-width:1400px){
	.h1, h1 {font-size: 20px;}
	.h2, h2 {font-size: 16px;}
	.h3, h3 {font-size: 16px;}
	.h4, h4 {font-size: 36px;line-height:1}
	.button {padding:25px; bottom:25px;font-size: 16px;}
	#section1 p {font-size:14px;padding:0;margin-top:0;}
	#contact h2 {font-size: 40px;}
	li {font-size: 18px;}
	li i {font-size: 20px;}
	.fa-instagram {font-size: 24px;}
	.contact {padding: 7px;margin: 0;}
	.mteam img {padding: 30px 0 10px;max-width: 100px;}
	.mteam p {font-size:16px;padding:0;}
	.border-team {padding: 15px;margin:0px;}
}
@media screen and (min-width:1401px) and (max-width:1600px){
	.h1, h1 {font-size: 42px;}
	.h2, h2 {font-size: 24px;}
	.h3, h3 {font-size: 23px;}
	.h4, h4 {font-size: 72px;line-height:1}
	.button {padding:25px; bottom:25px;}
	#section1 p {font-size:16px;padding:0;margin-top:0;}
	.mteam img {padding: 10px 0;max-width: 150px;}
	.mteam p {font-size: 24px;}
	#contact h2 {font-size: 40px;}
	li {font-size: 24px;}
	li i {font-size: 26px;}
	.fa-instagram {font-size: 30px;}
	.contact {padding: 7px;margin: 0;}
}

@media screen and (min-width:1601px) and (max-width:1700px){
	.h4, h4 {font-size: 80px;line-height:1}
	#section1 p {font-size:20px;padding:0;margin-top:0;}
	.mteam p {font-size: 28px;}
}

@media screen and (max-width:319px) {
	.h2, h2 {font-size: 16px;}
	.h3, h3 {font-size: 16px;}
	#section1 p {font-size:9px;padding:0;margin-top:0;}
	.h4, h4 {font-size: 36px;line-height:1}
}

@media screen and (max-width:359px){
	#section1 p {font-size:11px;padding:0;margin-top:0;}
	.mteam img {max-width: 90px;}
	.mteam p {font-size:14px;padding:0;}
	.border-team {border:0px #fff solid;padding: 10px;margin:0px;}
	.join {margin-bottom:0;}
}

@media (max-width: 767px) {

}

@media (max-width: 991px) {

}

@supports (-webkit-touch-callout: none) {
   .carousel-item {background-attachment:inherit;}
}

@media (orientation: landscape) {

}