@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
    overflow-x: hidden;
}

:root {
    --primary-color: #0D0D0D;
    --secondary-color: #95A986;
    --tertiary-color: #FFFFFF;
}

.container {
    max-width: 1750px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

ul,
p {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

.title1 {
    font-size: 68px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: "Amiri", serif;
}

.title2 {
    font-size: 45px;
    font-weight: 400;
    color: var(--primary-color);
    font-family: "Amiri", serif;
}

.title3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    font-family: "Amiri", serif;
}

.sub-title2 {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
}


.primary-btn {
    font-family: "Poppins", sans-serif;
    color: var(--primary-color);
    background: var(--secondary-color);
    font-size: 18px;
    padding: 28px 39px;
    border-radius: 50px;
    margin: 0 auto;
}

.primary-btn:hover {
    background: var(--tertiary-color);
    outline: 1px solid var(--primary-color);
}

/* Header Starts */


.top-navbar {
    padding: 4.5px 0;
    background-color: var(--primary-color);
}

.top-bar-cnt {
    font-family: "Poppins", sans-serif;
    text-align: center;
    color: var(--tertiary-color);
}

.nav-link {
    font-family: "Poppins", sans-serif;
    margin-left: 50px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    transform: translateX(-50%);
    transform: scale(0);
    background: var(--tertiary-color);
}

.nav-link.active::after {
    transform: scale(1);
}

.nav-link:hover::after {
    transform: scale(1);
}

.search {
    margin-left: 56px;
}

.profile {
    margin-left: 16px;
}

.line {
    margin-left: 12px;
}

.nav-cart {
    margin-left: 12px;
}

.cart-text {
    font-family: "Poppins", sans-serif;
}

.dropdown {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--tertiary-color);
    min-width: 150px;
    box-shadow: 0 8px 50px var(--secondary-color);
    z-index: 2;
    border-radius: 16px;
}

.dropdown-content a {
    color: var(--primary-color);
    padding: 12px;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Header Ends */

/* Banner Starts */

.contact-banner-section {
    background: url(../assets/contact-banner.png) no-repeat center/cover;
    padding: 180px 0;
}

.contact-white-box {
    max-width: 470px;
    padding: 32px 75px;
    background: var(--tertiary-color);
    border-radius: 16px;
    margin: 0 auto;
}

.contact-banner-section .title1 {
    margin-bottom: 0;
}

/* Banner Ends */

/* Contact Starts */

.contact-section {
    padding: 100px 0;
    background: #F6F6F6;
}

.phone-sec,
.call-sec {
    padding: 39px 63px;
    background: var(--tertiary-color);
    margin-bottom: 28px;
    border-radius: 16px;
}

.email1-sec {
    padding: 39px 63px;
    background: var(--tertiary-color);
    border-radius: 16px;
}

.phone-sec,
.call-sec,
.email1-sec {
    cursor: pointer;
}

.phone-sec:hover,
.call-sec:hover,
.email1-sec:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ph,
.call,
.email1 {
    font-family: "Amiri", serif;
    font-size: 24px;
    font-weight: 700;
}

.ph-no,
.call-cnt,
.email1-cnt {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.input-form {
    padding: 51px 50px 62px;
    background: var(--tertiary-color);
    border-radius: 18px;
}

.input-form .title2 {
    margin-bottom: 0;
}

.input-form p {
    margin-top: 18px;
    margin-bottom: 30px;
    max-width: 823px;
}

.input-form input {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid var(--primary-color);
    height: 60px;
    border-radius: 18px !important;
    padding: 0 20px;
    font-family: "Poppins", sans-serif;
}

.input-form textarea {
    margin-bottom: 30px;
    border: 1px solid var(--primary-color);
    width: 100%;
    height: 245px;
    border-radius: 18px;
    padding: 25px 20px;
    font-family: "Poppins", sans-serif;
}

.submit {
    width: auto !important;
    padding: 16px 32px !important;
    display: inline-block;
    background: var(--secondary-color);
    cursor: pointer;
}

.submit:hover {
    background: var(--primary-color);
    color: var(--tertiary-color);
}

/* Contact Ends */

/* Footer Starts */

footer {
    padding: 100px 0;
}

.footer-line {
    border: 1px solid var(--primary-color);
    width: 60px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.offer-desc {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    max-width: 373px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.email-input {
    margin-bottom: 15px;
}

#email {
    border-radius: 50px;
    padding: 15px 23px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

.quick-links-topics li {
    margin-bottom: 15px;
}

.quick-links-topics a {
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.institutional-topics li {
    margin-bottom: 15px;
}

.institutional-topics a {
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.sm-icons {
    margin-right: 36px;
}

.long-line {
    border: 1px solid var(--primary-color);
    margin-top: 50px;
}

.ft-bt-cnt {
    margin-top: 21px;
    text-align: center;
}

.ft-bt-cnt-a,
.ft-bt-cnt-a a {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: var(--secondary-color);
}

footer .primary-btn {
    padding: 16px 32px;
    font-family: "Poppins", sans-serif;
}

.quick-links-topics a:hover,
.institutional-topics a:hover,
.ft-bt-cnt-a a:hover {
    color: var(--primary-color);
}

/* Footer Ends */

/* Media Query */

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

    .menu {
        margin-left: auto;
        display: flex;
        align-items: center;
        padding: 5px 20px;
        color: var(--tertiary-color);
        position: relative;
        z-index: 999;
    }

    .menu::after,
    .menu::before {
        content: "";
        height: 2px;
        background: var(--tertiary-color);
        display: inline-block;
        position: absolute;
        left: 0;
        right: 0;
        transition: 0.5s linear;
    }

    .menu::after {
        top: -5px;
    }

    .menu::before {
        bottom: -5px;
    }

    .menu span {
        height: 2px;
        background: var(--tertiary-color);
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.5s linear;
    }

    .menu.show span {
        transform: translateX(-30px);
        opacity: 0;
    }

    .menu.show::after {
        transform: rotate(45deg) translateX(13px);
    }

    .menu.show::before {
        transform: rotate(-45deg) translateX(13px);
    }

    .navbar-collapse {
        position: fixed;
        top: 33px;
        bottom: 0;
        right: -100%;
        width: 60%;
        background: var(--primary-color);
        /* padding-top: 100px; */
        transition: 0.5s linear;
        z-index: 99;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navbar-collapse.active {
        right: 0 !important;
    }

    .navbar-nav {
        text-align: center;
        margin-left: 0 !important;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .nav-icons {
        flex-direction: column;
    }

    .search,
    .profile,
    .nav-cart {
        margin-left: 0;
        margin-top: 20px;
    }

    .line {
        display: none;
    }

    .nav-link.active::after {
        display: none;
    }


    /* Footer Section */

    .sm-icons {
        margin-right: 10px;
    }
}

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

    /* Banner Section */

    .nav-logo img {
        max-width: 200px;
    }

    /* Contact Section */

    .email1-sec {
        margin-bottom: 30px;
    }

    .contact-section .row {
        display: flex;
        justify-content: center;
    }

    .phone-sec,
    .call-sec,
    .email1-sec,
    .input-form {
        text-align: center;
    }

    .input-form {
        margin-bottom: 30px;
    }


    /* Footer Section */

    .institutional,
    .social-media {
        margin-top: 30px;
    }

    footer .col-md-6 {
        /* display: flex; */
        /* justify-content: center; */
        text-align: center;
    }

    .footer-line {
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .offer,
    .quick-links {
        margin-bottom: 30px;
    }

    .sm-icons {
        margin-right: 0;
    }
}

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

    .title2 {
        font-size: 30px;
    }

    section,
    footer {
        padding: 50px 0 !important;
    }

    /* Banner Section */

    .contact-white-box {
        padding: 16px 50px;
        max-width: 300px;
    }

    .contact-banner-section .title1 {
        font-size: 40px;
    }


    /* Footer Section */

    .offer-desc {
        margin: 0 auto;
        margin-bottom: 20px;
    }
}

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


    /* Banner Section */
    .contact-banner-section .title1 {
        font-size: 35px;
    }

    .contact-white-box {
        padding: 10px 40px;
        max-width: 250px;
    }
}