:root {
    --blue: #000032;
    --heading-two: 50px;
    --sub-heading: 25px;
    --text: 18px;
    --button-text: 14px;
    --heading-one: 75px;
    --mobile-heading-one: 50px;
    --mobile-text: 12px;
    --mobile-button-text: 14px;
    --mobile-heading-two: 35px;
    --mobile-sub-heading: 22px;
    --mobile-text: 14px;
    --padding: 4rem;
    --seven-hundred-padding: 2rem;
    --five-hundred-padding: 1rem;
    --hero-image-gradient: linear-gradient(to right, #ffffff, #ffffff00 5%),
        linear-gradient(to top, #ffffff, #ffffff00 5%),
        linear-gradient(to bottom, #ffffff, #ffffff00 5%);
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif !important;
}
button {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    border: 2px solid var(--blue);
    font-size: var(--button-text);
    font-weight: 700;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: black;
}
header,
section,
main,
footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper {
    width: 100%;
    max-width: 1512px;
    padding: 6rem 4rem;
}

p {
    line-height: 1.5;
}

/********** Header **********/
header {
    position: fixed;
    background-color: #ffffff80;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
}
.header-wrapper {
    width: 100%;
    max-width: 1512px;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-wrapper .menu {
    width: 50px;
    display: none;
}
.logo-container img {
    width: 125px;
}
nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}
.header-wrapper button {
    font-size: var(--button-text);
    padding-inline: 1rem;
    background-color: var(--blue);
    color: white;
}
nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
@media (max-width: 1150px) {
    nav {
        display: none;
    }
    .header-wrapper .menu {
        display: block;
        cursor: pointer;
    }
}
@media (max-width: 700px) {
    .header-wrapper {
        padding-inline: 2rem;
    }
}
@media (max-width: 500px) {
    .header-wrapper {
        padding-inline: 1rem;
    }
}

/**********************/
footer img {
    width: 40px;
}
footer .wrapper {
    padding-bottom: 2rem;
}
footer a:nth-child(2) img {
    width: 30px;
}
.footer-left > a img {
    width: 150px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
}
.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.address p:nth-child(1) {
    font-weight: 700;
}
.contact > p {
    font-weight: 700;
}
.footer-right ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
}
.footer-right {
    align-self: flex-end;
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
}
.iwd img {
    width: 100px;
}
.iwd p {
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
        Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
        sans-serif;
}
footer .wrapper {
    display: flex;
    flex-direction: column;
}
.footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    justify-content: space-between;
    gap: 2rem;
    font-weight: 200;
}
.policys {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    align-self: flex-end;
    text-align: center;
    text-align: center;
}
@media (max-width: 1050px) {
    .footer-top {
        flex-direction: column;
        gap: 4rem;
    }
    .footer-bottom {
        justify-content: center;

        flex-direction: column;
    }
    .footer-left,
    .footer-right {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .footer-right ul {
        align-items: center;
        text-align: center;
    }
    .address p {
        font-size: var(--mobile-text);
    }
    .contact p {
        font-size: var(--mobile-text);
    }
    .policys {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

/********************/

/******* Dropdown *****/
/***********************/
.dropdown {
    position: relative !important;
    display: none;
    z-index: 10000 !important;
}
.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    padding: 1.5rem;
    padding-block: 1.5rem !important;
    background-color: white;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: max-content;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
    gap: 1rem;
}

.menu-drop {
    position: absolute;
}
.dropdown-heading > a {
    font-weight: 700 !important;
}
.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.dropdown-links .dropdown-heading a {
    font-weight: 700 !important;
}
.dropdown-links a {
    font-weight: 500 !important;
}
.div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown.active > .link + .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    transition: opacity 0.5s, transform 0.5s;
}
.menu + .dropdown-menu {
    padding-block: 2rem;
}
.dropdown-heading > p {
    font-weight: 700 !important;
}
.dropdown > a {
    font-weight: 500 !important;
}
.link {
    font-size: 14px !important;
}
.menu {
    width: 50px !important;
    display: none;
}
.dropdown:nth-of-type(1) {
    display: block !important;
}
.dropdown:nth-of-type(1) img {
    width: 50px;
    cursor: pointer;
}
.button-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: underline;
    cursor: pointer;
    background-color: transparent !important;
    color: var(--blue) !important;
    border: none;
}
@media (max-width: 1150px) {
    .menu {
        display: block;
        cursor: pointer;
    }

    .dropdown:nth-of-type(2) {
        display: block;
    }
}
@media (max-width: 630px) {
    .dropdown-menu {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
