@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'arimo';
    src: url('/fonts/Arimo-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

body {
    /*background-color: var(--bg-secondary);*/
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: normal;
}

/* START HEADER */

header {
    width: 100%;
    height: 80px;
    background-color: var(--bg-main);
}

.header_center {
    height: 100%;
    width: calc(100% - 40px);
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
}

header nav a {
    color: var(--btn-secondary);
    font-weight: bold;
    margin-left: 24px;
    cursor: pointer;
}

header nav a:last-child {
    margin-left: 0;
}

.header_contact_btn {
}

/* END HEADER */

.container_wrapper {
    width: 100%;
    padding: 40px 20px;
}

.btn {
    background-color: var(--btn-secondary);
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 16px;
    display: block;
    width: fit-content;
    border: 0;
    cursor: pointer;
}

.btn.center {
    margin: auto;
}

.wave_line_top, .wave_line_bottom {
    width: 100%;
    height: auto;
    display: block;
    background-color: var(--bg-main);
}

.wave_line_top svg, .wave_line_bottom svg {
    display: block;
    width: 100%;
    aspect-ratio: 30 / 1;
}

.cover_strip {
    min-height: 60dvh;
    align-content: center;
    background-color: var(--bg-main);
}

.cover_strip__body {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cover_strip__body_right {
    display: flex;
    align-items: center;
    width: 100%;
}

.cover_strip__body_left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.cover_strip__body_left img {
    width: 100%;
}

.cover_strip__body_right_title {
    font-weight: bold;
    font-size: 2em;
    color: var(--text-title);
}

.cover_strip__body_right_center {
    text-align: center;
    margin-bottom: 40px;
}

.cover_strip__body_right_bold_text {
    font-weight: bold;
    margin: 8px 0;
}

.services_strip {
    min-height: 80dvh;
    align-content: center;
}

.services_strip__body {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.services_strip__flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.services_strip__flex_item {
    width: 100%;
    margin: 20px 0;
}

.services_strip__flex_item p {
    text-align: center;
    margin: 16px auto;
}

.services_strip__flex_item img {
    aspect-ratio: 1;
    width: 80%;
    border-radius: 32px;
    /*box-shadow: -1px 9px 18px 0 rgba(75, 81, 91, .1);*/
    margin: 16px auto;
    display: block;
}

.services_strip__title {
    text-align: center;
    font-weight: bold;
    font-size: 1.6em;
    margin-bottom: 16px;
}

.services_strip__text {
    text-align: center;
}

.about_strip {
    min-height: 60dvh;
    align-content: center;
    background-color: var(--bg-main);
}

.about_strip__body {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.about_strip__left {
    max-width: 420px;
    width: 90%;
    position: relative;
    margin: auto;
}

.about_strip__left img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transform: rotate(-5deg);
    position: relative;
    z-index: 3;
    border-radius: 32px;
}

.about_strip__left_color_bg_first {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #D3B6E2;
    position: absolute;
    z-index: 2;
    top: 0;
    border-radius: 32px;
}

.about_strip__left_color_bg_second {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #b3d4fc;
    position: absolute;
    z-index: 1;
    transform: rotate(5deg);
    top: 0;
    border-radius: 32px;
}

.about_strip__right {
    width: 100%;
    display: flex;
    align-items: center;
}

.gallery_strip__flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
    width: 100%;
    max-width: 1200px;
}

.gallery_strip__flex_item {
    width: calc(50% - 10px);
    aspect-ratio: 1;
    overflow: hidden;
    margin: 10px 0;
    border-radius: 32px;
}

.gallery_strip__flex_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    background-color: var(--bg-main);
    padding: 40px 20px 10px;
}

.footer_center {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.footer_center input, .footer_center textarea {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 16px;
    margin: 8px 0;
    font-size: 1em;
    font-family: Heebo, Sans-serif;
}

.footer_center form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer_center .btn {
    margin-top: 20px;
}

.footer_center input {
    width: 100%;
}

.footer_center textarea {
    height: 100px;
    width: 100%;
}

.footer_powered {
    text-align: center;
    margin: 30px auto 0;
    display: block;
    font-size: .8em;
    color: #333;
}

@media (min-width: 480px) {

}

@media (min-width: 600px) {
    .container_wrapper {
        width: 100%;
        padding: 100px 20px;
    }

    .gallery_strip__flex_item {
        width: calc(33% - 20px);
        margin: 20px 0;
    }

    .footer_center input {
        width: calc(50% - 10px);
    }

}

@media (min-width: 768px) {
    body {
        font-size: 22px;
    }
    .about_strip__left, .about_strip__right {
        width: calc(50% - 40px);
    }

    .cover_strip__body_right_center {
        text-align: right;
        margin-left: 40px;
        margin-bottom: 0;
    }

    .cover_strip__body_right {
        width: 50%;
    }

    .services_strip__flex_item {
        width: calc(50% - 20px);
        margin: 20px 0;
    }

    .cover_strip__body_left {
        width: 50%;
    }

    .footer_center input {
        width: calc(25% - 10px);
    }
}

@media (min-width: 992px) {
    .services_strip__flex_item {
        width: calc(25% - 20px);
    }
}

@media (min-width: 1200px) {

}
