

@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:400,500');

body {
   
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Mono', monospace;
}

::selection {
    background: rgba(255, 88, 88, 0.7);
    color: #ffffff;
}
::-moz-selection {
    background: rgba(255, 88, 88, 0.7);
    color: #ffffff;
}

a {
    text-decoration: none !important;
}

p {
    font-size: 13px;
    color: black;
}




.section {
    padding-top: 40px;
    padding-bottom: 30px;
    position: relative;
}

.btn {
    padding: 15px 35px;
    outline: none;
    text-decoration: none;
}

.btn-round {
    border-radius: 35px;
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #7F7F7F;
    color: #fff;
    font-size: 12px;
    border-radius: 35px;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-weight: 600;
    transition: all 0.5s;
}


.logo-top {
   width: auto;
}

.card-body {
    height: 400px;
}
.footer-title {
    height: 50px;
}

.card-footer .card-title a {
    color: #60a3d5; /* Example: Bootstrap's default blue */
    /* Additional styling for the link */
    text-decoration: none; /* Removes underline from links */

    display: flex;
    align-items: center; /* This vertically centers the items in case they have different heights. */
    justify-content: space-between; /* This spreads out the items to fill the horizontal space, pushing them to opposite ends. */
}

.custom-header {
    background-color: white !important; /* Makes the background color white */
    border-bottom: 0 !important; /* Removes the bottom border */
}

.card-img-top {
    margin-top: -22px; /* Pulls the image closer to the top, adjust value as needed */
}

.navigation-menu {
    display: flex; /* This makes the navigation menu horizontal */
    list-style: none; /* Removes the default list styling */
    padding: 0; /* Removes the default padding */
    margin: 0; /* Removes the default margin */
    align-items: center; /* Vertically centers the items in the list */
}

    .navigation-menu li {
        margin-right: 20px; /* Adds some space between the menu items */
    }

.search-input {
    padding: 5px 10px; /* Adds some padding inside the search box for better aesthetics */
    margin-right: 10px; /* Optional: Adds some space to the right of the search box */
    padding-right: 30px; /* Ensure text doesn't go under the X */
}

.input-group {
    position: relative;
    display: flex;
}

.input-reset {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}

.card-text {
    /* If you want the text to appear below the titles in a flex layout, you might need to adjust its position.
       One approach is to make it take the full width to force it onto a new line. */
    width: 100%;
}

.project-desc {
    font-size: 16px;
}



/********************
  11.  Contact
*********************/

.contact-info {
    margin-bottom: 22px;
}

    .contact-info i {
        font-size: 32px;
        opacity: 0.7;
        float: left;
        margin-right: 15px;
    }

.contact-desc h5 {
    font-size: 18px;
}

.contact-desc {
    overflow: hidden;
}

.custom-form label {
    font-size: 14px;
    font-weight: 500;
}

.custom-form .form-control {
    margin-bottom: 25px;
    box-shadow: none !important;
    height: 44px;
}

    .custom-form .form-control:focus {
        border-color: #ff5858;
        box-shadow: none;
        outline: none;
    }

.custom-form textarea.form-control {
    height: auto;
}


