@font-face {
    font-family: kalameh;
    src: url("../fonts/KalamehWeb-Medium.woff2");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: kalameh;
}

.link-container #page1 {
    color: black;
}

.link-container #page1 img {
    background-color: #2652A6;
}

.link-container #page2 {
    color: #E0AA3E;
}

.link-container #page2 img {
    background-color: #E0AA3E;
}

/* Service START */

.service {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 50px 0;
    padding: 0 10px;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    justify-content: center;
    width: 1200px;
    gap: 40px;
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    width: 350px;
    border-radius: 20px;
    background-color: #11316C;
}

.service-card img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 20px;
}

.service-card p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: white;
    font-size: 18px;
}

.service-card span {
    color: white;
    opacity: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
}

.courseDetails {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    background-color: #E0AA3E;
    color: #312407;
    text-decoration: none;
    border-radius: 0 0 20px 20px;
}

/* Service END */

/* Responsive START */

@media screen and (max-width:850px) {

    .service-container {
        grid-template-columns: repeat(1, auto);
        width: 100%;
    }

}

/* Responsive END */