:root {
    --main-color: #127bcc; /*#feb204;*/  /*ff7819*/
    --nav :  #313131eb;
}

body {
    /*font-family: "Matemasie", sans-serif;*/
    /*font-family: "Permanent Marker", cursive;*/
    /*font-family: "Playwrite FR Moderne", cursive;*/
    /*font-family: "Indie Flower", cursive;*/
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    background: #eef4ff; /*#FFF5EE;*/
    margin-top: 100px;
    min-height: 100vh;
    display: grid;
}

img{
    border-radius: 10px;
}

.btn-main {
    background: var(--main-color);
    border-color: var(--main-color);
    padding: 10px;
}

body > nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav);
    z-index: 1000;
    color: var(--main-color);
    font-size: 22px;
    font-weight: 400;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 10px;
    & a {
        text-decoration: none;
        color: var(--main-color);
        text-transform: capitalize;
    }
    & img   {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid white;
    }
    & .btns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        & .langs {
            & .btn-group > button {
                color: var(--main-color);
                background: transparent;
                border: none;
                &:hover {
                    background: transparent;
                    border: none;
                }
            }
        }
        & .menu {
            cursor: pointer;
        }
    }
    & .nav-items > ul {
        margin: 0;
        padding: 10px 10px;
        display: grid;
        list-style: none;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        justify-items: center;
        text-transform: capitalize  ;
        & > li {
            padding: 0;
            margin: 0;
            cursor: pointer;

            & > span {
                text-wrap: nowrap;
            }
            & > ul {
                font-weight: bold;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                list-style: none;
                margin: 0;
                position: absolute;
                background: #3f3f3fc7;
                width: 95%;
                left: 50%;
                transform: translate(-50%, 10px);
                border-radius: 0 0 10px 10px;
                padding: 10px;
                & li {
                    cursor: pointer;

                }
                &  ul {
                    font-weight: 400;
                    padding-left: 44px;
                    list-style: circle;
                    & li {

                        cursor: pointer;
                        margin-top: 8px;
                        a {
                            color: white;
                        }
                    }
                }
            }
        }
    }
}
.outside {
    right: -100%;
}
.tours-ph {
    width: 100%;
    height: calc(100vh - 50px);
    top: 50px;
    background: var(--nav);
    position: fixed;
    overflow-y: auto;
    z-index: 1000;
    & > ul {
        list-style: none;
        font-size: 18px;
        color: var(--main-color);
        font-weight: bold;
        & li {
            margin-top: 10px;
            cursor: pointer;
            & ul {
                font-weight: 400;
                & a {
                    color: white;
                }
            }
        }
        & a {
            color: var(--main-color);
            text-decoration: none;
            text-transform: capitalize;
        }
    }
}
@media (max-width: 992px) {
    nav {
        font-size: 18px;
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding: 5px 10px;
        & img {
            width: 40px;
            height: 40px;
        }
    }
}

.accordion-item {
    padding: 15px;
    & .head {
        display: flex;
        justify-content: space-between;
        font-weight: bold;
        cursor: pointer;
        font-size: 18px;
    }
    & .accordion-content {
        padding: 10px;
    }
}



.contacts {
    position: fixed;
    border: 20px;
    z-index: 999;
    right: 9px;
    bottom: 48px;
    & div {
        background: var(--main-color);
        color: white;
        padding: 10px 15px;
        border-radius: 32px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
    }
    & ul {
        list-style: none;
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: nowrap;
        align-content: center;
        gap: 6px;
        padding: 0;
        align-items: center;
    }

}


footer {
    border-radius: 30px 30px 0 0;
    background: #b8bcc7eb;
    padding: 40px 20px 20px 20px;
    margin-top: 40px;
    & strong {
        font-size: 20px;
        color: var(--main-color);
        font-weight: 400;
    }
    & .category {
        text-align: left;
    }
    & .tours-lists {
        padding-left: 10px;
        & a {
            color: white;
            margin-top: 5px;
            text-decoration: none;
            text-transform: capitalize;
        }
    }
    & img {
        border: 2px solid white;
        border-radius: 50%;
    }
    & .brand {
        text-align: center;
        display: grid;
        gap: 20px;
        & > div.contacts-images {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        & > div:last-child {
            & img {
                width: 200px !important;
                height: 200px !important;
            }
        }
    }

}

@media (max-width: 992px) {
    footer {
        & .category {
            text-align: center;
        }
    }
}







