html {
    font-size: 15px;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    color: #2b2a2c;
}
body.no-scroll {
    overflow: hidden;
}
p {
    margin: 0 0 1rem;
}
@media (max-width: 1199px) {
    p {
        margin: 0 0 2rem;
    }
}
@media (max-width: 767px) {
    p {
        margin: 0;
    }
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
.arrow__up {
    position: fixed;
    bottom: 10%;
    left: 50px;
}
@media (max-width: 991px) {
    .arrow__up {
        display: none;
    }
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
.slick-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    height: 100%;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    height: 100%;
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
li {
    margin: 0 0.5rem;
}
li.slick-active button {
    background-color: #fff;
}
.slick-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 1.4rem;
    left: 0;
    z-index: 2;
}
.slick-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    background-color: transparent;
    border: 2px solid #fff;
    background: none;
    border-radius: 50%;
    font-size: 0;
    color: transparent;
    cursor: pointer;
}
.slick-dots button:focus {
    outline: 0;
}
.container {
    width: 100%;
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}
.header {
    padding: 1.2rem 0;
    position: relative;
    background-color: #fafafa;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.user {
    display: flex;
}
.user__avatar {
    width: 57px;
    height: 57px;
}
.user__avatar img {
    border-radius: 50%;
}
.user__content {
    padding-left: 9px;
}
.user__name {
    margin-bottom: 3px;
    font-size: 1.06rem;
    color: #2b2a2c;
    line-height: 1.2;
    font-weight: 700;
}
.user__prof {
    font-size: 0.8rem;
    color: rgba(43, 42, 44, 0.7);
}
.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}
@media (max-width: 767px) {
    .nav {
        height: auto;
        padding: 2rem;
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 1000;
        background-color: #fafafa;
        box-shadow: -10px 10px 10px -9px rgba(0, 0, 0, 0.3);
        text-align: center;
        display: none;
    }
    .nav.show {
        display: flex;
    }
}
.nav__link {
    margin-left: 2rem;
    position: relative;
    font-size: 0.93rem;
    color: #2b2a2c;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
}
.nav__link:after {
    content: "";
    width: 0;
    height: 2px;
    background-color: #2b2a2c;
    position: absolute;
    bottom: -5px;
    left: 0;
    z-index: 1;
    transition: width 0.2s linear;
}
.nav__link:hover:not(.nav__link--btn):after {
    width: 100%;
}
.nav__link--btn {
    padding: 0.66rem 2rem;
    border: 2px solid #2b2a2c;
    border-radius: 20px;
    transition: background-color 0.2s linear, color 0.2s linear;
}
.nav__link--btn:hover {
    background-color: #2b2a2c;
    color: #fff;
}
@media (max-width: 767px) {
    .nav__link {
        width: 100%;
        margin-left: 0;
        padding: 0.5rem 1rem;
    }
}
.intro__inner {
    display: flex;
    padding-top: 100px;
    padding-bottom: 120px;
    position: relative;
    background: url("../images/bg2.png") right bottom no-repeat;
    border-bottom: 1px solid rgba(106, 105, 107, 0.3);
}
@media (max-width: 991px) {
    .intro__inner {
        padding-top: 3rem;
        padding-bottom: 5.3rem;
        background-size: 415px auto;
    }
}
@media (max-width: 565px) {
    .intro__inner {
        background-size: 400px auto;
    }
}
.intro__content {
    width: 50%;
}
@media (max-width: 565px) {
    .intro__content {
        width: 100%;
    }
}
.intro__suptitle {
    font-size: 2.13rem;
    color: #2b2a2c;
    font-weight: 200;
}
@media (max-width: 991px) {
    .intro__suptitle {
        font-size: 1.5rem;
    }
}
.intro__title {
    margin-bottom: 5px;
    font-size: 3rem;
    color: #2b2a2c;
    font-weight: 700;
}
@media (max-width: 991px) {
    .intro__title {
        font-size: 2rem;
    }
}
.intro__text {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: rgba(43, 42, 44, 0.7);
}
.intro__photo {
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 80px;
    top: 65px;
    z-index: 1;
    width: 270px;
    height: 440px;
}
@media (max-width: 991px) {
    .intro__photo {
        width: 230px;
        height: 375px;
        top: 0;
        right: 40px;
    }
}
@media (max-width: 565px) {
    .intro__photo {
        display: none;
    }
}
.social {
    display: flex;
    margin-bottom: 42px;
}
.social__link img {
    border-radius: 20%;
}
.social__link {
    margin-right: 10px;
    text-decoration: none;
    transition: transform 0.2s linear;
}
.social__link:hover {
    transform: translateY(-5px);
}
.btn {
    display: inline-block;
    vertical-align: top;
    padding: 1.05em 1.7em;
    min-width: 170px;
    border: 1px solid #6a696b;
    border-radius: 1.8em;
    background: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.1;
    font-size: 1.06rem;
    color: #2b2a2c;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.2s linear, color 0.2s linear, box-shadow 0.2s linear;
}
.btn:focus {
    outline: none;
}
.btn:hover {
    background-color: #2b2a2c;
    color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.24);
}
.btn + .btn {
    margin-left: 1rem;
}
.btn--sm {
    padding: 0.7em 1.3em;
    font-size: 0.94rem;
    font-weight: 700;
    border-width: 2px;
}
@media (max-width: 991px) {
    .btn {
        font-size: 1rem;
        padding: 1em 1.5em;
        min-width: 140px;
    }
}
.works {
    padding: 2.8rem 0;
}
@media (max-width: 321px) {
    .works {
        margin-bottom: -130px;
    }
}
.works__nav {
    display: flex;
    justify-content: center;
    margin-bottom: 1.4rem;
}
.works__nav-link {
    margin: 0 1.2rem;
    font-size: 1.4rem;
    color: rgba(43, 42, 44, 0.7);
    text-decoration: none;
    transition: color 0.2s linear;
}
.works__nav-link:hover {
    color: #2b2a2c;
}
@media (max-width: 565px) {
    .works__nav-link {
        font-size: 1rem;
        margin: 0 0.5rem;
    }
}
@media (max-width: 321px) {
    .works__nav-link {
        font-size: 1rem;
        margin: 0 0.3rem;
    }
}
.works__title {
    padding: 1rem 0 3rem 0;
    font-size: 3rem;
    color: #2b2a2c;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
}
@media (max-width: 565px) {
    .works__title {
        font-size: 2.5rem;
    }
}
.work {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.2s linear;
}
.work:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
    .work {
        max-width: 370px;
    }
}
@media (max-width: 565px) {
    .work {
        margin: 0 auto;
    }
}
.work__image {
    display: block;
    max-width: 100%;
    height: auto;
}
.work__content {
    padding: 1rem 0.8rem;
}
.work__cat {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: #2b2a2c;
    text-transform: uppercase;
}
.work__title {
    font-size: 1.06rem;
    color: #2b2a2c;
    text-transform: uppercase;
    font-weight: 700;
}
.portfolio {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem 2.8rem;
}
.portfolio__col {
    flex-basis: 33.33333%;
    padding: 1rem;
}
@media (max-width: 767px) {
    .portfolio__col {
        flex-basis: 50%;
    }
}
@media (max-width: 565px) {
    .portfolio__col {
        flex-basis: 100%;
    }
}
.about {
    margin: 8.4rem 0;
}
.about__inner {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.about__photo,
.about__content {
    width: 50%;
}
@media (max-width: 991px) {
    .about__photo,
    .about__content {
        width: 100%;
    }
}
.about__photo {
    position: relative;
}
.about__photo img {
    position: absolute;
    bottom: 0;
    z-index: 2;
}
.about__photo::before {
    content: "";
    width: 413px;
    height: 413px;
    background-color: #efefef;
    position: absolute;
    left: 2rem;
    bottom: 0;
    z-index: 1;
}
@media (max-width: 991px) {
    .about__photo {
        order: 2;
    }
    .about__photo::before {
        width: 100%;
        height: 400px;
        left: 0;
    }
    .about__photo img {
        position: relative;
    }
}
.about__content {
    padding-left: 2.2rem;
    margin-top: 2rem;
}
@media (max-width: 991px) {
    .about__content {
        order: 1;
        margin-bottom: 2rem;
        padding-left: 0;
    }
}
@media (max-width: 321px) {
    .about__content {
        margin-bottom: 3.5rem;
    }
}
.img-photo {
    width: 363px;
    position: absolute;
    bottom: 0;
    left: 93px;
    z-index: 1;
}
@media (max-width: 991px) {
    .img-photo {
        left: 30%;
    }
}
@media (max-width: 767px) {
    .img-photo {
        left: 25%;
    }
}
@media (max-width: 565px) {
    .img-photo {
        left: 0;
    }
}
.about__title {
    font-size: 3rem;
    color: #2b2a2c;
    font-weight: 700;
    text-transform: uppercase;
}
@media (max-width: 1199px) {
    .about__title {
        font-size: 2.5rem;
    }
}
.about__bigtitle {
    margin-bottom: 1.4rem;
    position: relative;
    left: -10px;
    font-size: 6.1rem;
    line-height: 1;
    color: rgba(43, 42, 44, 0.15);
    font-weight: 700;
    text-transform: uppercase;
}
@media (max-width: 1199px) {
    .about__bigtitle {
        font-size: 4rem;
        left: 0;
    }
}
.about__text {
    margin-bottom: 2.8rem;
    font-size: 1rem;
    line-height: 1.9;
    color: #6a696b;
    font-weight: 300;
}
@media (max-width: 767px) {
    .about__text {
        font-size: 1rem;
        line-height: 1.5;
    }
}
.arguments {
    margin-bottom: 10rem;
    margin-top: 14rem;
}
.arg__header {
    margin-bottom: 3.6rem;
    text-align: left;

}
.arg__title {
    margin-bottom: 0.6rem;
    font-size: 3rem;
    color: #2b2a2c;
    text-transform: uppercase;
    font-weight: 700;
}
@media (max-width: 991px) {
    .arg__title {
        font-size: 2.5rem;
    }
}
@media (max-width: 565px) {
    .arg__title {
        font-size: 2.2rem;
    }
}
@media (max-width: 321px) {
    .arg__title {
        font-size: 1.9rem;
    }
}
.arg__text {
    font-size: 1.2rem;
    color: #6a696b;
    font-weight: 300;
    line-height: 1.5;
    max-width: 615px;
}
@media (max-width: 565px) {
    .arg__text {
        font-size: 1rem;
    }
}
.arguments__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}
.arguments__col {
    flex-basis: 25%;
    padding: 1rem;
}
@media (max-width: 1199px) {
    .arguments__col {
        flex-basis: 50%;
    }
}
@media (max-width: 565px) {
    .arguments__col {
        flex-basis: 100%;
    }
}
.arguments__item {
    background-color: rgba(43, 42, 44, 0.1);
    min-height: 280px;
    text-align: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.2s linear;
}
.arguments__img {
    padding-top: 1.5rem;
    width: 70px;
    height: auto;
}
@media (max-width: 1199px) {
    .arguments__img {
        padding-top: 10%;
    }
}
.arguments__content {
    padding: 1rem 2rem;
}
.arguments__text {
    margin-top: 0.6rem;
}
.technologies {
    padding-bottom: 7rem;
    margin-top: 7rem;
    padding-top: 7rem;
    display: block;
    width: 100%;
    background-color: #e9e9e9;
    background-size: cover;
}
.tlg__header {
    margin-bottom: 5rem;
    text-align: center;
}
.tlg__title {
    margin-bottom: 0.6rem;
    position: relative;
    font-size: 3rem;
    color: #2b2b2b;
    text-transform: uppercase;
    font-weight: 700;
}
@media (max-width: 767px) {
    .tlg__title {
        font-size: 2.3rem;
    }
}
@media (max-width: 565px) {
    .tlg__title {
        font-size: 1.8rem;
    }
}
.technologies__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}
.technologies__col {
    flex-basis: 25%;
}
@media (max-width: 767px) {
    .technologies__col {
        flex-basis: 50%;
    }
}
@media (max-width: 565px) {
    .technologies__col {
        flex-basis: 100%;
    }
}
.technologies__item {
    width: 100%;
    background-color: #e9e9e9;
    height: 100%;
    text-align: center;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.technologies__item:hover {
    background-color: #f3f3f3;
    border-left: 2px solid #2b2b2b;
}
@media (max-width: 565px) {
    .technologies__item {
        height: 290px;
    }
}
.technologies__content {
    padding: 2rem 2rem;
    
}
@media (max-width: 565px) {
    .technologies__content {
        padding: 2rem 1rem;
    }
}
.technologies__title {
    margin-top: 1.5rem;
    font-size: 1.17em;
    font-weight: bold;
}
.technologies__text {
    margin-top: 0.6rem;
    text-align: left;
}
.strength {
    padding-bottom: 5rem;
    padding-top: 5rem;
}
.str__header {
    margin-bottom: 5rem;
    text-align: center;
}
.str__title {
    margin-bottom: 0.6rem;
    font-size: 3rem;
    color: #2b2a2c;
    text-transform: uppercase;
    font-weight: 700;
}
@media (max-width: 767px) {
    .str__title {
        font-size: 2.3rem;
    }
}
.strength__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}
.strength__col {
    flex-basis: 50%;
    padding: 0.5rem;
}
@media (max-width: 767px) {
    .strength__col {
        flex-basis: 100%;
    }
}
.strength__item {
    display: flex;
    background-color: rgba(43, 42, 44, 0.1);
    height: 110px;
    border-radius: 50px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.strength__image {
    width: 20%;
    text-align: center;
}
.strength__img {
    width: 60px;
    padding-top: 1.5rem;
    margin-left: 1rem;
}
.strength__content {
    width: 80%;
    padding: 1rem 1rem;
}
@media (max-width: 767px) {
    .strength__content {
        margin-left: 10px;
    }
}
.strength__title {
    font-size: 1.17em;
    font-weight: bold;
}
@media (max-width: 1199px) {
    .strength__title {
        font-size: 1rem;
    }
}
.strength__text {
    margin-top: 0.6rem;
    margin-right: 1rem;
}
@media (max-width: 1199px) {
    .strength__text {
        font-size: 0.8rem;
    }
}
@media (max-width: 767px) {
    .strength__text {
        font-size: 0.7rem;
    }
}
.footer {
    padding: 1rem 0;
    background-color: #2b2a2c;
}
.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer__credits {
    display: flex;
    align-items: center;
}
@media (max-width: 991px) {
    .footer__credits {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
}
@media (max-width: 565px) {
    .footer__credits {
        flex-direction: column;
    }
}
.footer__copyright {
    padding-right: 0.8rem;
    margin-right: 1rem;
    font-size: 0.94rem;
    color: #bbbbcc;
    border-right: 1px solid rgba(106, 105, 107, 0.35);
}
@media (max-width: 565px) {
    .footer__copyright {
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 1rem;
        border-right: 0;
    }
}
.footer__social {
    display: flex;
    align-items: center;
}
.footer__social a {
    margin-right: 1.2rem;
    text-decoration: none;
}
@media (max-width: 991px) {
    .footer__social a {
        margin: 0 0.5rem;
    }
}
.footer__nav {
    display: flex;
    align-items: center;
    font-size: 0.94rem;
}
@media (max-width: 991px) {
    .footer__nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}
.footer__nav-link {
    margin-left: 1.5rem;
    color: #bbbbcc;
    text-decoration: none;
    transition: background-color 0.2s linear, border-color 0.2s linear, color 0.2s linear;
}
.footer__nav-link:hover {
    text-decoration: none;
}
.footer__nav-link--btn {
    border: 1px solid #8d8d8e;
    border-radius: 20px;
    padding: 0.5rem 1.4rem;
    line-height: 1.1;
}
.footer__nav-link--btn:hover {
    text-decoration: none;
    background-color: #bbbbcc;
    color: #2b2a2c;
    border-color: #bbbbcc;
}
@media (max-width: 991px) {
    .footer__nav-link {
        margin: 0 0.5rem 0.5rem;
    }
}
.modal {
    display: none;
    width: 100%;
    height: 100%;
    padding: 1rem;
    overflow: auto;
    background-color: rgba(6, 15, 49, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.modal.show {
    display: flex;
}
.modal__dialog {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    background-color: #fff;
    transform: scale(0);
    transition: transform 0.2s linear;
}
.modal__dialog--sm {
    width: 900px;
}
.modal__close {
    width: 34px;
    height: 34px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 1;
    transition: transform 0.2s linear;
}
.modal__close:hover {
    transform: rotate(90deg);
}
.modal__close:focus {
    outline: none;
}
.modal-work {
    display: flex;
    min-height: 630px;
}
@media (max-width: 1199px) {
    .modal-work {
        display: block;
    }
}
.modal-work__preview {
    width: 65%;
    position: relative;
    overflow: hidden;
}
@media (max-width: 1199px) {
    .modal-work__preview {
        width: 100%;
        position: static;
    }
}
.modal-work__photo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate3d(-50%, -50%, 0);
}
@media (max-width: 1199px) {
    .modal-work__photo {
        width: 100%;
        position: static;
        transform: none;
    }
}
.modal-work__content {
    position: relative;
    width: 35%;
    padding: 3.4rem 2rem 1rem 1.73rem;
}
@media (max-width: 1199px) {
    .modal-work__content {
        width: 100%;
        position: static;
    }
}
@media (max-width: 991px) {
    .modal-work__content {
        padding: 1rem 2rem 1rem 1.73rem;
    }
}
.modal-work__header {
    margin-bottom: 2.2rem;
}
@media (max-width: 1199px) {
    .modal-work__header {
        margin-bottom: 1.5rem;
    }
}
.modal-work__title {
    font-size: 2.13rem;
    color: #2b2a2c;
    font-weight: 700;
    text-transform: uppercase;
}
@media (max-width: 1199px) {
    .modal-work__title {
        line-height: 1.5;
    }
}
@media (max-width: 991px) {
    .modal-work__title {
        font-size: 1.7rem;
    }
}
@media (max-width: 565px) {
    .modal-work__title {
        font-size: 1.5rem;
    }
}
.modal-work__info {
    font-size: 1.2rem;
    color: #6a696b;
    text-transform: uppercase;
}
.modal-work__info-diviter {
    margin: 0 1rem;
}
.modal-work__text {
    font-size: 1rem;
    color: #6a696b;
    line-height: 2;
    font-weight: 300;
}
@media (max-width: 991px) {
    .modal-work__text {
        font-size: 0.9rem;
    }
}
.modal-work__footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.8rem 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
@media (max-width: 991px) {
    .modal-work__footer {
        display: none;
    }
}
.modal-work__btn {
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.94rem;
    color: #2b2a2c;
    text-transform: uppercase;
}
.modal-work__btn:focus {
    outline: none;
    border-color: #589bda;
}
.modal-work__btn:hover {
    color: #2b2a2c;
    font-weight: 700;
}
.contact {
    display: flex;
}
@media (max-width: 767px) {
    .contact {
        display: block;
    }
}
.contact__left {
    width: 47%;
    padding: 2rem;
}
@media (max-width: 767px) {
    .contact__left {
        width: 100%;
    }
}
@media (max-width: 321px) {
    .contact__left {
        padding: 1rem;
    }
}
.contact__right {
    width: 53%;
}
@media (max-width: 767px) {
    .contact__right {
        width: 100%;
    }
}
.contact__info {
    margin: 1.3rem 1rem 3.5rem;
    padding: 0;
    list-style: none;
    font-size: 1em;
    color: #2b2a2c;
    font-weight: 300;
}
.contact__info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.35rem;
}
.contact__info-item:last-child {
    margin-bottom: 0;
}
.contact__info-item img {
    padding-right: 1rem;
}
.modal__title {
    margin-bottom: 3.6rem;
    font-size: 2.6rem;
    text-transform: uppercase;
    color: #2b2a2c;
    font-weight: 700;
    line-height: 1.1;
}
@media (max-width: 767px) {
    .modal__title {
        font-size: 2rem;
    }
}
@media (max-width: 565px) {
    .modal__title {
        font-size: 1.7rem;
    }
}
.modal__suptitle {
    padding-top: 0.5rem;
    text-transform: uppercase;
    font-size: 1.06rem;
    color: #2b2a2c;
    font-weight: 400;
}
.form__group {
    margin-bottom: 1.8rem;
}
.form__group:last-child {
    margin-bottom: 0;
}
.form__label {
    display: inline-block;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #2b2a2c;
    font-weight: 700;
}
.form__input,
.form__textarea {
    display: block;
    width: 100%;
    padding: 1.3rem 1.8rem;
    border: 1px solid rgba(112, 112, 112, 0.4);
    border-radius: 1.8rem;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.2;
    color: #2b2a2c;
}
.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #589bda;
}
.form__input::placeholder,
.form__textarea::placeholder {
    color: #2b2a2c;
}
.form__textarea {
    height: 145px;
    resize: none;
}
.btn-h-mini {
    padding: 0.7em 1.7em;
}
.burger {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    padding: 0;
    bottom: 0;
    background: none;
    display: none;
}
@media (max-width: 767px) {
    .burger {
        display: block;
    }
}
.burger__icon {
    display: block;
    max-width: 100%;
    height: auto;
}
.text-center {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    color: brown;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.img {
    display: block;
    max-width: 100%;
    height: auto;
}
.mb-0 {
    margin-bottom: 0;
}
.hide {
    display: none;
}
