@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{
    --color: #fcbf49;
    --textColor: #003049;
    --bgColor: #eae2b7;
    --secondColor: #f77f00;
    --thirdColor: #d62828;
}

body {
    background-color: var(--bgColor);
    color: var(--textColor);
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

.navbar{
    background-color: var(--color) !important;
}

 .nav-item{
    color: #000;
}

.nav-item-underline{
    position: relative;
}

.nav-item-underline a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondColor);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.nav-item-underline a:hover:after {
    visibility: visible;
    transform: scaleX(1);
}

.word{
    display: inline-block;
    width: 1rem;
    text-align: center;
}

.word:hover{
    cursor: pointer;
    background-color: rgba(0,0,0,.1);
}

.tableHeader{
    background-color: var(--color);
    padding: .5rem;
    margin: 0 2rem;
    border: 1px solid black;
    text-transform: uppercase;
    cursor: pointer;
}

.tableSection{
    border-right: 1px solid black;
}

.tableContainer .tableSection:last-child {
    border-right: none;
}

.companySection{
    background-color: rgba(0,0,0,.1);
    border-radius: 5px !important;
}

#map{
    width: 100%;
    height: 25vw;
}


.companySectionCategories .row .col{
    border-right: 1px dotted black;
}

.companySectionCategories .row .col:last-child {
    border-right: none;
}

footer{
    background-color: var(--color);
    text-align: center;
    color: var(--textColor);
    margin-top: 1rem;
}

.link2{
    text-decoration: none;
    color: var(--textColor);
}

.link2:hover{
    color: var(--textColor);
    text-decoration: underline;
    cursor: pointer;
}

.container-fluid{
    /* overflow-x: hidden; */
    padding: 0;
    margin: 0;
}

.link3{
    text-decoration: none;
    color: var(--textColor);
}

.link3:hover{
    color: var(--textColor);
    text-decoration: underline;
    cursor: pointer;
}

.uppercase{
    text-transform: uppercase;
}

.touristTitle{
    background-color: rgba(252, 191, 73,.5);
    border-radius: 15px;
}

.guideListPic{
    max-width: 70%;
    max-height: 70%;
}

.guideListPicMobile{
    max-width: 90%;
    max-height: 90%;
}

.navbar-wrapper {
    position: relative;
}