/*! ====  FOOTER START  ===== */

footer {
    display: block;
    position: relative;
    width: 100%;
    background-color: #1d1d1d;
}

.ftr_top {
    display: block;
    width: 100%;
    padding: 88px 16px 64px 16px;
}

.ftr_bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 56px 16px;
    /* background-color: #fff; */
}

.ftr_top .main_center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.ftr_bottom .main_center {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 0;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.footer_full {
    width: 100%;
    position: relative;
    z-index: 3;
}

.footer_bg {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 170px;
    min-height: 64px;
    z-index: 1;
}

.footer_bg img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 64px;
    object-fit: cover;
    z-index: 1;
}

.ftr_left {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    float: left;
    max-width: 640px;
    margin: 0 auto 0 0;
}

.ftr_right {
    display: flex;
    float: right;
    margin: 0 0 0 auto;
    padding-left: 24px;
}

footer .logo_sect {
    display: flex;
    justify-content: center;
    float: none;
    width: 100%;
    margin-bottom: 88px;
}

footer .logo_img {
    width: 100%;
    max-width: 470px;
}

.backtotop {
    display: block;
    position: absolute;
    float: right;
    right: 0;
    width: 44px;
    height: 44px;
    /* background-color: #578078; */
    background-image: url("../img/icons/arrow_up.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.created_by_sm {
    display: flex;
    align-items: center;
    position: absolute;
    float: left;
    width: auto;
    min-width: 225px;
    margin: 0 auto;
    word-break: break-word;
    left: calc(50% - 100px);
}

.creat_sm_title {
    display: block;
    float: left;
    width: auto;
    padding: 0px 12px 0px 0px;
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
    color: #fff;
    opacity: 1;
}

.creat_sm_icon {
    display: block;
    float: left;
    width: 128px;
    height: 32px;
}

.creat_sm_icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.ftr_row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
}

.ftr_social {
    width: auto;
    float: left;
    margin-right: auto;
}

.ftr_social .socials {
    justify-content: flex-end;
}

.ftr_social .lang_sect.desk {
    margin-left: 8px;
}

.ftr_social .lang_sect .langs {
    top: auto;
    bottom: 16px;
}

.ftr_social .lang_sect.clicked .langs {
    top: auto;
    bottom: 54px;
}

.socials {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin: 0 auto;
}

.ftr_mobile {
    display: none;
}

.ftr_mbl_menu {
    display: none;
}

.socials li {
    display: block;
}

.socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 4px 4px 5px 4px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.socials li a img {
    display: block;
    /*max-width: 100%;
    max-height: 100%;*/
}


.socials li a:hover {
    background-color: #e91e63;
    border-radius: 5px;
    padding: 4px 4px 5px 4px;
}


/* footer menu */

.ftr_menu_sect {
    display: flex;
    flex-wrap: wrap;
    float: left;
    width: 310px;
    max-width: 100%;
    padding: 0 24px 0 0;
}

.ftr_menu_sect>ul>li {
    display: block;
    padding-top: 24px;
}

.fm_hd {
    display: block;
    text-align: left;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    /* 127.273% */
    color: #fff;
    opacity: 1;
}

.ftr_menu_sect ul li a {
    /* display: block; */
    text-align: left;
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.4px;
    color: #fff;
    opacity: 1;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.ftr_menu_sect li a::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    background-color: #fff;
    transform-origin: right;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
}

.ftr_menu_sect li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.ftr_mbl_menu {
    margin-top: 48px;
}

.ftr_mbl_menu li {
    display: block;
    float: left;
    max-width: 50%;
    padding-right: 24px;
}

.ftr_mbl_menu li a {
    display: block;
    margin-bottom: 16px;
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    text-decoration: underline;
    letter-spacing: 0.24px;
    color: #000000;
    opacity: 1;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}


/* footer menu */


/* footer contact */

.adrs_list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
    padding: 56px 0 0 0;
}

.adrs_list li {
    display: inline-flex;
    align-items: center;
    position: relative;
    flex: 1;
    width: auto;
    min-height: 72px;
    padding: 0 0 0 82px;
    margin-bottom: 12px;
}

.adr_name img {
    display: block;
    width: 100%;
    height: 100%;
}

.adr_name {
    display: block;
    position: absolute;
    left: 0;
    width: 72px;
    height: 72px;
    padding: 16px;
    background-color: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.adr_info,
.adr_info a {
    display: block;
    float: left;
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    opacity: 1;
    word-break: break-word;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

a.adr_info:hover {
    text-decoration: underline;
}


/* footer contact */

.copyrite {
    display: inline-block;
    width: auto;
    margin: 0 auto;
}

.copyrite_inner a {
    font-weight: bold;
    color: #578078;
}

.copyrite_inner {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    color: #9d9d9d;
    opacity: 1;
}

.copyrite_text {
    display: block;
    margin-top: 26px;
    margin-bottom: 32px;
    text-align: left;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    opacity: 1;
}

@media only screen and (min-width: 1025px) and (max-width: 1132px) {
    /* Footer responsive */
    /* Footer responsive */
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Footer responsive */
    footer .logo_img {
        display: block;
        max-width: 320px;
    }
    /* footer contact */
    .adrs_list {
        flex-wrap: wrap;
        gap: 16px;
        padding: 32px 0 0 0;
    }
    .adrs_list li {
        display: flex;
        flex: auto;
        width: 100%;
        min-height: 56px;
        padding: 0 0 0 64px;
        margin-bottom: 0;
    }
    .adr_name {
        width: 56px;
        height: 56px;
        padding: 12px;
    }
    /* Footer responsive */
}

@media only screen and (min-width: 561px) and (max-width: 767px) {
    /* Footer responsive */
    footer .logo_img {
        display: block;
        max-width: 280px;
    }
    /* footer contact */
    .adrs_list {
        flex-wrap: wrap;
        gap: 16px;
        padding: 32px 0 0 0;
    }
    .adrs_list li {
        display: flex;
        flex: auto;
        width: 100%;
        min-height: 56px;
        padding: 0 0 0 64px;
        margin-bottom: 0;
    }
    .adr_name {
        width: 56px;
        height: 56px;
        padding: 12px;
    }
    /* Footer responsive */
}

@media only screen and (min-width: 0px) and (max-width: 560px) {
    /* Footer responsive */
    .ftr_top {
        padding: 40px 16px;
    }
    .ftr_bottom {
        padding: 24px 16px;
    }
    footer .logo_sect {
        margin-bottom: 48px;
    }
    footer .logo_img {
        display: block;
        max-width: 200px;
    }
    /* footer contact */
    .adrs_list {
        flex-wrap: wrap;
        gap: 16px;
        padding: 32px 0 0 0;
    }
    .adrs_list li {
        display: flex;
        flex: auto;
        width: 100%;
        min-height: 56px;
        padding: 0 0 0 64px;
        margin-bottom: 0;
    }
    .adr_name {
        width: 56px;
        height: 56px;
        padding: 12px;
    }
    .socials {
        gap: 12px;
    }
    .copyrite {
        padding-right: 44px;
    }
    .copyrite_inner {
        font-size: 14px;
    }
    .backtotop {
        width: 32px;
        height: 32px;
    }
    /* Footer responsive */
}


/*! ====  FOOTER FINISH  ===== */