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

/* CUSTOM PRELOAD */
#loader-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
    -webkit-animation: loader 1s linear;
    animation: loader 1s linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes loader {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    99% {
        opacity: 0;
    }
    100% {
        display: none;
        visibility: hidden;
        z-index: -10;
        opacity: 0;
    }
}

@keyframes loader {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    99% {
        opacity: 0;
    }
    100% {
        display: none;
        visibility: hidden;
        z-index: -10;
        opacity: 0;
    }
}

/* RESET STYLES */
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar
}

*, ::after, ::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-text-size-adjust: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}

.clear {
    clear: both;
    overflow: hidden;
    height: 0px;
    font-size: 0px;
    display: block;
}

:focus, :active, :visited {
    outline: none;
}

/* GLOBAL SETTINGS */
html:not(.touch-screen)::-webkit-scrollbar,
html:not(.touch-screen) *::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

html:not(.touch-screen)::-webkit-scrollbar-track,
html:not(.touch-screen) *::-webkit-scrollbar-track {
    background: #FFF;
}

html:not(.touch-screen)::-webkit-scrollbar-thumb,
html:not(.touch-screen) *::-webkit-scrollbar-thumb {
    background: #FF671F;
}
body ::-moz-selection {
    background: #FF671F;
    color: #fff;
}

body ::selection {
    background: #FF671F;
    color: #fff;
}
html {
    height: 100%;
}

body {
    height: 100%;
    overflow: hidden;
    background: #fff;
}

#content-block {
    overflow: hidden;
    position: relative;
    max-width: 768px;
    margin: 0 auto;
    min-height: 100%;
    height: 100%;
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

html.overflow-hidden body, .overflow-hidden {
    overflow: hidden;
}


/* TYPOGRAPHY */
body * {
    font-family: 'Roboto', sans-serif;
    color: #000000;
}

b, strong {
    font-weight: 700;
}

a {
    cursor: pointer;
    text-decoration: none;
    outline: none;
    color: inherit;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

a:link, a:visited, a:active, a:hover {
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

h1, .h1 {
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 900;
    /*text-transform: uppercase;*/
}

h2, .h2 {
    font-size: 22px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: none;
}

.title {
    color: #4D4D4D;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.25em;
}

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

/*header*/
header {
    padding: 50px 12px 0;
    text-align: center;
}
.logo {
    display: block;
    max-width: 139px;
    line-height: 0;
    margin: 0 auto;
    position: relative;
    z-index: 1001;
}

/*social*/
.social_wr {
    min-height: 50%;
    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: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
}
.social_wr .title {
    margin-bottom: 25px;
}
.social_wr.social_top {
    border-bottom: 2px solid #FF671F;
}
.social {
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 300px;
    padding: 0 12px;
    margin: 0 auto -20px;
}
.social_wrapper{
    max-width: 350px;
}
.social li {
    margin: 0 10px 20px;
}
.social a {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 1px solid #FF671F;
    position: relative;
    display: block;
}
.social a img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    max-width: 36px;
}

/*main*/
.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
}

/*social bottom*/
.social_bottom .h1 {
    margin-bottom: 10px;
}
.social_bottom .title {
    margin-bottom: 28px;
}
.offset {
    padding: 0 12px;
}
.social_bottom .social li {
    margin: 0 10px 20px 10px;
}

/*footer*/
footer {
    padding: 30px 12px;
    text-align: center;
    background-color: #E2E2DD;
}
.footer_title a{
    text-decoration: underline;
    -webkit-text-decoration-color: #FF671F;
    text-decoration-color: #FF671F;
    text-underline-offset: 6px;
    display: block;
}

/*media*/
@media (max-height: 811px) {
    .social a {
        width: 70px;
        height: 70px;
    }
    .social a img {
        max-width: 28px;
    }
    .social {
        max-width: 174px;
        margin: 0 auto -10px;
    }
    .social li {
        margin: 0 5px 10px;
    }
    .social {
        max-width: 274px;
    }
    footer {
        padding: 20px 12px;
    }
    header {
        padding: 20px 12px 0;
    }
    .social_wr .title,
    .social_bottom .title{
        margin-bottom: 15px;
    }
    .social_bottom .social li {
        margin: 0 5px 10px 5px;
    }
}
@media (min-width: 992px) {
    .logo:hover {
        opacity: .8;
    }
    .social a:hover img {
        -webkit-transform: translate(-50%,-50%) scale(1.02);
        -ms-transform: translate(-50%,-50%) scale(1.02);
        transform: translate(-50%,-50%) scale(1.02);
    }
}

/*POPUPS*/
.popup-wrapper {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
}

.popup-wrapper.active {
    left: 0;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
}

.popup-wrapper .bg-layer {
    position: absolute;
    left: 0;
    top: -100px;
    right: 0;
    bottom: -100px;
    background: #fff;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    opacity: 0;
}

.popup-wrapper.active .bg-layer {
    opacity: 1;
}

.popup-content {
    position: absolute;
    left: -1000px;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0;
    text-align: center;
    -webkit-transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s;
    -webkit-transition: opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
    transition: opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s;
    transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s;
    transition: transform .3s ease-out, opacity .3s ease-out, left 0s .3s, -webkit-transform .3s ease-out;
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    opacity: 0;
    padding: 15px;
    letter-spacing: 0;
}

.popup-content.active {
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
    left: 0;
    -webkit-transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s;
    -webkit-transition: opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
    transition: opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s;
    transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s;
    transition: transform .3s ease-out, opacity .3s ease-out, left 0s 0s, -webkit-transform .3s ease-out;
    z-index: 1;
}

.popup-content:after {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    content: "";
}

.popup-content .layer-close {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 10000px;
}
.popup-container {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
    background: #fff;
    max-width: 280px;
    z-index: 1;
}
.popup-align {
    overflow: hidden;
    position: relative;
}


.img_wrapp {
    position: relative;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 280px;
    height: 280px;
}
.img_wrapp img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


.btn-close {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    cursor: pointer;
    background: transparent;
}
.popup-content .popup-container > .btn-close {
    position: absolute;
    right: -12%;
    top: -20%;
}
.btn-close:before {
    content: "\02715";
    color: #FF671F;
}

.main_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.space-xs{
    height: 10px;
}

/*media*/
@media (max-height: 551px) {
    .social_top .title {
        display: none;
    }
}