@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 60px;
   
}

* {
    box-sizing: border-box
}

/* FONTS */
.raleway {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

/*Navbar*/

.section {
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 110px;
    margin-bottom: 150px;
}

.navbarr {
    width: 100%;
    background-color: #555;
    overflow: auto;
}

    .navbarr a {
        float: left;
        padding: 12px;
        color: white;
        text-decoration: none;
        font-size: 17px;
        width: 25%; /* Four links of equal widths */
        text-align: center;
    }

        .navbarr a:hover {
            background-color: #000;
            color: white;
        }

        .navbarr a.active {
            background-color: #04AA6D;
        }



@media screen and (max-width: 500px) {
    .navbarr a {
        float: none;
        display: block;
        width: 100%;
        text-align: left;
    }
}

/*	Header
/* ==========================================*/
#navigation {
    transition: all 0.8s ease 0s;
    background-color: rgba(0, 0, 0, 0.836);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    padding: 3px 0;
    margin-bottom: 100px;
}

    #navigation.animated-header {
        padding: 10px 0;
    }

.nav-link {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

    .navbar-dark .navbar-nav .nav-link:hover {
        color: #fff;
    }

.nav-item {
    position: relative;
    margin: 0 10px;
}

    .nav-item::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #ffffff;
        visibility: hidden;
        transform: scaleX(0);
        transition: all 0.3s ease-in-out 0s;
    }

    .nav-item:hover::before {
        visibility: visible;
        transform: scaleX(1);
    }

.navbar-toggler-icon {
    visibility: visible;
    transform: scaleX(1);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")!important;
}

.spacing {

    margin-top: 130px;
}
.footer {
    padding-top: 1%;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto; /* Footer height */
    background-color: #2A2A2A;
}


.center-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.required:after {
    color: red;
    content: " *";
}

.nav-item.text-center {
    text-align: center;
}

.nav-link.btn {
    display: inline-block;
}
