html, body {
    height: 100%;
}
body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    color: #000000;
    font-weight: 400;
    transition: all .5s ease;
}
.page-content-home {
    height: 100%;
}
.page-content-home .bg_img{
   position: fixed;
   top: 0;
   bottom: 0;
   right: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
.page-content-home .content_block {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* top: 50%; */
    left: 50%;
    transform: translateX(-50%);
    padding: 20px;
    max-width: 720px;
    padding-top: 10%;
}
.page-content-home .content_block .logo {
    margin-bottom: 20px;
}
.page-content-home .content_block .logo img {
    max-width: 300px;
}
.page-content-home .content_block p {
    max-width: 100%;
    color: #333;
    font-size: 16px;
    text-align: center;
}
.page-content-home .content_block p span {
    font-weight: 600;
    color: #d98f12;
}
.c-lists {
    padding: 0;
    margin: 0 0 10px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.c-lists li{
    margin: 0 12px;
    font-size: 16px;
}
.c-lists li,.c-lists li a{
    color: #408c42;
    text-decoration: none;
    font-weight: 600;
}
.bottom_block {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 5px 40px;
    background: #880d66;
}
.social_links,.contact_mail,.copyright_block{
    /* width: 33.333%; */
    text-align: center;
}
.social_links ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.social_links ul li{
    margin: 0 7px;
}
.social_links ul li:first-child{
    margin-left: 0;
}
.contact_mail a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    font-size: 14px;
}
.page-content-home .content_block .copyright_block{
    text-align: right;
}
.page-content-home .content_block .copyright_block p {
    color: #fff;
    max-width: 100%;
    margin: 0;
    font-weight: 300;
    font-size: 14px;
    text-align: right;
}
.contact_mail ul {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.copyright_block p {
    color: #fff;
    font-weight: 300;
    margin: 0;
    font-size: 14px;
}
.contact_mail ul li {
    padding: 0 10px;
    position: relative;
    font-size: 14px;
}

.contact_mail ul li::after{
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    background: rgb(255 255 255 / 50%);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.contact_mail ul li:first-child{
    padding-left: 0;
}
.contact_mail ul li:last-child{
    padding-right: 0;
}
.contact_mail ul li:last-child:after{
    content: none;
}
.top_block {
    position: fixed;
    right: 0;
    padding: 7px 11px;
    top: 0;
    background: #880d66;
    z-index: 4;
}
.top_block .ph{
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    padding-left: 32px;
    position: relative;
}
.top_block a{
    color: #fff;
    text-decoration: none;
}
.top_block .ph:after{
    content: "";
    display: block;
    background: url('../images/phone.svg') no-repeat left center;
    position: absolute;
    left: 0;
    top:2px;
    width: 25px;
    height: 25px;
    background-size: 25px;
}
@media(min-width:1920px){
    .page-content-home .content_block .logo img {
        max-width: 380px;
    }
}
@media(min-width:1200px){
    .contact_mail {
        padding-left: 12%;
    }
}
@media(min-width:992px) and (max-width:1199px){

    .page-content-home .content_block .copyright_block p{
        font-size: 14px;
    }
}
@media(min-width:768px) and (max-width:991px){
    .page-content-home .content_block .copyright_block p{
        font-size: 14px;
    }
    .page-content-home .content_block .logo img {
        max-width: 250px;
    }
    .page-content-home .content_block {
        height: 100%;
        padding-top: 0;
        margin-top: -120px;
    }
    .bottom_block {
        flex-direction: column;
    }
}
@media(max-width:767px){
    .page-content-home .content_block .logo img {
        max-width: 250px;
    } 
    .page-content-home {
        height: auto;
        padding: 30px 0;
    }
    .page-content-home .content_block p{
        font-size: 15px;
    }
    .social_links, .contact_mail,
    .page-content-home .content_block .copyright_block,
    .page-content-home .content_block .copyright_block p {
        width: 100%;
        text-align: center;
    }
    .c-lists {
        margin-bottom: 12px;
    }
    .social_links ul{
        justify-content: center;
        margin-bottom: 7px;
    }
    .contact_mail {
        margin-bottom: 6px;
    }
    .contact_mail ul {
        justify-content: center;
    }
    .contact_mail ul li{
        padding: 0;
    }
    .contact_mail ul li::after{
        content: none;
    }
    .page-content-home {
        height: 100%;
        padding: 30px 0 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .bottom_block {
        flex-direction: column;
        position: relative;
    }
    .top_block .ph:after{
        width: 20px;
        height: 20px;
        background-size: 20px;
    }
    .top_block .ph {
        font-size: 16px;
        padding-left: 25px;
        position: relative;
    }
    .top_block {
        position: relative;
        right: 0;
        padding: 7px 11px;
        top: 0;
        z-index: 4;
        margin-top: -30px;
        display: flex;
        justify-content: flex-end;
    }
}