/* Body */

* {
    font-family: 'Kanit', sans-serif;
}


/* Nav Bar */

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
}

a:hover {
    font-weight: bold;
    color: #007f86;
}


@font-face {
    font-family: 'Berlin Sans FB';
    font-style: normal;
    font-weight: normal;
    src: local('Berlin Sans FB'), url(/fonts/flaticon/font/BRLNSR.woff) format('woff');
    }

header {
    position: relative;
    padding: 2rem;
    background-color: #fff;
    align-items: center;
    /* text-align: center; */
    align-content: center;
    border-bottom: 2px solid gray;
}

.company {
    display: flex;
    align-items: center;
    /* text-align: center; */
    align-content: center;
}

.brand_name {
    color: #007f86;
    cursor: pointer;
    font-family: 'Berlin Sans FB';
}

.brand_logo {
    cursor: pointer;
    max-height: 120px;
}


.navbar_new {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar_new .aadvay_logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar_new .nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
}

.navbar_new .menu {
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.navbar_new .highlight {
    display: block;
    margin-left: 0;
    margin-right: 1rem;
}

.highlight {
    background-color: #0ef;
    color: #000;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2s ease;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.highlight:hover {
    transform: scale(1.05);
    color: red;
}

.highlight:active {
    transform: scale(0.95);
}

.dropdown-menu {
    position: absolute;
    top: 110px;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    display: none;
}

.dropdown-menu li {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu .highlight {
    width: 100%;
    display: flex;
    justify-content: center;
}

.dropdown-menu.open {
    height: auto;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
}



.image {
    height: 500px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}


.heading{
    text-transform: uppercase;
    color: #fff;
    margin-top: 1rem;
}

/* Nav Bar Ends */





/* SOME FOOTER CODE START FROM HERE  */


.home-sci {
    
    justify-content: space-between;
    text-align: center;
}

.home-sci a {
    margin: 7px;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.home-sci a:hover {
    color: #fff;
    border: 2px solid #000;
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #000;
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover::before {
    width: 100%;
}



/* Responsive */


@media (max-width: 1500px) {
    .image {
        height: 320px;
        width: 100%;
    }

 
}




@media (max-width: 1220px) {
    .navbar_new .nav ul {
        display: none;
    }

    .navbar_new .menu {
        display: flex;
    }

    .navbar_new .menu i {
        display: inline-block;
    }

    .navbar_new .highlight {
        display: none;
    }

    .dropdown-menu.open {
        display: block;
    }

    .dropdown-menu .highlight {
        display: block;
        margin-top: 0rem;
    }

    .brand_logo {
        max-height: 100px;
    }

    .brand_name {
        font-size: 25px;
        font-weight: 900;
    }

    .image {
        height: 220px;
        width: 100%;
    }

}


@media (max-width: 1000px) {
    .brand_logo {
        max-height: 90px;
    }

    .image {
        height: 180px;
        width: 100%;
    }

}

@media (max-width: 700px) {
    .brand_logo {
        max-height: 80px;
    }

    .image {
        height: 130px;
        width: 100%;
    }

    .brand_name {
        font-size: 20px;
    }
}


@media (max-width: 500px) {

    .brand_logo {
        max-height: 70px;
    }

    .image {
        height: 80px;
        width: 100%;
    }
}