.bg-img {
    position: absolute;
    background-color: rgb(1, 5, 15);
    width: 100%;
    height: 700px;
}

.bg-img img {
    display: block;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: left;
    filter: blur(5px) brightness(0.8);
}

.intro-cont {
    position: relative;
    width: 100%;
    height: 600px;
    overflow-y: hidden;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.intro-cont .col {
    position: relative;
    width: 100%;
    padding: 0 20px;
    color: white;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    text-align: center;
}

.intro-cont .col:nth-of-type(2){
    display: none;
}

.intro-cont h1 {
    font-size: 8.0rem;
    margin-bottom: 30px;
    line-height: 100%;
}

.intro-cont p {
    font-size: 2rem;
}

.intro-cont .castle-img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
    filter: invert();
}

.services-cont {
    display: flex;
    flex-flow: column nowrap;
    padding: 40px 0 50px;
    width: 100%;
}

.services-cont h2 {
    width: 100%;
    text-align: center;
    font-size: 4rem;
    margin-bottom: 25px;
}

.services-cont p {
    margin: 0 auto 25px;
    text-align: justify;
}

.services-cont ul {
    list-style: none;
    font-size: 2.4rem;
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 10px;
    column-gap: 10px;
    justify-content: space-around;
    padding: 0;
}

.services-cont .icon {
    width: 1.2em;
    text-align: center;
    margin-right: 10px;
}

/* hackish -> phone icon is smaller than other icons */
.fa-mobile-phone.icon {
    font-size: 1.3em;
    width: 0.923em; 
}

.contact-cont {
    padding: 40px 0 50px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.contact-cont h2 {
    margin-bottom: 25px;
}

.contact-cont p {
    text-align: justify;
}


/************************************************ QUERIES ********************************************************/

@media screen and (min-width:600px){
    .services-cont ul {
        font-size: 3rem;
    }
}


@media screen and (min-width:800px){
    .intro-cont .col {
        width: 50%;
    }

    .intro-cont .col:nth-of-type(2){
        display: initial;
    }

    .contact-cont {
        align-items: flex-start;
    }
}