@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Oswald", sans-serif;
    font-style: normal;
    font-optical-sizing: auto;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

:root {
    --primaryColor: #6c7c50;
    --secondaryColor: #ffffff;
    --thirdlyColor: #ebe9e9;


}

input, button {
    border: none;
    outline: none;
}

input:focus, button:focus {
    border: none;
    outline: none;
}

ul, li, a {
    text-decoration: none;
    list-style: none;
    color: white;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* start container  */
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;

}



/* start bootstrap media screen  */

/* small */
@media (min-width:768px) {
    .container {
        width: 750px;
    }
}

/* medium*/
@media (min-width:992px) {
    .container {
        width: 970px;
    }
}

/* large*/
@media (min-width:1200px) {
    .container {
        width: 70%;
    }
}

/*  end bootstrap media screen  */
/* end container  */


/* start header */


header {
    padding-left: 40px;
    padding-right: 40px;
    background-color: var(--primaryColor);
}

header .info {
    display: flex;
    gap: 10px;
    color: white;


}

@media (max-width :767px) {
    header .info {
        display: none;
    }
}

header nav {
    display: flex;

    justify-content: space-between;
    align-items: center;


}

nav .leftSide {

    display: flex;
    align-items: center;

    gap: 15px;


}

.leftSide .logoContainer img {
    --width: 70px;
    width: var(--width);

    aspect-ratio: 1/1;


}

.leftSide .title {
    font-weight: bold;
    color: var(--secondaryColor);
    font-variant: small-caps;
}

.rightSide ul {
    display: flex;
    gap: 20px;

}

.rightSide ul li {
    padding-left: 5px;
    padding-bottom: 5px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.rightSide ul li a {
    color: var(--thirdlyColor);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize;
    text-shadow: 0px 0px 1px black;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.rightSide ul li::before {
    content: "";
    position: absolute;

    transform: translateX(-50%);
    width: 0;
    bottom: -10px;
    left: 50%;
    height: 2px;
    background-color: var(--secondaryColor);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rightSide ul li.currentPage::before,
.rightSide ul li:hover::before {
    width: 75%;
}

.rightSide ul li.currentPage a,
.rightSide ul li:hover a {
    color: var(--secondaryColor);
}

/* end header */