@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    font-family: "Montserrat", sans-serif;
}

.background {
    background-color: #decec7;
}

.separator {
    width: 100%;
    height: 5vh;
    background: fixed;
    background-color: #245d51;
    bottom: 0px;
    position: -webkit-sticky;
    position: sticky;
    margin-bottom: 10vh;
}

.portrait {
    height: 75vh;
    margin-top: 15vh;
    max-width: 70vw;
}

.btn-custom {
    background-color: #245d51;
    border-color: #245d51;
    color: whitesmoke;
    text-decoration: none;
    transition: background-color .3s ease-in-out;
    transition: color .3s ease-in-out;
}

.btn-custom:hover {
    color: #2f2f2f;
    background-color: #decec7;
    border-color: #2f2f2f;
}

.btn-custom:hover:active {
    color: #2f2f2f;
    background-color: #d8beb3;
    border-color: #2f2f2f;
}

.top-btns {
    height: 5vh;
}

.item {
    margin-top: 10vh;
    margin-left: 5vh;
    margin-right: 5vh;
    margin-bottom: 5vh;
    background-color: #decec7;
    background-clip: border-box;
}

.item-body {}

.item-img {
    cursor: pointer;
    transition: 0.3s;
}

.item-img:hover {
    opacity: 0.9;
}

.dark {
    color: #2f2f2f;
}


.noscroll {
    position: fixed !important
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #245d51;
}

.container:hover .overlay {
    opacity: 1;
    border-radius: 1%;
}

.text {
    color: white;
    height: 90%;
    width: 90%;
    margin: 2%;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/* The Modal (background) */
#serviceImgModal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (image) */
#serviceImgModalImg {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#serviceImgModalCaption {
    margin: auto;
    display: none;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
#serviceImgModalImg,
#serviceImgModalCaption {
    animation-name: zoom;
    animation-duration: 0.4s;
}

@keyframes zoom {
    from {
        transform: scale(0.1)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
#closeServiceImgModal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

#closeServiceImgModal:hover,
#closeServiceImgModal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen {
    #serviceImgModalImg {
        width: 100vw;
    }
}

/* The Modal (background) */
.contact-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content/Box */
.contact-modal-content {
    background-color: #decec7;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    /* border: 2px solid #245d51; */
    width: 30%;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */
.contact-modal-close {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.contact-modal-close:hover,
.contact-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}