@charset "utf-8";

/*Google Font*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    opacity: 250;
    min-height: 100vh;
    width: 100%;
}


/*HEADER*/

header {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 75px;
    background-color:#0181b8;
    opacity: 0.85;
    text-align: center;
}

header .logo a {
    margin-left: 2%;
}

header .logo a img {
    margin: 13px;
    height: 60px;
}

/* NAV*/

nav {
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color:rgb(221, 220, 220) ;
    border: 1px solid black;
    box-shadow: 0 1px 2px rgba(143, 105, 105, 0.2);
}

nav .navbar {
    height: 100%;
    max-width: 1920px;
    padding: auto;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .navbar .nav-links {
    line-height: 40px;
    padding: auto;
    margin: auto;
}

nav .navbar .nav-links .links {
    display: flex;
}

nav .navbar .nav-links .links li {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0 30px;
}

nav .navbar .nav-links .links li a {
    height: 100%;
    color:black;
    text-decoration: none;
    white-space: nowrap;
    font-size: 16px;
}

nav .navbar .nav-links .links li .arrow {
    height: 100%;
    width: 25px;
    color:black;
    text-align: center;
    line-height: 40px;
}

.navbar .nav-links .links .sub-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background-color: white;
    line-height: 40px;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 10;
}

.navbar .nav-links .links .sub-menu li {
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .nav-links .links .sub-menu li a {
    font-size: 15px;
    font: 500;
}

.navbar .nav-links .links .sub-menu li .eruzioni-arrow,
.navbar .nav-links .links .sub-menu li .tecnica-arrow,
.navbar .nav-links .links .sub-menu li .track-arrow,
.navbar .nav-links .links .sub-menu li .parco-arrow,
.navbar .nav-links .links .sub-menu li .economia-arrow,
.navbar .nav-links .links .sub-menu li .sentieri-arrow {
    line-height: 40px;
}

.navbar .nav-links .links li .eruzioni .eruzioni-sub-menu,
.navbar .nav-links .links li .tecnica .tecnica-sub-menu,
.navbar .nav-links .links li .track .track-sub-menu,
.navbar .nav-links .links li .parco .parco-sub-menu,
.navbar .nav-links .links li .economia .economia-sub-menu,
.navbar .nav-links .links li .sentieri .sentieri-sub-menu {
    position: absolute;
    top: 1.8px;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    display: none;
}

.navbar .bx-menu,
.nav-links .sidebar-logo .nome-logo,
.nav-links .sidebar-logo .bx-x {
    display: none;
}


/*Footer*/

footer {
    bottom: 0;
    left: 0;
    background-color: #333333;
    width: 100%;
}

footer .content {
    max-width: 1920px;
    margin: auto;
    padding: 0 40px 10px 40px;
}

footer .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.content .top .logofooter img {
    margin-top: 30px;
    height: 50px;
}

.content .top .media-icons {
    display: flex;
    margin: 0;
    padding: 0;
}

.content .top .media-icons a {
    height: 40px;
    width: 40px;
    margin-right: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.top .media-icons a:nth-child(1) {
    background-color: #4267b2;
}

.top .media-icons a:nth-child(1):hover {
    color: #4267b2;
    background-color: white;
}

.top .media-icons a:nth-child(2) {
    background-color: #da4d4d;
}

.top .media-icons a:nth-child(2):hover {
    color: #da4d4d;
    background-color: white;
}

.top .media-icons a:nth-child(3) {
    background-color: #000000;
}

.top .media-icons a:nth-child(3):hover {
    color: #000000;
    background-color: white;
}


/*.top .media-icons a:nth-child(4) {
    background-color: #05ff75;
}

.top .media-icons a:nth-child(4):hover {
    color: #05ff75;
    background-color: white;
}

.top .media-icons a:nth-child(5) {
    background-color: #b61e1ede;
}

.top .media-icons a:nth-child(5):hover {
    color: #b61e1ede;
    background-color: white;
}

.top .media-icons a:nth-child(6) {
    background-color: #0ac9f8;
}

.top .media-icons a:nth-child(6):hover {
    color: #0ac9f8;
    background-color: white;
}
*/

footer .content .link-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

footer .content .link-boxes .box {
    width: calc(100% / 6 - 10px);
}

.content .link-boxes .box .link_name {
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    position: relative;
}

.link-boxes .box .link_name::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background-color: white;
}

.content .link-boxes .box li {
    margin: 6px 0;
    list-style: none;
}

.content .link-boxes .box li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.4;
    transition: all 0.4 ease;
}

.content .link-boxes .box li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.content .link-boxes .input-box {
    margin-right: 100px;
}

.link-boxes .input-box input {
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #ddcecec0;
    background-color: #333333;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: white;
    margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
    color: #ddcecec0;
    font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
    background-color: white;
    color: black;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4 ease;
}

.input-box input[type="button"]:hover {
    opacity: 1;
}

footer .bottom-details {
    width: 100%;
    background-color: #474646a1;
}

footer .bottom-details .bottom_text {
    max-width: 1920px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
    font-size: 14px;
    font-weight: 300;
    color: white;
    opacity: 0.6;
    text-decoration: none;
}

.bottom-details .bottom_text a:hover {
    opacity: 1;
    text-decoration: underline;
}

.bottom-details .bottom_text a {
    margin-right: 10px;
}


/*Box*/

.mainbox {
    align-items: center;
    max-width: 1920px;
    height: 750px;;
    background-image: url('/villa.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}
.mainbox p{
    padding: 10px;
    font-size:20px;
    height: 375px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.699);
}