@charset "utf-8";
/* CSS Document */

/* START BODY */

* {
    box-sizing: border-box;
    text-decoration: none;
}

svg {
    fill: white;
    width: 24px;
    height: 24px;
}

pre {
    white-space: pre-wrap;
    font-family: 'Heebo', sans-serif;
}

body {
    width: 100%;
    height: 100svh;
    display: flex;
    font-family: 'Heebo', sans-serif;
    justify-content: space-between;
    flex-direction: column;
    background-color: var(--bg-color);
    position: relative;
    font-size: 16px;
    line-height: inherit;
}

/* END BODY */

/* START HEADER */

header {
    background-color: var(--light-bg-color);
    padding: 20px;
}

.header_center {
    display: flex;
    justify-content: space-between;
    color: var(--title-color);
    max-width: 1200px;
    margin: auto;
}

nav {
    display: none;
}

nav.active {
    display: flex;
    position: absolute;
    background-color: var(--bg-color);
    padding: 20px;
    flex-direction: column;
    /*box-shadow: var(--box-shadow);*/
    box-shadow: var(--box-shadow-green);
    text-align: center;
    border-radius: 15px;
    width: calc(100% - 40px);
    top: 60px;
    z-index: 3;
    border: 1px solid var(--title-color);
}

nav.active a {
    margin: 10px auto;
    display: block;
}

nav a {
    color: var(--title-color);
    margin: 0 20px;
}

nav a.active, .footer_nav a.active {
    color: var(--main-color);
    font-weight: bold;
}

nav a:hover, .footer_nav a:hover {
    color: var(--main-color);
    transition: .3s;
}

.header_phone_number, .header_close_icon {
    display: none;
    color: var(--title-color);
}

.header_menu_icon, .header_close_icon {
    cursor: pointer;
}

.header_close_icon.active {
    display: block;
}

.header_menu_icon.active {
    display: none;
}

/* END HEADER */

/* START FOOTER */

footer {
    background-color: var(--bg-color);
}

.footer_center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 50px auto 0;
}

.footer_center__side {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_center__side_bottom {
    display: flex;
    margin: 50px 0;
}

.footer_center__side_bottom a:hover svg {
    transition: .3s;
    fill: var(--main-color);
}

.footer_center__side_bottom a {
    margin-left: 16px;
}

.footer_center__side_bottom p:first-child {
    color: var(--title-color);
}

.footer_center__side_bottom p {
    width: 50%;
    color: var(--text-color);
}

.footer_nav {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
}

.footer_nav a {
    color: var(--title-color);
    margin: 8px 0;
}

/* END FOOTER */

/* START MAIN */

main {
    flex: 1 1 auto;
    /*background-color: #320d62;*/
}

/* END MAIN */

/* START CONTENT */

.cover_strip {
    background-color: var(--light-bg-color);
}

.cover_strip__center {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.cover_strip__visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.cover_strip__visual img {
    width: 100%;
    max-width: 500px;
}

.cover_strip__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cover_strip__content_top {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cover_strip__content_bottom {
    width: 100%;
    margin-bottom: 50px;
    display: none;
}

.cover_strip__content_counter {
    width: 50%;
    display: flex;
}

.cover_strip__content_center {
    text-align: center;
    margin: 30px auto;
}

.cover_strip__content_center .btn {
    margin: auto;
}

.cover_strip__content_counter p:first-child {
    color: var(--title-color);
    font-size: 3em;
    margin-left: 10px;
    font-weight: bold;
}

.cover_strip__content_counter p:last-child {
    color: var(--text-color);
    vertical-align: center;
    padding: 10px 0;
}

.big_title {
    font-size: 2em;
    color: var(--title-color);
    line-height: 1em;
    letter-spacing: 2px;
}

.title {
    font-size: 1.4em;
    color: var(--title-color);
}

.little_title {
    color: var(--text-color);
    font-size: .8em;
}

.italic_text {
    color: var(--title-color);
    font-style: italic;
    line-height: 2em;
}

.description {
    color: var(--text-color);
}

.description a {
    color: var(--bg-color);
    transition: .3s;
    padding: 0 8px;
    margin: 0 4px;
    border-radius: 4px;
    font-weight: bold;
    background-color: var(--text-color);
}

.description a:hover {
    background-color: var(--main-color);
}

.link {
    color: var(--main-color);
    text-decoration: underline;
}

.btn {
    background-color: var(--main-color);
    color: var(--bg-color);
    padding: 4px 8px;
    border-radius: 4px;
    display: block;
    width: fit-content;
    text-align: center;
    min-width: 120px;
    font-weight: bold;
    transition: .3s;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.btn.center {
    margin: auto;
}

.btn:hover {
    opacity: .6;
}

.about_strip__content {
    display: flex;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 50px auto;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.about_strip__content_list {
    width: 100%;
    margin-top: 30px;
}

.about_strip__content_item {
    background-color: var(--light-bg-color);
    border-radius: 4px;
    padding: 20px;
    margin: 8px 0;
    width: 100%;
    box-shadow: var(--box-shadow);
}

.about_strip__content_item div {
    display: flex;
    justify-content: space-between;
}

.about_strip__content_text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 480px;
}

.skills_strip__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 992px;
    width: calc(100% - 40px);
    margin: 100px auto;
}

.skills_strip__content_item {
    width: 33%;
    margin: 20px 0;
}

.skills_strip__content_item div {
    display: flex;
    justify-content: center;
    margin: auto;
}

.skills_strip__content_item svg {
    fill: var(--text-color);
}

.skills_strip__content_item p {
    color: var(--text-color);
    text-align: center;
}

.works_strip__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 30px auto;
}

.works_strip__content.desktop {
    display: none;
}

.works_strip__content_side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.works_strip__content_item {
    width: 100%;
    aspect-ratio: 1;
    margin: 10px auto;
    background-color: var(--light-bg-color);
    border-radius: 4px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    max-width: 576px;
    position: relative;
    overflow: hidden;
}

.works_strip__content_item.first, .works_strip__content_item.last {
    aspect-ratio: 2/1;
    background-color: unset;
    box-shadow: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.works_strip__content_details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.works_strip__content_image {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.works_strip__content_image img {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.customer_testimonials {
    width: 100%;
    background-color: var(--light-bg-color);
}

.customer_testimonials__content {
    padding: 50px 0;
    max-width: 992px;
    width: calc(100% - 40px);
    margin: auto;
}

.customer_testimonials__content_text {
    display: flex;
    justify-content: space-between;
    flex-direction: column-reverse;
    padding: 40px;
    color: var(--title-color);
    background-color: var(--bg-color);
    margin: 30px 0;
    border-radius: 16px;
}

.customer_testimonials__content_text_p {
    display: none;
}

.customer_testimonials__content_text_p.active {
    display: block;
}

.customer_testimonials__content_text svg {
    width: 60px;
    height: 60px;
    fill: var(--text-color);
}

.customer_testimonials__content_recommend {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.customer_testimonials__content_recommend_item {
    width: 100%;
    display: flex;
    padding-right: 16px;
    margin: 20px 0;
    cursor: pointer;
}

.customer_testimonials__content_header {
    display: flex;
    justify-content: space-between;
}

.customer_testimonials__content_header a {
    display: flex;
    align-items: end;
}

.customer_testimonials__content_recommend_item div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.customer_testimonials__content_recommend_item img {
    height: 60px;
    width: 60px;
    border-radius: 30px;
    background-color: var(--bg-color);
    margin-left: 16px;
}

.customer_testimonials__content_recommend_item span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border-radius: 30px;
    background-color: var(--bg-color);
    margin-left: 16px;
}

.customer_testimonials__content_recommend_item svg {
    fill: var(--light-bg-color);
    height: 36px;
    width: 36px;
}

.customer_testimonials__content_recommend_item.active {
    border-right: 3px solid var(--main-color);
}

.contact_strip__container {
    padding: 0 0 50px;
    max-width: 992px;
    width: calc(100% - 40px);
    margin: 50px auto;
    position: relative;
}

.contact_strip__container_center {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.contact_strip__contact_details {
    background-color: var(--bg-lighter-color);
    box-shadow: var(--box-shadow-green);
    width: calc(100% - 40px);
    padding: 40px 20px;
    max-width: 520px;
    margin: 0 auto;
}

.contact_strip__form {
    width: 100%;
    padding: 40px;
    max-width: 520px;
    margin: 0 auto;
}

form .btn {
    margin-top: 30px;
    border: none;
}

.contact_strip__container_bg {
    background-color: var(--light-bg-color);
    box-shadow: var(--box-shadow);
    width: 100%;
    height: 90%;
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 1;
}

.about_page {
    width: 100%;
    /*background-color: var(--light-bg-color);*/
}

.about_page__container {
    padding: 50px 0;
    max-width: 992px;
    width: calc(100% - 40px);
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about_page__container_text {
    width: 100%;
}

.about_page__container_img {
    width: 200px;
    position: relative;
    margin-bottom: 80px;
}

.about_page__container_img img {
    height: 250px;
    width: calc(100% - 20px);
    background-color: black;
    position: relative;
    z-index: 2;
    box-shadow: var(--box-shadow);
    object-fit: cover;
}

.about_page__container_stroke {
    height: 250px;
    width: calc(100% - 20px);
    top: 20px;
    left: 0;
    position: absolute;
    z-index: 1;
    outline: solid 6px var(--main-color);
    outline-offset: -6px;
}

.testimonials_page {
    padding: 50px;
    max-width: 992px;
    width: calc(100% - 40px);
    background-color: var(--light-bg-color);
    margin: 50px auto;
    box-shadow: var(--box-shadow);
}

/* END CONTENT */

@media (min-width: 480px) {

}

@media (min-width: 600px) {

}

@media (min-width: 768px) {
    .header_phone_number {
        display: block;
    }

    nav {
        display: block;
    }

    .works_strip__content.desktop {
        display: flex;
    }

    .works_strip__content.mobile {
        display: none;
    }

    .header_menu_icon, .header_call_icon, .header_close_icon {
        display: none;
    }

    .footer_center {
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .footer_center__side:last-child {
        align-items: end;
    }

    .cover_strip__content_bottom {
        display: flex;
    }

    .cover_strip__center {
        flex-wrap: nowrap;
    }

    .about_strip__content {
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .about_strip__content_list {
        margin-top: 0;
    }

    .about_strip__content_item {
        width: 80%;
    }

    .cover_strip__content_center {
        text-align: right;
        margin: 0;
    }

    .cover_strip__content_center .btn {
        margin: 0;
    }

    .big_title {
        font-size: 3em;
    }

    .cover_strip__visual {
        width: 60%;
    }

    .cover_strip__visual img {
        width: 100%;
        max-width: unset;
    }

    .cover_strip__content {
        width: 40%;
    }

    .works_strip__content_side {
        width: 48%;
    }

    .skills_strip__content_item {
        width: 20%;
    }

    .customer_testimonials__content_recommend {
        flex-direction: row;
    }

    .customer_testimonials__content_recommend_item {
        width: 23%;
        padding-right: 0;
        padding-bottom: 16px;
    }

    .customer_testimonials__content_recommend_item:hover .italic_text {
        color: var(--main-color);
        transition: .3s;
    }

    .customer_testimonials__content_recommend_item.active {
        border-right: unset;
        border-bottom: 3px solid var(--main-color);
    }

    .contact_strip__container_center {
        flex-direction: row;
    }

    .contact_strip__contact_details {
        width: 40%;
        padding: 40px;
    }

    .contact_strip__form {
        width: 60%;
    }

    .contact_strip__container_bg {
        width: 90%;
        height: 100%;
        top: 0;
    }

    .contact_strip__container {
        padding: 50px 0;
    }

    .customer_testimonials__content_text {
        flex-direction: row;
    }

    .customer_testimonials__content_text svg {
        margin-right: 60px;
    }

    .about_page__container {
        flex-direction: row;
    }

    .about_page__container_img {
        margin-bottom: 0;
    }

    .about_page__container_text {
        width: calc(100% - 240px);
    }
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}
