@import url('https://fonts.googleapis.com/css2?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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --site-width: 1280px;
}

body {
    background-color: #E8F9FF;
}

.main-cover {
    background-image:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(./../img/bodrum-temizlik.jpg);
    background-position: center center;
    background-size: cover;
}

.header {
    display: block;
    text-align: center;
}

.header .logo {
    padding: 1rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 28px;
}

.header .logo a {
    text-decoration: none;
    color: #fff;
    transition: .5s opacity;
}

.header .logo a:hover {
    opacity: .75;
}

.header .logo .title {
    display: none;
}

.header .logo img {
    width: 200px;
}

.header .clearfix {
    display: none;
    flex: 1;
}

.header .navigation {
    display: none;
    align-items: center;
    column-gap: 2rem;
    margin-right: 2rem;
    padding: 1rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.header .navigation a {
    flex: 1;
    color: #fff;
    text-decoration: none;
    transition: .5s color;
}

.header .navigation a:hover {
    color: #ccc;
}

.cover {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.cover-content {
    width: var(--site-width);
    color: #fff;
}

.cover-title {
    display: block;
    margin-bottom: 1rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-weight: bold;
}

.cover-description {
    margin-bottom: 2rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: #eee;
}

.cover-button {
    display: inline-block;
    padding: .5rem 1rem;
    background-color: #155E95;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: .5s background;
}

.cover-button:hover {
    background-color: #093c63;
}

.button-text {
    display: inline-block;
    margin-left: .5rem;
}

.contact {
    padding: 1rem;
    background-color: #98D8EF;
}

.contact h2 {
    margin-bottom: 1rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 28px;
    color: #155E95;
    text-align: center;
}

.contact-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.contact-panel .contact-card {
    color: #155E95;
}

.contact-panel .contact-text {
    margin-bottom: 1rem;
    font-size: 64px;
    font-weight: bold;
}

.contact-panel .contact-value {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 24px;
}

.contact-panel .contact-card a {
    color: #155E95;
    text-decoration: none;
    transition: .25s color;
}

.contact-panel .contact-card a:hover {
    color: #0c385a;
}

.services {
    width: var(--site-width);
    margin: 1rem auto 2rem;
}

.services h2 {
    margin-bottom: 1rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 28px;
    color: #155E95;
    text-align: center;
}

.services-panel {
    display: grid;
    grid-template-areas: '1 2 3';
    grid-template-columns: repeat(3, calc(33% - .5rem));
    gap: 1rem;
}

.service-card {
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: .35rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    box-shadow: 0 5px 20px -5px rgb(2 54 70 / 7%);
}

.service-card .service-image {
    margin-bottom: 1rem;
    background-size: 100% 100%;
    height: 200px;
    transition: .5s opacity;
}

.service-card .service-image:hover {
    opacity: .7;
}

.service-card .service-title {
    margin-bottom: .5rem;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.service-card .service-title a {
    text-decoration: none;
    color: #000;
}

.service-card .service-title a:hover {
    color: #565656;
}

.service-card .service-description {
    color: #888;
}

.customer-comments {
    margin-bottom: 1rem;
    padding: 1rem 1rem 2rem;
    background-color: #98D8EF;
}

.customer-comments h2 {
    margin-bottom: 1rem;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 28px;
    color: #155E95;
    text-align: center;
}

.customer-comments-panel {
    display: grid;
    grid-template-areas: '1 2 3';
    grid-template-columns: repeat(3, calc(33% - .5rem));
    gap: 1rem;
    width: var(--site-width);
    margin: 0 auto;
}

.customer-comment {
    padding: 1rem;
    background-color: #d6eff9;
    border: 1px solid #93becd;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    box-shadow: 0 5px 20px -5px rgb(2 54 70 / 7%);
}

.customer-info {
    margin-bottom: .5rem;
}

.customer-fullname {
    font-size: 20px;
    font-weight: bold;
    color: #155E95;
}

.customer-post-date {
    font-size: 16px;
}

.customer-text {
    font-size: 16px;
    color: #565656;
}

.references {
    width: var(--site-width);
    margin: 0 auto 1rem;
    padding: 1rem;
}

.references h2 {
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 28px;
    color: #155E95;
}

.references-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.references-panel img {
    width: 300px;
}

.references-panel a {
    text-decoration: none;
    transition: .5s opacity;
}

.references-panel a:hover {
    opacity: .5;
}

.services-content {
    width: var(--site-width);
    margin: 1rem auto;
    background-color: #fff;
    border: 1px solid #a7a7a7;
    border-radius: .35rem;
    padding: 1rem;
}

.services-content img {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
}

.markdown-body br {
    display: block;
    margin-bottom: .5rem;
    content: "";
}

@media only screen and (max-width: 1280px) {
    :root {
        --site-width: 100%;
    }

    .cover-content {
        padding: 2rem;
        text-align: center;
    }
}

@media only screen and (max-width: 960px) {

    .header .logo {
        padding: 0;
        text-align: center;
    }

    .header .navigation {
        display: none;
    }

    .services-panel,
    .customer-comments-panel {
        grid-template-areas: '1 2';
        grid-template-columns: repeat(2, calc(50% - .5rem));
    }
}

@media only screen and (max-width: 740px) {

    .cover-description {
        display: none;
    }

    .services-panel,
    .customer-comments-panel {
        display: block;
        grid-template-areas: '1 2';
        grid-template-columns: repeat(2, calc(50% - .5rem));
    }

    .services-panel > *,
    .customer-comments-panel > * {
        margin-bottom: 1rem;
    }

    .references-panel {
        display: block;
    }

    .references-panel a {
        display: block;
        margin-bottom: 1rem;
        text-align: center;
    }
}