@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Roboto:wght@400;500&display=swap');


:root {
    --color-primary: lime;
    --color-primary-bg: #7cdc39;
}


html {
    scroll-behavior: smooth;
}

* {
    font: inherit;
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Roboto', sans-serif;
}

a {
    color: #000;
}

img {
    max-width: 100%;
    display: block;
}

.pg-body {
    /* max-width: 1200px;
    margin-inline: auto; */
    background-color: #0b1725;
    color: #FFF;
}

.main-wrapper,
.pg-footer {
    max-width: 1200px;
    margin-inline: auto;
}

.header-wrapper {
    background-color: #0b1725;
    color: #fff;
}

.pg-header {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem .5rem;
}

.pg-header__logo {
    font-size: 1.5rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* font-weight: 600; */
    color: #FFAE46;
    font-weight: "Poppins";
}

/* .pg-header__logo img {
    width: 100px;
} */

.pg-heaader__nav-sm {
    display: none;
}

.nav-sm__menu {
    height: 3rem;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 200ms;
}

.nav-sm__menu:hover {
    background-color: #eee;
    cursor: pointer;
}

.nav-sm__menu svg {
    height: 2rem;
    width: 2rem;
    color: #666;
}

.pg-heaader__nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pg-heaader__nav-el {
    text-decoration: none;
    /* text-transform: uppercase; */
    color: #fff;
    font-weight: 500;
    font-family: 'Poppins';
    transition: all 300ms;
}

.pg-heaader__nav-el:hover {
    color: #ffae46;
}

.pg-section__heading {
    font-weight: 600;
    font-size: 1.75em;
}

/* main section */
.pg-main__section {
    min-height: calc(90vh - 4rem);
    display: flex;
    padding: 2rem 1rem;
}

.pg-main__section .pg-main__section-sub {
    flex-basis: 100%;
}


.pg-main__section .pg-section__heading {
    margin-block: 1rem .5rem;
    font-weight: 700;
    font-family: "Poppins";
    font-size: 2rem;
}

.pg-main__section .pg-main__section-sub:first-of-type {
    padding-block: 4rem 0;
}

.pg-heading__sub-para {
    margin-block: .5rem 1rem;
    max-width: 50%;
    color: #dcdcdc;
}

.pg-main__img-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-items: baseline;
    padding: 0 !important;

}

.pg-main__cover-img {
    width: 300px;
    object-fit: contain;

}


/* services section */
.pg-services__section {
    min-height: 80vh;
    padding: 2rem .5rem;
}

.pg-services__section .pg-main__section-sub {
    padding-block: 3rem 2rem;
}

.pg-services__section .pg-section__heading {
    margin-block: 1rem .5rem;
}

.service-cards__grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-content: center;
}

.service-card {
    text-align: center;
}

.service-card__upper {
    display: flex;
    justify-content: center;
}

.service-card__upper img {
    width: 150px;
    object-fit: contain;
}

.service-card__title {
    font-weight: 600;
    font-size: 1.25rem;
    font-family: "Poppins";
    margin-block: 1rem .5rem;
    /* color: #666; */
}



.pg-about__section {
    padding: 2rem 0.5rem;
}

.pg-section__about-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-block: 0.65rem 0.25em;
}

.pg-about__section-sub-section .text-sm {
    color: #e0e0e0;
}

.about-section__heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

.about-img__section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section__img {
    width: 300px;
}

/* footer */
.pg-footer {
    margin-top: 2rem;
    padding: .5rem;
}

.pg-footer__links-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.link-card {
    transition: 200ms ease;
    color: #d8d8d8;
}

.link-card svg {
    height: 1.75rem;
    width: 1.75rem;
    color: currentColor;
}

.link-card:hover {
    cursor: pointer;
    transform: translateY(-5px);
    color: #FFAE46;
}