@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-primary: "Roboto";
    --font-secondary: "Montserrat";
    --color-gray: #868686;
    --color-text: #121212;
    --colog-bg: #f5f5f5;
}

body {
    font-family: var(--font-primary), sans-serif;
    color: var(--color-text);
    background-color: var(--colog-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary), sans-serif;
    font-weight: 700;
}

.section-padding {
    padding: 120px 0;
}

/*HEADER*/

/*header {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*}*/

.navbar {
    padding: 1rem 0;
}

header .logo img {
    width: 170px;
}

header .navbar-menu ul {
    display: flex;
    justify-content: end;
    gap: 1rem;
}

.navbar-menu ul li a {
    letter-spacing: 1px;
    color: var(--color-gray);
    font-weight: 500;
    transition: .3s ease-in-out;
}

.navbar-menu ul li:hover a {
    color: var(--color-text);
}

/*FOOTER*/

footer {
    background-color: #fff;
    padding: 120px 0;
    color: var(--color-gray);
}

.footer-contact h4 {
    color: #000;
    margin-bottom: .75rem;
    font-weight: 600;
}

.footer-contact p, .footer-nav ul li {
    margin-bottom: .5rem;
}

/*PROJECT LIST*/

.project-item {
    padding: .5rem;
    margin-bottom: 1rem;
}

.project-cover {
    height: 380px;
    overflow: hidden;
    margin-bottom: .75rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.project-cover img, .project-cover video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.intro-text {
    font-size: 1.725rem;
    font-weight: 500;
    letter-spacing: 0;
}

.show-more {
    text-align: center;
    font-size: 26px;
    padding: 3rem 0;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    width: 100%;
}

.pagination nav {
    display: inline-flex;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
    font-family: sans-serif;
    font-size: 14px;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    border-right: 1px solid #ddd;
    text-decoration: none;
    color: #555;
    background-color: #fff;
    transition: background-color 0.2s, color 0.2s;
}

.pagination a:last-child,
.pagination span:last-child {
    border-right: none;
}

.pagination a:hover {
    background-color: #f5f5f5;
}

.pagination .active {
    background-color: #9f9f9f; /* indigo */
    color: #fff;
    font-weight: bold;
}

.pagination .disabled {
    color: #aaa;
    background-color: #f9f9f9;
    cursor: not-allowed;
}

/*PROJECT DETAIL*/

.project-intro {
    padding: .75rem;
}

.project-name {
    font-size: 30px;
    margin-bottom: 20px;
}

.images {
    padding: .75rem 0;
}

.image-item {
    padding: .75rem;
}

.image-item img {
    width: 100%;
}

.project-logo-section {
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6rem 0;
}

.project-logo-section img {
    width: 400px;
    max-height: 150px;
    object-fit: contain;
}

.yt-video iframe {
    width: 100%;
    height: 800px;
}

.project-categories li {
    font-size: 20px;
    margin-bottom: .5rem;
}

.project-categories li i {
    font-size: 16px;
    margin-right: .5rem;
}

/*ABOUT US*/

.about-text h3 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: .75rem;
}

.about-video iframe {
    width: 100%;
    height: 700px;
}

/*CONTACT*/

.contact {
    background-color: #fff;
}

.contact h1 {
    font-size: 35px;
    margin-bottom: 1rem;
}

.contact h4 {
    font-size: 24px;
    margin-bottom: .75rem;
}

.contact p {
    margin-bottom: .75rem;
}

.contact-social {
    color: var(--color-gray);
    padding-top: 1.25rem;
}

.contact-social ul li {
    margin-bottom: .35rem;
}

.map-btn-wrapper {
    margin-bottom: 20px;
}

.g-map iframe {
    width: 100%;
    height: 450px;
}

.map-btn {
    background-color: var(--colog-bg);
    padding: .75rem 2rem;
    border: 1px solid #d5d5d5;
}

.grid-sizer,
.grid-item {
    width: 50%;
}