* {
    font-family: "Outfit", serif;
}

body {
    background-color: white;
}

.logoIcon {
    width: 25pt;
}

.navbar-brand {
    color: #3d3df3;
    cursor: pointer;
}

.navbar-brand:hover {
    color: #3d3df3;
}

header {
    padding: 50px 0;
}

header h1 {
    font-weight: 500;
    font-size:50pt;
    margin-bottom: 20px;
    margin-top: 50px;
}

header h1 #star::after {
    content: url("img/star.png");
    position: relative;
    top: 10px;
}

header h1 #bold{
    background: -webkit-linear-gradient(150deg, #3d3df3, #0f1376);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
}

header h1 #bold::before {
    content: url("img/star.png");
    position: relative;
    top: 5px;
    margin-right: 10px;
}


header p {
    color: grey;
}

header .col-img{
    display: flex;
    justify-content: end;
}

header img {
    width: 300px;
}

.services {
    background-image: url('img/features.png');
    background-size: cover;
    border-radius: 20px;
    height: 700px;
    text-align: center;
    padding: 10px;
    position: a;
}

.services h2 {
    margin-top: 30px;
    font-weight: 400;
    color: white;
}

.services p {
    color: grey;
}

.features {
    margin: 0 30px;
    position: relative;
    margin: -500px 0 0 0;
}

.features .col {
    background-color: #f5f5f5;
    height: 300px;
    border-radius: 20px;
    padding: 20px;
    margin: 0 20px;
    min-width: 30%;
    min-height: 350px;
    margin-bottom: 30px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.features .col:hover {
    background-color: #fff;
}

.features .col:hover  h3{
    color: #3d3df3;
}

.features h3 {
    text-align: center;
}

.features img {
    width:100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.features p {
    font-weight: 300;
    color: rgb(77, 77, 77);
}


section {
    margin-top: 150px;
    margin-bottom: 0;
    padding-bottom: 0px;
}

section img{
    margin: 0;
    width: 500px;
}

section h2::after{
    content: url("img/star.png");
    position: relative;
    top: 10px;
}

section h2{
    background: -webkit-linear-gradient(150deg, #3d3df3, #0f1376);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-top: 100px;
}

footer .container{
    background-color: #f5f5f5;
    border-radius: 20px 20px 0 0;
    padding:  20px;
    font-size: 10pt;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: #3d3df3;
}

a:hover {
    color: #0f1376;
    text-decoration: underline;
}

.page {
    margin: 20px 0;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.page h1{
    background: -webkit-linear-gradient(150deg, #3d3df3, #0f1376);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.page h1::after{
        content: url("img/star.png");
        position: relative;
        top: 10px;
}

@media only screen and (max-width: 800px) {
    header h1 {
        text-align: center;
        font-size: 30pt;
    }

    .features .col {
        min-width: 90%;
        height: fit-content;
    }

    section img{
        margin: 0;
        width: 400px;
    }

    .order-first {
        order: 99 !important; 
    }
    
    .order-last {
        order: 1 !important; 
    }
    
    header .col-img{
        display: flex;
        justify-content: center;
        width: 100%;
    }

  }