/*****************************************************/
/* General CSS */
/*****************************************************/
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@font-face {
    font-family: "beautyfont";
    src:url("../css/fonts/BeautyDemo.otf") format('opentype'), url("../css/fonts/BeautyDemo.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 10px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.custom-footer {
    margin-top: 10px;
}

.content-wrap {
    padding-bottom: 2.5rem; /* Footer height */
}

.footer-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2.5rem; /* Footer height */
}
/*****************************************************/
/* Home Page CSS */
/*****************************************************/
.home-img-container {
    position: relative;
    text-align: center;
    color: black;
}

.header-img {
    width: 100%;
    height: auto;
}

.centered {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.column-img {
    max-width: 100%;
    height: auto;
}

.home-column {
    display: block;
    margin-left: 5%;
    margin-right: 5%;
}

/*****************************************************/
/* Portfolio Page CSS */
/*****************************************************/
.portfolio-images {
    max-width: 70vw;
    object-fit: fill;
    padding-top: 30px;
    padding-bottom: 2px;
}

@media (min-width: 768px) {
    .portfolio-images {
        max-width: 35vw;
        height: 26vw;
        object-fit: fill;
        padding-top: 30px;
        padding-bottom: 2px;
    }
}

.gallery-box {
    padding: 40px;
}

.gallery-heading {
    padding-left: 5px;
}

.hovering:hover {
    transform: scale(1.03);
    opacity: .4;
}

.gallery-images {
    padding: 5px;
    max-width: 32%;
    height: 40vw;
    object-fit: cover;
}

@media (min-width: 768px) {
    .gallery-images {
        padding: 5px;
        max-width: 19%;
        height: 25vw;
        object-fit: cover;
    }
}

.expand {
    width: 100vw;
    height: 100vh;
    z-index: 999;
    top: 0;
    left: 0;
    display: none;
    position: fixed;
    object-fit: contain;
    background-color: black;
}

/*****************************************************/
/* About Page CSS */
/*****************************************************/
.profile-img {
    height: auto;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 5%;
}

.horizontal-line {
    border-bottom: 1px solid black;
    width: auto;
}

.services {
    padding-top: 30px;
    text-align: center;
}

.process {
    padding-bottom: 20px;
    padding-top: 30px;
    border: 1px;
}

@media (max-width: 768px) {
    .horizontal-line2 {
        border-bottom: 1px solid black;
        width: auto;
    }
}

@media (min-width: 768px) {
    .profile-img {
        height: auto;
        width: 400px;
        margin-top: 40px;
        margin-right: 40px;
        margin-bottom: 40px;
        border-radius: 5%;
    }

    .about-verbage {
        padding-top: 40px;
        width: 1200px;
    }

    .horizontal-line {
        clear: both;
        border-bottom: 1px solid black;
        width: 1250px;
    }

    .services {
        width: 200px;
        float: left;
        padding-top: 30px;
    }

    .vertical-line {
        border-left: 1px solid black;
        margin-top: 50px;
        float: left;
        height: 500px;
    }

    .process {
        width: 1000px;
        padding-bottom: 20px;
        padding-top: 30px;
        border: 1px;
        margin-left: 250px;
    }
}

/*****************************************************/
/* Contact Page CSS */
/*****************************************************/
.contact-block {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}