/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* ROOT */
:root{
    --main-font-family: "Livvic", "Arial", sans-serif; 
    --main-regular-font-weight: 600;
    --main-body-bg-color: #fff;
    --main-text-color: #F67E7E;
    --main-font-size:15px;
}
/* livvic-regular - latin */
@font-face {
    font-family: "Livvic";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: 
    url("../fonts/livvic-v13-latin-regular.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url("../fonts/livvic-v13-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* livvic-600 - latin */
@font-face {
    font-family: "Livvic";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src:
    url("../fonts/livvic-v13-latin-600.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url("../fonts/livvic-v13-latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* livvic-700 - latin */
@font-face {
    font-family: "Livvic";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: 
    url("../fonts/livvic-v13-latin-700.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url("../fonts/livvic-v13-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

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

html{
    height: 100%;
}

img{
    display: block;
    height: 100%;
}

body{
    font-family: "Livvic", "Arial", sans-serif; 
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    margin: 0;
    background-color: var(--main-body-bg-color);
    overflow-x: hidden;
}


.container{
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-main{
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/* Header start */

.site-header {
    padding-top: 73px;
    padding-bottom: 73px;
    background-color: #014E56;
}
.site-header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-wrapper__logo {
    display: inline-block;
    text-decoration: none;
}
.header-wrapper__img {
    display: inline-block;
}
.header-wrapper__list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 0 80px;
    padding-left: 0;
}
.header-list__item {
    margin-right: 40px;
}
.header-list__item:last-child {
    margin-right: 0;
}
.header-list__link {
    text-decoration: none;
    font-weight: var(--main-regular-font-weight);
    font-size: 18px;
    line-height: 28px;
    color: var(--main-body-bg-color);
}
.header-list__link:hover {
    color: var(--main-text-color);
}
.header-wrapper__contact {
    padding: 10px 32px;
    font-weight: var(--main-regular-font-weight);
    font-size: 18px;
    line-height: 28px;
    text-decoration: none;
    color: var(--main-body-bg-color);
    border: 2px solid #ffffff;
    border-radius: 24px;
}
.header-wrapper__contact:hover {
    background-color: var(--main-body-bg-color);
    color: #002529;
}

/* Header finish */

/* Main start */

/* Hero section start */

.hero-section {
    overflow: hidden;
    background-color: #014E56;
    padding-top: 60px;
    padding-bottom: 250px;
}
.hero-section--bottom{
    padding-bottom: 170px;
}
.hero-section__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.hero-inner__left {
    position: relative;
    width: 600px;
}
.hero-inner__left::before {
    position: absolute;
    top: 10px;
    left: -205px;
    margin-bottom: 70px;
    content: "";
    display: inline-block;
    width: 100px;
    height: 400px;
    background-image: url("../images/left-cercle.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.hero-inner__heading {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 100px;
    line-height: 100px;
    color: var(--main-body-bg-color);
}

.talant {
    color: var(--main-text-color);
    font-weight: 700;
    font-size: 100px;
    line-height: 100px;
}
.hero-inner__right {
    position: relative;
    width: 445px;
}
.hero-inner--text {
    width: 730px;
}
.hero-inner--none::before{
    display: none;
}
.hero-inner--none{
    margin-bottom: 80px;
}
.hero-inner__right::before {
    margin-bottom: 70px;
    content: "";
    display: inline-block;
    width: 50px;
    height: 4px;
    background-color: #79C8C7;
}
.hero-inner--text::before{
    background-color: #F67E7E; 
}
.hero-inner__right::after {
    position: absolute;
    top: 347px;
    margin-bottom: 70px;
    content: "";
    display: inline-block;
    width: 400px;
    height: 400px;
    background-image: url("../images/cercle.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.hero-inner--text::after{
    display: none;
}
.hero-inner__title--bg-img::after{
    position: absolute;
    top: 178px;
    left: 712px;
    background-image: url("../images/Group 8.svg");
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    content: "";
    display: inline-block;
    
    
}
.hero-inner__title {
    margin-bottom: 0;
    font-weight: var(--main-regular-font-weight);
    font-size: 18px;
    line-height: 28px;
    color: var(--main-body-bg-color);
}       

/* Hero section finish */
/* build section start  */
.build-section {
    overflow: hidden;
    padding-top: 250px;
    padding-bottom: 120px;
    background-color: #002529;
}
.build-section__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.build-section__left {
    position: relative;
    width: 440px;
}
.build-section__left::before {
    position: absolute;
    top: -80px;
    margin-bottom: 70px;
    content: "";
    display: inline-block;
    width: 50px;
    height: 4px;
    background-color: #F67E7E;
}
.build-section__heading {
    margin-top: 0;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: var(--main-body-bg-color);
}
.build-section__right {
    position: relative;
    width: 500px;
    padding-left: 0;
    margin: 0;
}
.build-section__right::after {
    position: absolute;
    right: -222px;
    top: 290px;
    content: "";
    display: inline-block;
    width: 120px;
    height: 250px;
    background-image: url("../images/cercle-right.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.build-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.build-list__item:first-child::before {
    content: "";
    display: inline-block;
    margin-right: 20px;
    width: 110px;
    height: 100px;
    background-image: url("../images/experienced.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.build-list__item:nth-child(2)::before {
    content: "";
    display: inline-block;
    margin-right: 20px;
    width: 110px;
    height: 100px;
    background-image: url("../images/easy.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.build-list__item:last-child::before {
    content: "";
    display: inline-block;
    margin-right: 20px;
    width: 110px;
    height: 100px;
    background-image: url("../images/enhenced.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.build-item-box__heading {
    margin-top: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--main-text-color);
}
.build-item-box__title {
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    color: var(--main-body-bg-color);
    opacity: 0.8;
}
/* build section start  */
/* Top Company start */

.top-company{
    position: relative;
    padding-top: 140px;
    padding-bottom: 151px;
    background-color: #004047;
    background-image: url("../images/delivering-decor.svg");
    background-position: calc(50% - 700px) calc(50% - 280px);
    background-repeat: no-repeat;
    background-size: 147px 100px;
}
.top-company__box{
    width: 932px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
.top-company__title{
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
}
.green{
    color: #2C6269;
}
.top-company__list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
}
.top-company__list::after{
    position: absolute;
    top: calc(50% + 185px);
    left: calc(50% + 660px);
    background-image: url("../images/Group 8.svg");
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    width: 200px;
    height: 200px;
    /* background-size: 200px 200px; */
    
}
.top-company__item{
    position: relative;
    list-style: none;
    padding-top: 55px;
    
}
.top-company__item::before{
    position: absolute;
    top: 20px;
    left: 140px;
    background-image: url("../images/iz.svg");
    content: "";
    background-repeat: no-repeat;
    display: block;
    width: 67px;
    height: 56px;
    background-size: 67px 56px;
}
.top-company__text{
    position: relative;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
    width: 350px;
    text-align: center;
    margin: 0;
}
.top-company__founder{
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-top: 24px;
    line-height: 28px;
    text-align: center;
    color: #79C8C7;
}
.top-company__product{
    display: block;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
}
.top-company__product::after{
    position: relative;
    top: 35px;
    left: 145px;
    background-image: url("../images/kady.png");
    background-repeat: no-repeat;
    background-size: 62px 62px;
    width: 62px;
    height: 62px;
    content: "";
    display: block;
}
.top-company--Aisha:after{
    background-image: url("../images/aiysha.png");
}
.top-company--artur::after{
    background-image: url("../images/arthur.png");
}
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                -webkit-min-device-pixel-ratio: 2),
only screen and (                -o-min-device-pixel-ratio: 2/1),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {
    
    .top-company__product::after{
        background-image: url("../images/kady@2x.png");
    }
    .top-company--Aisha:after{
        background-image: url("../images/aiysha@2x.png");
    }
    .top-company--artur::after{
        background-image: url("../images/arthur@2x.png");
    }
}
/* Top Company finish */


/* directors start */
.directors{
    background-color:  #004047;
    padding-top: 10px;
    padding-bottom: 140px;
}
.directors__title {
    font-weight: 700;
    font-size: 48px;
    margin-right: 170px;
    line-height: 48px;   
    color: #FFFFFF;
    margin-bottom: 64px;
    text-align: center;
}
.directors__title::before{
    position: relative;
    top: -50px;
    left: -357px;
    background-image: url("../images/top-derictory.svg");
    background-repeat: no-repeat;
    background-size: 200px 200px;
    content: "";
    display: inline-block;
    width: 200px;
    height: 200px;

}
.directors__list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    margin-left: -30px;
    margin-bottom: -76px;
    padding-left: 0;
    list-style: none;
}
.directors__list::after{
     position: relative;
    top: 80px;
    left: 1190px;
    background-image: url("../images/bottom-8.svg");
    background-repeat: no-repeat;
    background-size: 147px 100px;
    content: "";
    display: inline-block;
    width: 147px;
    height: 100px;
}

.item{
    margin-bottom: 76px;
    flex-wrap: wrap;
    margin-left: 30px;
}


.item__wrapper {
    width: 350px;
    position: relative;
    z-index: 1;
    perspective: 1500px;
}

.item__wrapper > .item__front, .item__back{
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 1s ease;
}

.item__wrapper--active .item__front{
    transform: rotateY(180deg);
}

.item__wrapper--active .item__back{
    transform: rotateY(360deg);
}

.item__front {
    width: 100%;
    padding: 32px 24px 56px 24px;
    background-color: #012F34;
    backface-visibility: hidden;
}
.card__text{
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    color: #FFFFFF;
    text-align: center;
}
.card__img {
    width: 96px;
    height: 96px;
    margin-bottom: 16px;
    border-radius: 50%;
}
.card__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    margin: 0;
    color: #79C8C7;
}
.card__desc {
    font-style: italic;
    font-size: 15px;
    line-height: 25px;
    color: #FFFFFF;
    margin: 0;
}
.item__back {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    padding: 32px 24px 56px 24px;
    background-color:  #002529;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    /* overflow: auto; */
}

.card__social-list {
    display: flex;
    padding-left: 0;
    list-style: none;
}
.card__social-link{
    margin-right: 16px;
    color: #fff;
}
.card__social-link:hover{
    color: #F67E7E;
}

.item__button {
    position: absolute;
    left: calc(50% - 28px);
    bottom: -28px;
    z-index: 5;
    width: 56px;
    height: 56px;
    background-color: #F67E7E;
    background-image: url("../images/Combined Shape.svg");
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.5s ease , transform 0.5s ease;
}

.item__button:hover{
    background-color: aqua;
}

.item__wrapper--active .item__button{
    transform: rotate(45deg);
    background-color: coral;
}

.item__wrapper--active .item__button:hover{
    background-color: rgb(4, 94, 78);
}
/* directors finish  */


.clients{
    position: relative;
    background-color: #012F34;
    padding-top: 140px;
    padding-bottom: 151px;
}
.clients::before{
    top: 0;
    position: absolute;
    width: 200px;
    height: 200px;
    display: inline-block;
    content: "";
    left: calc(50% - 760px);
    background-image: url("../images/clients-bg.svg");
    background-repeat: no-repeat;
}
.clients__title{
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 70px;
}
.clients__list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
}

/* Article start */
.article{
    background-image: url("../images/bottom-cercle.svg");
    background-color:  #F67E7E;
    background-repeat: no-repeat;
    background-position: calc(50% - 659px) calc(50% + 27px);
    padding-top: 35px;
    padding-bottom: 35px;
}
.article__box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.article__title{
    margin-right: 260px;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #012F34;
}
.article__link{
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #012F34;
    padding: 9px 33px;
    background-color: transparent;
    border: 2px solid #012F34;
    border-radius: 24px;
    text-decoration: none;
}
.article__link:hover{
    color: #fff;
    border: 2px solid white;
    background-color: #012F34;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

/* Article finish */


/* contact bigen  */
.site-main__contact {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #014E56;
}

.site-main__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.contact-wrapper__left {
    width: 500px;
}
.contact-wrapper__heading {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 64px;
    line-height: 100px;
    color: var(--main-body-bg-color);
}
.contact-wrapper__title {
    display: inline-block;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    color: #F67E7E;    
}
.contact-wrapper__list {
}
.contact-left-list {
    margin: 0;
    padding-left: 0;
}
.contact-left-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}
.contact-left-list__item:first-child::before {
    content: "";
    display: inline-block;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background-image: url("../images/experienced.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.contact-left-list__item:nth-child(2)::before {
    content: "";
    display: inline-block;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background-image: url("../images/easy.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.contact-left-list__item:last-child::before {
    content: "";
    display: inline-block;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background-image: url("../images/enhenced.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.contact-left-list__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: var(--main-body-bg-color);    
}
.form-box {
    width: 540px;
}
.form-box__inp-wrapper {
    
}
.form-box__inp {
    width: 100%;
    padding-bottom: 16px;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--main-body-bg-color);
    border-bottom: 1px solid #ffffff;
}
.form-box__inp:focus {
    border-bottom: 1px solid @fff;
}
.form-box__inp::-webkit-input-placeholder {
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: -0.115385px;
    color: #FFFFFF;
    opacity: 0.6;
}
.form-box__inp::-moz-placeholder {
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: -0.115385px;
    color: #FFFFFF;
    opacity: 0.6;
}
.form-box__inp:-ms-input-placeholder {
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: -0.115385px;
    color: #FFFFFF;
    opacity: 0.6;
}
.form-box__inp::-ms-input-placeholder {
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: -0.115385px;
    color: #FFFFFF;
    opacity: 0.6;
}
.form-box__inp::placeholder {
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: -0.115385px;
    color: #FFFFFF;
    opacity: 0.6;
}
.form-box__inp:not(:-moz-placeholder-shown):not(:focus):invalid {
    border-block-color: #F67E7E;
    color: #F67E7E;
    opacity: 0.6;
}
.form-box__inp:not(:-ms-input-placeholder):not(:focus):invalid {
    border-block-color: #F67E7E;
    color: #F67E7E;
    opacity: 0.6;
}
.form-box__inp:not(:placeholder-shown):not(:focus):invalid {
    border-block-color: #F67E7E;
    color: #F67E7E;
    opacity: 0.6;
}
.form-box__inp:not(:-moz-placeholder-shown):not(:focus):invalid~ .warning {
    opacity: 0.8;
}
.form-box__inp:not(:-ms-input-placeholder):not(:focus):invalid~ .warning {
    opacity: 0.8;
}
.form-box__inp:not(:placeholder-shown):not(:focus):invalid~ .warning {
    opacity: 0.8;
}
.warning {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: -0.115385px;
    color: #F67E7E;
    mix-blend-mode: normal;
    opacity: 0;
}
.text-form {
    background-color: transparent;
    resize: vertical;
    border: none;
    color: #FFFFFF;
    border-bottom: 1px solid #fff;
}
.form-box-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 32px;
    background-color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #004047;
    border-radius: 24px;
    border: none;
}
/* contact finish  */
/* Main finish */

/* Footer start  */

.site-footer{
    background-color: #002529;
    padding-top: 48px;
    padding-bottom: 48px;
}
.site-footer__info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.site-footer__more-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.site-footer__more-link{
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    text-decoration: none;
}
.site-footer__more-link:hover{
    color: #F67E7E;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    
}
.site-footer__item{
    list-style: none;
}
.site-footer__text{
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    color: #FFFFFF;
    mix-blend-mode: normal;
    opacity: 0.6;
}
.site-footer__list{
    padding: 0;
    margin-left:125px ;
}
.site-footer__message-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin-left: 20px;
    margin-bottom: 40px;
}
.site-footer__mini-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-left: 400px;
}
.site-footer__message-item{
    margin-left: 16px;
}
.site-footer__mini-text{
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    text-align: right;
    color: #FFFFFF;
    mix-blend-mode: normal;
    opacity: 0.6;
}
.site-footer__message-links{
    color: #fff;
    text-decoration: none;
}
.site-footer__message-links:hover{
    color: #F67E7E;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}



/* Footer start  */