@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;700&display=swap');

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

img{
    max-width: 100%;
    height: auto;
}

a{
    text-decoration: none;
    cursor: pointer;
}

body {
    width: 100%;
    font-weight: 300;
    font-family: 'Jost', serif;
    background-color: #191cab;
}

/* Header */
.header {
    width: 100%;
    padding-top: 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header.fixed {
    padding: 20px 0;
    background-color: #131599;
    box-shadow: 0 3px 10px rgb(255 255 255 / 20%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.6s;
}

.header.active {
    background-color: #eb8b8d;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.header__logo img {
    max-width: 100%;
    height: auto;
}

/* Nav */
.phone-menu{
    display: -webkit-inline-flex !important;
    align-items: center !important;
    -webkit-align-items: center !important;
    justify-content: center;
}

.flag-phone{
    width: 30px;
    margin-right: 5px
}

.nav {
    font-size: 15px;
    text-transform: uppercase;
}

.nav__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: color .1s linear;
}

.nav__link:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    transition: opacity .1s linear;
}

.nav__link:hover:after,
.nav__link.active:after {
    opacity: 1;
}

.nav__link.active {
    color: #ffffff;
}

.text-black{
    color: #000!important;
}

.text-blue{
    color: #191cab!important;
}

.text-gold{
    color: #ca9330;
}

.text-white{
    color: #fff!important;
    text-decoration: none;
    width: fit-content;
}

/* Nav toggle */
.nav-toggle {
    width: 25px;
    padding: 16px 0;
    display: none;
    font-size: 0;
    color: transparent;
    border: 0;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 24px;
    z-index: 1;
}

.nav-toggle:focus {
    outline: 0;
}

.nav-toggle__item {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: background .2s linear;
}

.nav-toggle.active .nav-toggle__item {
    background: none;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: transform .2s linear;
}

.nav-toggle__item:before {
    top: -8px;
}

.nav-toggle__item:after {
    bottom: -8px;
}

.nav-toggle.active .nav-toggle__item:before {
    transform-origin: left top;
    transform: rotate(45deg) translate3d(0px, -3px, 0)
}

.nav-toggle.active .nav-toggle__item:after {
    transform-origin: left bottom;
    transform: rotate(-45deg) translate3d(0px, 3px, 0);
}

.mob-ln{
    display: none;
}

@media (max-width: 1600px) {
    .header__logo {
        font-size: 25px;
    }
    .nav {
        font-size: 14px;
        text-transform: uppercase;
    }
}

@media (max-width: 1400px) {
    .header__logo {
        font-size: 20px;
    }
    .nav {
        font-size: 13px;
        text-transform: uppercase;
    }
}

@media (max-width: 1200px) {
    .nav {
        font-size: 11px;
        text-transform: uppercase;
    }
    .header__logo {
        font-size: 18px;
    }
    .header.fixed {
        padding: 17px 0;
    }
}

@media (max-width: 990px) {
    .nav {
        font-size: 11px;
        text-transform: uppercase;
    }
}
@media (max-width: 770px) {
    .header {
        padding: 17px 0;
    }
    .nav-toggle__item:before, .nav-toggle__item:after {
        height: 2px;
    }
    .nav-toggle__item {
        height: 2px;
    }
    .nav-toggle {
        top: 13px;
        right: 25px
    }
    .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0b0b0b;
    }
    .nav.active {
        display: block;
        top: 55px;
        padding: 20px 0;
    }
    .nav__link {
        display: block;
        margin: 0;
        padding: 10px 20px;
        width: fit-content;
    }
    .nav__link:after {
        width: 70%;
        left: 20px;
    }
    .nav-toggle {
        display: block;
    }
    .mobile-hide{
        display: none;
    }
    .mob-ln{
        display: block;
        margin-right: 40px;
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    .mob-ln {
        font-size: 14px;
        margin-right: 55px;
    }
}

/*intro*/
#top {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#man {
    top: inherit;
    bottom: 0;
}

#top img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#text {
    color: #181cb2;
    font-size: 200px;
    text-align: center;
    position: relative;
    padding: 40px 50px;
    border-radius: 50px;
    line-height: 0.7;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: -15%;
}

.sub-title{
    font-weight: 300;
    font-size: 153px;
    color: black;
}

.container{
    width: 100%;
    max-width: 1600px;
    padding: 0 70px;
    margin: 0 auto;
}

@media (max-width: 1400px){
    #text {
        font-size: 150px;
    }
    .sub-title {
        font-size: 115px;
    }
}

@media (max-width: 1200px){
    #text {
        font-size: 130px;
    }
    .sub-title {
        font-size: 99px;
    }
}

@media (max-width: 950px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 800px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 700px){
    .container {
        padding: 0 15px;
    }
    #text {
        font-size: 90px;
    }
    .sub-title {
        font-size: 69px;
    }
    #text {
        margin-top: -25%;
    }
}

/*About*/
.about{
    padding: 120px 0;
    width: 100%;
    background-color: #191cab;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.border-b{
    border-bottom: 2px solid white;
}

.border-t{
    border-top: 2px solid white;
}

.about-box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.about-box-r{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
}

.about-box-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.about-sub-title{
    color: white;
    font-size: 35px;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sell-title{
    color: #f0f256;
    font-size: 170px;
    line-height: 1;
    font-weight: 600;
}

.about-title{
    color: white;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 30px;
}

.desc{
    font-size: 22px;
    line-height: 1.5;
    color: white;
    margin-bottom: 10px;
}

.text-center{
    text-align: center!important;
}

@media (max-width: 1400px){
    .about-title {
        font-size: 45px;
    }
    .about-sub-title {
        font-size: 30px;
    }
    .sell-title {
        font-size: 150px;
    }
}

@media (max-width: 1200px){
    .about-title {
        font-size: 35px;
    }
    .about-sub-title {
        font-size: 22px;
    }
    .sell-title {
        font-size: 130px;
    }
    .desc {
        font-size: 17px;
    }
}

@media (max-width: 1100px){
    .about-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .sell-title {
        font-size: 100px;
    }
    .desc {
        font-size: 16px;
    }
}

@media (max-width: 800px) {
    .about {
        padding: 100px 0;
    }
}

@media (max-width: 700px) {
    .about {
        padding: 70px 0;
    }
    .mobile-revers{
        flex-direction: column-reverse;
    }
    .about-box-r {
        width: 100%;
    }
    .about-box-text {
        width: 100%;
    }
    .mobile-m-t{
        margin-top: 50px;
    }
    .about-title {
        font-size: 27px;
        margin-bottom: 17px;
    }
    .about-sub-title {
        font-size: 18px;
    }
    .desc {
        font-size: 14px;
    }
}

/*CTA*/
.cta {
    padding: 15px 40px;
    background-color: #f0f256;
    display: flex;
    flex-direction: row;
    width: fit-content;
    margin-top: 30px;
    border-radius: 3px;
    transition: all 0.5s linear;
}

.cta:hover {
    background-color: #56f2e0;
}

.cta-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.cta-text {
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: black;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*Services*/
.services{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px auto 0 auto;
    max-width: 1100px;
}

.service-item{
    width: 50%;
    padding: 30px 30px 30px 30px
}

.service-item-box{
    position: relative;
    max-width: 498px;
}

.service-item-box img{
    display: block;
}

.obj-center{
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.services-name{
    position: absolute;
    bottom: 20px;
    padding-left: 20px;
    z-index: 2;

    color: white;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

.black-layer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    background: linear-gradient(rgb(0 0 0 / 0%) 0%, #000000a8 80%);
}

.bg-white{
    background-color: white;
}

.bg-green{
    background-color: #3AD49E;
}


@media (max-width: 1200px){
    .services-name {
        font-size: 28px;
    }
    .cta-img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 1100px){
    .services-name {
        font-size: 25px;
    }
}

@media (max-width: 950px) {
    .service-item {
        padding: 10px;
    }
    .services-name {
        font-size: 22px;
    }
}

@media (max-width: 700px) {
    .service-item {
        width: 100%;
        padding: 0 0 30px 0;
    }
    .service-item:last-child {
        padding: 0;
    }
    .services-name {
        font-size: 20px;
    }
}

/*slider*/
.slider{
    background-color: white;
    padding: 150px 0;
    width: 100%;
}
.flag{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin-top: 50px;
}

.flag-item{
    width: 25%;
    text-align: center;
}

.flag-item img{
    width: 150px;
}

.flag-name{
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    margin: 30px 0 0 0;
    text-align: center;
}

@media (max-width: 1200px){
    .cis {
        padding: 100px 0 70px 0;
    }
    .flag-name {
        font-size: 20px;
    }
    .flag-item img{
        width: 130px;
    }
}

@media (max-width: 950px) {
    .slider {
        padding: 120px 0 70px 0;
    }
    .cis {
        padding: 80px 0 30px 0;
        min-height: auto;
    }
    .flag-name {
        font-size: 17px;
    }
    .flag-item img{
        width: 110px;
    }
}

@media (max-width: 800px) {
    .cis {
        background-attachment: scroll;
    }
}

@media (max-width: 700px) {
    .slider {
        padding: 90px 0 70px 0;
    }
    .flag{
        justify-content: center;
        margin-top: 40px;
    }
    .cis {
        padding: 50px 0 20px 0;
    }
    .flag-item{
        width: 50%;
        padding: 10px 0;
    }
    .flag-name {
        font-size: 14px;
        margin: 10px 0;
    }
}

/*************************** Broker*/
.points{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.point-box{
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 10px;
    background-color: #1a1ca4;
    border-radius: 10px;
    margin-bottom: 10px;
}

.point-box:last-child {
    margin-bottom: 0;
}

.points-text{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    color: white;
    text-align: center;
}

@media (max-width: 1300px){
    .points-text{
        font-size: 18px;
    }
}
@media (max-width: 1200px){
    .points-text{
        font-size: 17px;
    }
}
@media (max-width: 1100px){
    .points-text{
        font-size: 16px;
    }
    .points{
        margin-top: 10px;
    }
}
@media (max-width: 800px){
    .point-box {
        width: 100%;
    }
    .points-text{
        font-size: 15px;
    }
}

@media (max-width: 700px) {
    .m-max-70{
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }
}


/**************************************************************** Why Timeline */
.why {
    padding: 120px 0;
    width: 100%;
    background-color: #000000;
}

.header-box{
    padding-top: 120px;
    text-align: center;
    padding-bottom: 30px;
}
.timeline {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 0;
}

.timeline::after {
    content: "";
    position: absolute;
    width: 3px;
    background: #ffffff;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2.5px;
}

.conteiner-timeline {
    padding: 30px 60px;
    position: relative;
    background: inherit;
    width: 50%;
}

.conteiner-timeline.left {
    left: 0;
}

.conteiner-timeline.right {
    left: 50%;
}

.conteiner-timeline .icon {
    position: absolute;
    display: none;
    width: 60px;
    height: 60px;
    top: 30px;
    right: -30px;
    padding: 9px 0;
    background: #101012;
    border: 5px solid #a3cc6d;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    color: #e94b3c;
    z-index: 1;
}

.conteiner-timeline.right .icon {
    left: -30px;
}

.conteiner-timeline .date {
    position: absolute;
    display: inline-block;
    height: 40px;
    /* min-width: 60px; */
    top: 45px;
    width: 40px;
    padding: 10px 8px;
    background: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    z-index: -1;
    border-radius: 70px;
}

.conteiner-timeline.left .date {
    right: -20px;
    background-color: #ffffff;
    z-index: 1111;
}

.conteiner-timeline.right .date {
    left: -20px;
    background-color: #ffffff;
    z-index: 100;
}

.conteiner-timeline::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    top: 63px;
    right: 20px;
    z-index: 1;
    /* border: 15px solid; */
    /* border-color: transparent #a3cc6d transparent transparent; */
    background-color: #ffffff;
}

.conteiner-timeline.right::before {
    left: 20px;
    border-color: transparent transparent transparent #ffffff;
}

.conteiner-timeline .content {
    padding: 30px;
    background: #1a1ca4;
    position: relative;
    border: 2px solid #eeeeee;
    border-radius: 10px;
}

.conteiner-timeline.right .content {
    border-radius: 10px;
}

.content img{
    width: 70px;
    height: 70px;
}

.conteiner-timeline .content h2 {
    margin: 10px 0;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    color: #f0f271;
    text-transform: uppercase;
}

.pad-box{
    padding-bottom: 150px;
}

@media (max-width: 1024px) {
    .conteiner-timeline .content {
        padding: 20px;
    }
    .conteiner-timeline .content h2 {
        font-size: 17px;
    }
    .content img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 800px) {
    .why {
        padding: 100px 0;
    }
    .timeline::after {
        left: 2px;
    }
    .conteiner-timeline .content h2 {
        font-size: 16px;
    }
    .conteiner-timeline {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
    }

    .conteiner-timeline.right {
        left: 0%;
    }

    .conteiner-timeline.left .icon,
    .conteiner-timeline.right .icon {
        width: 45px;
        height: 45px;
        top: 37.5px;
        font-size: 18px;
        left: 67.5px;
    }

    .conteiner-timeline.left::before,
    .conteiner-timeline.right::before {
        left: 0px;
        border-color: transparent transparent transparent #ffffff;
        width: 60px;
    }

    .conteiner-timeline.left .date,
    .conteiner-timeline.right .date {
        right: auto;
        left: 10px;
    }

    .conteiner-timeline.left .content,
    .conteiner-timeline.right .content {
        border-radius: 10px;
    }

    .pad-box{
        padding-bottom: 50px;
    }
    .content img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 700px) {
    .why {
        padding: 70px 0;
    }
    .header-box {
        padding-top: 80px;
    }
    .form-box {
        padding: 40px 20px;
    }
    .conteiner-timeline .date {
        top: 50px;
        height: 30px;
        width: 30px;
        padding: 5px 5px;
    }
    .conteiner-timeline {
        padding-left: 50px;
        padding-right: 0px;
    }
    .conteiner-timeline.left::before,
    .conteiner-timeline.right::before {
        width: 50px;
    }
    .conteiner-timeline .content {
        padding: 15px;
    }
    .content img {
        width: 40px;
        height: 40px;
    }
    .conteiner-timeline .content h2 {
        margin: 5px 0 10px 0;
    }
}

/****************************** Form */
.form-box{
    width: 100%;
    max-width: 900px;

    border: 3px solid white;
    margin: 0 auto;
    padding: 100px 150px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    border-radius: 10px;
}

.form-pre-box .title-pre-box{
    display: none;
}

.cta-title{
    margin: 0 0 15px 0;
    font-size: 25px;
    font-weight: 600;
    color: #f0f271;
    text-transform: uppercase;
}

.cta-subtitle{
    margin: 0 0 35px 0;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
}

.form-group {
    margin-bottom: 1rem;
    text-align: center;
}

.form-control {
    display: block;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 22px;
    min-height: 3.2em;
    width: 100%;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
}

.form-control:focus {
    outline: 0;
}

.pp-form-group {
    margin-bottom: 20px;
    text-align: center;
}

.pp-form-control{
    border: none;
    border-bottom: 1px solid #9999999c;
    min-height: 2.2em;
}

#error-msg{
    color: red;
}

.btn-gold {
    display: inline-block;
    text-transform: uppercase;
    color: #171819;
    font-weight: 600;

    border: none;
    background-color: #f0f271;
    transition: 0.5s;

    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    border-radius: 2px;
    font-style: normal;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 10px;
    margin-top: 10px;
}

.btn-gold:hover,
.btn-gold:focus,
.btn-gold:active {
    background-color: #ffffff;
    color: #171819;
    outline: 0;
}

@media (max-width: 800px) {
    .form-box {
        padding: 70px 100px;
    }
    .form-pre-box{
        display: block;
        height: 70px;
        width: 50%;
        border-top: 3px solid #ffffff;
        border-right: 3px solid #ffffff;
        margin-left: -0.5px;
    }
    .title-pre-box{
        display: block;
        height: 50px;
        width: 50%;
        border-bottom: 3px solid #ffffff;
        border-right: 3px solid #ffffff;
        margin-left: -0.5px;
    }
}

@media (max-width: 700px) {
    .form-box {
        padding: 40px 20px;
    }
    .cta-title {
        margin: 0 0 10px 0;
        font-size: 20px;
    }
    .cta-subtitle {
        margin: 0 0 30px 0;
        font-size: 15px;
    }
}


/******************** footer*/
.footer{
    padding-top: 120px;
}

.footer-bg-img{
    display: block;
    margin: 0 auto 50px auto;
    left: 0;
    right: 0;
}

.footer-box{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-left{
    width: 45%;
    height: 30px;
    right: 20px;
    position: relative;
}

.line{
    position: absolute;
    right: 0;
    width: 2000px;
    height: 2px;
    background-color: #ffffff;
    top: 12px;
}

.contact-right{
    width: 55%;
    height: 30px;
    right: 0;
}

.contact-details{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo{
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 20%;
}

.footer-link{
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 25%;
}

.footer-adr{
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 45%;
}

.footer-adr p {
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    line-height: 1.7;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 5px;
}

.footer-link a{
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    line-height: 1.5;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 5px;
    text-decoration: none;
}

.footer-logo h2{
    font-size: 35px;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
}

.footer-logo h2 span{
    font-weight: 400;
    font-size: 28px;
}

.footer-line{
    margin-top: 10px;
    padding: 30px 0;
    font-size: 15px;
    color: #ffffff;
    text-align: right;
    border-top: 1px solid #ffffff5e;
}

@media (max-width: 1366px){
    .contact-right {
        width: 75%;
    }
    .contact-left {
        width: 25%;
    }
}

@media (max-width: 1024px){
    .contact-right {
        width: 75%;
    }
    .contact-left {
        width: 25%;
    }
    .footer-adr p, .footer-link a {
        font-size: 13px;
    }
    .footer-logo h2 {
        font-size: 20px;
    }
    .footer-logo h2 span{
        font-size: 16px;
    }
}

@media (max-width: 950px) {
    .contact-right {
        width: 80%;
    }
    .contact-left {
        width: 20%;
    }
}

@media (max-width: 700px){
    .contact-right {
        width: 85%;
    }
    .contact-left {
        width: 15%;
    }

    .footer-line {
        margin-top: 10px;
        padding: 20px 0 50px 0;
        font-size: 10px;
    }
    .footer {
        padding-top: 70px;
    }
    .footer-logo, .footer-link, .footer-adr{
        width: 100%;
        margin-bottom: 25px;
    }

    .footer-adr{
        margin-bottom: 0;
    }

    .footer-logo h2 {
        font-size: 30px;
    }
    .footer-logo h2 span{
        font-size: 24px;
    }

    .footer-adr p, .footer-link a {
        line-height: 1.3;
        margin-bottom: 10px;
        text-decoration: none;
        color: #ffffff;
    }
}



















