/* Fonts */

@font-face {
    font-family: 'Lato';
    font-weight: 100;
    font-style: normal;
    src: url('../fonts/Lato/Lato-Thin.ttf');
}

@font-face {
    font-family: 'Lato';
    font-weight: 100;
    font-style: italic;
    src: url('../fonts/Lato/Lato-ThinItalic.ttf');
}

@font-face {
    font-family: 'Lato';
    font-weight: 300;
    font-style: normal;
    src: url('../fonts/Lato/Lato-Light.ttf');
}

@font-face {
    font-family: 'Lato';
    font-weight: 300;
    font-style: italic;
    src: url('../fonts/Lato/Lato-LightItalic.ttf');
}

@font-face {
    font-family: 'Lato';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/Lato/Lato-Regular.ttf');
}

@font-face {
    font-family: 'Lato';
    font-weight: 400;
    font-style: italic;
    src: url('../fonts/Lato/Lato-Italic.ttf');
}

@font-face {
    font-family: 'Lato';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/Lato/Lato-Bold.ttf');
}

@font-face {
    font-family: 'Lato';
    font-weight: 700;
    font-style: italic;
    src: url('../fonts/Lato/Lato-BoldItalic.ttf');
}

@font-face {
    font-family: 'Lato';
    font-weight: 900;
    font-style: normal;
    src: url('../fonts/Lato/Lato-Black.ttf');
}

@font-face {
    font-family: 'Lato';
    font-weight: 900;
    font-style: italic;
    src: url('../fonts/Lato/Lato-BlackItalic.ttf');
}

@font-face {
    font-family: 'Mate';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/Mate/Mate-Regular.ttf');
}

@font-face {
    font-family: 'Mate';
    font-weight: 400;
    font-style: italic;
    src: url('../fonts/Mate/Mate-Italic.ttf');
}

@font-face {
    font-family: 'Mate SC';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/MateSC/MateSC-Regular.ttf');
}

@font-face {
    font-family: 'Cabin';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/Cabin/Cabin-Regular.ttf');
}

@font-face {
    font-family: 'Cabin';
    font-weight: 400;
    font-style: italic;
    src: url('../fonts/Cabin/Cabin-Italic.ttf');
}

@font-face {
    font-family: 'Cabin';
    font-weight: 500;
    font-style: normal;
    src: url('../fonts/Cabin/Cabin-Medium.ttf');
}

@font-face {
    font-family: 'Cabin';
    font-weight: 500;
    font-style: italic;
    src: url('../fonts/Cabin/Cabin-MediumItalic.ttf');
}

@font-face {
    font-family: 'Cabin';
    font-weight: 600;
    font-style: normal;
    src: url('../fonts/Cabin/Cabin-SemiBold.ttf');
}

@font-face {
    font-family: 'Cabin';
    font-weight: 600;
    font-style: italic;
    src: url('../fonts/Cabin/Cabin-SemiBoldItalic.ttf');
}

@font-face {
    font-family: 'Cabin';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/Cabin/Cabin-Bold.ttf');
}

@font-face {
    font-family: 'Cabin';
    font-weight: 700;
    font-style: italic;
    src: url('../fonts/Cabin/Cabin-BoldItalic.ttf');
}

@font-face {
    font-family: 'Nunito Sans';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/NunitoSans/NunitoSans_10pt-Bold.ttf');
}

/* Body */

body {
    margin: 0;
    overflow: hidden auto;
    background-color: var(--color-black);
}

/* Common */

body * {
    box-sizing: border-box;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1194px;
    margin: 0 auto;
}

.container-big {
    width: 100%;
    max-width: 1292px;
    margin: 0 auto;
}

.animated {
    opacity: 0;
}

.animated.animate__animated {
    opacity: 1;
}

/* Vars */

:root {
    --color-black: #212123;
    --color-blue: #148B9D;
    --color-grey: #25385A;

    --header-fixed-height: 89px;
    --container-width: 1194px;
    --team-member-image-width: 379px;
}

/* Header */

.header {
    position: fixed;
    padding: 10px 20px;
    width: 100%;
    left: 0;
    top: 0;
    border-bottom: 1px solid #FFFBFB;
    z-index: 99;
}

.header.light {
    border-bottom-color: #000;
}

body.admin-bar .header {
    top: 32px;
}

.header.scrolled {
    background-color: var(--color-black);
    border-bottom-color: #FFFBFB;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 72px;
}

.header-logo-wrapper img,
.header-logo-wrapper svg {
    display: block;
    height: 68px;
    transition: height .2s linear;
}

.header.scrolled .header-logo-wrapper img,
.header.scrolled .header-logo-wrapper svg {
    height: 50px;
}

.header-menu {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 50px;
    justify-content: flex-end;
}

.header-logo-wrapper + .header-menu {
    justify-content: flex-start;
}

.header-menu .menu-item a {
    padding: 0 10px;
    color: #FCFCFC;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 13.6615px;
    line-height: 23px;
}

.header.light .header-menu .menu-item:not(:hover):not(.current-menu-item) a {
    color: #000;
}

.header.scrolled .header-menu .menu-item:not(:hover):not(.current-menu-item) a {
    color: #FCFCFC;
}

.header-menu .menu-item:hover a,
.header-menu .menu-item.current-menu-item a {
    color: var(--color-blue);
}

.header-burger-close {
    display: none;
    width: 20px;
    height: 20px;
    margin: 20px 20px 40px auto;
}

.header-burger-close path {
    fill: #fff;
}

.header-mobile-content {
    display: none;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.header-mobile-logo-wrapper img,
.header-mobile-logo-wrapper svg {
    display: block;
    height: 40px;
}

.header-burger-open {
    width: 20px;
    height: 20px;
    display: block;
}

.header-burger-open path {
    fill: #fff;
}

/* Footer */

.footer {
    background-color: var(--color-black);
    padding: 0 20px;
}

.footer .container {
    border-top: 1px solid #fff;
    padding: 54px 0 30px;
}

.footer-top {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.footer-top-address {
    display: flex;
    align-items: flex-end;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #fff;
}

.footer-top-address svg {
    height: 29px;
    display: block;
    margin-right: 10px;
}

.footer-top-logo-wrapper a {
    display: block;
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: normal;
    margin-bottom: 16px;
    color: #fff;
}

.footer-top-logo-wrapper a:hover {
    color: var(--color-blue);
}

.footer-top-logo-wrapper img,
.footer-top-logo-wrapper svg {
    display: block;
    height: 146px;
    margin: 0 auto;
}

.footer-top-contact {
    display: flex;
    align-items: flex-end;
}

.footer-top-contact svg {
    height: 29px;
    display: block;
    margin-right: 10px;
}

.footer-top-contact a {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #fff;
}

.footer-top-contact a:hover {
    color: var(--color-blue);
}

.footer-socials {
    display: flex;
    gap: 15px 35px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 68px;
}

.footer-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.footer-socials a svg,
.footer-socials a img {
    display: block;
    max-height: 100%;
    max-width: 100%;
}

.footer-socials a:hover svg path {
    fill: var(--color-blue);
}

.footer-socials a:hover img {
    opacity: .7;
}

.footer-copyright {
    font-family: 'Cabin';
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    opacity: .8;
    margin-top: 10px;
}

/* Top Section */

.top {
    padding: 60px 20px;
    padding-top: calc(60px + var(--header-fixed-height));
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}

.top .container {
    width: max-content;
}

.top-overtitle {
    text-align: center;
    font-size: 20px;
    line-height: 23.4px;
    color: #000;
    font-family: 'Mate';
    font-weight: 400;
    margin-bottom: 20px;
}

.top-title {
    text-align: center;
    font-size: 48px;
    line-height: 56px;
    color: #000;
    font-family: 'Mate';
    font-weight: 400;
}

.top-title span {
    color: var(--color-blue);
}

.top-button {
    display: block;
    min-width: 224px;
    padding: 21px;
    margin: 56px auto 0;
    background-color: var(--color-blue);
    text-align: center;
    color: #fff;
    font-family: 'Lato';
    font-weight: 700;
    font-size: 15.6131px;
    line-height: 23px;
    width: max-content;
    border-radius: 8px;
}

.top-button:hover {
    background-color: var(--color-black);
}

/* About Section */

.about {
    background-color: var(--color-black);
    padding: 126px 20px 146px;
    position: relative;
}

.about:before {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 72px;
    width: calc(50vw + 166px);
    background-color: #fff;
}

.about .container {
    display: flex;
    gap: 60px;
    position: relative;
}

.about .container:after {
    content: ' ';
    display: block;
    position: absolute;
    bottom: -146px;
    right: 0;
    height: 2px;
    width: 345px;
    background-color: #fff;
}

.about-content {
    padding-top: 30px;
}

.about-overtitle {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 23px;
    margin-bottom: 18px;
    color: var(--color-blue);
}

.about-title {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    color: #fff;
}

.about-description {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 60px;
    margin-top: 13px;
    color: #FBFBFB;
    opacity: .8;
}

.about-video-button {
    display: flex;
    align-items: center;
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #fff;
    width: max-content;
    padding-right: 15px;
    margin-top: 30px;
}

.about-video-button span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin-right: 12px;
    border: 10px solid #fff;
    border-radius: 50%;
}

.about-video-button:hover span {
    border-color: var(--color-blue);
}

.about-video-button span svg {
    display: block;
    width: 22px;
    height: 21px;
}

.about-video-button:hover span svg path {
    fill: #fff;
}

.about-image-wrapper {
    position: relative;
    padding-right: 46px;
    height: 100%;
}

.about-image-wrapper:after {
    content: '';
    display: block;
    width: 74.5%;
    max-width: 398px;
    height: calc(100% + 122px);
    position: absolute;
    right: 0;
    top: -62px;
    background-image: url(../img/about-dots.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 1;
}

.about-image-wrapper img,
.about-image-wrapper svg {
    display: block;
    width: 489px;
    border-radius: 8px;
    position: relative;
    object-fit: cover;
    z-index: 2;
    outline: 2px solid var(--color-black);
}

/* Statistics Section */

.statistics {
    background-color: var(--color-black);
    position: relative;
    padding: 236px 20px 172px;
}

.statistics:before {
    content: ' ';
    display: block;
    position: absolute;
    z-index: 1;
    top: 236px;
    left: 0;
    height: 584px;
    width: calc(50vw - var(--container-width) / 2 + 125px);
    background-image: url(../img/statistics-dots.png);
    background-size: 247px 100%;
    background-position: right;
}

.statistics .container {
    min-height: 584px;
    position: relative;
    z-index: 2;
}

.statistics-items {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1044px;
    margin-left: auto;
    width: 100%;
}

.statistics-item {
    width: calc(50% - 20px);
    max-width: 100%;
}

.statistics-item-overtitle {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 55px;
    text-align: center;
    color: var(--color-blue);
    margin-bottom: 2px;
}

.statistics-item-title {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 44.9068px;
    line-height: 55px;
    text-align: center;
    color: var(--color-blue);
    margin-bottom: 12px;
}

.statistics-item-subtitle {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 55px;
    text-align: center;
    color: var(--color-blue);
    opacity: .7;
}

/* Testimonials Section */

.testimonials {
    padding: 84px 0 200px;
    position: relative;
    background-color: var(--color-black);
}

.testimonials:before {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 66.4vw;
    height: 89px;
}

.testimonials-content {
    width: 77.5vw;
    border-radius: 8px 0 0 8px;
    padding: 90px 0 52px 57px;
    background-color: var(--color-blue);
    margin-left: auto;
}

.testimonials-title {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 55px;
    color: #FBFBFB;
    margin: 0 20px 37px -140px;
}

.testimonials-slider {
    position: relative;
}

.testimonials-slider:after {
    content: ' ';
    display: block;
    position: absolute;
    right: -1px;
    bottom: 71px;
    width: 217px;
    height: 24px;
    background-image: url(../img/testimonials-slider-dots.png);
    background-size: 100% 100%;
}

.testimonials-slider .owl-stage-outer {
    margin-bottom: 60px;
}

.testimonials-slider .owl-stage {
    display: flex;
}

.testimonials-slider .owl-nav {
    display: flex;
    width: 94px;
    justify-content: space-between;
    margin: 0 22% 0 auto;
}

.testimonials-slider .owl-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.testimonials-slider .owl-nav button.disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}

.testimonials-slider .owl-nav button svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.testimonials-slider .owl-nav button:hover svg path {
    fill-opacity: 1;
}

.testimonials-slider-item {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 96px 40px 35px;
    position: relative;
    width: 367px;
    height: 100%;
    border-radius: 8px;
}

.testimonials-slider-item:before {
    content: url(../img/testimonial.svg);
    width: 46px;
    display: block;
    position: absolute;
    top: 45px;
    left: 19px;
}

.testimonials-slider-item-text {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: var(--color-grey);
    margin-bottom: 30px;
    opacity: .7;
    margin-top: auto;
}

.testimonials-slider-item-footer {
    margin-top: auto;
    display: flex;
    gap: 22px;
    align-items: center;
}

.testimonials-slider-item-image {
    width: 55px;
    height: 55px;
    background-image: url(../img/testimonial-user.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    overflow: hidden;
}

.testimonials-slider-item-image img,
.testimonials-slider-item-image svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-slider-item-name {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: var(--color-black);
}

.testimonials-slider-item-description {
    font-family: 'Cabin';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--color-grey);
    opacity: .7;
    margin-top: -5px;
}

/* Contact Section */

.contact {
    padding: 90px 20px 216px;
    padding-top: calc(60px + var(--header-fixed-height));
    overflow: hidden;
}

.contact-title {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 55px;
    padding-left: 120px;
    position: relative;
    color: #fff;
    margin-bottom: 55px;
}

.contact-title:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 72px;
    height: 2px;
    background-color: #fff;
}

.contact-content {
    padding-top: 60px;
    display: flex;
    gap: 125px;
}

.contact-forms {
    width: 100%;
    max-width: 588px;
    margin: 0 auto;
}

.contact-forms-tabs {
    display: flex;
    gap: 20px 108px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.contact-forms-tab {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    color: var(--color-blue);
    opacity: .6;
    text-decoration: underline;
    text-align: center;
    cursor: pointer;
}

.contact-forms-tab:hover {
    opacity: 1;
}

.contact-forms-tab.active {
    color: #fff;
    opacity: 1;
    cursor: default;
}

.contact-form {
    display: none;
    width: 100%;
}

.contact-form label {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.contact-form label p {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 37px;
    color: #fff;
    opacity: .5;
    width: 100%;
    margin-bottom: 10px;
    transition: font-size .3s ease;
}

.contact-form label:focus-within p {
    opacity: 1;
    font-size: 20px;
}

.contact-form label input,
.contact-form label textarea,
.contact-form label select {
    display: block;
    width: 100%;
    padding: 5px;
    border: 0;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    font-size: 22px;
    font-family: 'Mate SC';
    color: #fff;
    opacity: .9;
    outline: none;
    line-height: normal;
}

.contact-form label textarea {
    resize: vertical;
}

.contact-form label:focus-within input,
.contact-form label:focus-within textarea {
    border-bottom-color: var(--color-blue);
}

.contact-form label.file {
    cursor: pointer;
}

.contact-form label.file div {
    display: flex;
    align-items: center;
    position: relative;
}

.contact-form label.file div input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
}

.contact-form label.file div:after {
    content: attr(data-filename);
    font-size: 22px;
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    opacity: .9;
    width: 100%;
    margin-left: 10px;
    display: block;
}

.contact-form label:last-of-type {
    margin-bottom: 0;
}

.contact-form button {
    margin: 90px auto 0;
    text-align: center;
    padding: 25px;
    color: #000;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    border-radius: 4px;
    background-color: var(--color-blue);
    min-width: 250px;
    cursor: pointer;
    border: 0;
    outline: none;
    transition: opacity .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form button:hover {
    opacity: .7;
}

.contact-form button:after {
    content: ' ';
    display: none;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    border-width: 3px;
    border-style: solid;
    border-color: #000 #000 transparent #000;
    border-radius: 50%;
    animation: rotate 1.2s linear infinite;
    box-sizing: border-box;
}

.contact-form.submitted button:after {
    display: block;
}

.contact-form.active {
    display: block;
}

.contact-form-message {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    margin-top: 30px;
    display: none;
    width: 100%;
    text-align: center;
}

.contact-info {
    width: 100%;
    position: relative;
    padding: 0 0 98px 54px;
}

.contact-info:before {
    content: ' ';
    display: block;
    z-index: 1;
    position: absolute;
    left: 0;
    top: -60px;
    height: calc(100% + 60px);
    width: 100vw;
    background-color: #fff;
    z-index: -1;
}

.contact-info:after {
    content: ' ';
    display: block;
    position: absolute;
    bottom: -42px;
    left: 62%;
    z-index: 1;
    height: 37px;
    width: 100vw;
    background-image: url(../img/contact-dots.png);
    background-size: auto 37px;
    background-position: left;
}

.contact-info-title {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 32px;
    color: var(--color-blue);
    opacity: .6;
}

.contact-info-text {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 32px;
    color: #000;
    display: block;
}

a.contact-info-text:hover {
    color: var(--color-blue);
}

.contact-info-socials {
    display: flex;
    gap: 15px 40px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.contact-info-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.contact-info-socials a svg,
.contact-info-socials a img {
    display: block;
    max-height: 100%;
    max-width: 100%;
}

.contact-info-socials a:hover svg path {
    fill: var(--color-blue);
}

.contact-info-socials a:hover img {
    opacity: .7;
}

/* Team Section */

.team {
    padding: 90px 20px 190px;
    padding-top: calc(90px + var(--header-fixed-height));
    overflow: hidden;
}

.team .container {
    position: relative;
    padding-bottom: 86px;
    margin-bottom: 32px;
    min-height: 400px;
    padding-right: 176px;
}

.team .container:after {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    left: calc(100% - 156px);
    width: 100vw;
    height: 399px;
    background-image: url(../img/team-dots.png);
    background-position: left;
    background-size: auto 100%;
}

.team-title {
    margin-bottom: 30px;
}

.team-description {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 38px;
    color: #FFFBFB;
    max-width: 300px;
    margin-left: 120px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 72px;
}

.team-member {
    width: 33%;
    max-width: 379px;
}

.team-member-image-wrapper {
    width: 100%;
    height: calc(var(--team-member-image-width) * 402 / 379);
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    background-color: var(--color-grey);
    margin-bottom: 20px;
    position: relative;
}

.team-member-image-wrapper img,
.team-member-image-wrapper svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 38px;
    color: #fff;
    margin-bottom: 10px;
}

.team-member-position {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 38px;
    color: #FFFBFB;
    margin-bottom: 20px;
}

.team-member-skills {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 38px;
    color: var(--color-blue);
    width: 100%;
    margin-bottom: 20px;
}

.team-member-skills li {
    display: inline;
}

.team-member-skills li:not(:first-child):before {
    content: ' | ';
}

.team-member-description {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 38px;
    color: #fff;
    opacity: .7;
}

.team-members .team-member:first-child .team-member-image-wrapper:before {
    content: ' ';
    display: block;
    position: absolute;
    z-index: -1;
    width: 191px;
    height: 308px;
    background-color: var(--color-blue);
    left: -37px;
    top: -29px;
}

.team-members .team-member:nth-child(3) .team-member-image-wrapper:before {
    content: ' ';
    display: block;
    position: absolute;
    z-index: -1;
    width: 147px;
    height: 98px;
    background-color: #fff;
    right: -18px;
    bottom: -30px;
}

.team-members .team-member:nth-child(5) .team-member-image-wrapper:before {
    content: ' ';
    display: block;
    position: absolute;
    z-index: -1;
    width: 152px;
    height: 121px;
    background-color: var(--color-blue);
    left: -21px;
    bottom: -25px;
}

.team-members .team-member:nth-child(6) .team-member-image-wrapper:before {
    content: ' ';
    display: block;
    position: absolute;
    z-index: -1;
    width: 24px;
    height: 277px;
    background-image: url(../img/team-member-dots.png);
    background-size: 100%;
    left: calc(100% + 11px);
    top: 93px;
}

/* Services Section */

.services {
    padding: 90px 20px 200px;
    padding-top: calc(90px + var(--header-fixed-height));
}

.services-title {
    margin-bottom: 30px;
}

.services-description {
    margin-bottom: 60px;
}

.services-items {
    display: flex;
    margin: 0 120px;
    position: relative;
    flex-wrap: wrap;
}

.services-items:before {
    content: ' ';
    position: absolute;
    top: -55px;
    right: -55px;
    display: block;
    width: 147px;
    height: 197px;
    background-image: url(../img/services-dots-top.png);
    background-size: 100%;
}

.services-items:after {
    content: ' ';
    position: absolute;
    bottom: -34px;
    left: -38px;
    display: block;
    width: 129px;
    height: 109px;
    background-image: url(../img/services-dots-bottom.png);
    background-size: 100%;
}

.services-item {
    width: 50%;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 284px;
    background-color: #fff;
    flex-direction: column;
    gap: 22px;
}

.services-item.has-modal {
    transition: opacity .3s ease;
    cursor: pointer;
}

.services-item.has-modal:hover {
    opacity: .8;
}

.services-item svg,
.services-item img {
    display: block;
    max-width: 70%;
    max-height: 70%;
}

.services-item p {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 38px;
    color: #000;
    text-align: center;
}

.services-item .services-item-modal-content {
    display: none;
}

.services-items .services-item:first-child,
.services-items .services-item:nth-child(2) {
    border-top: none;
}

.services-items .services-item:nth-child(2n) {
    border-right: none;
}

.services-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 40px);
    max-width: 954px;
    background-color: #fff;
    border-radius: 4px;
    z-index: 101;
    display: none;
    max-height: calc(100vh - 40px);
    padding: 32px 40px 90px 50px;
    overflow: hidden auto;
}

.services-modal-close {
    padding: 6px;
    margin-left: auto;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.services-modal-close:hover {
    opacity: .8;
}

.services-modal-content {
    margin-top: -20px;
    width: 100%;
    max-width: 660px;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 38px;
    position: relative;
}

.services-modal-content:before {
    content: ' ';
    position: absolute;
    top: -30px;
    right: -45px;
    display: block;
    width: 217px;
    height: calc(100% + 100px);
    background-image: url(../img/services-modal-dots.png);
    background-size: 100% auto;
    z-index: -1;
}

.services-modal-content > *:not(:first-child) {
    margin-top: 20px;
}

.services-modal-content a {
    color: var(--color-blue);
}

.services-modal-content a:hover {
    text-decoration: underline;
}

.services-modal-content ul li,
.services-modal-content ol li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 10px;
}

.services-modal-content ul li:last-child,
.services-modal-content ol li:last-child {
    margin-bottom: 0;
}

.services-modal-content ul li:before,
.services-modal-content ol li:before {
    content: url(../img/puzzle.svg);
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    left: 0;
    top: 4px;
}

.services-modal-overlay {
    display: none;
    z-index: 100;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: .7;
    top: 0;
    left: 0;
}

.services-modal.active,
.services-modal.active + .services-modal-overlay {
    display: block;
}

/* Prices Section */

.prices {
    padding: 90px 0 200px;
    padding-top: calc(90px + var(--header-fixed-height));
    overflow: hidden;
}

.prices .container {
    padding: 0 20px;
    max-width: 1234px;
}

.prices-title {
    margin-bottom: 30px;
}

.prices-description {
    margin-bottom: 60px;
}

.prices-slider {
    background-color: #fff;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.prices-slider:before {
    content: ' ';
    display: block;
    width: 234px;
    height: 42px;
    position: absolute;
    top: -50px;
    right: 0;
    background-image: url(../img/prices-dots.png);
    background-size: 100%;
}

.prices-slider .owl-stage {
    display: flex;
}

.prices-slider .owl-nav {
    position: absolute;
    bottom: 33px;
    left: 117px;
    display: flex;
    gap: 37px;
}

.prices-slider .owl-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    cursor: pointer;
    transition: opacity .2s ease;
}

.prices-slider .owl-nav button:hover {
    opacity: .7;
}

.prices-slider .owl-nav button.disabled {
    opacity: .5;
    cursor: default;
}

.prices-slider .owl-nav button svg {
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.prices-slider-item {
    width: 100%;
    display: flex;
    height: 100%;
    background-color: #fff;
}

.prices-slider-item-content {
    width: 54%;
    padding: 50px 33px 134px;
}

.prices-slider-item-title {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 150.6%;
    text-align: center;
    color: #000000;
}

.prices-slider-item-description {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 150.6%;
    color: #000;
    opacity: 0.8;
    margin: 50px auto 0;
    width: 100%;
    max-width: 584px;
}

.prices-slider-item-price {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 150.6%;
    color: #000000;
    margin: 60px auto 0;
    width: 100%;
    max-width: 584px;
}

.prices-slider-item-price span {
    color: var(--color-blue);
}

.prices-slider-item-button {
    padding: 25px;
    background-color: var(--color-blue);
    display: block;
    min-width: 250px;
    max-width: 100%;
    margin: 90px auto 0;
    border-radius: 4px;
    transition: opacity .2s ease;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    width: max-content;
}

.prices-slider-item-button:hover {
    opacity: .7;
}

.prices-slider-item-arrows {
    display: flex;
    gap: 36px;
    width: 100%;
    max-width: 584px;
    margin: 60px auto 0;
}

.prices-slider-item-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: opacity .2s linear;
}

.prices-slider-item-arrow:hover {
    opacity: .6;
}

.prices-slider-item-image-wrapper {
    width: 46%;
    border: 3px solid #fff;
}

.prices-slider-item-image-wrapper img,
.prices-slider-item-image-wrapper svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Projects Section */

.projects {
    padding: 90px 20px 236px;
    padding-top: calc(90px + var(--header-fixed-height));
    overflow: hidden;
}

.projects-title {
    margin-bottom: 30px;
}

.projects-description {
    margin-bottom: 90px;
}

.projects-categories {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 82px;
    gap: 25px 40px;
}

.projects-categories a {
    display: block;
    text-align: center;
    min-width: 227px;
    padding: 8px 15px;
    border: 3px solid var(--color-blue);
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 37px;
    color: #FFFFFF;
}

.projects-categories li.active a {
    background-color: var(--color-blue);
    color: var(--color-black);
    pointer-events: none;
    cursor: default;
}

.projects-categories li:not(.active) {
    transition: opacity .2s ease;
}

.projects-categories li:not(.active):hover {
    opacity: .7;
}

.projects-wrapper {
    position: relative;
    max-width: 1074px;
    margin: 0 auto;
}

.projects-wrapper:before {
    content: ' ';
    display: block;
    position: absolute;
    background-image: url(../img/projects-dots.png);
    background-position: top right;
    background-size: auto;
    width: 100vw;
    height: 70%;
    top: 74px;
    right: calc(100% - 32px);
}

.projects-wrapper .project {
    margin-bottom: 106px;
}

.projects-wrapper .project:last-child {
    margin-bottom: 0;
}

.project {
    display: flex;
    gap: 109px;
}

.project-content {
    width: 100%;
    margin-top: auto;
    order: 1;
}

.project-title {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 68px;
    color: #FFFFFF;
    margin-bottom: 28px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 30px;
}

.project-tags li {
    border: 1px solid #fff;
    padding: 6px 10px;
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
    text-align: center;
}

.project-excerpt {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    color: #FFFFFF;
    margin-bottom: 72px;
}

.project-link {
    position: relative;
    margin: 0 0 2px 8px;
    width: max-content;
    display: block;
}

.project-link:after {
    position: absolute;
    z-index: 0;
    display: block;
    content: ' ';
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-blue);
    bottom: 0;
    right: 0;
    box-sizing: border-box;
}

.project-link span {
    padding: 16px;
    min-width: 202px;
    background-color: var(--color-blue);
    display: block;
    text-align: center;
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #000;
    width: max-content;
    transition: transform .15s linear;
}

.project-link:hover span {
    transform: translate(-8px, -8px);
}

.project-image-content {
    width: 523px;
    min-width: 523px;
    height: 446px;
    position: relative;
    display: block;
    order: 2;
}

.projects-wrapper .project:first-child .project-image-content:before {
    content: ' ';
    display: block;
    width: 191px;
    height: 323px;
    background-color: var(--color-blue);
    position: absolute;
    top: -22px;
    right: -19px;
    z-index: -1;
}

.projects-wrapper .project:nth-child(2) .project-image-content:before {
    content: ' ';
    display: block;
    width: 147px;
    height: 98px;
    background-color: #fff;
    position: absolute;
    bottom: -14px;
    left: -19px;
    z-index: -1;
}

.projects-wrapper .project:nth-child(4) .project-image-content:before {
    content: ' ';
    display: block;
    width: 147px;
    height: 98px;
    background-color: #fff;
    position: absolute;
    top: -15px;
    left: -17px;
    z-index: -1;
}

.project-image-content:after {
    content: url(../img/project-arrow.svg);
    position: absolute;
    display: block;
    right: 4px;
    bottom: -35px;
    transition: transform .2s linear;
}

.project-image-content:hover:after {
    transform: translate(-12px);
}

.project-image-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.project-image-wrapper img,
.project-image-wrapper svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s linear;
}

.project-image-content:hover img,
.project-image-content:hover svg {
    transform: scale(1.02);
}

/* Single Section */

section.single {
    padding: 90px 20px;
    padding-top: calc(90px + var(--header-fixed-height));
}

.single-title {
    font-family: 'Mate SC';
    font-style: normal;
    font-weight: 400;
    font-size: 55px;
    padding-left: 120px;
    position: relative;
    color: #fff;
    margin-bottom: 55px;
}

.single-title:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 72px;
    height: 2px;
    background-color: #fff;
}

.single-content {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 38px;
    color: #FFFBFB;
}

.single-content * {
    margin-bottom: 15px;
}

.single-content a {
    color: var(--color-blue);
}

.single-content a:hover {
    text-decoration: underline;
}

.single-content ul,
.single-content ol {
    list-style-type: initial;
}

/* Animation */

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

/* Responsive */

@media screen and (max-width: 1240px){

    /* About Section */

    .about:before {
        width: 62vw;
    }

    .about .container {
        gap: 40px;
    }

    .about .container:after {
        width: 24%;
    }

    .about-image-wrapper {
        padding-right: 0;
        width: 40%;
        min-width: 40%;
    }

    .about-image-wrapper:after {
        background-image: url(../img/statistics-dots.png);
        background-size: auto;
        background-position: top right;
        height: 100%;
        background-repeat: repeat-x;
        width: 80%;
    }

    .about-image-wrapper img,
    .about-image-wrapper svg {
        width: auto;
        max-width: 100%;
        outline-width: 4px;
    }

    /* Statistics Section */

    .statistics:before {
        top: 100px;
        height: 160px;
        width: 120px;
        background-image: url(../img/statistics-dots.png);
        background-size: auto;
    }

    .statistics .container {
        min-height: 0;
    }

    .statistics-items {
        margin: 0 auto;
    }

    /* Testimonials Section */

    .testimonials-content {
        width: 100%;
        border-radius: 0;
        margin: 0;
        padding-left: 20px;
    }

    .testimonials-title {
        margin: 0 20px 37px 0;
    }

    /* Contact Section */

    .contact-content {
        gap: 60px;
    }

    .contact-forms-tabs {
        gap: 20px 50px;
    }

    /* Prices Section */

    .prices-slider .owl-nav {
        left: 33px;
    }

    /* Projects Section */

    .projects-wrapper:before {
        display: none;
    }

}

@media screen and (max-width: 1024px){
    /* Header */

    .header {
        background-color: var(--color-black);
    }

    .header.light {
        border-bottom-color: #FFFBFB;
    }

    .header .container {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        border-right: 0;
        height: 100vh;
        overflow: hidden auto;
        background-color: var(--color-black);
        transition: max-width .2s linear;
        width: 100%;
        max-width: 0;
    }

    .header.opened .container {
        border-left: 1px solid #FFFBFB;
        max-width: 340px;
    }

    .header-logo-wrapper {
        display: none;
    }

    .header-menu {
        display: block;
        width: 300px;
        margin: 0 20px;
    }

    .header-menu .menu-item a {
        padding: 5px 0;
        color: #FCFCFC;
        display: block;
    }

    .header.light .header-menu .menu-item:not(:hover):not(.current-menu-item) a {
        color: #FCFCFC;
    }

    .header-burger-close {
        display: block;
    }

    .header-mobile-content {
        display: flex;
    }

    /* Top Section */

    .top {
        min-height: 95vh;
    }

    /* About Section */

    .about {
        padding: 54px 20px;
    }

    .about:before {
        display: none;
    }

    .about .container {
        display: block;
    }

    .about .container:after {
        bottom: -54px;
    }

    .about-content {
        padding-top: 0;
    }

    .about-video-button span {
        width: 100px;
        height: 100px;
    }

    .about-image-wrapper {
        display: none;
    }

    /* Statistics Section */

    .statistics {
        padding-bottom: 100px;
    }

    .statistics-items {
        width: 100%;
        display: block;
    }

    .statistics-item {
        width: max-content;
        margin-bottom: 20px;
    }

    .statistics-items .statistics-item:nth-child(odd){
        margin-left: auto;
    }

    .statistics-items .statistics-item:nth-child(even){
        margin-right: auto;
    }

    /* Testimonials Section */

    .testimonials {
        padding: 0 0 54px;
    }

    .testimonials:before {
        display: none;
    }

    .testimonials-content {
        padding-left: 0;
    }

    .testimonials-title {
        margin-left: 20px;
        text-align: center;
    }

    .testimonials-slider-item {
        width: 100%;
    }

    .testimonials-slider .owl-nav {
        margin-right: 20px;
    }

    /* Footer */

    .footer-socials a {
        width: 30px;
        height: 30px;
    }

    /* Contact Section */

    .contact {
        padding: 54px 20px;
        padding-top: calc(54px + var(--header-fixed-height));
    }

    .contact-title {
        font-size: 40px;
        padding-left: 100px;
        margin-bottom: 30px;
    }

    .contact-title:before {
        width: 52px;
    }

    .contact-content {
        padding-top: 0;
        display: block;
    }

    .contact-forms {
        max-width: 100%;
        margin: 0;
    }

    .contact-forms-tab {
        font-size: 34px;
    }

    .contact-info {
        padding: 0;
        margin-top: 60px;
    }

    .contact-info:before {
        left: -20px;
        top: -30px;
        height: calc(100% + 60px);
    }

    .contact-info:after {
        display: none;
    }

    .contact-info-socials a {
        width: 30px;
        height: 30px;
    }

    /* Team Section */

    .team {
        padding: 54px 20px;
        padding-top: calc(54px + var(--header-fixed-height));
    }

    .team-description {
        font-size: 24px;
        line-height: 1.5em;
        margin-left: 100px;
    }

    .team-member {
        width: 50%;
    }

    /* Services Section */

    .services {
        padding: 54px 20px;
        padding-top: calc(54px + var(--header-fixed-height));
    }

    .services-items {
        margin: 0 100px;
    }

    .services-items:before,
    .services-items:after {
        display: none;
    }

    .services-item p {
        font-size: 24px;
        line-height: 1.5em;
    }

    .services-modal-close {
        margin-bottom: 20px;
    }

    .services-modal-content {
        margin-top: 0;
        font-size: 24px;
        line-height: 1.5em;
    }

    /* Prices Section */

    .prices {
        padding: 54px 20px;
        padding-top: calc(54px + var(--header-fixed-height));
    }

    .prices .container {
        padding: 0;
    }

    .prices-slider.owl-carousel {
        display: flex;
        flex-direction: column;
        background-color: transparent;
    }

    .prices-slider:before {
        display: none;
    }

    .prices-slider .owl-stage-outer {
        order: 2;
    }

    .prices-slider .owl-nav {
        order: 1;
        position: static;
        margin-bottom: 30px;
    }

    .prices-slider .owl-stage {
        display: block;
    }

    .prices-slider-item {
        flex-direction: column;
    }

    .prices-slider-item-content {
        width: 100%;
        order: 2;
        padding: 30px;
    }

    .prices-slider-item-image-wrapper {
        width: 100%;
        order: 1;
    }

    .prices-slider-item-image-wrapper img,
    .prices-slider-item-image-wrapper svg,
    .prices-slider.owl-carousel .owl-item img {
        width: auto;
        margin: auto;
        max-width: 100%;
        max-height: 400px;
    }

    /* Projects Section */

    .projects {
        padding: 54px 20px;
        padding-top: calc(54px + var(--header-fixed-height));
        overflow: hidden;
    }

    .project {
        display: flex;
        gap: 109px;
    }

    .project-title {
        font-size: 40px;
    }

    .project-image-content {
        width: 40%;
        min-width: 40%;
        height: 100%;
    }

    .projects-wrapper .project:first-child .project-image-content:before {
        display: none;
    }

    .projects-wrapper .project:nth-child(2) .project-image-content:before {
        display: none;
    }

    .projects-wrapper .project:nth-child(4) .project-image-content:before {
        display: none;
    }

    .project-image-wrapper {
        overflow: hidden;
        width: 100%;
        height: 100%;
    }

    .project-image-wrapper img,
    .project-image-wrapper svg {
        height: auto;
        object-fit: contain;
    }

    .project-link {
        margin: 0;
    }

    .project-link span {
        transition: unset;
    }

    .project-link:after {
        display: none;
    }

    .project-link:hover span {
        transform: unset;
    }

    /* Single Section */

    section.single {
        padding: 54px 20px;
        padding-top: calc(54px + var(--header-fixed-height));
    }

    .single-title {
        font-size: 40px;
        padding-left: 100px;
        margin-bottom: 30px;
    }

    .single-title:before {
        width: 52px;
    }

    .single-content {
        font-size: 24px;
        line-height: 1.5em;
    }

}

@media screen and (max-width: 768px) {
    /* Footer */

    .footer .container {
        padding-top: 30px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        width: max-content;
        margin: 0 auto;
    }

    .footer-top-address {
        order: 2;
    }

    .footer-top-logo-wrapper {
        order: 1;
    }

    .footer-top-contact {
        order: 3;
    }

    .footer-copyright {
        text-align: center;
    }

    /* Team Section */

    .team .container {
        padding-bottom: 0;
        min-height: 0;
        padding-right: 0;
        margin-bottom: 50px;
    }

    .team .container:after {
        display: none;
    }

    .team-members {
        gap: 20px 30px;
    }

    .team-member {
        width: calc(50% - 15px);
    }

    .team-members .team-member:first-child .team-member-image-wrapper:before,
    .team-members .team-member:nth-child(3) .team-member-image-wrapper:before,
    .team-members .team-member:nth-child(5) .team-member-image-wrapper:before,
    .team-members .team-member:nth-child(6) .team-member-image-wrapper:before {
        display: none;
    }

    /* Services Section */

    .services-item {
        width: 100%;
        border-right: none;
    }

    .services-items .services-item:nth-child(2) {
        border-top: 1px solid #000;
    }

    .services-modal {
        padding: 20px;
    }

    .services-modal-content:before {
        display: none;
    }

    /* Projects Section */

    .project {
        display: block;
    }

    .project-excerpt {
        margin-bottom: 30px;
    }

    .project-image-content {
        width: 50%;
        min-width: 50%;
    }

    .project-image-content {
        width: 40%;
        min-width: 40%;
        float: right;
        clear: right;
        margin: 0 0 20px 20px;
    }

    .project-image-content:after {
        display: none;
    }

}

@media screen and (max-width: 560px) {
    /* Header */

    .header {
        padding: 10px;
    }

    .header.opened .container {
        max-width: 100%;
        border-left: none;
    }

    .header-burger-close {
        margin-right: 10px;
    }

    .header-menu {
        width: 100vw;
        margin: 0;
        padding: 0 10px;
    }

    .header-menu .menu-item a {
        font-size: 16px;
    }

    /* Footer */

    .footer {
        padding: 0 10px;
    }

    .footer-container {
        padding: 30px 0;
    }

    .footer-top-logo-wrapper a {
        font-size: 20px;
        text-align: center;
    }

    .footer-top-logo-wrapper img,
    .footer-top-logo-wrapper svg {
        height: 120px;
    }

    .footer-top-address svg,
    .footer-top-contact svg {
        height: 20px;
        width: auto;
    }

    .footer-socials {
        margin-top: 30px;
    }

    .footer-socials a {
        width: 20px;
        height: 20px;
    }

    /* Top Section */

    .top {
        padding: 40px 10px;
        padding-top: calc(40px + var(--header-fixed-height));
        min-height: 80vh;
    }

    .top-title {
        font-size: 24px;
        line-height: 1.5em;
    }

    .top-button {
        padding: 14px;
        min-width: 160px;
        font-size: 16px;
    }

    /* About Section */

    .about {
        padding: 30px 10px;
    }

    .about .container:after {
        bottom: -30px;
        width: 40%;
    }

    .about-overtitle {
        font-size: 20px;
    }

    .about-title {
        font-size: 24px;
        line-height: 1.5em;
    }

    .about-description {
        font-size: 18px;
        line-height: 2em;
    }

    .about-video-button {
        font-size: 18px;
    }

    .about-video-button span {
        width: 60px;
        height: 60px;
        border-width: 4px;
    }

    /* Statistics Section */

    .statistics {
        padding: 30px 10px;
    }

    .statistics:before {
        display: none;
    }

    .statistics-item {
        width: 100%;
        margin-bottom: 35px;
    }

    .statistics-items .statistics-item:last-child {
        margin-bottom: 0;
    }

    .statistics-item-overtitle {
        font-size: 24px;
        line-height: 1.5em;
    }

    .statistics-item-title {
        font-size: 24px;
        line-height: 1.5em;
    }

    .statistics-item-subtitle {
        font-size: 24px;
        line-height: 1.5em;
    }

    /* Testimonials Section */

    .testimonials {
        padding-bottom: 30px;
    }

    .testimonials-content {
        padding: 30px 0;
    }

    .testimonials-title {
        margin: 0 10px 30px;
        font-size: 24px;
        line-height: 1.5em;
    }

    .testimonials-slider:after {
        display: none;
    }

    .testimonials-slider .owl-stage-outer {
        margin-bottom: 30px;
    }

    .testimonials-slider .owl-nav {
        margin-right: 10px;
        width: 80px;
    }

    .testimonials-slider .owl-nav button {
        width: 24px;
        height: 24px;
    }

    /* Contact Section */

    .contact {
        padding: 40px 10px;
        padding-top: calc(40px + var(--header-fixed-height));
    }

    .contact-title {
        font-size: 24px;
        padding-left: 40px;
    }

    .contact-title:before {
        width: 30px;
    }

    .contact-forms-tabs {
        gap: 10px 25px;
    }

    .contact-forms-tab {
        font-size: 20px;
    }

    .contact-form label {
        margin-bottom: 20px;
    }

    .contact-form label p {
        font-size: 20px;
        line-height: normal;
    }

    .contact-form label:focus-within p {
        font-size: 16px;
    }

    .contact-form label input {
        font-size: 20px;
    }

    .contact-form label:focus-within input {
        border-bottom-color: var(--color-blue);
    }

    .contact-form label.file div:after {
        font-size: 20px;
    }

    .contact-form button {
        margin-top: 30px;
        min-width: 160px;
        padding: 14px;
        line-height: 23px;
    }

    .contact-info:before {
        left: -10px;
    }

    .contact-info-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-info-text {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-info-socials {
        gap: 15px 25px;
        margin-bottom: 20px;
    }

    .contact-info-socials a {
        width: 20px;
        height: 20px;
    }

    /* Team Section */

    .team {
        padding: 40px 10px;
        padding-top: calc(40px + var(--header-fixed-height));
    }

    .team-title {
        margin-bottom: 20px;
    }

    .team-description {
        font-size: 18px;
        margin-left: 40px;
    }

    .team-members {
        gap: 20px;
    }

    .team-member {
        width: 100%;
    }

    .team-member-name {
        font-size: 18px;
        line-height: 1.5em;
    }

    .team-member-position {
        font-size: 18px;
        line-height: 1.5em;
        margin-bottom: 10px;
    }

    .team-member-skills {
        font-size: 18px;
        line-height: 1.5em;
        margin-bottom: 10px;
    }

    .team-member-description {
        font-size: 18px;
        line-height: 1.5em;
    }

    /* Services Section */

    .services {
        padding: 40px 10px;
        padding-top: calc(40px + var(--header-fixed-height));
    }

    .services-title {
        margin-bottom: 20px;
    }

    .services-description {
        margin-bottom: 50px;
    }

    .services-items {
        margin: 0;
    }

    .services-item {
        padding: 15px;
        min-height: 200px;
    }

    .services-item p {
        font-size: 18px;
    }

    .services-modal {
        padding: 10px 10px 20px;
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        min-height: 50vh;
    }

    .services-modal-close {
        margin-bottom: 10px;
    }

    .services-modal-content {
        font-size: 18px;
    }

    /* Prices Section */

    .prices {
        padding: 40px 10px;
        padding-top: calc(40px + var(--header-fixed-height));
    }

    .prices-title {
        margin-bottom: 20px;
    }

    .prices-description {
        margin-bottom: 50px;
    }

    .prices-slider .owl-nav {
        order: 1;
        position: static;
        margin-bottom: 20px;
    }

    .prices-slider .owl-nav button {
        width: 24px;
        height: 24px;
    }

    .prices-slider-item-content {
        padding: 20px 10px;
    }

    .prices-slider-item-title {
        font-size: 24px;
    }

    .prices-slider-item-description {
        font-size: 18px;
        margin-top: 14px;
    }

    .prices-slider-item-price {
        font-size: 18px;
        margin-top: 14px;
    }

    .prices-slider-item-button { 
        margin-top: 30px;
        min-width: 160px;
        padding: 14px;
        line-height: 23px;
    }

    .prices-slider-item-image-wrapper {
        display: none;
    }

    /* Projects Section */

    .projects {
        padding: 40px 10px;
        padding-top: calc(40px + var(--header-fixed-height));
    }

    .projects-title {
        margin-bottom: 20px;
    }

    .projects-description {
        margin-bottom: 50px;
    }

    .projects-categories {
        margin-bottom: 50px;
        gap: 10px;
    }

    .projects-categories a {
        min-width: 1px;
        padding: 6px 10px;
        border: 2px solid var(--color-blue);
        font-size: 21px;
        line-height: normal;
    }

    .projects-wrapper .project {
        margin-bottom: 80px;
        position: relative;
    }

    .projects-wrapper .project:not(:first-child):before {
        content: ' ';
        display: block;
        width: 100%;
        max-width: 146px;
        height: 20px;
        background-image: url(../img/contact-dots.png);
        background-size: contain;
        position: absolute;
        left: 0;
        top: -40px;
    }

    .project-title {
        font-size: 24px;
        line-height: 150.6%;
        margin-bottom: 20px;
    }

    .project-tags {
        margin-bottom: 20px;
    }

    .project-image-content {
        display: none;
    }

    .project-link span {
        min-width: 160px;
        padding: 14px;
        line-height: 23px;
        font-size: 16px;
        border-radius: 4px;
    }

    /* Single Section */

    section.single {
        padding: 40px 10px;
        padding-top: calc(40px + var(--header-fixed-height));
    }

    .single-title {
        font-size: 24px;
        padding-left: 40px;
    }

    .single-title:before {
        width: 40px;
    }

    .single-content {
        font-size: 18px;
    }

}
