@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

body, html {
    font-family: "Verdana", "Geneva", sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
}

h1, h2, h3, h4 {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    color: #ccc;
}

p {
    color: whitesmoke;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ff8000;
}

.uppercase {
    text-transform: uppercase;
    font-size: 20px;
}

#content {
    position: relative;
    z-index: 1; 
}

.language-switcher {
    position: fixed;
    top: 10px;
    right: 10px;
}

.language-switcher img {
    width: 32px;
    height: 32px;
    margin: 0 5px;
    cursor: pointer;
}


.menu {
    backdrop-filter: blur(8px) brightness(1.2);
    background: linear-gradient(to right, rgb(17, 17, 17), rgb(85, 85, 85));
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu ul li {
    display: inline;
    position: relative;
}

.menu ul li a {
    margin: 16px;
    color: #ccc;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 1s ease-in-out;
    position: relative;
}

.menu ul li a::before {
    content: attr(data-item);
    transition: all 0.2s ease-in-out;
    color:  #e4e4e4;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    overflow: hidden;
}

.menu ul li a:hover::before {
    width: 100%;
}

.menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 0.5px;
    background-color: #ffefc9;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.1s ease-in-out;
}

.menu ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-center {
    flex: 1;
    display: flex;
    justify-content: center;
    font-size: 20px;
}

.foot img.logo {
    height: 20px;
    margin-left: 20px;
}

.foot {
    background: linear-gradient(rgb(48, 48, 48), rgb(17, 17, 17));
    width: 100%;
    bottom: 0;
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.foot-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.foot-text p {
    font-family: Lato;
    font-size: 14px;
    color: rgb(146, 146, 146);
}

.to-top {
    position: fixed;
    bottom: 17px;
    right: 17px;
    width: 50px;
    height: 50px;
    background-color: #ff8000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transform: translateX(100px);
    transition: transform 0.3s ease-in-out;
}

.to-top.show {
    transform: translateX(0);
}

.to-top:hover {
    background-color: #e06700;
    color: #fff;
}

.to-top .top-icon {
    font-size: 24px;
}

.fadein {
    animation: fadeIn 1s ease-in-out;
}

.indent {
    text-indent: 2em;
    
}

.indent::first-letter {
    font-size: 2em;
    font-weight: bold;
    line-height: 0.7;
}

.introduction {
    font-style: oblique;
    line-height: 1;
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 10px 50px;
    color: #ccc;
}

.horizontal-bar {
    background-color: rgba(240, 240, 240, 0);
    width: 100%;
    box-shadow: inset 0 -3em 3em rgb(0 200 0 / 30%),
    0 0 20px rgba(0, 0, 0, 0.8);
}

.playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

.tiny5-regular {
    font-family: "Tiny5", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.Cinzel {
    font-family: "Cinzel", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.margin-content10 {
    padding-left: 10%;
    padding-right: 10%;
    box-shadow: 2px 0 15px 2px rgba(0, 0, 0, 0.5); 
}

.margin-content20 {
    padding-left: 20%;
    padding-right: 20%;
}

.margin-content-musics {
    padding-top: 5%;
    padding-left: 20%;
    padding-right: 20%;
}

.margin-content-contact {
    padding-left: 20%;
    padding-right: 20%;
}

.content-background-black {
    background: rgba(0, 0, 0, 0.308);
    padding: 20px;
    box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.5); 
    overflow: hidden; 
}

.content-background-black-introduction {
    background: rgba(0, 0, 0, 0.308);
    padding: 20px 20px 0 20px;
    box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.5); 
    overflow: hidden; 
}

.content-background-black-contact {
    background: rgba(0, 0, 0, 0.308);
    padding: 6% 5%;
    box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.5); 
    overflow: hidden; 
}

.parallax {
    font-family: "Courier New", "Lucida Console", monospace;
    /*background-image: url('/img/backgroundparallax.jpg');
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
    background-size:cover;*/
    /*background-color: #0b51b9;*/
    background-color: #0d2141;
    /*background-color: #002147;*/
    position: relative;
    padding-top: 185px;
    z-index: -1;
}
 
.parallax h1 {
    color: white;
    text-align: center;
    padding: 5px 5px;
    font-size: 2em;
    font-style: italic;
}



.quote {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote img {
    width: 100px;
    margin: 0 10px;
}

.quote img.mirror {
    transform: scaleX(-1);
}

.container-contact {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 2%;
    padding-left: 7%;
    padding-right: 7%;
    padding-bottom: 3%;
}

.container-presentation {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0;
}

.container-price {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 3%;
    padding-left: 7%;
    padding-right: 7%;
    padding-bottom: 2%;
}

.img-presentation {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-presentation img {
    height: 300px;
}

.text-presentation {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    padding: 0 5%;
    position: relative;
}

.img-introduction {
    display: flex;
    justify-content: space-between;
    width: 100%; 
    height: 20px;
    align-items: flex-end;

}

.logos-png {
    display: flex;
    justify-content: flex-start; 
    margin-top: 10px; 
    width: 50%; 
}

.logos-png img {
    margin: 0 1%;
    height: 30px; 
}

.blender-works {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px; 
    margin-left: 10px;
    width: 50%;
}

.blender-works img {
    filter: opacity(0.5) contrast(0.8) ;
    height: 150px; 
}

.musics iframe {
    margin-top: 2.1%;
    margin-bottom: 2.1%;
}

.logo {
    align-items: center;
}

.photo {
    height: 400px;
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);*/
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.center-content img.LogoBig {
    height: 65%;
    display: block; 
    margin: 0 auto; 
    position: relative;
    padding: 9px 0;
}

.soundcloud-player {
    background-color: #44444400;
    border-radius: 20px;
    height: 95px;
    overflow: hidden;
}

.main-advantages {
    padding-top: 10px;
    background: rgba(0, 0, 0, 0.308);
}

.advantages {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding: 0 20px;
    text-align: center;

}

.advantages h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.advantage-item {
    display: inline-block;
    width: 22%;
    height: 270px;
    margin-top: 1%;
    margin-bottom: 3%;
    padding: 20px;
    background: linear-gradient( rgb(0, 50, 116), rgb(0, 20, 46));
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}

.advantage-item .svg-icon-holder {
    display: inline-block;
    width: 100px;
    height: 64px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.advantage-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.advantage-item p {
    font-size: 1.05rem;
    font-style: italic;
    color: #b9b9b9;
}

.draw {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
}

.draw2 {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.draw3 {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}

.animated .draw,
.animated .draw2,
.animated .draw3 {
    animation: draw 2s ease-in-out forwards;
}

/* Footer Styles */
#footer-widgets {
    background-color: #1a1a1a;
    color: #777;
    padding: 40px 0;
    font-family: 'Abel', sans-serif;
}

#footer-widgets .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#footer-widgets .row {
    display: flex;
    justify-content: space-between;
}

#footer-widgets .col {
    flex: 1;
    margin: 0 15px;
}

#footer-widgets h4 {
    font-family: 'Abel', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 20px;
    font-weight: 400;
    color: #777;
    line-height: 24px;
    margin-bottom: 20px;
}

#footer-widgets a {
    color: #ccc;
}

#footer-widgets a:hover {
    color: #ff8000;
}

#footer-widgets .textwidget,
#footer-widgets ul {
    color: #999;
    font-size: 14px;
    line-height: 24px;
}

#footer-widgets ul {
    list-style-type: none;
    padding: 0;
}

#footer-widgets ul li {
    margin-bottom: 10px;
}

#footer-widgets ul li a {
    color: #ccc;
    text-decoration: none;
}

#footer-widgets ul li a:hover {
    text-decoration: underline;
}

#footer-widgets i {
    color: #ff8000;
    margin-right: 10px;
}

.nectar-social {
    margin-top: 10px;
}

.nectar-social a {
    display: inline-block;
    position: relative;
    background-color: transparent;
    border: 2px solid #ff8000;
    color: #ccc;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 20px;
    text-decoration: none;
    transition: color 0.3s;
    z-index: 1;
    overflow: hidden;
}

.nectar-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff1de;
    z-index: -1;
    transition: transform 0.3s;
    transform: scaleX(0);
    transform-origin: left;
}

.nectar-social a:hover::before {
    transform: scaleX(1);
}

.nectar-social a:hover {
    color: #ccc;
}

.nectar-social i {
    margin-right: 5px;
    z-index: 2;
}

#footer-widgets .widget {
    border-left: 1px solid #444;
    padding-left: 15px;
}

#footer-widgets .widget:first-child {
    border-left: none;
    padding-left: 0;
}

.social-button {
    display: inline-block;
    margin-bottom: 20px;
    color: grey;
}

.social-links {
    color: inherit;
    margin-right: 100px;
}

.social-links a {
    margin-right: 10px;
    color: #777;
    font-size: 1.8em;
    text-decoration: none; 
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links:hover {
    color: #ff8000;
    transition: color 0.3s;
}

.contact-container {
    display: flex;
    background-color: #e0e0e0ab;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-info {
    flex: 1;
    margin-right: 20px;
}

.contact-info h2 {
    font-size: 24px;
    letter-spacing: 2px;
    color: #333;
}

.contact-info p {
    margin: 10px 0;
    color: rgb(37, 37, 37);
}

.contact-info a {
    color: rgb(37, 37, 37);
}

.contact-info a:hover {
    color: #ff8000;
}

.contact-info .email {
    color: #cc0000;
}

.social-links-contact {
    display: flex;
    margin-top: 20px;
}

.social-links-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: #ffffff;
    color: #ff8000;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
}

.social-links-contact a:hover {
    background-color: #ff8000;
    color: #ffffff;
}

.contact-form {
    flex: 2;
    padding-bottom: 194px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.contact-form label {
    font-size: 14px;
    color: #333;
}

.contact-form label span {
    color: #cc0000;
}

.contact-form .name-fields {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.contact-form .name-fields input {
    width: calc(50% - 5px);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.button-container {
    display: flex;
    justify-content: flex-end;
}

.contact-form button {
    width: 100%;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    #footer-widgets .row {
        flex-direction: column;
    }

    #footer-widgets .col {
        margin: 0 0 20px 0;
    }

    #footer-widgets h4 {
        font-size: 18px;
    }

    #footer-widgets .textwidget,
    #footer-widgets ul {
        font-size: 12px;
    }

    #footer-widgets .widget {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 1500px) {
    .advantages {
        flex-direction: column;
        align-items: center;
    }

    .advantage-item {
        width: 80%;
        margin-bottom: 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .advantage-item {
        width: 100%;
        margin-bottom: 20%;
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}