footer {
    padding: 60px 120px 30px 120px;
    background-color: #9A8C98;
    color: #F2E9E4;
    display: flex;
    flex-direction: column;
    /* position: relative; */
}
a {
    text-decoration: none;
}
.footer-design {
    position: absolute;
    width: 100vw;
    top: -93px;
    left: 0;
}

.footer-box {
    display: flex;
    justify-content: space-between;
}

.footer-div-1>h1 {
    margin-bottom: 50px;
}

.email {
    display: flex;
    align-items: center;
}

.email>i {
    font-size: 20px;
}

.email>p {
    margin-left: 10px;
    font-weight: 300;
}

.phone {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.phone>i {
    font-size: 15px;
}

.phone>p {
    margin-left: 10px;
    font-weight: 300;
}

.footer-div-2>ul>li>h3 {
    font-size: 20px;
    font-weight: 500;
    /* margin-bottom: 50px; */
    /* margin-top: -7px; */
    cursor: pointer;
}

.footer-div-2>ul {
    list-style: none;
}

.footer-div-2>ul>li {
    margin-bottom: 15px;
    font-weight: 400;
    cursor: pointer;
}

.footer-div-2>button {
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
    padding: 15px 25px;
    background: #4A4E69;
    color: #F2E9E4;
    border-radius: 10px;
    border: 0;
    font-weight: 600;
}

.location {
    max-width: 160px;
    display: flex;
    font-weight: 300;
}

.location>i {
    margin-right: 10px;
    margin-top:6px;
}

.footer-lower-box {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    font-weight: 300;
    font-size: 15px;
}

.footer-lower-box>ul {
    list-style: none;
    display: flex;
}

.footer-lower-box>ul>li {
    margin-right: 20px;
    cursor: pointer;
}

.social-icons {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.social-icons a {
    width: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.05);
}

.social-icons img {
    width: 100%;
    object-fit: contain;
}




@media screen and (max-width: 1025px) {
    nav {
        margin: 5px 20px;
    }
    .nav-right {
        display: flex;
        margin-left: 330px;
        position:absolute;
    }

    .footer-design {
        top: -63px;
    }

    footer {
        padding: 50px 10px;
    }

    .footer-design {
        top: -62px;
    }
}

@media screen and (max-width: 850px) {
    .footer-design {
        top: -52px;
    }
}

@media screen and (max-width: 768px) {

    .hero nav {
        display: none;
    }

    .hero-box>h1 {
        margin-top: 50px;
        text-align: center;
    }

    .oval {
        display: none;
    }

    nav.nav-mobile {
        display: block;
    }

    .navbar__logo {
        width: 44px;
        height: 44px;
        margin-left: 10px;
    }


    nav {
        margin: 0;
    }

    .navbar {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 62px;
    }

    .navbar .menu-items {
        display: flex;
        align-items: center;
        color: #F2E9E4;
    }

    .navbar .nav-container li {
        list-style: none;
    }

    .navbar .nav-container a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        font-size: 1.2rem;
        padding: 0.7rem;
    }

    .navbar .nav-container a:hover {
        font-weight: bolder;
    }

    .nav-container {
        display: block;
        position: relative;
        height: 60px;
    }

    .nav-container .checkbox {
        position: absolute;
        display: block;
        height: 32px;
        width: 32px;
        top: 20px;
        right: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .nav-container .hamburger-lines {
        display: block;
        height: 26px;
        width: 32px;
        position: absolute;
        top: 17px;
        right: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .nav-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: white;
    }

    .nav-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

    .nav-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .nav-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    .navbar .menu-items {
          padding-top: 120px;
       /*box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5); */
        height: 100vh;
        width: 100vw;
        transform: translateX(100%);
        display: flex;
        flex-direction: column;
        margin-left: -104px;
        /* padding-left: 50px; */
        transition: transform 0.5s ease-in-out;
        text-align: center;
        background-color: #000000;
        cursor: pointer;
    }
    .navbar .menu-items li {
        margin-bottom: 1.2rem;
        font-size: 1.5rem;
        font-weight: 500;
    }
    /* .nav-container input[type="checkbox"]:checked~.menu-items {
        transform: translateX(0);
    } */
    .nav-container input[type="checkbox"]:checked~#myLinks {
        transform: translateX(0);
        display: block !important;
    }

    .nav-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .nav-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .nav-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

    .nav-container input[type="checkbox"]:checked~.logo {
        display: none;
    }


    .dropdown-content {
        background-color: #F2E9E4;
        color: #000000;
        min-width: 160px;
        left: 50%;
        transform: translateX(-50%);
    }

    .dropdown-content a {
        color: black !important;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        border-radius: 10px;
    }

    .dropdown-content a:hover {
        background-color: #9A8C98;
        color:white;
        border-radius: 10px;
    }


    .footer-design {
        top: -42px;
    }
}

@media screen and (max-width: 426px) {
    footer {
        padding: 20px;
    }

    .footer-box {
        flex-direction: column;
    }

    .footer-div-1>h1 {
        margin-bottom: 20px;
    }

    .flexbox {
        display: flex;
        justify-content: space-between;
    }

    .footer-div-2>h3 {
        font-size: 1.125rem;
        font-weight: 400;
        margin-bottom: 15px; 
        margin-top: 30px;
    }

    .footer-div-2>ul>li {
        margin-bottom: 10px;
    }

    .footer-div-2>button {
        margin: 0 0 20px;
    }

    .location {
        max-width: max-content;
    }

    .footer-lower-box {
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .footer-lower-box .copyrights {
        order: 2;
        text-align: center;
    }

    .footer-lower-box ul {
        width: 100%;
        justify-content: space-between;
    }

    .footer-lower-box>ul>li {
        margin: 0;
    }

    .footer-design {
        top: -23px
    }

    .social-icons {
        width: 150px;
    }

}

@media screen and (min-width: 1440px) {
    .footer-design {
        top: -100px;
    }
}

@media screen and (min-width: 1800px) {
    .footer-design {
        top: -125px;
    }
}

@media screen and (min-width: 2150px) {
    .footer-design {
        top: -160px;
    }
}

@media screen and (min-width: 2300px) {
    .footer-design {
        top: -160px;
    }
}