@charset "UTF-8";

/* Указываем box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
    padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
    list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a {
    text-decoration-skip-ink: auto;
    text-decoration: none;
}

/* Упрощаем работу с изображениями */
img {
    max-width: 100%;
    display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article>*+* {
    margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
    font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    box-sizing: border-box;
}

p {
    font-family: 'Open sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
}

h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #404149;
    text-align: center;
}

.head__hamburger-menu-wrapper {
    display: flex;
    justify-content: center;
}

.head__hamburger-menu {
    position: absolute;
    top: 90px;
    z-index: 10;
    background: #F7F7F7;
    padding: 0 15px 12px 15px !important;
    width: 80%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border: 3px solid #F7654A;
}

.head__hamburger-menu-item {
    border-bottom: 1px solid #F7654A;
    width: 100%;
    transition: ease 0.4s all;
}

.head__hamburger-menu-item:hover {
    background: #E4E3E3;
}

.head__hamburger-menu-link {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    color: #F7654A;
    margin-top: 12px;
}

.head__img {
    position: absolute;
    min-height: 740px;
    width: 100%;
    z-index: 0;
}

.head__container {
    padding: 20px 0 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.head__logo-and-hamburger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 112px;
}

.head__hamburger {
    display: flex;
    padding: 15px 15px;
    background: #F7654A;
    transition: all ease 0.4s;
}

.head__hamburger:hover {
    background: #D0543E;
}

.head__title-and-subtitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #FFF;
}

.head__title {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 500;
    display: flex;
    padding-bottom: 35px;
    text-align: center;
    max-width: 740px;
}

.head__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 400;
    display: flex;
}

.head .skills {
    background: #F7F7F7;
    padding: 57px 0;
    position: absolute;
    bottom: -150px;
    justify-content: center;
    opacity: 0;
}

.head .skills__wrapper {
    display: flex;
    justify-content: space-between;
}

.head .skills .skill {
    text-align: center;
    transition: .4s;
}

.head .skills .skill__num {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 500;
    color: #F7654A;
}

.head .skills .skill:hover>.head .skills .skill__num {
    background: #000;
    border-radius: 7px;
    box-shadow: 3px 3px 10px #000;
}

.head .skills .skill__year {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 500;
    padding: 25px 0 10px;
}

.head .skills .skill__managment {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #999999;
}

.head__btn-scroll-top {
    display: none;
    max-width: 51px;
    padding: 15px;
    border: 2px solid #F7654A;
    background: rgba(247, 247, 247, 0.5);
    transition: all ease 0.4s;
    position: fixed;
    top: 90%;
    left: 90%;
    z-index: 10;
}

.head__btn-scroll-top:hover {
    background: #C5C5C5;
}

.head__btn-scroll-top-img {
    display: flex;
    width: 21px;
    height: auto;
}

@media screen and (max-width: 992px) {
    .head .skills {
        bottom: -400px;
    }

    .head .skill__num {
        padding-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .head .skills {
        bottom: -400px;
    }
}

@media screen and (max-width: 576px) {
    .head__title {
        font-size: 45px;
    }

    .head .skills {
        bottom: -960px;
    }

    .head .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 300px) {
    .head__title {
        font-size: 35px;
    }
}

.projects {
    padding: 250px 0 140px;
}

.projects__title-wrapper {
    display: flex;
    justify-content: center;
}

.projects__card {
    transition: all ease 0.4s;
}

.projects__card:hover {
    transform: scale(1.005) !important;
}

.projects__title {
    padding-bottom: 60px;
    text-align: center;
}

.projects .Swiper1 {
    opacity: 0;
}

.projects__img {
    width: 100%;
    height: auto;
}

.projects__line {
    width: 55px;
    margin: 45px 0 15px;
    border: 3px solid #F7654A;
}

.projects__card-title {
    display: flex;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 20px;
}

@media screen and (max-width: 992px) {
    .projects__title-wrapper {
        padding-top: 290px;
    }

    .projects__card-wrapper {
        justify-content: center;
    }

    .projects__card {
        padding-top: 35px;
    }
}

@media screen and (max-width: 576px) {
    .projects__title-wrapper {
        padding-top: 790px;
    }
}

.clever-projects {
    padding: 30px 0 45px;
    background: #F7654A;
}

.clever-projects__wrapper {
    justify-content: space-between;
    align-items: center;
}

.clever-projects__left {
    color: #FFF;
    opacity: 0;
}

.clever-projects__subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
}

.clever-projects__right {
    display: flex;
    justify-content: flex-end;
}

.clever-projects .btn-mail {
    display: flex;
    padding: 14px 30px;
    background: #FFF;
    align-items: center;
    transition: all ease 0.4s;
    opacity: 0;
}

.clever-projects .btn-mail:hover {
    background: #D0D0D0;
}

.clever-projects .btn-mail__img {
    padding-right: 15px;
}

.clever-projects .btn-mail__text {
    display: flex;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .clever-projects__wrapper {
        justify-content: flex-start;
    }

    .clever-projects__right {
        justify-content: flex-start;
        padding-top: 40px;
    }
}

.what-do {
    padding: 150px 0;
}

.what-do__title-wrapper {
    display: flex;
    justify-content: center;
}

.what-do__title {
    padding-bottom: 66px;
}

.what-do__cards {
    background: #FFF;
    --bs-gutter-y: 1.5rem;
}

.what-do__card {
    padding: 59px 0;
    background: #F7F7F7;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all ease 0.4s;
    opacity: 0;
}

.what-do__card:hover {
    transform: scale(1.07);
    box-shadow: -5px -5px 10px #000;
}

.what-do__img {
    padding-bottom: 30px;
    width: 60px;
    height: auto;
}

.what-do__text {
    font-family: 'Oswald', sans-serif;
    font-size: 21px;
    font-weight: 500;
    max-width: 174px;
    text-align: center;
}

.build-photo {
    position: relative;
    padding-bottom: 150px;
}

.build-photo * {
    overflow: visible;
}

.build-photo__container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.build-photo .elem {
    position: relative;
}

.build-photo .elem__btn {
    justify-content: center;
    align-items: center;
    position: absolute;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    background: #F7654A;
    z-index: 14;
    color: #FFF;
    border: 1px solid #FFF;
    transition: all ease 0.4s;
    left: 15px;
    top: 15px;
    width: 51px;
    height: 51px;
    display: none;
}

.build-photo .elem__btn:hover {
    border: 2px solid #F7654A;
    background: rgba(247, 247, 247, 0.5);
    color: #F7654A;
}

.build-photo__photo {
    width: 25%;
    height: auto;
    opacity: 0;
    display: flex;
    justify-content: center;
}

.build-photo__photo-img {
    height: 100%;
    width: auto;
}

.build-photo .modal {
    display: flex;
    z-index: 11;
    height: 100%;
    justify-content: center;
    width: 100%;
    background: rgba(92, 92, 92, 0.95);
    position: fixed;
}

@media screen and (max-width: 992px) {
    .build-photo__photo {
        width: 50%;
    }

    .build-photo__photo-img:active {
        height: 50vh;
        width: auto;
    }
}

.answers {
    padding-bottom: 150px;
}

.answers__title {
    padding-top: 150px;
}

.answers__work-you {
    padding-top: 40px;
    color: #F7654A;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    opacity: 0;
}

.answers__work-you-img {
    padding-right: 15px;
    transition: all ease 0.4s;
}

.answers__work-you-img:hover {
    transform: scale(1.4);
}

.answers__text {
    padding-top: 30px;
    text-align: justify;
}

.partners {
    padding: 100px 0 104px;
    background: #404149;
}

.partners__title {
    padding-bottom: 60px;
    color: #FFF;
}

.partners__logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: 0;
}

@media screen and (max-width: 992px) {
    .partners__logo {
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    .partners__logos {
        flex-direction: column;
        align-items: center;
    }
}

.opinions {
    padding: 150px 0;
}

.opinions__title {
    padding-bottom: 60px;
}

.opinions__card {
    transition: all ease 0.4s;
    opacity: 0;
}

.opinions__card:hover {
    transform: scale(1.07);
}

.opinions__card-main {
    padding: 38px 30px;
    background: #F7F7F7;
}

.opinions__text {
    text-align: justify;
    padding-top: 17px;
    font-size: 14px;
}

.opinions__card-footer {
    font-family: 'Oswald', sans-serif;
    font-size: 21px;
    font-weight: 500;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.opinions__card-footer-name {
    display: flex;
    color: #F7654A;
}

@media screen and (max-width: 992px) {
    .opinions__card-wrapper {
        justify-content: center;
    }

    .opinions__card {
        margin-top: 55px;
    }
}

.contacts {
    padding: 100px 0 150px;
    background: #E5E5E5;
}

.contacts__title {
    padding-bottom: 60px;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    transition: all ease 0.4s;
    opacity: 0;
}

.contacts__info:hover {
    transform: scale(1.07);
}

.contacts__icon-wrapper {
    height: 40px;
    width: 71px;
}

.contacts__icon {
    width: 100%;
    height: auto;
}

.contacts__info-name {
    display: flex;
    padding: 70px 0 25px;
    color: #999999;
}

.contacts__info-value {
    display: flex;
}

.contacts__info-value_or-col {
    color: #F7654A;
}

@media screen and (max-width: 576px) {
    .contacts__info {
        padding-top: 80px;
    }
}

.footer {
    background: #404149;
    padding: 30px 0;
    opacity: 0;
}

.footer__contain {
    display: flex;
    justify-content: space-between;
    color: #FFF;
}

.footer__right {
    text-decoration: underline;
}

.footer__right:hover {
    text-decoration: none;
    color: #F7654A;
}

@media screen and (max-width: 576px) {
    .footer__contain {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__link {
        display: flex;
    }

    .footer__right {
        padding-top: 30px;
    }
}

.cl-show {
    display: flex;
}

.cl-none-show {
    display: none;
}

/*# sourceMappingURL=style.css.map */