@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
*::after,
*::before,
* {
    display: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Roboto', sans-serif;
    /* background-color: grey; */
    /* font-size: 62.5%; */
    /* background-color: rgb(255, 228, 193);*/
    background: rgb(145, 141, 141);
    /* fallback for old browsers */
    /* background: -webkit-linear-gradient(to left, #F0CB35, #C02425); */
    /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to left, #F0CB35, #C02425); */
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    overflow-x: hidden;
}


/* ################ utility class ###### */

.black {
    color: black;
}

.white {
    color: rgb(255, 255, 255);
}

.container {
    width: 1400px;
    max-width: 90%;
    margin: auto;
}

a {
    text-decoration: none;
    color: black;
}

ul {
    list-style: none;
}

.navbar {
    position: absolute;
    top: 0;
    box-shadow: 0px 5px 10px 0px #aaa;
    position: fixed;
    /*here the navbar's position is fixed so it wont be moving from the screen even after scrolling and aslo z-index is high which ensures it stays top of other elements*/
    width: 100%;
    background: rgb(226, 211, 211);
    color: #000;
    opacity: 0.75;
    /* opacity less means its less visible so background is more visible*/
    z-index: 999;
    /* z-index large means its will stay front wrt other element*/
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    height: 60px;
    margin-top: 0.8rem;
    align-items: center;
}

.gangi-logo {
    position: relative;
    /* color: #117964; */
    color: rgb(28, 77, 94);
    font-size: 6rem;
    /* margin-left: 600px; */
}

.logo-and-name {
    /* order: 1; */
    flex: 2;
    color: rgb(28, 77, 94);
    /* so here order is 1 thats why this logo will always come before .menu-items*/
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
}

.logo-and-name h2 {
    /* color: #117964;
     */
    color: rgb(28, 77, 94);
    margin-left: 1rem;
    /* margin-top: 1.4rem; */
    font-size: 3rem;
}

.nav-items {
    flex: 1;
    order: 2;
    /*here order is 2 because .menu-items should always come after logos  */
    /*This flex is inside .navbar-container */
    display: flex;
}

.nav-items li {
    font-size: 2.4rem;
    margin-left: 2.8rem;
    font-weight: 500;
}

.nav-items a {
    /* color: rgb(112, 96, 96); */
    color: rgb(28, 77, 94);
    position: relative;
    cursor: pointer;
}


/* .nav-items li ::before {
        content: "";
        position: absolute;
        top: 100;
        left: 0;
        background-color: #000;
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
        /* z-index: 999; */


/* transition: all 0.3s ease-in-out;
}
.nav-items li::before:hover {
    transform: translateX(0%);
    z-index: -1;
} */

.nav-items a:hover {
    transition: color 0.3s ease-in-out;
    color: #112d79;
}

.head-center {
    margin-bottom: 1rem;
    font-size: 3.4rem;
}

#blah {
    max-width: 180px;
    max-height: 180px;
    margin-left: -22rem;
    margin-bottom: 4rem;
}

.centerh {
    margin-top: 10rem;
    width: 100vw;
    height: 120vh;
    /* position: relative; */
    /* top: 40; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: antiquewhite; */
}

input {
    padding: 1.4rem;
    width: 280px;
    margin-bottom: 1.4rem;
}

label {
    font-size: 1.8rem;
    font-weight: bold;
    padding: 2rem;
    margin-bottom: 1.4rem;
}

select {
    margin-top: 2rem;
    width: 313px;
    height: 43px;
    font-size: 1.8rem;
}

.search-options {
    margin-bottom: 1.4rem;
    /* padding: 2rem; */
    font-size: 1.8rem;
}

button {
    font-size: 1.8rem;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
    margin-left: 10rem;
    margin-bottom: 6rem;
}


/* ############ footer ########  */

footer {
    width: 100vw;
    height: 100%;
    background-color: rgb(197, 190, 190);
}

.row-one {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    font-size: 1.7rem;
    font-weight: 500;
    padding-top: 1rem;
    margin-bottom: 2rem;
}

.row-one li {
    cursor: pointer;
}

.row-one li:hover {
    transition: color .3s ease-in-out;
    color: #474141;
}

hr {
    /* margin-left: 2rem; */
    /* background-color: #000; */
    width: 99%;
}

.row-two h4 {
    /* max-width: 900px; */
    font-size: 2.0rem;
    padding: 2rem 1rem;
    margin-left: 1.5rem;
}

.flex2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 5rem;
    margin-left: -0.6rem;
    /* border: 2px solid red;  */
}

.flex2 li {
    margin-left: 0.8rem;
    padding: 0 1rem;
    margin-top: 0.5rem;
    overflow: hidden;
    /* border: 2px solid green; */
}

.flex2 li:hover {
    color: #474141;
    transition: color .3s ease-in-out;
    cursor: pointer;
}

.base-line {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.base-logo {
    /* margin-left: -420px; */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.base-logo li {
    padding-top: 1rem;
    max-width: 100px;
    padding-bottom: 0.7rem;
    margin-right: 3.9rem;
}

.base-logo li i {
    font-size: 7rem;
    color: rgb(243, 239, 205);
}

.base-logo li i:hover {
    color: rgb(114, 113, 107);
    transition: all 0.3s ease-in-out;
    transform: scale(1.2, 1.2);
    /* font-size: 6.6rem; */
}