/* Variables */
:root {
    --primary-100: #6c35de;
    --primary-200: #a364ff;
    --primary-300: #ffc7ff;
    --accent-100: #cb80ff;
    --accent-200: #373737;
    --text-100: #ffffff;
    --text-200: #e0e0e0;
    --bg-100: #241b35;
    --bg-200: #342a45;
    --bg-300: #4d425f;
}

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent; /* Transparent au départ */
    transition: transform 0.3s ease-in-out;
    box-shadow: none;
}

header.scrolled {
    background: #241b35; /* Change de couleur au scroll */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Répartition égale des éléments */
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Logo centré */
header .logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .logo img {
    height: 50px; /* Taille du logo */
    margin-top: 5px;
    transition: transform 0.3s ease;
}

header .logo img:hover {
    transform: scale(1.1); /* Effet zoom au survol */
}

/* Navigation */
header nav {
    flex: 2;
}

.nav-links {
    display: flex;
    justify-content: center; /* Centrer les liens */
    list-style: none;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-100);
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-100);
}

.nav-links a.active {
    font-weight: 600;
    color: var(--primary-100);
    transform: scale(1.1); /* Agrandir légèrement le lien actif */
}

/* Icons */
.header-icons {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.header-icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.header-icons a img {
    margin-top: 10px;
    height: 20px; /* Taille des icônes */
    width: 20px; /* Taille des icônes */
    filter: brightness(0) invert(1); /* Rendre les icônes blanches */
}

.header-icons a:hover img {
    filter: brightness(1); /* Rendre les icônes colorées au survol */
    transform: scale(1.2); /* Zoom au survol */
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-left: 50px;
    background: var(--primary-100);
    color: var(--text-100);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-200);
    transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column; /* Disposition en colonne sur petit écran */
    }

    .nav-links {
        flex-wrap: wrap; /* Les liens passent sur plusieurs lignes si nécessaire */
        gap: 1rem;
    }

    .header-icons {
        margin-top: 1rem;
    }
}


#hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Assure qu'il n'y ait pas de débordement */
    color: var(--text-100);
    text-align: center;
}

/* Vidéo de fond */
.hero-video {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    left: 0;
    bottom: 0; /* Ajouté pour garantir que tout est couvert */
    width: 100%;
    height: 100vh; /* Occupe tout l'espace vertical */
    object-fit: cover; /* Remplit l'espace sans déformer la vidéo */
    z-index: -1; /* Place la vidéo derrière le contenu */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-100);
    animation: fadeIn 2s ease-out;
    text-transform: uppercase;
}

.hero-content h2 span {
    color: var(--primary-300);
}

.hero-content p {
    font-size: 3rem;
    font-weight: 600;
    animation: fadeIn 2.5s ease-out;
    padding-bottom: 10px;
}

.hero-content #typed-text {
    color: #fff;
    font-weight: 600;
}

.hero-content .btn {
    display: inline-block;
    margin-top: 0.2rem;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    background: var(--primary-100);
    color: var(--text-100);
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-content .btn:hover {
    background: var(--primary-200);
    transform: translateY(-2px);
}

/* Section "À Propos" */
#about {
    margin-top: -2%;
    background: white; /* Couleur d'arrière-plan */
    color: var(--text-100);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden; /* Permet de cacher les éléments hors limite */
    margin-bottom: 10%;
}

/* Conteneur principal */
.about-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Pour les petits écrans */
}

/* Texte */
.about-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.8;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-100);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    margin-top: 0.5rem;
}

.about-text p {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: black;
}

.about-text span {
    color: var(--primary-300); /* Accent sur "Digital Crew" */
    font-weight: 600;
    text-decoration: underline;
    text-underline-position: 4px center;
}

.about-text ul {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-text ul li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-100);
}

.about-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    background: var(--primary-100);
    color: var(--text-100);
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
    background: var(--primary-200);
    transform: translateY(-2px);
}

/* Image */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 75%;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Responsiveness */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* Passer en colonne sur petit écran */
        margin-top: -20%;
    }

    .about-image {
        display: none;
    }

    .about-btn {
        display: flex;
        text-align: center;
        justify-content: center;
        padding: 0.8rem 0.2rem;
    }
}

/* Section Nos Services */
#services {
    background: var(--bg-200);
    color: var(--text-100);
    padding: 2rem 1rem;
}

#services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-100);
    text-transform: uppercase;
}

#services p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-200);
    margin-bottom: 2rem;
}

.services-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    perspective: 1000px;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 350px;
    margin: 10px;
}


.card-inner {

    margin: 0;
    position: relative;
    width: 100%;
    height: 300px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    transform-origin: center; /* Ajoutez cette ligne */
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    padding: 0; /* Assurez-vous qu'il n'y a pas de padding différent */
}

.card-front {
    background: var(--bg-300);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.card-back {
    background: var(--bg-300);
    color: var(--text-200);
    text-align: center;
    padding: 0;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 100px;
    box-shadow: inset;
}

.card-front h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: whitesmoke;
}

.card-back p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-back .btn {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: var(--primary-100);
    color: var(--text-100);
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.card-back .btn:hover {
    background: var(--primary-200);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card {
        max-width: 100%;
    }
}

.carousel {
    text-align: center;
    margin: 3rem 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: 5%;
}

.carousel h3 {
    font-size: 1.8rem;
    color: var(--primary-100);
    margin-bottom: 1.5rem;
}

.carousel-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-item {
    flex: 0 0 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 1rem;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-200);
}

.carousel-item span {
    display: block;
    margin-top: 1rem;
    color: var(--primary-200);
    font-weight: bold;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-100);
    color: var(--text-100);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-200);
}

@media (max-width: 768px) {
    .carousel {
        display: none;
    }
}

.prev-btn {
    left: -50px;
}

.next-btn {
    right: -50px;
}


/* Preloader */
#preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--bg-100);
    z-index: 9999;
    animation: fadeOut 2s ease 3s forwards;
}

#preloader img {
    height: 100px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-100);
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

#creations {
    background: white;
    color: var(--text-200);
    padding: 2rem 1rem;
    position: relative;
    margin-bottom: 10%;
}

#creations h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-100);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

#creations p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 2%;
}

/* Conteneur des créations */
.creations-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    transform: perspective(800px);
}

/* Carte de création */
.creation-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 250px;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
}

/* Animation 3D pour effet de survol */
.creation-card:hover {
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

/* Image */
.creation-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(85%);
}

/* Effet de zoom sur l'image au survol */
.creation-card:hover img {
    transform: scale(1.1);
    filter: brightness(100%);
}

/* Infos de la création */
.creation-info {
    padding: 1.5rem;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

/* Effet d’apparition des infos */
.creation-card:hover .creation-info {
    opacity: 1;
}

.creation-info h3 {
    font-size: 1.8rem;
    color: var(--primary-100);
    margin-bottom: 1rem;
}

.creation-info p {
    font-size: 1rem;
    color: var(--text-200);
    margin-bottom: 1rem;
}

.creation-info .btn {
    padding: 0.5rem 1.5rem;
    background: var(--primary-100);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.creation-info .btn:hover {
    background: var(--primary-200);
    transform: translateY(-2px);
}

/* Effet d'apparition sur le scroll */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.creation-card.appear {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

/* Responsiveness */
@media (max-width: 768px) {
    #creations h2 {
        font-size: 2rem;
    }
    .creation-info h3 {
        font-size: 1.6rem;
    }
    .creation-card {
        max-width: 100%;
    }
}
 

#preloader {
    animation: fadeOut 1s ease-in 2s forwards; /* Fade-out après 2 secondes */
}

/* Section General Styles */
section {
    padding: 2rem 1rem;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-100);
}

section p {
    font-size: 1.2rem;
    color: var(--text-200);
    text-align: center;
    line-height: 1.8;
}


/* Partie droite : Formulaire */
#contact {
    width: 100%;
    background-color: var(--bg-200);
    padding: 3rem 0;
    min-height: 90vh;
}

#contact h2{
    color: var(--text-100);
    text-transform: uppercase;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    margin-top: 5rem;
}

/* Partie gauche : Boutons */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem; /* Ajustez pour gérer les espacements */
    max-width: 550px;
}

.separator {
    width: 80%; /* Ajustez la largeur du trait */
    border-top: 1px solid #fff; /* Fine ligne blanche */
    margin: 0.5rem 0; /* Espacement au-dessus et en dessous */
    opacity: 0.7; /* Légère transparence pour un effet subtil */
}

.info-text-u {
    list-style-type: none;
    padding: 0;
}

.info-text-u li {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--accent-100);
}

.contact-info .info-text {
    font-size: 1rem;
    color: var(--text-100);
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: row;
}

.contact-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary-100);
    border: none;
    margin: 10px;
    text-decoration: none;
    height: 125px; /* Hauteur fixe */
    width: 125px;  /* Largeur égale à la hauteur */
    border-radius: 50%; /* Forme circulaire */
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-button:hover {
    background: var(--primary-200);
    transform: translateY(-3px);
    border: #f9f9f9 2px solid;
}

.contact-button i {
    font-size: 2rem;
    transition: transform 0.5s ease; /* Transition fluide pour la rotation */
}

.contact-button:hover i {
    transform: rotate(360deg); /* Rotation de 360 degrés */
}


/* Partie droite : Formulaire */
.contact-form {
    flex: 1;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.contact-form {
    flex: 1;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    height: 550px;
    width: 100%;
}



.contact-form .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-right: 1.5rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border-color 0.2s;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-100);
    outline: none;
    background-color: #fff;
}

.contact-form .btn2 {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary-100);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form .btn2:hover {
    background: var(--primary-200);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info{
        flex: none;
        max-width: 80%;
    } 
    
    .contact-form {
        flex: none;
        max-width: 80%;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }
}

footer {
    background-color: #241b35; /* Fond sombre */
    color: #fff; /* Texte blanc */
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 0.875rem; /* Taille de police réduite pour un look plus professionnel */
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-logo img {
    height: 40px; /* Logo légèrement plus petit */
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.1); /* Effet de zoom sur le logo */
}

.footer-nav, .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-200); /* Couleur au survol */
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-block;
}

.footer-social img {
    height: 25px;
    width: 25px;
    filter: brightness(0) invert(1); /* Icônes blanches */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social a:hover img {
    filter: brightness(1); /* Icônes colorées au survol */
    transform: scale(1.2); /* Zoom au survol */
}

.footer-bottom {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #bbb; /* Texte plus clair */
}

.footer-bottom p {
    margin: 0;
}

/* Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Disposition en colonne sur petit écran */
        align-items: center;
    }

    .footer-nav, .footer-legal {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo img {
        height: 30px; /* Logo plus petit sur les petits écrans */
        margin-top: 20px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        background: var(--bg-200);
        padding: 1rem;
        border-radius: 8px;
    }

    nav .nav-links.show {
        display: flex;
    }

    .header-container {
        flex-direction: column;
    }

    .header-icons{
        display: none;
    }
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#back-to-top:hover {
    transform: scale(1.050);
}

@media screen and (max-width: 605px) {
    #back-to-top {
        height: 30px; /* Réduire la taille pour mobile */
        width: 30px;  /* Réduire la taille pour mobile */
        bottom: 20px; /* Positionner plus bas sur mobile */
        right: 20px;  /* Positionner plus à droite sur mobile */
        padding: 5px; /* Réduire le padding pour un bouton plus compact */
        font-size: 1.2rem; /* Réduire la taille de la police pour mobile */
    }
}

@media (max-width: 768px) {


    .contact-container {
        flex-direction: column;
    }

    .contact-info{
        max-width: 100%;
        flex: none;
        margin-top: -50px;
    }
    
    .contact-form {
        padding: 3rem;
        max-width: 80%;
        flex: none;
    }

    .form-group {
        max-width: 100%;
    }

    .contact-item {

        flex-direction: row;
        gap: 0.5rem;
    }

    footer .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-button {
        height: 50px;
        width: 50px;
    }

    .contact-button i {
        font-size: 1rem;
    }
}

@media (max-width: 549px) {
    .contact-form {
        max-width: 78%;
    }
}

@media (max-width: 470px) {
    .contact-form {
        max-width: 75%;
    }
}

@media (max-width: 415px) {
    .contact-form {
        max-width: 72%;
    }
}

@media (max-width: 360px) {
    .contact-form {
        max-width: 69%;
    }
}