@font-face {
    font-family: 'Lato-Bold'; 
    src: url("./assets/Lato-Bold.ttf");
    font-style: normal;
    font-weight: bold;
}
@font-face {
    font-family: 'Lato-Black'; 
    src: url("./assets/Lato-Black.ttf");
    font-style: normal;
    font-weight: 900;
}
@font-face {
    font-family: 'Lato-Regular'; 
    src: url("./assets/Lato-Regular.ttf");
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: 'Lato-Light'; 
    src: url("./assets/Lato-Light.ttf");
    font-style: normal;
    font-weight: 300;
}
:focus {
    outline: none;
}
html, body, h1, h2, h3, p {
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
body {
    position: relative;
}
body.change:before {
    background: #2D303A;
    opacity: 0.6;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 99;
}
/* body.change {
    overflow: hidden;
} */
/***Header***/
.hidden-h1 {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    clip: rect(0 0 0 0);
}
.header {
    background-color: rgb(45, 48, 58);
    border-bottom: 6px solid  rgb(50, 55, 70);
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
}
.wrapper {
    max-width: 1020px;
    margin: 0 auto;
}
.header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 28.5px;
    padding-bottom: 28.5px;
}
.logo {
    font-size: 26px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'Lato-Bold', Arial, sans-serif;
    letter-spacing: -1px
}

.logo .logo__star {
    color: #f06c64;
    margin-left: -4px;
}
.navigation {
    padding: 0px;
    margin: 0px;
    display: flex;
    list-style-type: none;
    margin-top: 8px;
}
.navigation li {
    margin-left: 30px;
    position: relative;
    color: #ffffff;
}
.navigation .navigation__link {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    font-family: 'Lato-bold', Arial, sans-serif;
    letter-spacing: -0.2px;
}
.navigation .navigation__link_active {
    color: rgb(240, 108, 100);
}
.navigation a.navigation__link:hover {
    color: rgb(240, 108, 100);
}
.navigation li::before {
    position: absolute;
    content: "";
    background-color: #ffffff;
    height: 2.5px;
    width: 2.5px;
    top: 10px;
    left: -16px;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    display: none;
}
.navigation li:not(:first-child):before {
    display: block;
}

/***Slider***/
.slider {
    margin-top: 95px;
}
#slide-one {
    background-color: #f06c64;
    border-bottom: 6px solid #ea676b;
}
#slide-two {
    background-color: #648BF0;
    border-bottom: 6px solid #507FF9;
}
.slide {
    position: relative;
    overflow: hidden;
    display: flex;
}
/* .slide .slide__item {
    width: 1020px;
    height: 594px;
} */
.slide .slide__phone {
    position: absolute;
    width: 215px;
}
.slide .slide__mobile {
    position: absolute;
    z-index: 2;
    cursor: pointer;
}
.slide .slide__image {
    z-index: 3;
    position: absolute;
}
.slide .slide__shadow {
    position: absolute;
    background: url(./assets/shadow.png);
    width: 239px;
    height: 482px;
    z-index: 1;
}
.slide .slide__phone_one {
    left: 112px;
    top: 53px;
    height: 458px;
}
.slide .slide__image_one {
    height: 333px;
    width: 188px;
    top: 65px;
    left: 14px;
    background: url(./assets/image-1.jpg);
    background-position: -14px -135px;
    background-repeat: no-repeat;
}
.slide .slide__shadow_one {
    left: 1px;
    top: 1px;
}
.slide .slide__phone_two {
    left: auto;
    transform: rotate(90deg);
    right: 258px;
    top: 53px;
    height: 457px;
}
.slide .slide__image_two {
    background: url(./assets/image-2.jpg);
    transform: rotate(270deg);
    height: 188px;
    width: 334px;
    top: 138px;
    left: -59px;
    background-position: -124px -119px;
}
.slide .slide__shadow_two {
    transform: rotateY(180deg);
    top: -26px;
    left: 1px;
}
.slide .slide__arrow {
    position: absolute;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    width: 16px;
    height: 30px;
    background-repeat: no-repeat;
}
.slide .slide__arrow:hover, .slide .slide__arrow:focus {
    cursor: pointer;
    outline: none;
}
.slide .slide__arrow_left {
    transform: rotate(180deg);
    top: 278px;
    left: 42px;
    background-image: url(./assets/chev.svg);
}
.slide .slide__arrow_right {
    top: 281px;
    right: 40px;
    background-image: url(./assets/chev.svg);
}
.slide a.slide__arrow:hover {
    filter: opacity(0.5);
}
.slide__item {
    display: none;
    position: relative;
    animation: 0.5s ease-in-out;
    margin: 0 auto;
    width: 100vw;
}
.slide__item_active,
.slide__next {
  display: block;
}
.slide__next {
  position: absolute;
  top: 0;
  width: 100%;
}
.slide__to-left {
    animation-name: left;
}
.slide__from-right {
    animation-name: right;
}
.slide__to-right {
    animation-name: right;
    animation-direction: reverse;
}
.slide__from-left {
    animation-name: left;
    animation-direction: reverse;
}
.slide .slide__wrapper {
    width: 1020px;
    height: 594px;
    position: relative;
    margin: 0 auto;
}
.slide .slide__arrows {
    position: absolute;
    width: 100vw;
}
.slide .arrows__wrapper {
    width: 1020px;
    margin: 0 auto;
    position: relative;
    left: -8px;
    z-index: 98;
}
@keyframes left {
    from {
      left: 0;
    }
    to {
      left: -100%;
    }
}
  
  @keyframes right {
    from {
      left: 100%;
    }
    to {
      left: 0;
    }
}
/***Our-services***/
.our-services {
    background-color: #f2f2f2;
    border-bottom: 6px solid #ffffff;
    position: relative;
}
.our-services .layout-3-column {
    justify-content: normal;
}
.our-services h2, .our-services h3 {
    color: #666d89;
}
.our-services h3 {
    font-family: 'Lato-Black', Arial, sans-serif;
    font-size: 18px;
}
.our-services h2 {
    font-size: 30px;
    font-family: 'Lato-Black', Arial, sans-serif;
    margin-bottom: 18px;
}
.our-services .our_services__slogan {
    font-family: 'Lato-Light', Arial, sans-serif;
    font-size: 18px;
    color: #767e9e;
    letter-spacing: -0.22px;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 43px;
}
.our-services .our-services__block {
    padding: 59px 31px;
    padding-bottom: 32px;
}
.layout-3-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.layout-2-column {
    display: flex;
}
.tool {
    width: 300px;
    margin-right: 20px;
}
.tool:nth-child(3),
.tool:nth-child(6) {
    margin-right: 0px;
}
.tool .tool__text {
    font-size: 12px;
    font-family: 'Lato-Regular', Arial, sans-serif;
    color: #767e9e;
    line-height: 22px;
    margin-top: 8px;
    word-break: break-word;
    text-align: justify;
}
.tool .tool__icon {
    margin-top: 4px;
    margin-left: 1.5px;
    border: 2px solid #666d89;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    background-repeat: no-repeat;
    background-position: center;
}
.tool .tool__icon_pencil {
    background-image: url(./assets/pen.svg);
}
.tool .tool__icon_bulb {
    background-image: url(./assets/bulb.svg);
}
.tool .tool__icon_heart {
    background-image: url(./assets/heart.svg);
}
.tool .tool__icon_phone {
    background-image: url(./assets/phone.svg);
}
.tool .tool__icon_bubble {
    background-image: url(./assets/bubble.svg);
}
.tool .tool__icon_star {
    background-image: url(./assets/star.svg);
}
.tool .tool__description {
    margin-bottom: 30px;
    margin-left: 20px;
    overflow: hidden;
    max-height: 93px;
    width: 220px;
}
.tool .tool__name_support {
    letter-spacing: -0.5px;
}
/***Portfolio***/
.portfolio {
    background: #2d303a;
    border-bottom: 6px solid #323746;
    position: relative;
}
.portfolio .portfolio__block {
    padding: 59px 40px 48px;
}
.portfolio h2, .portfolio h3 {
    color: #666d89;
}
.portfolio h2 {
    font-size: 30px;
    font-family: 'Lato-Black', Arial, sans-serif;
    margin-bottom: 22.5px;
    letter-spacing: 0.29px;
}
.portfolio__description {
    font-family: 'Lato-Light', Arial, sans-serif;
    font-size: 18px;
    color: #767e9e;
    letter-spacing: -0.2px;
}
.portfolio__tags {
    margin-top: 16px;
    margin-bottom: 21px;
    margin-left: 1px;
    display: inline-block;
}
.tag {
    border: 1px solid;
    border-radius: 5px;
    font-family: 'Lato-Regular', Arial, sans-serif;
    font-size: 12px;
    text-align: center;
    padding: 3px 7px 2px 7px;
    border-color: rgb(102, 109, 137);
    color: rgb(118, 126, 158);
}
.tag:hover {
    cursor: pointer;
    border-color: rgb(197, 197, 197);
    color: rgb(222, 222, 222);
}

.tag_bordered {
    border-color: rgb(102, 109, 137);
    color: rgb(118, 126, 158);
    margin-left: 6px;
    padding-right: 4.1px;
}
.tag_selected {
    border-color: rgb(197, 197, 197);
    color: rgb(222, 222, 222);
}
.layout-4-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gallery {
    max-height: 620px;
    overflow: hidden;
    max-width: 950px;
    justify-content: normal;
    margin: -20px;
    padding: 10px;
}
.gallery div {
    cursor: pointer;
    flex: 1 0 20%;
    margin: 10px;
}
.gallery img {
    width: 100%;
    height: 100%;
}
.gallery .active {
    outline: 5px solid #F06C64;
}
/***About Us***/
.about-us {
    background: #f2f2f2;
    border-bottom: 6px solid #ffffff;
    position: relative;
}
.about-us h2 {
    font-size: 30px;
    font-family: 'Lato-Black', Arial, sans-serif;
    margin-bottom: 18px;
    letter-spacing: -0.19px;
    color: #666d89;
    margin-left: 1px;
}
.about-us .about-us__block {
    padding: 59px 40px 67px 40px;
}
.about-us .about-us__description {
    font-family: 'Lato-Light', Arial, sans-serif;
    font-size: 18px;
    color: #767e9e;
    letter-spacing: -0.2px;
    line-height: 30px;
    margin-bottom: 45px;
    margin-left: 1px;
    text-align: justify;
}
.personal {
    width: 300px;
}
.personal:nth-child(2) img {
    margin-left: -1px;
}
.personal h3 {
    font-family: 'Lato-Black', Arial, sans-serif;
    font-size: 18px;
    color: #666d89;
    margin-top: 11px;
    margin-bottom: 8px;
    max-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.personal p {
    font-size: 12px;
    font-family: 'Lato-Regular', Arial, sans-serif;
    color: #767e9e;
    line-height: 22px;
    text-align: justify;
}
.social {
    display: flex;
    padding-top: 22px;
}
.social .social__icon_margin {
    margin-left: 1px;
}
.social .social__icon {
    width: 30px;
    height: 30px;
    border: 1px solid rgb(102, 109, 137);
    border-radius: 50%;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-position: center;
}
.social a.social__icon:hover {
    border-width: 2px;
    width: 28px;
    height: 28px;
    filter: contrast(0);
}
.social .social__icon_facebook {
    background-image: url(./assets/facebook.png);
}
.social .social__icon_google {
    background-image: url(./assets/google.png);
}
.social .social__icon_twitter {
    background-image: url(./assets/twitter.png);
}
.social .social__icon_linkedin {
    background-image: url(./assets/linkedin.png);
}
/***Feedback***/
.feedback {
    background-color: #f06c64;
    border-bottom: 6px solid #ea676b;
    position: relative;
}
.feedback .feedback__block {
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 59px;
    padding-bottom: 46px;
    position: relative;
}
.feedback h2 {
    font-size: 30px;
    font-family: 'Lato-Black', Arial, sans-serif;
    margin-bottom: 17px;
    letter-spacing: -0.29px;
    color: #f0d8d9;
}
.feedback .feedback__description {
    font-family: 'Lato-Light', Arial, sans-serif;
    font-size: 18px;
    color: #f0d8d9;
    letter-spacing: -0.21px;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 43px;
}
.information {
    width: 300px;
    padding-left: 25px;
}
.information h3 {
    font-family: 'Lato-Black', Arial, sans-serif;
    font-size: 18px;
    color: #f0d8d9;
    margin-top: 0px;
    margin-bottom: 8px;
    letter-spacing: 0.05px;
}
.information p {
    color: #f0d8d9;
    font-size: 12px;
    line-height: 22px;
    font-family: 'Lato-Regular', Arial, sans-serif;
    text-align: justify;
    letter-spacing: -0.15px;
    margin-bottom: 20px;
}
.contact-details .contact-details__info, .contact-details .contact-details__info a {
    color: #f0d8d9;
    font-size: 12px;
    line-height: 22px;
    font-family: 'Lato-Regular', Arial, sans-serif;
    letter-spacing: -0.15px;
}
.contact-details .contact-details__info a:hover {
    color: #ffffff;
}
.contact-details .contact-details__icon {
    width: 13px;
    height: 13px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 4px;
}
.contact-details__icon_map {
    background-image: url(./assets/map-footer.png);
}
.contact-details__icon_phone {
    background-image: url(./assets/phone-footer.png);
}
.contact-details__icon_mail {
    background-image: url(./assets/mail-footer.png);
}
.form {
    width: 615px;
    padding-top: 2px;
}
input, textarea {
    border-radius: 5px;
    background-color: rgb(214, 86, 79);
    height: 33px;
    width: calc(100% - 11px);
    border: none;
    margin-bottom: 17px;
    padding-left: 13px;
    font-family: 'Lato-Regular', Arial, sans-serif;
    border: 1px solid transparent;
    color: #f0d8d9;
}
textarea {
    resize: none;
}
input:focus, textarea:focus, #submit {
    outline: none;
    border: 1px solid #f0d8d9;
}
input:hover, textarea:hover {
    border: 1px solid #f0d8d9;
}
input::placeholder, textarea::placeholder {
    font-size: 12px;
    font-family: 'Lato-Regular', Arial, sans-serif;
    color: rgb(244, 140, 143);
    opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 12px;
    font-family: 'Lato-Regular', Arial, sans-serif;
    color: rgb(244, 140, 143);
    opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 12px;
    font-family: 'Lato-Regular', Arial, sans-serif;
    color: rgb(244, 140, 143);
    opacity: 1;
}
#message {
    padding-top: 7px;
    padding-right: 0px;
    height: 191px;
}
#submit {
    position: initial;
    right: 250px;
    bottom: 67px;
    border-radius: 5px;
    font-family: 'Lato-Black', Arial, sans-serif;
    cursor: pointer;
    padding: 10px 25px;
    color: #f0d8d9;
    border-color: #f0d8d9;
    background-color: #f06c64;
}
#submit:hover {
    border: 1px solid transparent;
    background-color: #d6564f;
    color: #ffffff;
}
/***Footer***/
.footer {
    background-color: #2d303a;
}
.footer .footer__block {
    padding: 22px 44px;
    padding-right: 32px;
    align-items: center;
    justify-content: space-between;
}
.copyright {
    color: #666d89;
    font-size: 12px;
    letter-spacing: -0.2px;
    font-family: 'Lato-Light', Arial, sans-serif;
    margin-left: -2px;
}
.footer .social {
    padding-top: 0px;
}
.social .social__icon_margin {
    margin-left: 1px;
}
.social .social__icon {
    width: 30px;
    height: 30px;
    border: 1px solid rgb(102, 109, 137);
    border-radius: 50%;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-position: center;
}
.social a.social__icon:hover {
    border-width: 2px;
    width: 28px;
    height: 28px;
    filter: contrast(0);
}
.social .social__icon_facebook {
    background-image: url(./assets/facebook.png);
}
.social .social__icon_google {
    background-image: url(./assets/google.png);
}
.social .social__icon_twitter {
    background-image: url(./assets/twitter.png);
}
.social .social__icon_linkedin {
    background-image: url(./assets/linkedin.png);
}
/* modal */
.modal-window {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000090;    
}
.hidden {
    display: none;
}
.modal {
    width: 400px;
    height: auto;
    max-height: 85vh;
    border: 3px solid #f2f2f2;
    vertical-align: middle;
    background: #2d303a;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    padding: 40px;
    word-break: break-word;
    overflow: auto;
    font-family: 'Lato-Light', Arial, sans-serif;
}
.modal div {
    margin-bottom: 2px;
}
.modal button {
    margin-top: 30px;
    font-family: 'Lato-Black', Arial, sans-serif;
    cursor: pointer;
    padding: 10px 50px;
    color: #ffffff;
    background-color: #f06c64;
    border: 1px #f2f2f2 solid;
    outline: none;
    transition: .2s;
}
.modal button:hover {
    background: #2d303a;
    border: 1px #f06c64 solid;
    transition: .2s;
}

.anchor {
    position: absolute;
    margin-top: -94px;
}
/* burger menu */
.burger-menu__line, .burger-menu:after, .burger-menu:before {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: #ffffff;
    border-radius: 5px;
    width: 100%;
    height: 2.4px;
}
.burger-menu {
    position: relative;
    width: 25px;
    height: 19.3px;
    display: none;
    cursor: pointer;
    transition: .5s;
}
.burger-menu:before {
    top: 0;
    left: 0;
}
.burger-menu:after {
    bottom: 0;
    left: 0;
}
.burger-menu__line {
    top: calc( 50% - 1.5px );
    left: 0;
}
.burger-logo {
    display: none;
}

/* MEDIA */
@media (max-width: 1019.98px) {
    .tool {
        margin-right: 50px;
        min-width: 300px;
        width: calc(86% - 43%);
    }
    .tool:nth-child(2n) {
        margin-right: 0px;
    }
    .tool:nth-child(3) {
        margin-right: 50px;
    }
    .tool .tool__description {
        min-width: 220px;
        width: auto;
    }
    .tool .tool__icon {
        min-width: 56px;
        min-height: 56px;
        margin-top: 0px;
    }
    .our-services .our-services__block,
    .portfolio .portfolio__block {
        padding-right: 40px;
        padding-left: 41px;
    }
    .our-services__block div {
        justify-content: normal;
    }
    .gallery {
        max-height: none;
    }
    .gallery div {
        flex: 1 0 25%;
    }
    .gallery .img-item:nth-child(n+13) {
        display: none;
    }
    .about-us__block .layout-3-column {
        justify-content: normal;
    }
    .personal {
        flex: 1 0 28%;
        margin-right: 14.6px;
    }
    .personal:nth-child(3) {
        margin-right: 0;
    }
    .personal img {
        width: 100%;
    }
    .personal:nth-child(2) img {
        margin-left: 0px;
    }
    .feedback .feedback__block {
        padding-left: 42px;
        padding-right: 37px;
    }
    .form {
        margin-left: -3px;
        min-width: 442px;
        width: auto;
        flex: 1 0 64%;
    }
    input, textarea {
        width: calc(100% - 15px);
    }
    .information {
        padding-left: 29px;
    }
    .footer .footer__block {
        padding-left: 39px;
        padding-right: 32px;
    }
    .slide__item {
        width: 100%;
    }
    .slide .slide__wrapper,
    .slide .arrows__wrapper {
        width: auto;
        height: 58.66vw;
    }
    .slide .slide__mobile {
        width: 90%;
    }
    .slide .slide__phone {
        z-index: 1;
        width: 23.5vw;
        height: 47.3vw;
    }
    .slide .slide__phone_one {
        left: 84px;
    }
    .slide .slide__phone_two {
        right: 204px;
    }
    .slide .slide__image_two {
        width: 33vw;
        height: 19vw;
        top: 28%;
        left: -25%;
        background-size: 47vh;
        background-position: -92px -86px;
    }
    .slide .slide__image_one {
        width: 79%;
        height: 69.5%;
        top: 13.5%;
        left: 5.5%;
        background-size: 47vh;
        background-position: -10px -101px;
    }
    .slide .slide__shadow {
        background-size: contain;
        background-repeat: no-repeat;
        width: 101.2%;
        height: 100.5%;
        left: 0;
        top: 0;
    }
    .slide .slide__shadow_one {
        left: 0;
        top: 0;
    }
    .slide .slide__shadow_two {
        top: -5.3%;
        left: 0px;
    }
    #slide-two.slide__item img {
        width: 100%;
        margin: 0 auto;
    }
    .slide .slide__arrow_left,
    .slide .slide__arrow_right {
        top: 46.8%;
    }
    .slide .slide__arrow_right {
        right: 3%;
    }
    .slide .slide__arrow_left {
        left: 3.9%;
    }
    .slide .slide__arrows {
        width: 100%;
        z-index: 0;
    }
    .slide .arrows__wrapper {
        left: 0px;
    }
    .slide .slide__phone_one {
        left: 11%;
        top: 9%;
    }
    .slide .slide__phone_two {
        right: 27%;
        top: 9%;
    }
    
}
@media (max-width: 767.98px) {
    #menu {
        display: none;
    }
    .slide .arrows__wrapper {
        width: auto;
    }
    .burger-menu {
        display: inline-block;
        position: absolute;
        left: 20px;
        z-index: 99;
    }
    .header-block {
        padding-left: 20px;
        padding-top: 21.5px;
        padding-bottom: 19.5px;
        padding-right: 20px;
        display: flex;
        justify-content: center;
        height: 24px;
    }
    .logo {
        margin-bottom: 2px;
        font-size: 20px;
    }
    .logo.change {
        display: none;
    }
    /* .logo.change {
        z-index: 99;
        position: absolute;
        top: 24px;
        left: 71px;
    } */
    .burger-logo {
        z-index: 99;
        position: absolute;
        top: 22px;
        left: -278px;
        transition: .5s;
        display: block;
    }
    .burger-logo.change {
        left: 71px;
    }
    .slider {
        margin-top: 71px;
    }
    .our-services .our-services__block {
        padding-right: 29px;
        padding-left: 32px;
        padding-top: 25px;
        padding-bottom: 0px;
    }
    .portfolio .portfolio__block {
        padding-right: 29px;
        padding-left: 30px;
        padding-top: 42px;
        padding-bottom: 30px;
    }
    .about-us .about-us__block {
        padding-right: 29px;
        padding-left: 30px;
        padding-top: 33px;
        padding-bottom: 40px;
    }
    .tool {
        margin-right: 0px;
        width: 95%;
    }
    .tool .tool__icon {
        margin-top: 0px;
    }
    .tool .tool__description {
        /* width: calc(100% - 30%); */
    }
    .gallery {
        padding: 15px;
    }
    .gallery div {
        flex: 1 0 35%;
        margin: 2.3%;
    }
    .gallery .img-item:nth-child(n+9) {
        display: none;
    }
    .personal {
        margin-right: 0;
        flex: 1 0 60%;
        margin-bottom: 34px;
    }
    .personal h3 {
        margin-top: 17px;
        margin-bottom: 3px;
    }
    .social {
        padding-top: 12px;
    }
    .personal:nth-child(3) {
        margin-bottom: 0px;
    }
    .feedback .feedback__block {
        padding-right: 31px;
        padding-left: 30px;
        padding-top: 44px;
        padding-bottom: 35px;
    }
    .feedback .feedback__forms {
        flex-wrap: wrap;
    }
    .feedback h2 {
        margin-bottom: 15px;
    }
    .information {
        padding-left: 0px;
        min-width: 315px;
        width: auto;
    }
    .feedback .feedback__description {
        margin-bottom: 22px;
    }
    input, textarea {
        margin-bottom: 12px;
    }
    .form {
        min-width: auto;
        margin-left: -1px;
    }
    #submit {
        width: 100%;
        margin-bottom: 32px;
    }
    .information h3 {
        margin-bottom: 5px;
    }
    .information p {
        margin-bottom: 10px;
    }
    .footer .footer__block {
        padding-right: 30px;
        padding-left: 30px;
    }
    .copyright {
        display: none;
    }
    .social .social__icon_linkedin:nth-child(4) {
        margin-right: 0px;
    }
    .footer .footer__block {
        justify-content: center;
    }
    /* burger menu */
    #menu {
        display: block;
        position: absolute;
        left: -278px;
        top: -8px;
        width: 207px;
        flex-direction: column;
        background: #2d303a;
        height: 100vh;
        padding-top: 232px;
        padding-left: 71px;
        transition: .5s;
    }
    #menu.change {
        left: 0px;
    }
    .navigation .navigation__link {
        font-size: 24px;
    }
    .navigation li {
        margin-left: 0px;
        margin-bottom: 27px;
    }
    .burger-menu.change {
        transform: rotate(90deg);
        height: 20.3px;
    }
    .navigation li:not(:first-child):before {
        display: none;
    }
    .anchor {
        margin-top: -70px;
    }
    .slide .slide__arrow_left,
    .slide .slide__arrow_right {
        top: 44.4%;
    }
    .slide .slide__arrow_left {
        left: 2.7%;
    }
    .slide .slide__arrow_right {
        right: 2.8%;
    }
    .slide .slide__image_one {
        background-position: -5px -48px;
        background-size: 56vw;
    }
    .slide .slide__image_two {
        background-size: 57vw;
        background-position: -46px -43px;
    }
}
@media (max-width: 374.98px) {
    .tool,
    .tool .tool__description,
    .information {
        width: 100%;
        min-width: auto;
    }
    .tag {
        padding-right: 2px;
        padding-left: 2px;
        margin-left: 1px;
    }
}
/* scroll */
#message::-webkit-scrollbar {
    width: 5px;
}
#message::-webkit-scrollbar-thumb {
    background: #f0d8d9;
    border-radius: 5px;
}
.modal::-webkit-scrollbar {
    width: 5px;
}
.modal::-webkit-scrollbar-thumb {
    background: #f06c64;
    border-radius: 5px;
}