* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.main-nav {
    position: absolute;
    top: 120px;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    background: #FFF;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: all .375s;
    z-index: 222222222222222;
    height: 80vh;;
}

.main-nav.is-open {
    opacity: 1;
    z-index: 100;
    visibility: visible;
}

/* Yellow band effect */
.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0px;
    background: #F0542C;
    transform-origin: 0 0;
    transform: skew(-14deg) translateX(-120%);
    transition: all .275s .1s;
}

.main-nav.is-open::before {
    transform: skew(-14deg) translateX(0);
}

/* Skewing effect on menu links */
.main-nav ul {
    display: inline-flex;
    flex-direction: column;
    height: 93%; /* Should be 100%, but we have a notice message :D */
    align-items: flex-end;
    justify-content: center;
    transform: translateX(-18%) skew(-16deg);
}

.main-nav li {
    display: block;
    margin: .5rem 0;
    text-align: right;
    transform: skew(16deg);
    font-size: 22px;
}

/* Apparition effect on links */
.main-nav a {
    opacity: 0;
    transform: translateY(-10px);
}

.main-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
}

.main-nav li:nth-child(1) a {
    transition: all 275ms 175ms
}

.main-nav li:nth-child(2) a {
    transition: all 275ms 225ms
}

.main-nav li:nth-child(3) a {
    transition: all 275ms 275ms
}

.main-nav li:nth-child(4) a {
    transition: all 275ms 325ms
}

.main-nav li:nth-child(5) a {
    transition: all 275ms 375ms
}


/* Decoration */
.main-nav ul,
.main-nav li {
    list-style: none;
    padding: 0;
}

.main-nav a {
    display: block;
    padding: 12px 0;
    color: #5A3B5D;
    font-size: 1.4em;
    text-decoration: none;
    font-weight: bold;
}

/* Burger Style: @see: https://codepen.io/CreativeJuiz/full/oMZNXy */
.open-main-nav {
    position: absolute;
    top: 15px;
    padding-top: 20px;
    right: 15px;
    z-index: 1000;
    background: none;
    border: 0;
    cursor: pointer;
}

.open-main-nav:focus {
    outline: none;
}

.burger {
    position: relative;
    display: block;
    width: 28px;
    height: 4px;
    margin: 0 auto;
    background: #5A3B5D;
    transform: skew(5deg);
    transition: all .275s;
}

.burger:after,
.burger:before {
    content: '';
    display: block;
    height: 100%;
    background: #5A3B5D;
    transition: all .275s;
}

.burger:after {
    transform: translateY(-12px) translateX(-2px) skew(-20deg);
}

.burger:before {
    transform: translateY(-16px) skew(-10deg);
}

/* Toggle State part */
.is-open .burger {
    transform: skew(5deg) translateY(-8px) rotate(-45deg);
}

.is-open .burger:before {
    transform: translateY(0px) skew(-10deg) rotate(75deg);
}

.is-open .burger:after {
    transform: translateY(-12px) translateX(10px) skew(-20deg);
    opacity: 0;
}

/* MENU Text part */

.burger-text {
    display: block;
    font-size: .675rem;
    letter-spacing: .05em;
    margin-top: .5em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    color: #5A3B5D;
}

.device {
    position: relative;
    width: 345px;
    height: 600px;
    background: #FFF;
    border: 1px solid #EEE;
    border-radius: 3px;
    box-shadow: 0 0 0 10px rgba(0, 0, 0, .1);
}

.container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #eee, #ddd);
}


/* Slow motion button */
[id="slowmo"] {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    border: 0;
    font-size: 1rem;
    background: #FEDC2A;
    color: #5A3B5D;
    font-weight: bold;
    cursor: pointer;
    transition: all .275s;
}

[id="slowmo"] span {
    display: block;
    font-weight: normal;
}

[id="slowmo"]:hover,
[id="slowmo"]:focus {
    background: #5A3B5D;
    color: #FEDC2A;
}

[id="slowmo"].is-slowmo span:after {
    content: 'Activated';
    display: block;
    font-weight: bold;
}

/* When slowmotion is activated */

.is-slowmo + .device .open-main-nav .burger,
.is-slowmo + .device .open-main-nav .burger:before,
.is-slowmo + .device .open-main-nav .burger:after,
.is-slowmo + .device .main-nav,
.is-slowmo + .device .main-nav::before,
.is-slowmo + .device .main-nav a {
    transition-duration: 3s;
}

.is-slowmo + .device .main-nav li:nth-child(1) a {
    transition-delay: 1750ms
}

.is-slowmo + .device .main-nav li:nth-child(2) a {
    transition-delay: 2250ms
}

.is-slowmo + .device .main-nav li:nth-child(3) a {
    transition-delay: 2750ms
}

.is-slowmo + .device .main-nav li:nth-child(4) a {
    transition-delay: 3250ms
}

.is-slowmo + .device .main-nav li:nth-child(5) a {
    transition-delay: 3750ms
}

/* Notice */
.notice {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    padding: 20px;
    background: #F2F2F2;
    color: #5A3B5D;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    z-index: 100;
    text-align: center;
}

.notice strong {
    font-weight: 700;
}

.notice a {
    padding: 2px 3px;
    background: #FEDC2A;
    text-decoration: none;
}

/*header*/
header {
    background: rgba(4, 14, 39, 0.5);
    height: 200px;
    position: absolute;
    width: 100%;
    z-index: 2222;
}

header a {
    color: white;
    text-decoration: none;
}

.contact {
    display: none;
}

.contact a {
    color: #f0542c;
    text-decoration: none;
}

.top {
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule {
    color: white;
    padding: 0px 110px;
}

.question-box {
    margin: 0px 110px;
}

button {
    padding: 15px 50px;
    text-align: center;
    font-family: tahoma;
    font-size: 20px;
    text-transform: uppercase;
    border: 0;
    background-color: #F0542C;
    color: white;
    transition: .5s;
}

button:hover {
    cursor: pointer;
    background-color: #001D38;
}

.middle {
    padding-top: 10px;
    width: 90%;
    height: 100px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.info h3 {
    font-size: 13px;
    font-family: tahoma;
    color: #f0542c;
}

.logo {
    width: 45%;
    text-align: center;
    display: flex;
}

.logo {
    color: #F0542C;
    font-family: tahoma;
    font-size: 21px;
}

.infos {
    display: flex;
    width: 50%;
    justify-content: space-around;
    color: white;
}

.infos .image {
    margin-right: 15px;
}

.info {
    text-align: left;
    display: flex;
    align-items: center;
}

.infos h2 {
    font-family: tahoma;
    font-size: 20px;
}

.infos p {
    font-family: tahoma;
    font-size: 20px;
}

.menu {
    width: 80%;
    height: 70px;
    background-color: white;
    border-radius: 20px;
    margin: auto;
}

.menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.menu li {
    margin-left: 50px;
    margin-right: 50px;
    font-size: 20px;
    font-family: tahoma;
    transition: .4s;
}

.menu a {
    text-decoration: none;
    color: black;
}

.menu li:hover {
    color: #f0542c;
    cursor: pointer;
}

.menu-bar {
    padding-left: 120px;
}

.menu-bar i {
    font-size: 40px;
    color: #f0542c;
    display: none;
}

.menu2 {
    width: 0px;
    height: 100vh;
    background-color: white;
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    flex-direction: column;
}

.menu2 ul {
    position: relative;
    list-style: none;
    text-align: center;
    padding-top: 25px;
}

.menu2 li {
    font-family: tahoma;
    font-size: 30px;
    line-height: 90px;
    text-shadow: 0px 0px .5px;
    color: #F0542C;
    transition: .8s;
}

.menu2 li:hover {
    cursor: pointer;
    color: #001D38;
    text-decoration: underline;
}

.faClose {
    font-size: 37px;
    padding-top: 10px;
    padding-right: 17px;
    text-align: right;
}

.contact {
    width: 100%;
    font-size: 30px;
    font-family: tahoma;
    text-align: center;
    color: #f0542c;
    background-color: black;
    margin-top: 10px;
}

/*banner*/
.slider {
    position: relative;
    height: 130vh;
    width: 100%;
}

.banner {
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    opacity: 0;
    transition: 0.5s linear;

}

.overline {
    width: 100%;
    height: 100%;
    background-color: #00000072;
    position: absolute;
    top: 0px;
}

.banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;

}

.banner h1 {
    font-family: tahoma;
    font-size: 70px;
    color: white;
    width: 50%;
    margin-top: 120px;
    text-align: center;
    padding-bottom: 40px;
}

.banner p {
    font-family: tahoma;
    font-size: 20px;
    color: white;
    width: 60%;
    text-align: center;
    padding-bottom: 60px;
}

.buttons1 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttons1 .btn-slider {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #00000072;
    box-shadow: 0px 0px 5px 1px white;
    font-size: 20px;
    padding: 0px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 150px;
}

.btn-slider i {
    color: white;
    font-size: 50px;
}

.buttons1 .btn-slider:active {
    box-shadow: 0px 0px 10px 5px white;
}

/*boxes1*/
.boxes-parent {
    padding-top: 100px;
    padding-bottom: 100px;
}

.boxes-parent .title-maker {
    color: #132c52;
    margin-left: 10%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.boxes1 {
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: auto;
    padding: 30px 5px;
}

.box1 {
    margin: 0px 10px;
    padding: 50px 20px;
    width: calc(100% / 3 - 10px);
    border: 4px solid #F0542C;
}

.box1 h1 {
    color: #132c52;
    padding-bottom: 25px;
    font-family: tahoma;
    font-size: 24px;
}

.box1 p {
    color: #596672;
    font-size: 20px;
    font-family: tahoma;
    line-height: 1.2em;
}

/*page1*/
.parent-page {
    background-color: #132c52;
    padding-bottom: 80px;
    padding-top: 100px;
}

.page1 {
    width: 80%;
    margin: auto;
    padding-top: 50px;
}

.title-maker {
    font-family: tahoma;
    font-size: 50px;
    position: relative;
    background: linear-gradient(180deg, rgba(97, 206, 112, 0) 70%, rgb(240 84 44) 30%);
    width: max-content;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.box2 {
    width: calc(100% / 3 - 20px);
    height: 300px;
    position: relative;
    padding: 20px 10px;

}

.box2 img {
    width: 100%;
    height: 90%;
    object-fit: cover;
}

.box2 img:hover {
    cursor: pointer;
}

.services-info {
    width: 70%;
    background-color: rgb(240 84 44);
    padding-bottom: 10px;
    padding-top: 10px;
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -45%);
    transition: .3s;
    color: white;
    font-family: tahoma;

}

.box2:hover .services-info {
    width: 100%;
    transform: translate(-50%, -65%);
    cursor: pointer;
}

.services button {
    margin: auto;
    margin-top: 80px;
}

.services i {
    font-size: 24px;
    margin-left: 10px;
}

/*banner 2*/
.banner-parent {
    padding: 100px 0px;
}

.booking-form {
    width: 400px;
    background: white;
    box-shadow: 0px 0px 5px 10px rgba(19, 44, 82, 0.47);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 22;
    padding-bottom: 20px;
    display: none;
}

.booking-form .form-group:last-child {
    display: flex;
    justify-content: center;
}

.booking-form-back {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.52);
    text-align: center;
    display: none;
}

.form-booking {
    width: 90%;
    margin: auto;
}

.form-booking input {
    width: 100%;
    height: 40px;
    border: 2px solid #f0542c;
}

.form-booking label {
    font-family: tahoma;
    margin-bottom: 10px;
    display: block;
}

.booking-form h1 {
    text-align: center;
    margin-top: 20px;
    font-family: tahoma;
}

.form-group {
    margin-top: 20px;
}

.banner2 {
    width: 100%;
    background-image: url(../img/7.jpg);
    padding: 200px 0px;
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;

    display: flex;
    justify-content: center;
}

.banner2-content {
    padding-left: 20px;
    padding-right: 50px;
}

.banner2 h1 {
    color: white;
    font-family: tahoma;
    font-size: 30px;
}

.banner2 p {
    color: white;
    font-family: tahoma;
    font-size: 24px;
}

.banner2 button {
    margin-right: 20px;
}

/*page 2*/

/*footer*/
footer {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #132c52;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer iframe {
    width: 80%;
    margin: auto;
    height: 300px;
    margin-top: 50px;
}

.line1 {
    width: 100%;
    height: 1px;
    background-color: #F0542C;
    margin-bottom: 90px;
}

.line2 {
    width: 100%;
    height: 1px;
    background-color: #F0542C;
    margin-top: 90px;
}

.left-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-content {
    padding: 0px 30px;

    display: flex;
    align-items: center;
}

.left-content a {
    color: white;
    text-decoration: none;
}

.circle {
    background-color: #F0542C;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.circle i {
    font-size: 30px;
    color: white;
}

.left-content h2 {
    color: white;
    font-family: tahoma;
}

.reviews h1 {
    color: #132c52;
    margin-left: 10%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;

}

/*gallery*/
.gallery .parent-page .page1 {
    padding-top: 200px;
}

/*gallery*/

/*injeners*/
.section-page {
    width: 50%;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.injeners {
    display: flex;
    align-items: center;
}

.injeners li {
    list-style: none;
    font-size: 20px;
}

.injeners {
    font-family: tahoma;
}

.injeners p {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

/*injeners*/

/*gallery*/
.gallery .box2:hover {
    cursor: pointer;
    transform: scale(.888);
}

.gallery .zoom-img {
    width: 60%;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 3333;
}

.gallery .zoom-img img {
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
}

.gallery .close-popup {
    font-size: 30px;
    position: absolute;
    right: 10px;
    top: 5px;
    color: white;
    text-shadow: 0px 0px 14px black;
    cursor: pointer;
}

.gallery .zoom-back {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: #000000a9;
    top: 0px;
    left: 0px;
    display: none;
    z-index: 2222;
}

/*gallery*/

@media only screen and (max-width: 1070px) {
    .slider {
        height: 100vh;
    }

    .buttons1 {
        align-items: flex-end;
    }

    .main-nav a {
        text-transform: uppercase;
        font-family: tahoma;
    }

    .middle {
        width: 100%;
    }

    .top {
        display: none;
    }

    header {
        height: 135px;
    }

    .menu-bar i {
        display: block;
    }

    .infos {
        display: none;
    }

    .menu {
        display: none;
    }

    .menu ul {
        display: none;
    }

    .middle {
        width: 85%;
    }

    .left-content {
        padding: 15px
    }
}

@media only  screen and (max-width: 1000px) {
    .banner h1 {
        width: 85%;
    }

    .banner p {
        width: 65%;
    }

    .boxes1 {
        flex-direction: column;
    }

    .box1 {
        width: 100%;
        margin: 10px 0px;
        padding: 50px 0px;
    }

    .box2 {
        width: calc(100% / 2 - 20px)
    }

    .left-side {
        flex-direction: column;
    }

    .left-content h2 {
        font-size: 21px;
    }

}

@media only  screen and (max-width: 900px) {
    .section-page {
        width: 80%;
        margin: auto;
    }

    .injeners {
        flex-wrap: wrap;
    }

    .box2 {
        width: 75%;
        margin: auto;
    }

    .title-maker {
        margin: auto;
    }

    .boxes-parent .title-maker {
        margin: auto;
    }

    .banner2-content {
        padding-right: 0px;
    }

    .banner2 {
        flex-direction: column;
    }

    .banner2 button {
        margin: auto;
        margin-top: 10px;
    }

    .banner2-content {
        padding-left: 70px;
    }
}

@media only  screen and (max-width: 720px) {
    .btn-slider i {
        font-size: 35px;
    }

    .buttons1 .btn-slider {
        margin-top: 440px;
    }

    .question-box {
        margin: 0px 40px;
    }

    .middle {
        width: 100%;
    }

    .banner h1 {
        width: 100%;
        font-size: 60px;
    }

    .banner p {
        width: 85%;
    }

    .box2 {
        width: 100%;
    }

    .contact {
        display: block;
    }

    .top {
        display: none;
    }

    .boxes-parent .title-maker {
        font-size: 40px;
    }

    .banner h1 {
        font-size: 35px;
    }

    .logo h1 {
        font-size: 30px;
    }

    .reviews h1 {
        font-size: 40px;
    }
}

@media only  screen and (max-width: 500px) {
    .booking-form {
        width: 90%;
    }

    .booking-form h1 {
        font-size: 25px;
    }

    .boxes-parent .title-maker {
        font-size: 32px;
    }

    .box1 h1 {
        font-size: 20px;
    }

    .box1 p {
        font-size: 19px;
    }

    .banner2-content {
        padding-left: 20px;
    }

    .left-side {
        flex-direction: column;
        align-items: flex-start;
    }
}



.testimonial-section {
    max-width: 640px;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 50px;
}
.testimonial-pic img {
    width: 100px;
    filter: grayscale(1);
    margin: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-pic img.active {
    filter: grayscale(0);
    border-radius: 50%;
}

.testimonial {}

.testimonial .content {
    display: none;
}

.testimonial .content.active {
    display: block;
}

.testimonial .content p:nth-child(1) {
    font-weight: bold;
    font-family: tahoma;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 25px;
    color: #F0542C;
}
.testimonial .content p:nth-child(2) {
    font-family: tahoma;
    font-size: 17px;
    line-height: 25px;
}
.buttons{
    margin-top: 20px;
}


/* CHAT */

/* icons */
.cw-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.cw {
    --widget-color: #019241;
    position: fixed;
    z-index: 1000;
    left: 20px;
    bottom: 20px;
}
.cw__modal {
    background: #fff;
    box-shadow: 0 0 40px rgba(0,0,0,.2);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 7px;
    position: absolute;
    bottom: 80px;
    left: 0;
    visibility: hidden;
    transform: scale(0);
    transform-origin: left bottom;
    transition: transform .12s ease-out, visibility .12s;
    white-space: nowrap;
}
.cw_open .cw__modal {
    visibility: visible;
    transform: scale(1);
}
.cw__modal::before {
    content: &#039;&#039;;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    border-left: 8px solid transparent;
    position: absolute;
    left: 25px;
    top: 100%;
}
@media (max-width: 428px) {
    .cw__modal {
        position: fixed;
        width: 100%;
        bottom: 0;
        border-radius: 0;
        white-space: normal;
    }
    .cw_open .cw__btn {
        display: none;
    }
}

/* cw-btn */
.cw-btn {
    width: 70px;
    height: 70px;
    background-color: var(--widget-color);
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}
.cw-btn::before,
.cw-btn::after {
    content: &#039;&#039;;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    top: 0;
    left: 0;
    z-index: -1;
    animation: cw-pulse 2s infinite;
    background-color: var(--widget-color);
}
.cw_open .cw-btn::before,
.cw_open .cw-btn::after {
    display: none;
}
.cw-btn::after {
    animation-delay: .5s;
}
.cw-btn__icon {
    font-size: 24px;
    position: absolute;
}
.cw-btn__icon_type_chat {
    font-size: 18px;
    transition: transform .2s, opacity .2s, visibility .2s;
}
.cw_open .cw-btn__icon_type_chat {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
}
.cw-btn__icon_type_close {
    font-size: 14px;
    visibility: hidden;
    transform: rotate(180deg) scale(0);
    transition: transform .12s ease-in, visibility .12s;
}
.cw_open .cw-btn__icon_type_close {
    visibility: visible;
    transform: rotate(0) scale(1);
}

/* cw-slider */
.cw-slider {
    position: absolute;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: inherit;
    background-color: #fff;
    overflow: hidden;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    transition: transform .2s, opacity .2s, visibility .2s;
}
.cw-slider_visible {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.cw-slider__track {
    display: flex;
    align-items: center;
    height: 100%;
    transform: translateX(10px);
}
.cw-slider_visible .cw-slider__track {
    animation: cw-slider 2.5s .5s forwards;
}
.cw-slider__icon {
    flex-shrink: 0;
    font-size: 24px;
    margin-right: 40px;
    color: var(--widget-color);
}
/*
	Формула определения сдвига иконки
	10 - (n * 24 + 40 * n)
	где n - ее индекс

	шаг анимации рассчитывается по формуле: 100 / (n - 1)
	например, для 5 иконок: 100% / (5 - 1) = 25%
*/
@keyframes cw-slider {
    0% {
        transform: translateX(10px);
    }
    25% {
        transform: translateX(-54px);
    }
    50% {
        transform: translateX(-118px);
    }
    75% {
        transform: translateX(-182px);
    }
    100% {
        transform: translateX(-246px);
    }
}

/* cw-list */
.cw-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.cw-list__link {
    display: block;
    text-decoration: none;
    transition: background-color .4s ease-in-out;
}
.cw-list__link_wrap {
    display: flex;
    align-items: center;
    padding: 8px 20px 8px 13px;
}
.cw-list__link:hover {
    background-color: #EEE;
}
.cw-list__icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-right: 13px;
}
.cw-list__icon_theme_email {
    color: #FF643A;
}
.cw-list__icon_theme_viber {
    color: #812379;
}
.cw-list__icon_theme_whatsapp {
    color: #1ad03f;
}
.cw-list__icon_theme_telegram {
    color: #20AFDE;
}
.cw-list__icon_theme_phone {
    color: #00FFBB;
}
.cw-list__title {
    color: #212121;
}
.cw-list__descr {
    font-size: 13px;
    color: #787878;
}
@keyframes cw-pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        opacity: .5
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}
.msg_links_footer {
    margin: 35px 0 100px 0;
}

.msg_links_header {
    margin: 10px 0 20px 0;
}
.msg_links_wrap_list {
    display: flex;
    list-style: none;
    justify-content: space-evenly;
}

.msg_links__link {
    padding: 15px;
    border-radius: 50%;
    display: block;

}

/*.msg_links__Viber, .msg_links__Whatsapp, .msg_links__Telegram {*/
/*    background: #fff;*/
/*}*/

.msg_links__icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}
.msg_links__icon {
    font-size: 45px;
    flex-shrink: 0;
}


.msg_links__icon_theme_viber {
    color: #812379;
}
.msg_links__icon_theme_whatsapp {
    color: #1ad03f;
}
.msg_links__icon_theme_telegram {
    color: #20AFDE;
}

.msg_links__item:hover .msg_links__Viber {
    background:  #812379;
}

.msg_links__item:hover .msg_links__Whatsapp {
    background: #1ad03f;
}

.msg_links__item:hover .msg_links__Telegram {
    background: #20AFDE;
}

.msg_links__item:hover .msg_links__icon_theme_telegram,
.msg_links__item:hover .msg_links__icon_theme_whatsapp,
.msg_links__item:hover .msg_links__icon_theme_viber
{
    color: #fff;
}


.myphone-row{
    margin: 30px 0 20px 0;
}
/* CHAT */