@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


:root {
    --grey: #333;
    --white: #fff;
    --purple: #A020F0;
    --blue: #4169e1;
}

.content {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hero {
    display: flex;
    justify-content: center;
    max-width: 80%;
    color: var(--grey);

    margin: 8rem auto 6rem;
    padding: 2rem;

    column-gap: 2rem;
}

.hero-text h1 {
    font-family: "Rubik", sans-serif;
    font-weight: bolder;
    font-size: 4.5rem;
    text-transform: uppercase;
    line-height: 5.4rem;

    margin-top: 2rem;
}

.hero-text h1 span {
    background: rgb(160,32,240);
    background: linear-gradient(133deg, rgba(160,32,240,1) 8%, rgba(65,105,225,1) 100%);    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
 }

.hero-text p {
    font-family: "Outfit", sans-serif;
    font-size: 1.375rem;
    line-height: 2.2rem;

    margin: 1rem 0;
}

.hero-text a {
 display: inline-block; 

 font-family: "Rubik", sans-serif;
 font-weight: bold;
 font-size: 18px;

 margin: 1.2rem 0;
 padding: 1.2rem 1.7rem;
 border-radius: 1rem;

 text-decoration: none;
 color: var(--white);
 background: rgb(160,32,240);
 background: linear-gradient(133deg, rgba(160,32,240,1) 8%, rgba(65,105,225,1) 100%);
 box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
 transition: all 0.3s ease-in-out;
}

.hero-text a:hover {
    scale: 1.1;
}

.hero-video {
    width: 480px;
    aspect-ratio: 9 / 16;
    overflow: hidden; 
    position: relative; 
    border-radius: 60px 30px;
    box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.5);
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
}

.service-title {
    font-family: "Rubik", sans-serif;
    font-weight: bolder;
    text-align: center;
    font-size: 2rem;
    color: var(--grey);

    margin-bottom: 5rem;
}


.service-content {
    font-family: "Rubik", sans-serif;
    font-weight: bold;
    font-size: 1.5rem;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;

    margin-bottom: 4rem;
    gap: 8rem;
}

.column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    
    flex: 1; 
    min-width: 150px;
    transition: all 0.5s ease-in-out;
}

.column i {
    font-size: 2rem;
    color: var(--grey);
}

.column a {
    margin-top: 1rem;
    text-decoration: none;
    color: var(--grey);
}

.column:hover {
    cursor: pointer;
    scale: 1.2;
}

.service-button a {
    display: inline-block; 

    font-family: "Rubik", sans-serif;
    font-weight: bold;
    font-size: 18px;
   
    margin-bottom: 7rem;
    padding: 1.2rem 1.7rem;
    border-radius: 1rem;
   
    text-decoration: none;
    color: var(--white);
    background: rgb(160,32,240);
    background: linear-gradient(133deg, rgba(160,32,240,1) 8%, rgba(65,105,225,1) 100%);
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;

}

.service-button a:hover {
    scale: 1.1;
}
