#app {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 100px;
    background: #FFFFFF;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.15);
}

header .logo {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo .logo-container {
    width: 255px;
    height: 62px;
    position: relative;
}

header .logo .logo-container img {
    width: 100%;
    height: 100%;
}

header .logo .logo-container:hover::before {
    content: "";
    width: 5px;
    height: 80px;
    transform: rotate(45deg);
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    z-index: 999999;
    animation-name: moveTo;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes moveTo {
    0% {
        right: -10%;
    }

    100% {
        right: 110%;
    }
}

header .logo .nav-toggler {
    height: 100%;
    display: none;
}

header .logo .nav-toggler button {
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    font-size: 24px;
}

header nav {
    width: 100%;
    margin-inline-start: 100px;
    display: flex;
    justify-content: center;
}

header nav ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

header nav ul li {
    /* margin-inline-end: 20px; */
    font-size: 14px;
    font-weight: 400;
}

header nav ul li a {
    color: var(--main-black-color);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

header nav ul li.active a {
    font-weight: 600;
    color: var(--main-green-color);
}

header nav ul li a:hover {
    color: var(--main-green-color);
}

header nav ul li.localization {
    position: relative;
    margin-inline-start: auto;
}

header nav ul li.localization button {
    width: 32px;
    height: 20px;
    color: #444444;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
}

header nav ul li.localization button img {
    width: 100%;
    height: 100%;
    margin-inline-end: 5px;
}

header nav ul li.localization .dropdown-languages {
    display: none;
    background-color: var(--light-gray-color);
    border: 1px solid #ccc;
    position: absolute;
    right: 0;
    top: 25px;
    z-index: 999;
}

html[dir="ltr"] header nav ul li.localization .dropdown-languages {
    position: absolute;
    right: auto;
    left: 0;
}

header nav ul li.localization .dropdown-languages a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100px;
    padding: 10px;
    border-bottom: 1px solid var(--light-gray-color);
    color: #444444;
}

header nav ul li.localization .dropdown-languages a img {
    width: 32px;
    height: 20px;
    margin-inline-end: 5px;
}

header nav ul li.localization .dropdown-languages a:hover {
    background-color: var(--main-white-color);
}

header .search-bar {
    display: block;
    margin-inline-start: auto;
}

header .search-bar form {
    display: flex;
    align-items: center;
}

header .search-bar form label button {
    width: 36px;
    height: 40px;
    background-color: rgba(218, 37, 28, 0.14);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-red-color);
    border: none;
    cursor: pointer;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

header .search-bar form input[type=text] {
    width: 170px;
    height: 40px;
    border: 1px solid rgba(218, 37, 28, 0.14);
    outline: none;
    padding: 0 8px;
    color: var(--main-black-color);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

header .search-bar form input[type=text]::placeholder {
    color: #999;
    font-weight: 600;
    font-size: 14px;
}

footer {
    width: 100%;
    min-height: 339px;
    /* background-color: var(--dark-green-color); */
    background-image: url('../images/footer_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--main-white-color);
    margin-top: auto;
    padding-bottom: 20px;
}

footer .footer-container {
    width: 100%;
    height: 100%;
    padding: 50px 120px 70px 120px;
    display: flex;
    justify-content: space-between;
}

footer .footer-container .social-media-sites {
    height: 100%;
    margin-inline-end: 160px;
}

footer .footer-container .social-media-sites h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 24px;
}

footer .footer-container .social-media-sites ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 33.5px;
}

footer .footer-container .social-media-sites ul li a {
    font-size: 23px;
    color: var(--main-white-color);
}

footer .footer-container .social-media-sites h3:last-of-type {
    margin-bottom: 16px;
}

footer .footer-container .social-media-sites form .input-group {
    display: flex;
    height: 50px;
}

footer .footer-container .social-media-sites form .input-group input {
    width: calc(318px - 64px);
    height: 100%;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--main-white-color);
    padding: 5px 20px;
    outline: none;
}

footer .footer-container .social-media-sites form .input-group input::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: var(--dark-gray-color);
    font-family: 'Cairo', sans-serif;
}

footer .footer-container .social-media-sites form .input-group button {
    cursor: pointer;
    width: 64px;
    height: 100%;
    background-color: var(--main-green-color);
    color: var(--main-white-color);
    font-size: 24px;
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

html[dir="ltr"] footer .footer-container .social-media-sites form .input-group input {
    border-top-right-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 5px;
}

html[dir="ltr"] footer .footer-container .social-media-sites form .input-group button {
    border-top-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 5px;
}

footer .footer-container .other-links {
    width: 100%;
    height: 100%;
}

footer .footer-container .other-links h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

footer .footer-container .other-links ul {
    width: 100%;
    height: 100%;
    columns: 3;
}

footer .footer-container .other-links ul li {
    margin-bottom: 12px;
}

footer .footer-container .other-links ul a {
    color: var(--main-white-color);
    font-weight: 400;
    font-size: 16px;
}

footer .copyright {
    width: 100%;
    padding: 0 60px;
    text-align: center;
}

footer .copyright p {
    font-size: 14px;
    font-weight: 400;
    color: var(--main-white-color);
}

@media only screen and (max-width: 1350px) {
    header {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 60px;
    }

    header .logo {
        width: 100%;
        height: 80px;
        order: 1;
    }

    header .logo .nav-toggler {
        height: 100%;
        display: flex;
        align-items: center;
    }

    header .logo .nav-toggler .show {
        display: block;
    }

    header .logo .nav-toggler .hide {
        display: none;
    }

    header nav {
        display: none;
        width: 100%;
        margin: 25px 60px;
        order: 3;
    }

    header nav ul {
        display: block;
    }

    header nav ul li {
        margin-inline-end: 0;
        margin-bottom: 10px;
    }

    header nav ul li.localization {
        margin-inline-start: 15px;
    }

    header .search-bar {
        width: 100%;
        display: none;
        order: 2;
    }

    header .search-bar form {
        width: 100%;
        display: flex;
        align-items: center;
    }

    header .search-bar form label button {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    header .search-bar form input[type=text] {
        width: 100%;
        display: block;
    }

    footer .footer-container {
        padding: 50px 60px 70px 60px;
    }

    footer .footer-container .social-media-sites {
        margin-inline-end: 80px;
    }

    footer .footer-container .other-links ul {
        width: 100%;
        height: 100%;
        columns: 2;
    }
}

@media only screen and (max-width: 600px) {

    header {
        padding: 0 30px;
    }

    footer .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 40px;
        padding: 40px 30px 50px 30px;
    }

    footer .footer-container .social-media-sites {
        margin-inline-end: 0;
    }

    footer .footer-container .social-media-sites form {
        width: 100%;
    }

    footer .footer-container .social-media-sites form .input-group input {
        width: 100%;
    }
}


@media only screen and (min-width: 1700px) {

    header nav {
        margin-inline-start: 150px;
    }

    header nav ul {
        gap: 40px;
    }
}
