html {
    scroll-behavior: smooth;
}

.row--sm-space {
    margin-top: 20px;
}

.center-icon {
    position: absolute;
    left: 50%;
    margin-left: -50px !important;
    display: block;
}
.center-hor-and-ver {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}
.full-width {
    position: absolute;
    width: 100%;
    left: 0;
}

.yellow-border {
    border-bottom: 2px solid #FBB039;
}

.row--md-space {
    margin-top: 40px;
}

.row--lg-space {
    margin-top: 60px;
}

.row--xlg-space {
    margin-top: 100px;
}

.responsive {
    width: 100%;
    height: auto; 
}

.col-img{
    width: 100%;
    max-height: 70%;
}

.col-img-max{
    width: 100%;
    height: 100%;
}

.full-page-div{
    min-height: 100vh;
}

.half-page-div{
    min-height: 50vh;
}

.third-page-div{
    min-height: 33vh;
}

.text-gray {
    color: #808080;
}
.text-dark-gray {
    color: #585858;
}
.text-small-italic {
    font-style: italic;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
}

.hidden {
    display: none !important;
}

.cover-photo{
    height: 500px;
}

.thumbnail-photo {
    height: 300px;
    width: 350px;
}

.color-yellow {
    color: #FBB039 !important;
}

.color-dark-yellow {
    color: #c56200!important;
}
.color-black {
    color: #000000!important;
}
.color-white {
    color: #ffffff !important;
}
.color-dark-gray {
    background-color:#373737 !important;
}

.form-control:focus {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #FBB039 !important;
    outline: 0;
    box-shadow: 0 0 0 0.1rem #FBB039 !important;
}

.custom-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    
  }

  .custom-btn:hover {
    color: #ffffff;
    text-decoration: none;
  }
  
  .custom-btn:focus, .btn.focus {
    outline: 0;
  }

.btn-yellow {
    color: #ffffff;
    background-color: #FBB039;
    border-color: #FBB039;
}

    .btn-yellow:hover {
        color: #ffffff;
        background-color: #c56200;
        border-color: #FBB039;
    }
    .btn-yellow:active:focus {
        background-color: #FBB039 !important;
        border-color: #FBB039 !important;
        color: #ffffff !important;
        box-shadow: 0 0 0 0.2rem #FBB039 !important;
    }

    .btn-yellow:focus, .btn-yellow.focus {
        box-shadow: 0 0 0 0.2rem #ffc947;
      }


    .outline-button-yellow {
        background-color: white; 
        color: #8d8d8d; 
        border: 2px solid #ffe0b2;
        padding: 8px 16px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        transition-duration: 0.4s;
        cursor: pointer;
      }
      
        
        .outline-button-yellow:hover {
          background-color: #FBB039;
          color: white;
          text-decoration: none;
        }
        .outline-button-yellow:focus {
            border: none;
            outline:none;
        }

.img-hover{
    transition: 0.3s;
    border-radius: 5px;
}
.img-hover:hover{
    opacity: 0.7;
}

/*
    image preview modal css
*/

.imgWithPreview {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.nextImg {
    float: right;
    margin: auto;
    display: block;
    text-align: center;
    margin-right: 15px;
    
}
.prevImg{
    float:left;
    margin: auto;
    display: block;
    text-align: center;
    margin-left: 15px;
}

    .imgWithPreview:hover {
        opacity: 0.7;
    }

/* The Modal (background) */
.previewModal {
    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 */
    cursor: default;
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    cursor:default;
    max-height: 800px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}


/* The Close Button */
.close {
    position: absolute !important;
    top: 15px !important;
    right: 35px !important;
    color: black !important;
    font-size: 40px !important;
    font-weight: bold !important;
    transition: 0.3s !important;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}


/* div height = rest of screen */
.screen-height {
     height: calc(100vh - 110px);
}


/* flexbox containers */
.flex-container {
    display:flex;
}

.box-1 {
    flex:3; 
    order:2;
}
.box-2 {
    flex:1;
    order: 1;
}
.box-3{
    flex:1;
    order:3;
    margin-left: 15px;
    margin-right: 15px;
}
