* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins';
    background-image: url('../images/bacgg-safeimagekit.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.navbar-brand {
    margin-left: 15px;
}

.nav-item .nav-link {
    margin-left: 20px;
    margin-right: 20px;
    color: darkblue;
}

.nav-item .nav-link:after {
    display: block;
    content: '';
    border-bottom: solid 3px hsl(130, 91%, 21%);
    transform: scaleX(0);
    transition: transform 800ms ease-in-out;
}

.nav-item .nav-link:hover:after {
    transform: scaleX(1);
}

.navbar-toggler-icon {

    border: 1ps solid white;
}

#navbarSupportedContent li a {
    color: #04003f;
}

.card {
    border: 2px solid #04003f;
}

/* 
.card:hover {
    opacity: 0.5;
} */

.elements:hover {
    background-color: black;
    color: white;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

.social i {
    font-size: 22px;
    padding: 8px;
}

/* Full-width input fields */
input[type=text],
input[type=email],

textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 22px 0;
    border: none;
    background: #b8b5b5;
    color: black;
}

input[type=text]:focus,
input[type=email]:focus {
    background-color: #b8b5b5;
    outline: none;
    color: black;
}

/* Set a style for the submit button */
form .btn {
    background-color: #1ca350;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

form .btn:hover {
    background-color: #04AA6D;
    opacity: 0.2;
}

.textcolumn {
    background-color: #025776;
}

.imagebox img {
    width: 100%;
    height: 400px;
    border: 2px solid black;
    /* padding: 3px;
    margin: 5px; */
}

.imagetext {


    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 2.0rem;
    color: #cef2f2;
}

.imagetext .btn {
    padding: 8px;
    width: 50%;
    background-color: #cef2f2;
    font-weight: bold;
    letter-spacing: 0.2rem;
}

.imagetext .btn:hover {
    background-color: #057f07;
    color: white;
}